@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");
/* #region Import */
@import url(vendor/bootstrap.min.css);
@import url(vendor/animate.min.css);
@import url(vendor/all.min.css);
@import url(vendor/icons.min.css);
@import url(vendor/bootstrap-icons.min.css);
@import url(vendor/slider.min.css);
@import url(vendor/gallery.min.css);
/* #endregion Import */
/*----------------------------------------------
2. Root
----------------------------------------------*/
/* #region Root */
:root {
  --primary-font: "Urbanist", sans-serif;
  --secondary-font: "Urbanist", sans-serif;
  --body-font-size: 1.2rem;
  --h1-size: 4rem;
  --h1-weight: 500;
  --h2-size: 3rem;
  --h2-weight: 500;
  --h3-size: 3rem;
  --h3-weight: 500;
  --h4-size: 1.6rem;
  --h4-weight: 500;
  --h5-size: 1.5rem;
  --h5-weight: 500;
  --h6-size: 1.2rem;
  --h6-weight: 500;
  --p-size: 1.2rem;
  --p-weight: 400;
  --header-bg-color: #121117;
  --nav-brand-height: 55px;
  --top-nav-item-color: #030712;
  --nav-item-color: #121117;
  --primary-color: #5700EF;
  --secondary-color: #FFDDB7;
  --white-color: #f9f9f9;
  --black-color: #040402;
  --grey-color: #f3f5f7;
  --dark-grey-color: #191919;
  --primary-t-color: #030712;
  --primary-t-color-2: #B6BCC6;
  --primary-t-color-3: #565960;
  --secondary-t-color: #f9f9f9;
  --secondary-t-color-2: #a6abb4;
  --primary-p-color: #353941;
  --secondary-p-color: #909DAC;
  --primary-b-color: #8b8d92;
  --secondary-b-color: #8b8d92;
  --primary-l-color: #e5e7eb;
  --secondary-l-color: #dddddd;
  --valid-color: #007a4d;
  --invalid-color: #e34f4f;
  --primary-bg-color: #f8f8f9;
  --primary-bg-color-2: #e8eaed;
  --primary-bg-color-3: #e5e5e5;
  --secondary-bg-color: #111013;
  --secondary-bg-color-2: #1C1B1E;
  --secondary-bg-color-3: #191919;
  --primary-border-radius: 10px;
  --card-bg-color: #16182d;
  --footer-bg-color: #f8f8f9;
  --transform-scale: scale3d(1.06, 1.06, 1.06);
  --transition-function: cubic-bezier(.645, .045, .355, 1);
  --transition-duration: 0.35s;
}

/* #endregion Root */
/*----------------------------------------------
3. Reset
HTML5 display-role reset for older browsers
----------------------------------------------*/
/* #region Reset */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  overflow-x: hidden;
}

body {
  padding: 0 !important;
  font-family: var(--secondary-font);
  font-size: var(--body-font-size);
  color: var(--primary-p-color);
}
body.odd {
  background-color: var(--secondary-bg-color);
  color: var(--secondary-p-color);
}

ol,
ul {
  padding-left: 20px;
}

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

ul ul {
  list-style: circle;
}

pre,
code {
  display: block;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--primary-bg-color);
  border-left: 5px solid var(--primary-bg-color-2);
  border-radius: var(--primary-border-radius);
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
}

code {
  display: inline-block;
  margin: 0;
  padding: 3px 6px;
  border: none;
  border-radius: calc(var(--primary-border-radius) / 2);
}

blockquote,
q {
  display: block;
  margin: 1rem 0;
  quotes: none;
  quotes: none;
  font-style: italic;
  font-weight: 500;
  padding: 1rem 1.5rem;
  background-color: var(--primary-bg-color);
  border-left: 5px solid var(--primary-bg-color-2);
  border-radius: var(--primary-border-radius);
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

blockquote p,
q p {
  margin: 0;
}

.blockquote {
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-t-color);
}
@media (max-width: 575px) {
  .blockquote {
    font-size: 1.5rem;
  }
}

figure {
  margin-bottom: 1.5rem;
}

figcaption {
  padding: 1rem 1.5rem;
  border-left: 5px solid var(--primary-bg-color-3);
}

.blockquote-footer {
  padding-top: 0;
  font-size: 1.2rem;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* #endregion Reset */
/*----------------------------------------------
4. General
----------------------------------------------*/
/* #region General */
::-moz-selection {
  background: rgba(166, 175, 189, 0.3);
}

::selection {
  background: rgba(166, 175, 189, 0.3);
}

::-moz-selection {
  background: rgba(166, 175, 189, 0.3);
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

a:not(.btn),
a:link:not(.btn),
a:visited:not(.btn),
a:hover:not(.btn),
a:active:not(.btn) {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.4s ease-out 0s;
}

a:not([href]),
a:not([href]):hover,
a:not([href]) i,
a:not([href]) i:hover {
  color: var(--primary-b-color);
}

p {
  margin: 1.5rem 0;
  font-size: var(--p-size);
  font-weight: var(--p-weight);
  line-height: 1.5;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: 1.2;
  font-family: var(--primary-font);
  color: var(--primary-t-color);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
h1 em {
  display: block;
  font-size: var(--h2-size);
  font-weight: 300;
}

h2 {
  margin: 1.5rem 0;
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: 1.2;
  font-family: var(--primary-font);
  color: var(--primary-t-color);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h3 {
  margin: 1.5rem 0;
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: 1.2;
  font-family: var(--primary-font);
  color: var(--primary-t-color);
}

h4 {
  margin: 1.5rem 0;
  font-size: var(--h4-size);
  font-weight: var(--h4-weight);
  line-height: 1.2;
  font-family: var(--primary-font);
  color: var(--primary-t-color);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h5 {
  margin: 1.5rem 0;
  font-size: var(--h5-size);
  font-weight: var(--h5-weight);
  line-height: 1.2;
  font-family: var(--primary-font);
  color: var(--primary-t-color);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h6 {
  margin: 1.5rem 0;
  font-size: var(--h6-size);
  font-weight: var(--h6-weight);
  line-height: 1.2;
  font-family: var(--primary-font);
  color: var(--primary-t-color);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.odd h1,
.odd h2,
.odd h3,
.odd h4,
.odd h5,
.odd h6 {
  color: var(--white-color);
}

b,
strong {
  font-weight: 600;
}

li {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 10px;
}
table td {
  padding: 0.7rem 0.7rem 0.7rem 0;
}
table th {
  padding: 10px 0;
}

dt {
  margin: 15px 0;
}

address {
  margin-bottom: 1rem;
}

form {
  width: 100%;
}

input,
textarea,
select {
  height: 50px;
  background: no-repeat;
  box-shadow: none;
  padding: 0.7rem 1rem;
  border-color: var(--primary-l-color);
  border-width: 2px;
  border-radius: 2px;
}
input:focus,
textarea:focus,
select:focus {
  background: no-repeat;
  color: inherit;
  outline: none;
  border-color: inherit;
  box-shadow: none;
}

input {
  border-color: var(--primary-p-color);
  color: var(--primary-p-color);
}
input:focus {
  border-color: var(--primary-t-color);
  color: var(--primary-t-color);
}
input[type=radio] {
  height: initial;
}
input[type=submit] {
  border: 1px solid;
  padding: 2.5px 10px;
  display: block;
  width: fit-content;
  max-width: 200px;
  text-align: center;
  color: var(--primary-color);
}
input[type=submit]:hover {
  background-color: var(--primary-color);
  color: var(--primary-b-color);
  border-color: var(--primary-color);
}
input[type=checkbox] {
  width: 20px;
  height: 20px;
}

textarea {
  height: 100px;
  resize: none;
  border-color: var(--primary-p-color);
  color: var(--primary-t-color);
}
textarea:focus {
  border-color: var(--primary-t-color);
  color: var(--primary-t-color);
}

select {
  appearance: none;
  text-indent: 1px;
  text-overflow: "";
  line-height: 1.2;
  border-color: var(--primary-l-color);
  color: var(--primary-t-color);
}
select option {
  color: #2f323a;
}
select:focus {
  border-color: var(--primary-t-color);
  color: var(--primary-t-color);
}

hr {
  margin: 35px 0;
  border-top: 1px dashed var(--primary-l-color);
}

table {
  width: 100%;
}

tr:not(:last-child) {
  border-bottom: 1px solid;
  border-color: var(--primary-l-color);
}

td {
  padding: 10px 0;
}

/* #endregion General */
/*----------------------------------------------
5. Section
----------------------------------------------*/
/* #region Section */
section {
  width: 100%;
  padding: 130px 0;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

main {
  padding: 0;
}

aside {
  padding: 0;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.vh-100 {
  height: 100vh;
}

.vh-75 {
  height: 75vh;
}

.clearfix {
  display: block;
  content: "";
  clear: both;
}

/* #endregion Section */
/*----------------------------------------------
6. Helper Class
----------------------------------------------*/
/* #region Helper Class */
#magic-cursor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 30px;
  height: 30px;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out 0.5s;
}
#magic-cursor #cursor {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  box-sizing: border-box;
  border: 2px solid var(--secondary-p-color);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}
#magic-cursor #cursor.hovered {
  opacity: 0 !important;
  transition: opacity 0.3s;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  overflow: hidden;
  z-index: 99999;
}
.preloader svg {
  position: absolute;
  top: 0;
  height: 110vh;
  width: 100vw;
  fill: var(--secondary-bg-color);
}
.preloader .loader-container .loaded {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 8px;
  z-index: 99;
}
.preloader .loader-container .loaded span {
  animation: loader-animation 1s infinite alternate;
}
.preloader .loader-container .loaded span:nth-child(1) {
  animation-delay: 0s;
}
.preloader .loader-container .loaded span:nth-child(2) {
  animation-delay: 0.1s;
}
.preloader .loader-container .loaded span:nth-child(3) {
  animation-delay: 0.2s;
}
.preloader .loader-container .loaded span:nth-child(4) {
  animation-delay: 0.3s;
}
.preloader .loader-container .loaded span:nth-child(5) {
  animation-delay: 0.4s;
}
.preloader .loader-container .loaded span:nth-child(6) {
  animation-delay: 0.5s;
}
.preloader .loader-container .loaded span:nth-child(7) {
  animation-delay: 0.6s;
}

@keyframes loader-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.avatar-sm {
  height: 3rem;
  width: 3rem;
}

.avatar-md {
  height: 4rem;
  width: 4rem;
}

.avatar-lg {
  height: 5rem;
  width: 5rem;
}

.avatar-max-lg {
  height: 6rem;
  width: 6rem;
}

.intro {
  position: relative;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 40px;
  z-index: 1;
}
.intro .title {
  margin: 0;
}
.intro .btn:hover {
  opacity: 0.6;
}
.intro .flex span {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}
.intro .flex span.line {
  max-width: 6rem;
}
@media (max-width: 575px) {
  .intro .flex span.line {
    max-width: 4rem;
  }
}

.icon-rotate {
  transform: rotate(-45deg);
}

.clip-text, .counter-item .title, .cd-words-wrapper b {
  background-image: linear-gradient(-47deg, #8012ff 0%, var(--primary-t-color-2) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list-group-item {
  margin: 0;
  background: none;
  font-size: 1.2rem;
  padding-right: 0;
  padding-left: 0;
  background-color: transparent;
  color: var(--primary-p-color);
  border-color: var(--primary-l-color);
}
.list-group-item a {
  transition: 0.3s;
}

.odd .list-group-item {
  color: var(--secondary-p-color);
  border-color: #404040;
}

.post-holder {
  list-style: none;
  width: 100%;
  background-color: var(--primary-bg-color);
  border-left: 5px solid var(--primary-bg-color-2);
  border-radius: var(--primary-border-radius);
  padding: 25px;
  margin-top: 35px;
}

.posted-on a:not(.btn) {
  font-weight: 600;
  color: var(--primary-t-color);
}
.posted-on a:not(.btn):hover {
  opacity: 0.6;
}

.list-group .list-group-item .icon {
  margin-right: 0.5rem;
  line-height: 1.5;
  color: var(--primary-p-color);
}

.odd .list-group-item .icon {
  color: var(--secondary-p-color);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white-color);
  line-height: 1;
  text-align: center;
  padding: 1.2rem 2rem;
  background-color: var(--primary-t-color);
  border-color: var(--primary-t-color);
  border-radius: 100px;
  outline: 0 none;
  cursor: pointer;
  z-index: 1;
  transition: all var(--transition-function) var(--transition-duration);
}
.btn:hover, .btn:focus, .btn:active {
  background-color: var(--primary-t-color);
  border-color: var(--primary-t-color);
  opacity: 0.9;
}
.btn.magnetic-button {
  overflow: hidden;
  color: #ffffff;
  z-index: 0;
}
.btn.magnetic-button .icon {
  font-size: 1.5rem;
}
.btn.magnetic-button span {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #ffffff;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.btn.magnetic-button:hover {
  color: var(--primary-t-color);
}
.btn.magnetic-button:hover span {
  width: 225%;
  height: 562.5px;
}
.btn.magnetic-button:active {
  color: var(--primary-t-color);
}
.btn.btn-outline {
  background-color: transparent;
  color: var(--primary-t-color);
}
.btn.btn-outline .icon-arrow:not(:hover) {
  -webkit-filter: none;
  filter: none;
}
.btn.btn-outline span {
  background-color: var(--primary-t-color);
}
.btn.magnetic-button.btn-outline:hover {
  color: var(--white-color);
}
.btn.content-btn {
  padding: 0.875rem 1.5rem;
}

.btn-smaller {
  font-size: 0.9rem;
  padding: 12px 18px;
}

.button-group {
  margin-top: 30px;
}
.button-group a {
  margin-right: 10px;
}
.button-group a:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .button-group a {
    margin-top: 0;
    margin-right: 5px;
  }
  .button-group a:last-child {
    margin-top: 0.5rem;
  }
  .button-group a .btn {
    padding: 12px 20px;
  }
}

/* #endregion Helper Class */
/*----------------------------------------------
7. Header
----------------------------------------------*/
/* #region Header */
header {
  position: relative;
  z-index: 999;
  background-color: #fff;
}
header .navbar-expand {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  padding: 20px 25px;
  pointer-events: initial;
}
header .navbar-expand .navbar-brand {
  padding: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 0;
  color: var(--top-nav-item-color);
}
header .navbar-expand .navbar-brand i {
  font-style: initial;
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--primary-color);
}
header .navbar-expand .navbar-brand img {
  height: var(--nav-brand-height);
}
header .navbar-expand .navbar-nav {
  display: inline-block;
}
header .navbar-expand .navbar-nav .nav-item {
  margin: 0;
  display: inline-flex;
  vertical-align: middle;
}
header .navbar-expand .navbar-nav .nav-item .nav-link {
  position: relative;
  padding-right: 1rem;
  padding-left: 1rem;
  font-weight: 600;
  color: var(--top-nav-item-color);
}
header .navbar-expand .navbar-nav .nav-item .nav-link::after {
  position: absolute;
  content: "";
  bottom: -0.5em;
  left: 50%;
  display: block;
  width: calc(clamp(16px, 1.2vw, 19px) / 2.75);
  height: calc(clamp(16px, 1.2vw, 19px) / 2.75);
  border-radius: 50%;
  background: var(--top-nav-item-color);
  transform: translate(-50%, -50%) scale(0) rotate(0.001deg);
  transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  will-change: transform;
}
header .navbar-expand .navbar-nav .nav-item .nav-link:hover, header .navbar-expand .navbar-nav .nav-item .nav-link.active {
  opacity: 0.6;
}
header .navbar-expand .navbar-nav .nav-item .nav-link:hover::after {
  transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
}
header .navbar-expand .navbar-nav .dropdown-menu .nav-link.title {
  font-weight: 600;
  color: var(--primary-t-color);
  opacity: 0.8;
}
header .navbar-expand .navbar-nav .dropdown-menu .nav-link:not(.btn) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  color: var(--nav-item-color);
}
header .navbar-expand .navbar-nav .dropdown-menu .nav-link:not(.btn):not(.title):hover {
  color: var(--primary-color);
}
header .navbar-expand .navbar-nav i.icon-arrow-down {
  position: relative;
  top: 1.5px;
  margin: 0 0 0 0.3rem;
  font-size: 12px;
  font-weight: 600;
}
header .navbar-expand .navbar-nav i.icon-arrow-right {
  position: relative;
  left: 5px;
  top: 0;
  margin: 0 0 0 0.3rem;
  font-size: 10px;
  font-weight: 600;
}
header .navbar-expand .navbar-nav .icons i {
  font-weight: 400;
}
header .navbar-expand .navbar-brand {
  color: var(--top-nav-item-color);
}
header .navbar-expand .dropdown .dropdown-menu {
  top: 100%;
  background-color: var(--primary-bg-color-2);
  width: max-content;
  min-width: 14.375rem;
  display: block;
  padding: 0.625rem 0;
  visibility: hidden;
  opacity: 0;
  border: none;
  border-radius: 2px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
}
header .navbar-expand .dropdown .dropdown-menu .dropdown-menu {
  position: absolute;
  top: -8px;
  left: 100%;
}
header .navbar-expand .dropdown .dropdown-item.active, header .navbar-expand .dropdown .dropdown-item:hover, header .navbar-expand .dropdown .dropdown-item:active {
  color: inherit;
  text-decoration: none;
  background-color: inherit;
  box-shadow: none;
  outline: none;
}
header .navbar-expand .dropdown:hover > .dropdown-menu {
  visibility: unset;
  opacity: 1;
  margin: 0;
  transform: translateY(0px);
  transition-timing-function: ease;
  transition-duration: 0.4s;
  transition-property: opacity, transform;
}

.navbar-holder {
  position: relative;
  z-index: -100;
  min-height: auto;
  pointer-events: none;
  background-color: var(--section-1-bg-color);
}

.menu .navbar-nav {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.menu .navbar-nav i.icon-arrow-down {
  font-size: 18px;
}
.menu .nav-item {
  margin: 0;
}
.menu .nav-item .item-count {
  position: absolute;
  top: 10px;
  left: calc(100% + 5px);
  font-size: 1.5rem;
  color: var(--secondary-p-color);
  visibility: hidden;
}
.menu .nav-link {
  position: relative;
}
.menu .nav-link:not(.btn) {
  font-size: 3rem;
  font-weight: 500;
  color: var(--white-color);
  display: table-cell;
  padding: 10px 5px;
}
.menu .nav-link:not(.btn):hover {
  opacity: 0.6;
}
.menu .nav-link.active:not(.btn) {
  opacity: 0.6;
}
.menu .nav-link.active .item-count {
  visibility: visible;
}
.menu .dropdown .dropdown-menu {
  display: none;
  width: 100%;
  visibility: visible;
  opacity: 1;
  background: none;
  box-shadow: none;
  border: none;
  text-align: center;
  padding: 0 0 0 20px;
  margin: 0 0 15px;
  list-style: none;
  color: var(--secondary-p-color);
}
.menu .dropdown .dropdown-menu .dropdown-menu {
  position: relative;
  top: initial;
  left: initial;
}
.menu .dropdown .dropdown-menu.show {
  display: block;
}
.menu .dropdown .dropdown-menu .left,
.menu .dropdown .dropdown-menu .right {
  width: 50%;
}
.menu .dropdown .dropdown-menu .nav-link.title {
  font-weight: 600;
  color: var(--primary-t-color);
  border: none;
  opacity: 0.8;
}
.menu .dropdown .dropdown-menu .nav-link:hover {
  color: var(--primary-color);
}
.menu .dropdown .dropdown-menu .nav-item .nav-link {
  font-size: 1rem;
  font-weight: 400;
  background: none;
  color: var(--primary-p-color);
  display: flex;
  justify-content: space-between;
  width: calc(100% - 12px);
  vertical-align: top;
  padding: 0;
  margin: 0 5px 16px;
  border-radius: 4px;
  text-align: left;
}
.menu .dropdown:first-child {
  margin-top: 0;
}
.menu .dropdown-menu .dropdown > .nav-link:first-child {
  font-size: 1rem;
  font-weight: 600;
}

.socials .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0.25rem;
  padding-left: 0;
  color: var(--primary-t-color);
}
.socials .nav-link::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  bottom: 5px;
  background-color: var(--primary-t-color);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.socials .nav-link:hover::after {
  width: calc(100% - 1.2em);
  visibility: visible;
  opacity: 1;
}
.socials .nav-link .icon {
  margin-left: 0.2em;
  font-size: 1.3rem;
  color: var(--secondary-p-color);
}

.comments.socials .nav-link:hover::after {
  width: 100%;
}

.offcanvas-wrapper {
  position: fixed;
  top: 21%;
  right: 3%;
  z-index: 2;
}
.offcanvas-wrapper .offcanvas {
  background-color: var(--primary-t-color);
  transition-property: transform, rotate;
}
.offcanvas-wrapper .offcanvas.offcanvas-end {
  width: auto;
  border: none;
  transform: translate(calc(100% + 6vw), 0) rotate(0.001deg);
}
@media (max-width: 576px) {
  .offcanvas-wrapper .offcanvas.offcanvas-end {
    width: 100%;
  }
}
.offcanvas-wrapper .offcanvas.show:not(.hiding), .offcanvas-wrapper .offcanvas.showing {
  transform: translate(0, 0) rotate(0.001deg);
}
.offcanvas-wrapper .offcanvas .fixed-nav-rounded-div {
  position: absolute;
  top: 0;
  left: 1px;
  z-index: -1;
  height: 100%;
  transform: translateX(-100%);
}
.offcanvas-wrapper .offcanvas .fixed-nav-rounded-div .rounded-div-wrap {
  width: 6vw;
  height: 100%;
  transition: var(--animation-slow);
  transition: all 0.85s cubic-bezier(0.7, 0, 0.2, 1);
  will-change: width;
}
.offcanvas-wrapper .offcanvas .fixed-nav-rounded-div .rounded-div-wrap .rounded-div {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: 775%;
  height: 150%;
  background: var(--primary-t-color);
  border-radius: 50%;
  transform: translate(-6.5%, -50%);
}
.offcanvas-wrapper .offcanvas.show:not(.hiding) .fixed-nav-rounded-div .rounded-div-wrap, .offcanvas-wrapper .offcanvas.showing .fixed-nav-rounded-div .rounded-div-wrap {
  width: 0;
}
.offcanvas-wrapper .offcanvas .offcanvas-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 35vw;
  height: 100%;
  padding: 12vh 7.5vw;
}
@media (max-width: 575px) {
  .offcanvas-wrapper .offcanvas .offcanvas-content {
    padding: 8vh 7.5vw;
  }
}
.offcanvas-wrapper .offcanvas .offcanvas-content .offcanvas-header {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.offcanvas-wrapper .offcanvas .offcanvas-content .offcanvas-title {
  color: var(--secondary-p-color);
}
.offcanvas-wrapper .offcanvas .offcanvas-content .offcanvas-body {
  overflow: hidden;
}
.offcanvas-wrapper .offcanvas .offcanvas-content hr {
  margin: 20px 0;
  border-style: solid;
}
.offcanvas-wrapper .offcanvas .offcanvas-content .socials .nav-link {
  color: var(--white-color);
}
.offcanvas-wrapper .offcanvas .offcanvas-content .socials .nav-link::after {
  background-color: var(--white-color);
}

.navbar-toggler {
  position: fixed;
  top: 4em;
  right: 4em;
  z-index: 9999;
  transform: translateY(0%) scale(0) rotate(0.001deg);
  transition: transform 0.4s cubic-bezier(0.36, 0, 0.66, 0);
  cursor: pointer;
}
.navbar-toggler .navbar-header,
.navbar-toggler .content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
}
.navbar-toggler .navbar-header {
  border: 0;
  background-color: var(--primary-t-color);
  transition: background-color 0.25s cubic-bezier(0.36, 0, 0.66, 0), box-shadow 0.25s cubic-bezier(0.36, 0, 0.66, 0);
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.2);
  box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.2);
}
.navbar-toggler .navbar-header .content {
  position: relative;
}
.navbar-toggler .navbar-header .content .toggler-icon {
  position: absolute;
  width: 28%;
  height: 8%;
  opacity: 1;
}
.navbar-toggler .navbar-header .content .toggler-icon::before, .navbar-toggler .navbar-header .content .toggler-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  height: 1px;
  width: 100%;
  transform: translate(-50%, -50%) rotate(0.001deg);
  background: var(--white-color);
  transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
.navbar-toggler .navbar-header .content .toggler-icon::before {
  top: 0;
  transform: translate(-50%, -50%);
}
.navbar-toggler .navbar-header .content .toggler-icon::after {
  top: 100%;
  transform: translate(-50%, -50%);
}
.navbar-toggler .navbar-header .content .title {
  color: var(--white-color);
  opacity: 0;
}
.navbar-toggler.active .navbar-header {
  background-color: var(--white-color);
}
.navbar-toggler.active .navbar-header .content .toggler-icon::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--primary-t-color);
}
.navbar-toggler.active .navbar-header .content .toggler-icon::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--primary-t-color);
}
.navbar-toggler.scrolled {
  transform: translateY(0%) scale(1) rotate(0.001deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.5, 0.64, 1);
}

@media (max-width: 575px) {
  .navbar .navbar-toggler {
    position: unset;
    display: block !important;
    padding: 0;
    border: none;
  }
  .navbar .navbar-toggler.scrolled:not(.active) .navbar-header {
    background-color: transparent;
    box-shadow: none;
  }
  .navbar .navbar-toggler:not(.active) .navbar-header .content .toggler-icon {
    visibility: hidden;
  }
  .navbar .navbar-toggler .navbar-header .content .toggler-icon::before,
  .navbar .navbar-toggler .navbar-header .content .toggler-icon::after {
    transition: none;
  }
  .navbar .navbar-toggler.scrolled {
    transform: translateY(0%) scale(1) rotate(0.001deg);
    transition: transform 0.4s cubic-bezier(0.36, 0, 0.66, 0);
  }
  .navbar .navbar-toggler:not(.active) .navbar-header .content .title {
    font-weight: 600;
    color: var(--primary-p-color);
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .navbar-toggler {
    top: 1em;
    right: 1em;
  }
  .navbar-toggler .navbar-header,
  .navbar-toggler .content {
    width: 4rem;
    height: 4rem;
  }
  .menu .nav-link:not(.btn) {
    padding: 5px;
    font-size: 2rem;
  }
}
/* #endregion Header */
/*----------------------------------------------
8. Feature
----------------------------------------------*/
/* #region Feature */
.icons {
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
}

.items .item {
  margin-top: 30px;
}
.items .item.item-card {
  padding: 40px;
  background-color: var(--primary-bg-color);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1rem;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  margin-top: 50px;
  position: relative;
}

.swiper-pagination {
  font-weight: 500;
}

.swiper-pagination-current {
  color: var(--primary-t-color);
}

.swiper-pagination-bullet {
  width: 40px !important;
  height: 5px !important;
  border-radius: 0 !important;
  background-color: var(--primary-p-color);
  border: none !important;
  opacity: 0.25 !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  opacity: 1 !important;
}

.cd-words-wrapper {
  position: relative;
  display: inline-block;
  text-align: left;
}
.cd-words-wrapper b {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  white-space: nowrap;
}
.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}
.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.clip span {
  display: inline-block;
  color: var(--primary-t-color);
}
.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}
.cd-headline.clip .cd-words-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: var(--secondary-p-color);
}
.cd-headline.clip b {
  opacity: 0;
}
.cd-headline.clip b.is-visible {
  opacity: 1;
}

.social-icons .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease 0s;
}
.social-icons svg {
  transition: all 0.3s ease 0s;
}
.social-icons > a {
  margin: 5px;
  width: 45px;
  height: 45px;
  background-color: #1c1c1c;
  color: var(--white-color) !important;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease 0s;
}
.social-icons > a:hover .icon:first-child {
  margin-top: -45px;
}

.sub-title {
  margin-top: 0;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .sub-title {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section.marketer {
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .hero-section.marketer {
    background-size: 150vh;
    background-position: top left;
  }
}
.hero-section.photographer {
  background-color: #1e212a;
  background-position: top center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-section.photographer .title {
  font-size: 8rem;
}
@media (max-width: 575px) {
  .hero-section.photographer .title {
    font-size: 3.5rem;
  }
}
.hero-section.photographer .title span {
  font-weight: 600;
  color: #f778ba;
}
.hero-section.photographer .title .small {
  font-size: 0.2em;
}
@media (max-width: 575px) {
  .hero-section.photographer .title .small {
    font-size: 0.5em;
  }
}
.hero-section .intro-text {
  font-size: 20px;
  font-weight: 500;
}
.hero-section h1 span {
  color: var(--primary-t-color-2);
}
.hero-section .hero-content .content .btn {
  padding: 1.6rem 3.5rem;
  font-size: 1.2rem;
}
.hero-section .hero-content .content .sub-title {
  max-width: 50%;
}
@media (max-width: 767px) {
  .hero-section .hero-content .content .sub-title {
    max-width: 100%;
  }
}
.hero-section .hero-thumb {
  border-radius: 50rem;
  overflow: hidden;
}
.hero-section .hero-bg {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  inset: 0%;
  z-index: -1;
}
.hero-section .hero-bg .circle-1,
.hero-section .hero-bg .circle-2 {
  position: absolute;
  height: 100vmax;
  width: 100vmax;
  object-fit: cover;
}
.hero-section .hero-bg .circle-1 {
  -webkit-animation: zoom 20s infinite linear;
  animation: zoom 20s infinite linear;
}
.hero-section .hero-bg .circle-2 {
  -webkit-animation: spinner 20s infinite linear;
  animation: spinner 20s infinite linear;
}

.breadcrumb-section .heading .title {
  display: flex;
  align-items: center;
  grid-column-gap: 1.5rem;
}
.breadcrumb-section .heading .title img {
  height: 90px;
  border-radius: 50px;
}
.breadcrumb-section .title {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .breadcrumb-section .sub-title {
    width: 100% !important;
  }
}

.progress {
  position: relative;
  height: 10px;
  overflow: visible;
}
.progress .title {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-t-color);
}
.progress .progress-bar {
  position: relative;
  width: 0%;
  background-color: var(--primary-t-color);
  border-radius: 10px;
  opacity: 0;
  overflow: visible;
  transition: all var(--transition-function) 0.5s;
}
.progress .progress-bar span {
  position: absolute;
  bottom: calc(100% + 14px);
  right: -20px;
  padding: 8px 10px;
  background-color: var(--primary-t-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.5s;
}
.progress .progress-bar span::before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  background-color: var(--primary-t-color);
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

@keyframes zoom {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateZ(-360deg);
    transform: translate3d(0px, 0px, 0px) rotateZ(-360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateZ(-360deg);
    transform: translate3d(0px, 0px, 0px) rotateZ(-360deg);
  }
}
.counter-area .items {
  padding: 2rem;
  border-radius: 1.5rem;
}
@media (max-width: 575px) {
  .counter-area .items {
    flex-direction: column;
    grid-row-gap: 20px;
    align-items: center;
  }
}

.counter-item .title {
  font-weight: 600;
}
.counter-item span {
  font-size: 1.2rem;
  font-weight: 500;
}

.photography .bg-smoke {
  background-color: #1e212a;
}

.bg-content {
  position: relative;
  z-index: 1;
}
.bg-content::before, .bg-content::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #fff;
  top: 0;
  z-index: -1;
}
.bg-content::before {
  right: 100%;
}
.bg-content::after {
  left: 0;
}

.services .item .service-content {
  position: relative;
  padding: 2.5rem;
  border-radius: 1.5rem;
}
.services .item .service-content .service-icon {
  margin: 2.5rem 0;
}
.services .item .service-content .item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.services.photography .service-list .list-item {
  margin: 0.3rem 0;
  font-size: 1.1rem;
  font-weight: 500;
}
.services.photography .service-list .list-item .icon {
  margin-right: 0.2em;
  color: #f778ba;
}
.services.photography .awards .list-group-item::after {
  content: none;
}
.services.photography .awards .list-group-item:hover .title,
.services.photography .awards .list-group-item:hover span:not(.icon) {
  color: inherit;
}

.skills .item .icon {
  font-size: 2rem;
  color: var(--primary-b-color);
}
.skills .item small {
  font-size: 0.875em;
}
.skills .item span {
  font-weight: 600;
}
.skills hr {
  margin: 100px 0;
  border-top: 1px solid var(--primary-b-color);
}
@media (max-width: 575px) {
  .skills hr {
    margin: 90px 0;
  }
}

.filter-menu {
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .filter-menu {
    margin-bottom: 0;
  }
}
.filter-menu .input-item {
  position: relative;
}
.filter-menu .input-item::before {
  position: absolute;
  content: "/";
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  color: var(--primary-b-color);
}
.filter-menu .input-item:last-of-type::before {
  content: none;
}
.filter-menu .input-item .btn {
  padding: 1rem 2rem;
  background: inherit;
  border: none;
  color: var(--primary-p-color);
  font-weight: 600 !important;
  transition: all var(--transition-function) var(--transition-duration);
  opacity: 0.85;
}
@media (max-width: 575px) {
  .filter-menu .input-item .btn {
    padding: 0.8rem 1.25rem;
  }
}
.filter-menu .input-item .btn:hover {
  opacity: 0.75;
}
.filter-menu .input-item label::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  top: calc(100% - 0.5rem);
  left: 50%;
  background-color: var(--primary-t-color);
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-function) var(--transition-duration);
}
.filter-menu .input-item .btn-check:checked + label::after {
  width: calc(100% - 4rem);
  visibility: visible;
  opacity: 1;
}
@media (max-width: 575px) {
  .filter-menu .input-item .btn-check:checked + label::after {
    width: calc(100% - 2.5rem);
  }
}
.filter-menu .input-item .count {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  font-family: var(--primary-font);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 0;
  transition: color var(--transition-function) var(--transition-duration);
  opacity: 0.85;
}
@media (max-width: 575px) {
  .filter-menu .input-item .count {
    right: 0.2rem;
  }
}
.filter-menu .input-item:has(.btn-check:checked + label) .count {
  color: var(--primary-t-color);
}
.filter-menu .btn-check:checked + .btn,
.filter-menu .btn.active, .filter-menu .btn.show,
.filter-menu .btn:first-child:active,
.filter-menu :not(.btn-check) + .btn:active {
  background-color: transparent;
  color: var(--primary-t-color);
  opacity: 1;
}

.services .item .item-count {
  margin-right: 1rem;
  font-size: var(--h2-size);
  color: var(--primary-t-color);
  writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-text-stroke: 1px;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stack-wrapper {
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
  position: relative;
}
.stack-wrapper .stack-item {
  position: sticky;
  top: 5rem;
}
@media (max-width: 991px) {
  .stack-wrapper .stack-item {
    top: 4rem;
    height: 500px;
  }
}
@media (max-width: 575px) {
  .stack-wrapper .stack-item {
    top: 3rem;
    height: 60vh;
  }
}

.content-round {
  background-color: var(--primary-bg-color);
}
.content-round.odd {
  background-color: var(--secondary-bg-color);
}

.rounded-div-wrapper {
  z-index: 1;
  height: 100px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  transform: translate(0, -1px);
}

.rounded-div {
  border-radius: 50%;
  width: 150%;
  height: 750%;
  position: absolute;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -86.6%);
}

.rounded-div-background {
  background-color: #fff;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.primary-bg {
  background-color: var(--primary-bg-color);
}
.primary-bg .list-group-item {
  border-color: var(--secondary-l-color);
}

.bg-purple {
  background-color: #f8f4ff;
}

.badge {
  display: inline-flex;
  gap: 0.25em;
  padding: 0.5rem 0.75rem;
  border-radius: 50rem;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--primary-p-color);
  transition: all var(--transition-function) var(--transition-duration);
}
.badge.small {
  padding: 0.35rem 0.65rem;
}
.badge.outlined {
  border: 2px solid currentColor;
  color: currentColor;
}
.badge:not(.outlined) {
  background-color: var(--primary-bg-color-2);
}
.badge:hover {
  opacity: 0.6;
}

.widget .badge {
  margin: 5px 2.5px;
}

.card {
  background-color: transparent;
  border: none;
  border-radius: var(--primary-border-radius);
}
.card .image-holder {
  position: relative;
  border-radius: var(--primary-border-radius);
  overflow: hidden;
}
.card .card-overlay {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  display: flex;
  padding: 3vh;
  color: var(--white-color);
}
.card .card-overlay.top {
  top: 0;
  bottom: auto;
  background: 17, 16, 19;
  background: linear-gradient(180deg, rgba(17, 16, 19, 0.5) 0%, rgba(17, 16, 19, 0) 100%);
}
.card .card-overlay.fade-up {
  transform: translateY(6%);
  opacity: 0;
  transition: all var(--transition-function) var(--transition-duration);
}
.card .card-overlay.fade-down {
  transform: translateY(-6%);
  opacity: 0;
  transition: all var(--transition-function) var(--transition-duration);
}
.card .card-overlay:not(.top) {
  bottom: 0;
}
.card:hover .card-overlay.fade-up {
  transform: none;
  opacity: 1;
}
.card:hover .card-overlay.fade-down {
  transform: none;
  opacity: 1;
}

.portfolio-item .card-thumb {
  display: block;
  overflow: hidden;
}
.portfolio-item .card-thumb img {
  min-height: 550px;
  object-fit: cover;
  transition: all var(--transition-function) var(--transition-duration);
}
@media (max-width: 575px) {
  .portfolio-item .card-thumb img {
    min-height: 60vh;
  }
}
.portfolio-item .show-project {
  position: relative;
  overflow: hidden;
}
.portfolio-item .show-project .card-terms {
  transition: all var(--transition-function) var(--transition-duration);
}
.portfolio-item .show-project .project-link {
  position: absolute;
  opacity: 0;
  left: 0;
  transition: all var(--transition-function) var(--transition-duration);
}
.portfolio-item .show-project .project-link a {
  color: var(--primary-p-color);
  font-weight: 600;
}
.portfolio-item .show-project .project-link a::after {
  position: absolute;
  content: "";
  top: 48%;
  right: -0.5rem;
  height: 2px;
  width: 3rem;
  background-color: currentColor;
  transform: translate(100%, 50%);
}
.portfolio-item .card-meta .terms:first-child {
  margin-left: 0;
}
.portfolio-item a.card-btn {
  display: flex;
  padding: 0.8rem;
  background-color: var(--white-color);
  border-radius: 50rem;
  color: var(--primary-t-color);
}
.portfolio-item.scale:hover .card-thumb img {
  transform: var(--transform-scale);
}
.portfolio-item.has-shadow .card-thumb::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 85%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 7, 18, 0)), to(rgba(3, 7, 18, 0.45)));
  background: linear-gradient(180deg, rgba(3, 7, 18, 0), rgba(3, 7, 18, 0.45));
  -webkit-transition: opacity var(--transition-function) var(--transition-duration);
  transition: opacity var(--transition-function) var(--transition-duration);
}
.portfolio-item:hover .card-terms {
  transform: translate(0, -100%);
  opacity: 0;
}
.portfolio-item:hover .project-link {
  transform: translate(0, -100%);
  opacity: 1;
}
.portfolio-item.layout-2 .card-overlay {
  color: var(--white-color);
}
.portfolio-item.layout-2 .card-overlay .title,
.portfolio-item.layout-2 .card-overlay .badge {
  color: var(--white-color);
}
.portfolio-item.layout-2 .card-overlay .show-project .project-link a {
  color: var(--white-color);
}
.portfolio-item.layout-2 .card-overlay:not(.top) {
  background: 17, 16, 19;
  background: linear-gradient(360deg, rgba(17, 16, 19, 0.5) 0%, rgba(17, 16, 19, 0) 100%);
}

.portfolio-meta {
  font-weight: 500;
}
.portfolio-meta .date {
  position: relative;
}
.portfolio-meta .date::before {
  content: "\f309";
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  font-family: bootstrap-icons !important;
  font-size: 1em;
  font-weight: 600 !important;
}
.portfolio-meta .title {
  font-weight: 600;
}
.portfolio-meta .socials .nav-link {
  font-weight: 600;
}

.portfolio-content {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .portfolio-content {
    margin-top: 2rem;
  }
}

.portfolio-terms a.terms {
  color: var(--primary-p-color);
}
.portfolio-terms a.terms::after {
  content: ",";
}
.portfolio-terms a.terms:last-child::after {
  content: none;
}

@media (max-width: 1199px) {
  .stack-item .card-thumb {
    height: 100%;
  }
}
.stack-item .card-thumb img {
  width: 100%;
}
@media (max-width: 1199px) {
  .stack-item .card-thumb img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.blog-item .card-thumb {
  display: block;
  overflow: hidden;
}
.blog-item .card-thumb img {
  object-fit: cover;
  transition: all var(--transition-function) var(--transition-duration);
}
.blog-item .card-content .post-meta span,
.blog-item .card-overlay .post-meta span {
  font-size: 1.1rem;
  font-weight: 500;
}
.blog-item .card-content .post-meta span:not(.post-author),
.blog-item .card-overlay .post-meta span:not(.post-author) {
  opacity: 0.85;
}
.blog-item .card-content .post-date,
.blog-item .card-overlay .post-date {
  font-size: 1.1rem;
  font-weight: 500;
}
.blog-item .card-content .title,
.blog-item .card-overlay .title {
  margin: 16px 0;
  letter-spacing: -0.02em;
}
.blog-item .card-content .title a,
.blog-item .card-overlay .title a {
  font-size: 1.5rem;
  color: var(--primary-t-color);
  display: inline;
  padding-bottom: 5px;
  background-image: linear-gradient(to right, var(--primary-t-color) 0%, var(--primary-t-color) 100%);
  background-size: 100% 5%;
  background-repeat: no-repeat;
  background-position: left 80%;
  transition: all 0.4s ease;
}
.blog-item:hover .card-content .title a,
.blog-item:hover .card-overlay .title a {
  background-size: 0% 5%;
}
.blog-item.scale:hover .card-thumb img {
  transform: var(--transform-scale);
}
.blog-item.has-shadow .card-thumb::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 85%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 7, 18, 0)), to(rgba(3, 7, 18, 0.45)));
  background: linear-gradient(180deg, rgba(3, 7, 18, 0), rgba(3, 7, 18, 0.45));
  -webkit-transition: opacity var(--transition-function) var(--transition-duration);
  transition: opacity var(--transition-function) var(--transition-duration);
}
.blog-item.layout-2 .card-overlay {
  color: var(--white-color);
}
.blog-item.layout-2 .card-overlay .title a {
  background-image: linear-gradient(to right, var(--white-color) 0%, var(--white-color) 100%);
  color: var(--white-color);
}
.blog-item.layout-2 .card-overlay:not(.top) {
  background: 17, 16, 19;
  background: linear-gradient(360deg, rgba(17, 16, 19, 0.5) 0%, rgba(17, 16, 19, 0) 100%);
}

.service-table {
  padding: 2rem;
  background-color: #272c3c;
  border-radius: 0;
  color: var(--white-color);
}
.service-table span,
.service-table i {
  font-size: 1.2rem;
  color: var(--secondary-p-color);
}
.service-table span.service-icon,
.service-table i.service-icon {
  font-size: 2.5rem;
  color: var(--white-color);
}
.service-table span.sub-title,
.service-table i.sub-title {
  font-weight: 500;
  color: #f778ba;
}
.service-table .title {
  color: var(--white-color);
}
.service-table .service-list li {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--secondary-p-color);
}
.service-table .service-list li .icon {
  color: #f778ba;
}

.flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  grid-column-gap: 1.5rem;
  max-width: 930px;
}
.flex .line {
  height: 2px;
  flex: 1;
  background-color: var(--primary-l-color);
}
.flex img {
  height: 90px;
  border-radius: 50px;
}

@media (min-width: 992px) {
  .w-60 {
    max-width: 60vw;
  }
}

.animated-image-container {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1100px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .animated-image-container {
    height: 80vw;
    min-height: 0;
    max-height: none;
  }
}
.animated-image-container .animated-image {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.reveal-img {
  position: relative;
  visibility: hidden;
  overflow: hidden;
}
.reveal-img img {
  object-fit: cover;
  transform-origin: left;
}

.cta:not(.layout-2) .cta-text {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}
@media (max-width: 768px) {
  .cta:not(.layout-2) .cta-text {
    flex-direction: column;
  }
}
.cta:not(.layout-2) .cta-text .line-item {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  color: var(--primary-t-color-2);
  font-family: var(--primary-font);
}
@media (max-width: 991px) {
  .cta:not(.layout-2) .cta-text .line-item {
    font-size: 2.5rem;
  }
}
.cta:not(.layout-2) .cta-text .line {
  height: 1px;
  flex: 1;
  background-color: var(--primary-l-color);
}
@media (max-width: 768px) {
  .cta:not(.layout-2) .cta-text .line {
    flex: none;
    width: 1px;
    height: clamp(2.5rem, 2.072rem + 2.14vw, 4rem);
  }
}
@media (max-width: 575px) {
  .cta:not(.layout-2) {
    padding: 60px 0;
  }
}
.cta.layout-2 .sub-title {
  font-size: 20px;
  font-weight: 500;
}
.cta.layout-2 .title span {
  color: var(--primary-t-color-2);
}

.text-marquee {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  overflow: hidden;
}
.text-marquee .content {
  display: flex;
  white-space: nowrap;
  font-size: 0;
  overflow: hidden;
}
.text-marquee .marquee-text {
  display: flex;
  align-items: baseline;
}
.text-marquee .marquee-text.text-original {
  animation: brilio-normal-text-marquee 20s linear infinite;
}
.text-marquee .marquee-text.text-copy {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateX(100%) translateZ(0);
  animation: brilio-normal-text-marquee-copy 20s linear infinite;
}
.text-marquee .marquee-text-item {
  font-size: 100px;
  line-height: 1.1em;
  color: var(--primary-t-color);
  padding-right: 0.5em;
  padding-left: 0.5em;
}
.text-marquee .icon {
  display: flex;
  font-size: 40px;
  color: var(--primary-t-color);
  align-self: center;
  align-items: center;
}
.text-marquee.odd .marquee-text-item {
  color: var(--white-color);
}
.text-marquee.odd .icon {
  color: #f778ba;
}

@keyframes brilio-normal-text-marquee {
  0% {
    transform: translateX(0) translateZ(0);
  }
  100% {
    transform: translateX(-100%) translateZ(0);
  }
}
@keyframes brilio-normal-text-marquee-copy {
  0% {
    transform: translateX(100%) translateZ(0);
  }
  100% {
    transform: translateX(0) translateZ(0);
  }
}
.marquee {
  padding: 100px 10px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
  overflow: hidden;
}
@media (max-width: 575px) {
  .marquee {
    padding: 90px 10px;
  }
}
.marquee ul {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: marquee 50s infinite linear;
}
.marquee ul .item {
  flex: none;
  width: 230px;
  height: 230px;
}
.marquee ul .item .marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: var(--primary-bg-color);
}
.marquee ul .item .marquee-item .marquee-content {
  display: block;
  width: 140px;
  height: 140px;
}
.marquee ul .item:nth-child(even) .marquee-item {
  transform: rotate(4deg);
}
.marquee ul .item:nth-child(odd) .marquee-item {
  transform: rotate(-4deg);
}

@keyframes marquee {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-3918px);
  }
}
@media (min-width: 768px) {
  .testimonial {
    border: none !important;
  }
}

.testimonial.marketer {
  padding: 2.5rem;
}
@media (max-width: 575px) {
  .testimonial.marketer {
    padding: 2rem;
  }
}
.testimonial.marketer .icon span {
  font-size: 4.5rem;
}
.testimonial.marketer .icon span.icon-1 {
  color: #7fcda3;
}
.testimonial.marketer .icon span.icon-2 {
  color: #fd8f77;
}
.testimonial.marketer .icon span.icon-3 {
  color: #9d70ff;
}

.testimonial-thumb img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.client-name {
  font-weight: 600;
}

.client-position {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-b-color);
}
@media (max-width: 575px) {
  .client-position {
    font-size: 16px;
  }
}

.testimonial-content p {
  font-size: 1.5rem;
  color: var(--primary-t-color);
}
@media (max-width: 575px) {
  .testimonial-content p {
    font-size: 1.3rem;
  }
}

.experiences .item {
  border-left: 1px solid var(--secondary-l-color);
}
.experiences .item .content {
  padding-left: 2vw;
  padding-right: 2vw;
}
.experiences .content .count {
  font-size: 0.9em;
  font-weight: 600;
}

.sticky .intro {
  position: sticky;
  top: 130px;
}

.awards .list-group-item {
  position: relative;
  z-index: 1;
  padding: 2rem 0.5rem;
}
.awards .list-group-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  background-color: var(--primary-t-color);
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.awards .list-group-item .content,
.awards .list-group-item .title,
.awards .list-group-item span {
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.awards .list-group-item:hover .content {
  transform: translateX(1rem);
}
.awards .list-group-item:hover .title {
  color: var(--white-color);
}
.awards .list-group-item:hover span {
  color: var(--secondary-t-color);
}
.awards .list-group-item:hover .award-btn {
  transform: translateX(-1rem);
}
.awards .list-group-item:hover .award-btn i {
  color: var(--white-color);
}
.awards .list-group-item:hover::after {
  height: 100%;
}
@media (max-width: 575px) {
  .awards .list-group-item {
    padding: 1.5rem 0.5rem;
  }
}
.awards a.award-btn {
  position: absolute;
  top: 20%;
  right: 0;
  display: flex;
  padding: 0.8rem;
  color: var(--primary-t-color);
}
.awards a.award-btn .icon {
  font-size: 2rem;
  line-height: 1;
}
.awards .logo img {
  width: 120px;
  transition: all var(--transition-function) var(--transition-duration);
}
.awards .logo:hover img {
  transform: var(--transform-scale);
}

.interactive-link,
.interactive-btn {
  position: fixed;
  top: 0%;
  left: 0%;
  z-index: 26;
  display: block;
  width: 0;
  height: 0;
  background: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -60%);
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.36, 0, 0.66, 0), height 0.4s cubic-bezier(0.36, 0, 0.66, 0);
  will-change: transform, width, height;
}

.interactive-link.active {
  width: 80px;
  height: 80px;
  transition: width 0.4s cubic-bezier(0.34, 1, 0.64, 1), height 0.4s cubic-bezier(0.34, 1, 0.64, 1);
}

.interactive-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: var(--white-color);
}
.interactive-btn p {
  margin: 0;
  font-size: 0em;
  transition: font-size 0.4s cubic-bezier(0.36, 0, 0.66, 0);
  will-change: font-size;
}
.interactive-btn.active {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: width 0.4s cubic-bezier(0.34, 1, 0.64, 1), height 0.4s cubic-bezier(0.34, 1, 0.64, 1);
}
.interactive-btn.active p {
  font-size: 1em;
  transition: font-size 0.4s cubic-bezier(0.34, 1, 0.64, 1);
}

.interactive-hover {
  position: absolute;
  height: 250px;
  width: 250px;
  overflow: hidden;
  pointer-events: none;
  transform-origin: center;
  transform: scale(0);
  z-index: 2;
}

.portfolio-single .portfolio-thumb img {
  border-radius: 4px;
}
.portfolio-single .portfolio-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portfolio-single .portfolio-info .item {
  display: flex;
  flex-direction: column;
}
.portfolio-single .portfolio-info .item span {
  padding: 0.5rem;
  color: #9aa0a6;
}
.portfolio-single .portfolio-info .item span:last-child {
  color: var(--white-color);
}
.portfolio-single .portfolio-info .item .social-icons > a {
  width: 40px;
  height: 40px;
}
.portfolio-single .portfolio-info .item .social-icons > a svg {
  font-size: 1.2em;
}
.portfolio-single .portfolio-info .item .social-icons > a:hover .icon:first-child {
  margin-top: -40px;
}
.portfolio-single .gallery-item {
  display: block;
}

.project-info {
  position: relative;
}
.project-info .service-title {
  display: block;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--primary-l-color);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--secondary-p-color);
}
@media (max-width: 575px) {
  .project-info .service-title {
    padding: 0.5rem 0;
  }
}
.project-info h6 {
  margin: 0;
}

@media (max-width: 575px) {
  .work-single .list-group-item:first-child .content .title {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .work-single .content .title {
    margin-bottom: 0;
  }
}
.work-single .content p {
  max-width: 50%;
  margin: 1.5rem 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .work-single .content p {
    max-width: 100%;
    font-size: 1.2rem;
  }
}

.works .container-fluid {
  max-width: 1600px;
}
.works .image-mask.style-2:first-child {
  width: 30%;
}

.next-work {
  position: relative;
  height: 650px;
}
@media (max-width: 575px) {
  .next-work {
    height: 80vw;
  }
}
.next-work .rounded-div-wrapper {
  z-index: 3;
}
.next-work .image-mask {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.next-work .image-mask .card-element .card-content {
  top: 50%;
  bottom: unset;
}
.next-work .card-content span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white-color);
}

.testimonial-wrapper .items .item .testimonial-content {
  position: relative;
}
.testimonial-wrapper .items .item .testimonial-content .quote-icon {
  position: absolute;
  top: 70%;
  right: 2%;
  width: 70px;
}
.testimonial-wrapper .items .item .testimonial-content .testimonial-reviewer-content span {
  color: #9aa0a6;
}
.testimonial-wrapper .items .item .quote {
  font-size: 18px;
  line-height: 1.6;
}
.testimonial-wrapper .items .item .testimonial-thumb img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.pricing-wrapper .items .item .package span:last-child,
.pricing-wrapper .items .item .pricing span:last-child {
  color: #9aa0a6;
}
.pricing-wrapper .items .item .package span.badge,
.pricing-wrapper .items .item .pricing span.badge {
  padding: 0.675rem;
  background-color: #1c1c1c;
  border-radius: 0.675rem;
}
.pricing-wrapper .items .item .price {
  display: block;
  font-family: var(--primary-font);
  font-size: 40px;
  font-weight: 900;
  color: var(--primary-color);
}
.pricing-wrapper .items .item hr {
  border-color: rgba(255, 255, 255, 0.8);
}
.pricing-wrapper .items .item .pricing-content li {
  margin: 0.6rem 0;
}

.contact-form {
  padding: 3rem;
  background-color: #fff;
  border-radius: 2rem;
}
@media (max-width: 575px) {
  .contact-form {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }
}
.contact-form .list-group-item {
  display: flex;
  padding: 1rem 0.75rem;
}
@media (min-width: 992px) {
  .contact-form .list-group-item:first-child {
    padding-top: 0;
  }
  .contact-form .list-group-item:last-child {
    padding-bottom: 0;
  }
}
.contact-form .list-group-item .content {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary-t-color);
}
.contact-form .list-group-item .content:hover {
  opacity: 0.6;
}
.contact-form .form-control {
  font-size: 1.2rem;
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-color: var(--secondary-l-color);
  border-radius: 0;
}
.contact-form .form-control:focus {
  border-color: inherit;
  box-shadow: none;
}
.contact-form .form-floating > label {
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 500;
}
.contact-form .form-group {
  padding: 0 0.75rem;
}
.contact-form .form-group .form-label {
  font-size: 1.1rem;
  font-weight: 500;
}
.contact-form .form-group .form-input-group {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
}
.contact-form .form-group .btn {
  padding: 16px 28px;
  font-size: 1rem;
  border-color: var(--secondary-l-color);
}
.contact-form .form-group .btn-check:checked + .btn,
.contact-form .form-group .btn.active,
.contact-form .form-group .btn.show,
.contact-form .form-group .btn:first-child:active,
.contact-form .form-group :not(.btn-check) + .btn:active {
  color: #ffffff;
  background-color: var(--primary-t-color);
  border-color: var(--primary-t-color);
}

.comments .contact-form {
  background-color: transparent;
}

.load-more .item {
  display: none;
}

footer {
  background-color: var(--footer-bg-color);
}
footer .copyright {
  font-size: 18px;
}
@media (max-width: 575px) {
  footer .copyright {
    text-align: center;
  }
}
footer .copyright a {
  font-size: 18px !important;
  color: var(--primary-t-color);
}
footer .copyright a:hover {
  opacity: 0.6;
}
footer .smooth-anchor {
  position: relative;
  padding: 0.5rem 0;
  color: var(--primary-t-color);
}
footer .smooth-anchor::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  left: 0;
  bottom: 5px;
  background-color: var(--primary-t-color);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
footer .smooth-anchor:hover::after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.odd .btn {
  background-color: var(--primary-t-color-3);
}
.odd .btn.btn-outline {
  background-color: transparent;
  border-color: var(--primary-t-color-3);
  color: var(--white-color);
}
.odd .btn.btn-outline span {
  background-color: var(--white-color);
}
.odd .btn.btn-outline:hover {
  color: var(--white-color);
}
.odd .btn.magnetic-button.btn-outline:hover {
  color: var(--primary-t-color);
}
.odd tr:not(:last-child) {
  border-color: var(--primary-b-color);
}
.odd pre,
.odd code {
  background-color: var(--secondary-bg-color-2);
  border-left: 5px solid var(--secondary-bg-color-3);
}
.odd blockquote,
.odd q {
  background-color: var(--secondary-bg-color-2);
  border-left: 5px solid var(--secondary-bg-color-3);
}
.odd .swiper-pagination-current {
  color: var(--white-color);
}
.odd header .navbar-expand .navbar-brand {
  color: var(--white-color);
}
.odd header .navbar-expand .navbar-nav .nav-item .nav-link {
  color: var(--white-color);
}
.odd .navbar .navbar-toggler:not(.active) .navbar-header .content .title {
  color: var(--white-color);
}
.odd .hero-section h1 span {
  color: var(--secondary-t-color-2);
}
.odd .hero-bg .circle-1,
.odd .hero-bg .circle-2 {
  opacity: 0.15;
}
.odd .services .item .item-count {
  color: var(--secondary-t-color);
}
.odd .experiences .item {
  border-color: var(--primary-b-color);
}
.odd .marquee ul .item .marquee-item {
  background-color: var(--secondary-bg-color-2);
}
.odd .primary-bg {
  background-color: var(--secondary-bg-color-2);
}
.odd .content-round {
  background-color: var(--secondary-bg-color-2);
}
.odd .content-round .rounded-div-background {
  background-color: var(--secondary-bg-color);
}
.odd .awards .list-group-item a.award-btn .icon {
  color: var(--white-color);
}
.odd .awards .list-group-item::after {
  background-color: var(--white-color);
}
.odd .awards .list-group-item:hover .title {
  color: var(--primary-t-color);
}
.odd .awards .list-group-item:hover span {
  color: var(--primary-p-color);
}
.odd .awards .list-group-item:hover a.award-btn {
  color: var(--white-color);
}
.odd .awards .list-group-item:hover a.award-btn .icon {
  color: var(--primary-p-color);
}
.odd .filter-menu .btn-check:checked + .btn,
.odd .filter-menu .btn.active,
.odd .filter-menu .btn.show,
.odd .filter-menu .btn:first-child:active,
.odd .filter-menu :not(.btn-check) + .btn:active {
  color: var(--white-color);
}
.odd .filter-menu .input-item label::after {
  background-color: var(--white-color);
}
.odd .filter-menu .input-item .btn {
  color: var(--secondary-p-color);
}
.odd .filter-menu .input-item:has(.btn-check:checked + label) .count {
  color: var(--white-color);
}
.odd .portfolio-item .show-project .project-link a {
  color: var(--white-color);
}
.odd .portfolio-terms a.terms {
  color: var(--secondary-p-color);
}
.odd .progress .title {
  color: var(--secondary-p-color);
}
.odd .progress .progress-bar {
  background-color: var(--secondary-p-color);
}
.odd .progress .progress-bar span {
  background-color: var(--white-color);
  color: var(--primary-t-color);
}
.odd .progress .progress-bar span::before {
  background-color: var(--white-color);
}
.odd .testimonial {
  border-color: #2b2b2b !important;
}
.odd .testimonial-content p {
  color: var(--white-color);
}
.odd .awards .logo img {
  filter: invert(1);
}
.odd #brilio-accordion .accordion-item {
  color: var(--secondary-p-color);
}
.odd #brilio-accordion .accordion-item .accordion-button {
  background-color: var(--secondary-bg-color-2);
  color: var(--white-color);
}
.odd .blog-item .card-content .title a,
.odd .blog-item .card-overlay .title a {
  color: var(--white-color);
  background-image: linear-gradient(to right, var(--white-color) 0%, var(--white-color) 100%);
}
.odd .blog-item .card-content .post-meta span:not(.post-author) {
  color: var(--primary-b-color);
}
.odd a.page-numbers,
.odd span.page-numbers {
  color: var(--white-color);
}
.odd a.page-numbers.current,
.odd span.page-numbers.current {
  background-color: var(--white-color);
  color: var(--primary-p-color);
}
.odd .comments .contact-form {
  background-color: transparent;
}
.odd .comments .contact-form .form-control {
  border-color: var(--primary-b-color);
  color: var(--white-color);
}
.odd .badge.outlined {
  color: var(--white-color);
}
.odd .contact-form {
  background-color: var(--primary-bg-color);
}
.odd .contact-form .btn.btn-outline {
  color: var(--primary-t-color);
}
.odd .contact-form .btn.btn-outline span {
  background-color: var(--primary-t-color);
}
.odd .contact-form .btn.btn-outline:hover {
  color: var(--white-color);
}
.odd .contact-form .btn[type=submit] {
  background-color: var(--primary-t-color);
}
.odd .socials .nav-link {
  color: var(--white-color);
}
.odd .socials .nav-link::after {
  background-color: var(--white-color);
}
.odd .cta {
  border-color: var(--primary-b-color) !important;
}
.odd .cta .cta-text span {
  color: var(--secondary-t-color-2) !important;
}
.odd footer {
  background-color: var(--secondary-bg-color-2);
}
.odd footer.bg-white {
  background-color: var(--secondary-bg-color) !important;
}
.odd footer .copyright a {
  color: var(--white-color);
}
.odd footer .smooth-anchor {
  color: var(--white-color);
}
.odd footer .smooth-anchor::after {
  background-color: var(--white-color);
}

/* #endregion Feature */
/*----------------------------------------------
9. Modal
----------------------------------------------*/
/* #region Modal */
.modal-open {
  overflow-x: hidden;
  overflow-y: hidden;
}
.modal-open .modal {
  overflow: hidden;
}

.dialog-animated {
  min-height: 100%;
  margin: 0 0 0 auto;
}

.modal.fade .modal-dialog.dialog-animated {
  transform: translate(100%, 0) scale(1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.modal.fade.show .modal-dialog.dialog-animated {
  height: 100%;
  transform: translate(0, 0);
}

.modal-content {
  background-color: var(--primary-bg-color);
  border: none;
  border-radius: 0;
  overflow-x: hidden;
}

.modal-header {
  align-items: center;
  padding: 2rem;
  border: none;
  font-weight: 600;
  border-radius: 0;
}
.modal-header .icon-close {
  font-size: 24px;
  cursor: pointer;
}

.modal-body {
  display: flex;
  align-items: center;
  padding: 2rem;
}

.search-title {
  line-height: 1em;
  letter-spacing: -1.6px;
}
@media (min-width: 991px) {
  .search-title {
    font-size: 40px;
  }
}

.search-form input {
  padding-left: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* #endregion Modal */
/*----------------------------------------------
10. Blog
----------------------------------------------*/
/* #region Blog */
.blog .item {
  margin: 0 0 30px 0;
}

.post .post-image {
  display: block;
  margin-bottom: 30px;
}
.post .post-image img {
  border-radius: 10px;
}
.post .post-meta a:not(:hover) {
  color: var(--primary-p-color);
}
.post .post-meta svg {
  margin-right: 5px;
  color: #6c757d;
}
.post .post-content .title {
  margin: 20px 0;
}
.post .post-content .title a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-t-color);
  display: inline;
  padding-bottom: 5px;
  background-image: linear-gradient(to right, var(--primary-t-color) 0%, var(--primary-t-color) 100%);
  background-size: 100% 5%;
  background-repeat: no-repeat;
  background-position: left 80%;
  transition: all 0.4s ease;
}
.post .post-content .post-holder-tags a {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  margin: 0 5px 5px 0;
  background-color: #1c1c1c;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-color);
}
.post .post-content .post-holder-tags a:hover {
  color: var(--primary-color);
}
.post:hover .post-content .title a {
  background-size: 0% 5%;
}

.post-holder-tags .tagged {
  font-weight: 500;
}

ul.page-numbers,
.page-links {
  display: flex;
  width: fit-content;
  padding-left: 0;
  margin: 35px auto;
  border-radius: 0.25rem;
  box-shadow: 0px 0px 15px 0px var(--box-shadow-color);
  list-style: none;
  transition: all var(--transition-function) var(--transition-duration);
}

ul.page-numbers li {
  margin: 0;
  font-weight: 600;
}

a.page-numbers,
span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--primary-border-radius);
  color: var(--primary-t-color);
}
a.page-numbers.current,
span.page-numbers.current {
  background-color: var(--secondary-bg-color);
  color: var(--white-color);
}
a.page-numbers:hover:not(.current),
span.page-numbers:hover:not(.current) {
  opacity: 0.65;
}

.icon.rotate::before {
  transform: rotate(-45deg);
}

.swap-icon .icon {
  margin: 0 !important;
  font-size: 2rem !important;
  line-height: 1;
}
.swap-icon:hover .icon {
  animation: swap ease-out var(--transition-duration);
}

@keyframes swap {
  0% {
    transform: translateX(0);
  }
  25% {
    opacity: 0;
  }
  30% {
    transform: translateX(1rem);
  }
  35% {
    transform: translateX(-1rem);
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
#brilio-accordion .accordion-item {
  background-color: transparent;
  border: none;
  color: var(--primary-p-color);
}
#brilio-accordion .accordion-item:not(:last-child) {
  margin-bottom: 0.5rem;
}
#brilio-accordion .accordion-item .accordion-header {
  margin: 0;
}
#brilio-accordion .accordion-item .accordion-button {
  position: relative;
  background-color: var(--primary-bg-color);
  border-radius: var(--primary-border-radius);
  box-shadow: none;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-t-color);
}
#brilio-accordion .accordion-item .accordion-button::after {
  position: absolute;
  content: "\f4fe";
  left: calc(100% - 3rem);
  height: inherit;
  background-image: none;
  font-size: inherit;
  font-weight: 400 !important;
  font-family: bootstrap-icons !important;
  transition-timing-function: var(--transition-function);
}
#brilio-accordion .accordion-item .accordion-button:focus {
  z-index: 1;
}
#brilio-accordion .accordion-item:has(.collapse.show) .accordion-button::after {
  content: "\f2ea" !important;
}

.blog-single .post-thumbnail img {
  margin-bottom: 1.5rem;
  max-height: 550px;
  object-fit: cover;
}

.sidebar .widget {
  margin-top: 45px;
}
@media (min-width: 992px) {
  .sidebar .widget:first-child {
    margin-top: 0;
  }
}
.sidebar .widget a {
  color: var(--primary-t-color);
}
.sidebar .widget a:hover {
  opacity: 0.6;
}
.sidebar .widget:first-of-type .widget-title {
  margin-top: 0;
}
.sidebar .post-image img {
  max-width: 100px;
}
.sidebar .post .post-holder-tags a {
  margin: 5px 2.5px;
}

/* #endregion Blog */
/*----------------------------------------------
11. All Media Queries
----------------------------------------------*/
/* #region All Media Queries */
@media (max-width: 1199px) {
  /* #region Header */
  body header .navbar-expand .navbar-nav.toggle {
    display: flex;
  }
  body header .navbar-expand .navbar-nav.contacts, body header .navbar-expand .navbar-nav.items, body header .navbar-expand .navbar-nav.icons .social {
    display: none;
  }
  /* #endregion Header */
}
@media (min-width: 992px) {
  /* #region General */
  .services .sub-title {
    max-width: 70%;
  }
  .services .intro-right .sub-title {
    max-width: 40%;
  }
  .services .item:nth-child(2n) .service-content {
    margin-top: 45px;
  }
  .cta {
    padding: 100px 0;
  }
}
h1 {
  font-size: 2.2rem;
}
@media (max-width: 991px) {
  /* #region General */
  body h1 {
    font-size: 2rem;
  }
  body .flex.ms-auto h1 {
    font-size: 1.6rem;
  }
  h1 {
    font-size: 2rem;
  }
  body h2 {
    font-size: 2.5rem;
  }
  body h3 {
    font-size: 2rem;
  }
  body h4 {
    font-size: 1.5rem;
  }
  /* #endregion General */
  /* #region Helper Class */
  body .intro {
    margin-bottom: 25px;
  }
  /* #endregion Helper Class */
}
@media (max-width: 767px) {
  /* #region Section */
  body section {
    padding: 90px 0;
  }
  /* #endregion Section */
  /* #region Header */
  body header .navbar-expand .navbar-brand {
    margin: 0;
  }
  body header .navbar-expand .navbar-nav.action .btn {
    padding: 5px 10px;
    font-size: 0;
  }
  body header .navbar-expand .navbar-nav.action .btn i {
    font-size: initial;
    margin: 0;
  }
  /* #endregion Header */
}
@media (max-width: 576px) {
  .service-content .title {
    margin: 0;
  }
  .items .item.item-card {
    padding: 32px;
  }
  .contact-form .form-group .btn {
    padding: 14px 22px;
  }
  .contact-form textarea {
    height: 150px;
  }
  .contact-form .submit-btn {
    top: calc(100% - 5.5rem);
    right: 1rem;
  }
  .search-form .col-12 {
    padding: 0;
  }
  /* #region Modal */
  body .modal-body {
    align-items: start;
  }
  .offcanvas-wrapper .offcanvas .offcanvas-content hr {
    margin: 10px 0;
  }
  /* #endregion Modal */
}
/* #endregion All Media Queries *//*# sourceMappingURL=style.css.map */

.marquee ul .item .marquee-item .marquee-content {
  display: flex;
}

.marquee ul .item .marquee-item .marquee-content img {
  object-fit: contain;
}


/* Pricing */
.plans{display:grid; gap:16px; margin-top:18px;}
@media (min-width:1000px){ .plans{ grid-template-columns: repeat(4,1fr);} }
@media (min-width:640px) and (max-width:999px){ .plans{ grid-template-columns: repeat(2,1fr);} }
.plan{position:relative; background:#fff; border:1px solid #e7ebf0; border-radius:16px; padding:18px; box-shadow:v 0 10px 24px rgba(20,28,40,.08); display:flex; flex-direction:column; min-height:100%;}
.plan h3{margin:.25rem 0 .25rem;font-size: 21px;display:flex;align-items:center;gap:8px;}
.plan .price{font-weight:800;font-size: 18px;margin:8px 0 6px;}
.plan .note{color:var(--muted);margin:0 0 10px;font-size: 16px;display: block;line-height: 1.2em;}
.plan ul{margin:0;padding-left: 0px;display:grid;gap:8px;color:#0b0e14;}

/* CTA */
.cta{background:linear-gradient(180deg,#f8fbff,#fff); border:1px solid #e7ebf0; border-radius:16px; padding:20px; box-shadow: 0 10px 24px rgba(20,28,40,.08); text-align:center;}
.cta h3{margin:.2rem 0 .4rem; font-size:22px;}
.cta p{color:var(--muted);}
.cta .actions{display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:12px;}
.cta .actions .btn{min-width:200px;}

section.grid.cols-3 {
  padding: 0;
}

span.muted {
  font-size: 16px;
  line-height: 1.2em;
  display: block;
  margin-top: 10px;
}

.plan ul li {
  font-size: 16px;
  display: block;
  line-height: 1.2em;
  margin-bottom: 0;
}

.cta.cta--plan {
  border: 0;
  padding: 0;
  margin: 0;
  margin-top: 30px!important;
}

.cta.cta--plan a.btn.btn--pri {
  padding: 13px;
  width: 100%;
  text-align: center;
  display: block;
  font-size: 16px;
}

.step h3 {
  font-size: 23px;
}

.step p.muted {
  font-size: 15px;
  display: block;
  line-height: 1.2em;
}
.plan .item-count {
  margin-right: 1rem;
  font-size: 38px;
  color: var(--primary-t-color);
  writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-text-stroke: 1px;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 0px;
  margin-right: 10px;
  padding-left: 0;
  margin-top: 0px;
  line-height: 1.2em;
}


@media (max-width: 767px) {
div#main-wrapper {
  margin-top: 40px;
}
}
/* Homepage 2026 */
.home-hero { padding-bottom: 70px; }
.home-hero .section-title { max-width: 980px; margin-bottom: 0; }
.home-hero-side { max-width: 430px; margin-left: auto; padding: 0 0 8px 18px; transform: translateY(-20px); }
.home-hero-text { font-size: 19px; line-height: 1.55; color: #303030; margin: 0 0 28px; }
.home-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.home-hero-actions .btn { white-space: nowrap; }
.home-hero-primary { min-width: 0; padding-left: 24px; padding-right: 24px; }
.home-hero-link { display: inline-flex; align-items: center; gap: 8px; color: #171717; font-size: 16px; font-weight: 600; border-bottom: 1px solid rgba(0,0,0,.35); padding: 6px 0 4px; transition: opacity .25s ease, border-color .25s ease; }
.home-hero-link:hover { color: #171717; opacity: .62; border-color: transparent; }
.home-hero .hero-bg { opacity: .68; }
.home-facts { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 72px; border-top: 1px solid rgba(0,0,0,.14); border-bottom: 1px solid rgba(0,0,0,.14); }
.home-fact { padding: 24px 24px 24px 0; display: flex; flex-direction: column; gap: 4px; }
.home-fact + .home-fact { border-left: 1px solid rgba(0,0,0,.14); padding-left: 28px; }
.home-fact strong { font-size: 22px; font-weight: 600; color: #111; }
.home-fact span { font-size: 15px; color: #5f5f5f; }
.home-directions, .home-approach, .home-products, .home-works, .home-about-strip { padding: 110px 0; }
.home-section-heading { max-width: 760px; margin-bottom: 50px; }
.home-section-heading h2, .home-approach h2, .home-about-inner h2 { font-size: clamp(34px, 4.3vw, 64px); line-height: 1.05; letter-spacing: -.04em; margin: 12px 0 20px; }
.home-section-heading > p { font-size: 19px; line-height: 1.6; color: #555; max-width: 680px; }
.home-eyebrow { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #666; }
.home-direction-card { min-height: 270px; height: 100%; display: grid; grid-template-columns: 48px 1fr auto; gap: 22px; padding: 34px; color: #111; background: #f4f4f2; border-radius: 24px; transition: transform .3s ease, background-color .3s ease; }
.home-direction-card:hover { transform: translateY(-4px); color: #111; background: #ecece9; }
.home-direction-card--accent { background: #171717; color: #fff; }
.home-direction-card--accent:hover { background: #242424; color: #fff; }
.home-card-number { font-size: 13px; opacity: .62; padding-top: 6px; }
.home-direction-card h3 { font-size: 27px; line-height: 1.15; margin: 0 0 16px; }
.home-direction-card p { font-size: 17px; line-height: 1.55; margin: 0; opacity: .75; }
.home-direction-card > i { font-size: 23px; }
.home-approach { background: #171717; color: #fff; }
.home-approach .home-eyebrow { color: rgba(255,255,255,.58); }
.home-approach h2 { color: #fff; max-width: 520px; }
.home-lead { font-size: clamp(24px, 2.5vw, 36px); line-height: 1.35; letter-spacing: -.025em; color: #fff; margin: 0 0 55px; }
.home-step { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.18); }
.home-step:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.home-step > span { font-size: 13px; color: rgba(255,255,255,.52); padding-top: 5px; }
.home-step h3 { font-size: 22px; color: #fff; margin: 0 0 8px; }
.home-step p { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.68); margin: 0; }
.home-products { background: #f2f2ef; }
.home-section-heading--row { max-width: none; display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; }
.home-section-heading--row > p { margin: 0 0 9px; }
.home-product-card { min-height: 590px; height: 100%; display: flex; flex-direction: column; padding: 38px; border-radius: 28px; overflow: hidden; }
.home-product-card--personeo { background: #e9e0ff; color: #241943; }
.home-product-card--poryadiks { background: #dfe9e2; color: #152a1e; }
.home-product-top { display: flex; justify-content: space-between; gap: 20px; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; opacity: .7; }
.home-product-content { margin: auto 0; padding: 60px 0 40px; }
.home-product-content h3 { font-size: clamp(48px, 6vw, 78px); line-height: .95; letter-spacing: -.05em; margin: 0 0 22px; color: inherit; }
.home-product-title { font-size: 26px !important; font-weight: 600; line-height: 1.25 !important; max-width: 470px; }
.home-product-content > p { font-size: 17px; line-height: 1.6; max-width: 560px; }
.home-product-content ul { list-style: none; padding: 18px 0 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.home-product-content li { padding: 8px 12px; border: 1px solid currentColor; border-radius: 100px; font-size: 13px; opacity: .72; }
.home-product-link { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid currentColor; color: inherit; font-size: 17px; font-weight: 600; }
.home-product-link:hover { color: inherit; opacity: .7; }
.home-works .intro { margin-bottom: 45px; }
.home-works .intro .title { max-width: 800px; font-size: clamp(34px, 4vw, 58px); line-height: 1.05; letter-spacing: -.04em; margin-top: 12px; }
.home-about-strip { padding-top: 30px; }
.home-about-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; padding: 70px; border-radius: 30px; background: #f4f4f2; }
.home-about-inner h2 { font-size: clamp(32px, 3.8vw, 54px); margin-bottom: 0; }
.home-about-inner p { font-size: 19px; line-height: 1.65; color: #4f4f4f; margin: 35px 0 30px; }

@media (max-width: 991px) {
  .home-hero-side { padding: 35px 0 0; max-width: 690px; margin-left: 0; transform: none; }
  .home-section-heading--row, .home-about-inner { grid-template-columns: 1fr; gap: 20px; }
  .home-product-card { min-height: 520px; }
  .home-about-inner { padding: 50px; }
}
@media (max-width: 767px) {
  .home-hero { padding-bottom: 45px; }
  .home-hero .section-title { font-size: 43px; line-height: 1.02; }
  .home-hero-text { font-size: 17px; }
  .home-hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .home-hero-actions .btn { width: auto; justify-content: center; }
  .home-facts { grid-template-columns: 1fr; margin-top: 45px; }
  .home-fact, .home-fact + .home-fact { border-left: 0; border-top: 1px solid rgba(0,0,0,.14); padding: 18px 0; }
  .home-fact:first-child { border-top: 0; }
  .home-directions, .home-approach, .home-products, .home-works, .home-about-strip { padding: 75px 0; }
  .home-section-heading { margin-bottom: 32px; }
  .home-section-heading h2, .home-approach h2 { font-size: 38px; }
  .home-direction-card { min-height: 0; grid-template-columns: 35px 1fr auto; gap: 12px; padding: 25px 20px; border-radius: 18px; }
  .home-direction-card h3 { font-size: 23px; }
  .home-direction-card p { font-size: 15px; }
  .home-lead { font-size: 25px; margin-bottom: 35px; }
  .home-product-card { min-height: 0; padding: 26px 22px; border-radius: 20px; }
  .home-product-top { font-size: 11px; }
  .home-product-content { padding: 55px 0 35px; }
  .home-product-content h3 { font-size: 52px; }
  .home-product-title { font-size: 22px !important; }
  .home-works .intro { align-items: flex-start !important; flex-direction: column; }
  .home-about-inner { padding: 30px 22px; border-radius: 20px; }
  .home-about-inner p { font-size: 17px; margin-top: 15px; }
}

/* Контраст акцентной карточки направления */
.home-direction-card.home-direction-card--accent,
.home-direction-card.home-direction-card--accent:hover,
.home-direction-card.home-direction-card--accent h3,
.home-direction-card.home-direction-card--accent p,
.home-direction-card.home-direction-card--accent .home-card-number,
.home-direction-card.home-direction-card--accent > i {
  color: #fff;
}

/* Home featured projects v5 */
.featured-projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 28px;
}
.featured-project {
  min-width: 0;
}
.featured-project__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  background: #f2f2f2;
}
.featured-project--large .featured-project__media {
  aspect-ratio: 16 / 10;
}
.featured-project__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}
.featured-project__media:hover img {
  transform: scale(1.025);
}
.featured-project__open {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(7, 9, 17, .9);
  font-size: 20px;
  transform: translateY(-6px);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.featured-project__media:hover .featured-project__open {
  opacity: 1;
  transform: translateY(0);
}
.featured-project__body {
  padding-top: 20px;
}
.featured-project__meta {
  min-height: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  color: #777;
  font-size: 13px;
  line-height: 1.4;
}
.featured-project__tags {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
}
.featured-project__tags span {
  padding: 5px 9px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  color: #4b4b4b;
  background: #fff;
}
.featured-project h3 {
  max-width: 760px;
  margin: 15px 0 10px;
  font-size: clamp(25px, 2.3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.featured-project:not(.featured-project--large) h3 {
  font-size: clamp(23px, 1.8vw, 31px);
}
.featured-project h3 a {
  color: inherit;
  text-decoration: none;
}
.featured-project__body > p {
  max-width: 680px;
  min-height: 3.2em;
  margin: 0;
  color: #5f5f5f;
  font-size: 16px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.featured-project__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid #a9a9a9;
  color: #0a0b10;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.featured-project__link i {
  transition: transform .2s ease;
}
.featured-project__link:hover i {
  transform: translateX(3px);
}
@media (min-width: 1200px) {
  .featured-project:nth-child(3),
  .featured-project:nth-child(6) {
    padding-right: 8%;
  }
  .featured-project:nth-child(4),
  .featured-project:nth-child(5) {
    padding-left: 8%;
  }
}
@media (max-width: 767.98px) {
  .featured-projects {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .featured-project__media,
  .featured-project--large .featured-project__media {
    aspect-ratio: 4 / 3;
  }
  .featured-project__body {
    padding-top: 16px;
  }
  .featured-project__meta {
    display: block;
  }
  .featured-project__tags {
    justify-content: flex-start;
    margin-top: 10px;
  }
  .featured-project h3,
  .featured-project:not(.featured-project--large) h3 {
    margin-top: 14px;
    font-size: 27px;
  }
  .featured-project__body > p {
    min-height: 0;
    font-size: 15px;
  }
  .featured-project__open {
    opacity: 1;
    transform: none;
    width: 42px;
    height: 42px;
    right: 12px;
    top: 12px;
  }
}

/* About page */
.about-hero { position: relative; overflow: hidden; padding: 165px 0 80px; }
.about-hero .container { position: relative; z-index: 2; }
.about-eyebrow { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #666; }
.about-hero h1 { max-width: 980px; margin: 18px 0 0; font-size: clamp(54px, 6.5vw, 96px); line-height: .98; letter-spacing: -.055em; }
.about-hero-side { max-width: 430px; margin-left: auto; padding-bottom: 6px; }
.about-hero-side p { margin: 0 0 28px; font-size: 19px; line-height: 1.58; color: #343434; }
.about-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.about-hero-actions .btn { white-space: nowrap; padding-left: 25px; padding-right: 25px; }
.about-text-link { display: inline-flex; align-items: center; gap: 8px; padding: 6px 0 4px; border-bottom: 1px solid rgba(0,0,0,.35); color: #171717; font-size: 16px; font-weight: 600; transition: opacity .25s ease, border-color .25s ease; }
.about-text-link:hover { color: #171717; opacity: .62; border-color: transparent; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 80px; border-top: 1px solid rgba(0,0,0,.14); border-bottom: 1px solid rgba(0,0,0,.14); }
.about-fact { display: flex; flex-direction: column; gap: 5px; padding: 25px 25px 25px 0; }
.about-fact + .about-fact { padding-left: 30px; border-left: 1px solid rgba(0,0,0,.14); }
.about-fact strong { color: #111; font-size: 22px; font-weight: 600; }
.about-fact span { color: #5f5f5f; font-size: 15px; }
.about-hero-bg { position: absolute; inset: 0; pointer-events: none; opacity: .55; }
.about-hero-bg img { position: absolute; width: min(980px, 74vw); right: -90px; top: 10px; }
.about-story, .about-results, .about-products, .about-personal { padding: 110px 0; }
.about-story h2, .about-process h2, .about-section-heading h2, .about-products-heading h2, .about-personal h2 { margin: 14px 0 0; font-size: clamp(36px, 4.3vw, 64px); line-height: 1.05; letter-spacing: -.045em; }
.about-story h2 { max-width: 520px; }
.about-story-text { max-width: 760px; }
.about-story-text p { margin: 0 0 22px; color: #515151; font-size: 18px; line-height: 1.72; }
.about-story-text .about-lead { color: #171717; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.38; letter-spacing: -.025em; }
.about-process { padding: 110px 0; background: #171717; color: #fff; }
.about-process .about-eyebrow { color: rgba(255,255,255,.58); }
.about-process h2 { max-width: 560px; color: #fff; }
.about-process-list { border-top: 1px solid rgba(255,255,255,.18); }
.about-process-item { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.about-process-item > span { padding-top: 5px; color: rgba(255,255,255,.48); font-size: 13px; }
.about-process-item h3 { margin: 0 0 8px; color: #fff; font-size: 23px; }
.about-process-item p { max-width: 650px; margin: 0; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.6; }
.about-results { background: #f2f2ef; }
.about-section-heading { max-width: 790px; margin-bottom: 52px; }
.about-section-heading > p { max-width: 660px; margin: 20px 0 0; color: #555; font-size: 19px; line-height: 1.62; }
.about-result-card { height: 100%; min-height: 310px; padding: 34px; border-radius: 24px; background: #fff; }
.about-result-number { display: block; margin-bottom: 55px; color: #777; font-size: 13px; }
.about-result-card h3 { margin: 0 0 16px; color: #151515; font-size: 28px; }
.about-result-card p { margin: 0; color: #555; font-size: 17px; line-height: 1.62; }
.about-results-link { margin-top: 36px; }
.about-products-heading { margin-bottom: 48px; }
.about-products-heading p { max-width: 540px; margin: 0 0 7px; color: #555; font-size: 18px; line-height: 1.65; }
.about-product-card { display: flex; min-height: 480px; height: 100%; flex-direction: column; justify-content: space-between; padding: 34px; border-radius: 26px; color: inherit; overflow: hidden; transition: transform .3s ease; }
.about-product-card:hover { color: inherit; transform: translateY(-4px); }
.about-product-card--personeo { background: #e9e0ff; color: #241943; }
.about-product-card--poryadiks { background: #dfe9e2; color: #152a1e; }
.about-product-meta { display: flex; justify-content: space-between; gap: 18px; font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; opacity: .7; }
.about-product-card h3 { margin: 70px 0 22px; color: inherit; font-size: clamp(48px, 5vw, 70px); line-height: .95; letter-spacing: -.05em; }
.about-product-title { max-width: 500px; margin: 0 0 15px; font-size: 25px !important; font-weight: 600; line-height: 1.24 !important; }
.about-product-card p { max-width: 560px; margin: 0; font-size: 17px; line-height: 1.6; }
.about-product-link { display: flex; justify-content: space-between; align-items: center; margin-top: 44px; padding-top: 20px; border-top: 1px solid currentColor; font-size: 16px; font-weight: 600; }
.about-personal { padding-top: 30px; }
.about-personal-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; padding: 70px; border-radius: 30px; background: #f4f4f2; }
.about-personal h2 { font-size: clamp(34px, 4vw, 56px); }
.about-personal p { margin: 0 0 18px; color: #505050; font-size: 18px; line-height: 1.68; }

@media (max-width: 991px) {
  .about-hero { padding-top: 140px; }
  .about-hero-side { max-width: 720px; margin-left: 0; }
  .about-personal-inner { grid-template-columns: 1fr; gap: 30px; padding: 50px; }
  .about-product-card { min-height: 430px; }
}

@media (max-width: 767px) {
  .about-hero { padding: 125px 0 60px; }
  .about-hero h1 { font-size: 46px; }
  .about-hero-side p { font-size: 17px; }
  .about-hero-actions { flex-direction: column; align-items: flex-start; gap: 15px; }
  .about-facts { grid-template-columns: 1fr; margin-top: 48px; }
  .about-fact, .about-fact + .about-fact { padding: 18px 0; border-left: 0; border-top: 1px solid rgba(0,0,0,.14); }
  .about-fact:first-child { border-top: 0; }
  .about-hero-bg img { width: 150vw; right: -80vw; opacity: .5; }
  .about-story, .about-process, .about-results, .about-products, .about-personal { padding: 75px 0; }
  .about-story h2, .about-process h2, .about-section-heading h2, .about-products-heading h2 { font-size: 38px; }
  .about-story-text .about-lead { font-size: 25px; }
  .about-story-text p { font-size: 17px; }
  .about-process-item { grid-template-columns: 38px 1fr; gap: 12px; padding: 23px 0; }
  .about-process-item h3 { font-size: 21px; }
  .about-section-heading { margin-bottom: 32px; }
  .about-result-card { min-height: 0; padding: 26px 22px; border-radius: 19px; }
  .about-result-number { margin-bottom: 35px; }
  .about-product-card { min-height: 0; padding: 27px 22px; border-radius: 20px; }
  .about-product-card h3 { margin-top: 55px; font-size: 52px; }
  .about-product-title { font-size: 22px !important; }
  .about-personal { padding-top: 15px; }
  .about-personal-inner { padding: 30px 22px; border-radius: 20px; }
  .about-personal h2 { font-size: 32px; }
  .about-personal p { font-size: 17px; }
}

/* Products page */
.products-hero {
  position: relative;
  overflow: hidden;
  padding: 165px 0 80px;
}
.products-hero .container {
  position: relative;
  z-index: 2;
}
.products-eyebrow {
  display: inline-block;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.products-hero h1 {
  max-width: 900px;
  margin: 18px 0 0;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.03;
}
.products-hero-text {
  max-width: 430px;
  margin: 0 0 2px auto;
  color: #343434;
  font-size: 19px;
  line-height: 1.62;
}
.products-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
}
.products-hero-bg img {
  position: absolute;
  width: min(950px, 72vw);
  top: -40px;
  right: -100px;
}
.products-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 68px;
}
.products-nav-card {
  position: relative;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 30px;
  border-radius: 25px;
  color: inherit;
  overflow: hidden;
  transition: transform .3s ease;
}
.products-nav-card:hover {
  color: inherit;
  transform: translateY(-4px);
}
.products-nav-card--personeo {
  background: #e9e0ff;
  color: #241943;
}
.products-nav-card--poryadiks {
  background: #dfe9e2;
  color: #152a1e;
}
.products-nav-card > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .68;
}
.products-nav-card strong {
  margin-top: auto;
  font-size: clamp(44px, 4.7vw, 68px);
  line-height: 1;
  letter-spacing: -.05em;
}
.products-nav-card small {
  margin-top: 10px;
  font-size: 16px;
  opacity: .78;
}
.products-nav-card i {
  position: absolute;
  right: 29px;
  bottom: 31px;
  font-size: 23px;
}
.product-detail {
  padding: 120px 0;
  scroll-margin-top: 80px;
}
.product-detail--personeo {
  background: #f7f4ff;
}
.product-detail--poryadiks {
  background: #eef4f0;
}
.product-detail-head {
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(0,0,0,.14);
}
.product-detail-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 64px;
  color: #5e5e5e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.product-detail h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(64px, 7.2vw, 108px);
  line-height: .9;
  letter-spacing: -.045em;
}
.product-detail-subtitle {
  max-width: 760px;
  margin: 30px 0 0;
  color: #252525;
  font-size: clamp(25px, 2.5vw, 37px);
  line-height: 1.16;
  letter-spacing: -.035em;
}
.product-detail-lead {
  margin: 3px 0 32px;
  color: #424242;
  font-size: 19px;
  line-height: 1.68;
}
.product-external-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 0 8px;
  border-bottom: 1px solid currentColor;
  color: #171717;
  font-size: 17px;
  font-weight: 600;
}
.product-external-link:hover {
  color: #171717;
  opacity: .65;
}
.product-story-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  padding: 72px 0;
}
.product-story-intro h3,
.product-capabilities-heading h3,
.product-benefits h3 {
  margin: 15px 0 0;
  color: #171717;
  max-width: 620px;
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1.16;
  letter-spacing: -.02em;
}
.product-story-text {
  max-width: 700px;
  padding-top: 18px;
}
.product-story-text p {
  max-width: 660px;
  margin: 0 0 18px;
  color: #4d4d4d;
  font-size: 19px;
  line-height: 1.72;
}
.product-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,.15);
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.product-process article {
  min-height: 285px;
  padding: 32px 31px 32px 0;
}
.product-process article + article {
  padding-left: 31px;
  border-left: 1px solid rgba(0,0,0,.15);
}
.product-process article > span {
  color: #767676;
  font-size: 12px;
}
.product-process h3 {
  margin: 74px 0 13px;
  color: #191919;
  font-size: 25px;
}
.product-process p {
  margin: 0;
  color: #575757;
  font-size: 16px;
  line-height: 1.62;
}
.product-capabilities {
  padding: 105px 0 85px;
}
.product-capabilities-heading {
  max-width: 850px;
  margin-bottom: 55px;
}
.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.product-feature-grid article {
  min-height: 280px;
  padding: 27px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.6);
}
.product-feature-grid i {
  display: block;
  margin-bottom: 68px;
  font-size: 25px;
}
.product-feature-grid h4 {
  margin: 0 0 11px;
  color: #171717;
  font-size: 20px;
}
.product-feature-grid p {
  margin: 0;
  color: #575757;
  font-size: 15px;
  line-height: 1.55;
}
.product-audience {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 35px;
  align-items: start;
  padding-top: 35px;
  border-top: 1px solid rgba(0,0,0,.15);
}
.product-audience > span {
  padding-top: 9px;
  color: #666;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.product-audience > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.product-audience > div span {
  padding: 9px 15px;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 50px;
  color: #262626;
  font-size: 14px;
}
.poryadiks-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-bottom: 105px;
}
.poryadiks-modules article {
  min-height: 470px;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
}
.poryadiks-modules article > span {
  display: inline-block;
  color: #66736a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.poryadiks-modules h3 {
  max-width: 560px;
  margin: 78px 0 18px;
  color: #152a1e;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: -.035em;
}
.poryadiks-modules p {
  max-width: 590px;
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.62;
}
.poryadiks-modules ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(0,0,0,.12);
  list-style: none;
}
.poryadiks-modules li {
  position: relative;
  padding-left: 15px;
  color: #565656;
  font-size: 14px;
  line-height: 1.45;
}
.poryadiks-modules li::before {
  position: absolute;
  top: .58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: '';
}
.product-benefits {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  padding: 90px 0;
  border-top: 1px solid rgba(0,0,0,.15);
}
.product-benefit-list {
  border-top: 1px solid rgba(0,0,0,.15);
}
.product-benefit-list > div {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.product-benefit-list span {
  color: #777;
  font-size: 12px;
}
.product-benefit-list p {
  margin: 0;
  color: #454545;
  font-size: 17px;
  line-height: 1.55;
}
.products-outro {
  padding: 110px 0 50px;
}
.products-outro-inner {
  padding: 75px;
  border-radius: 30px;
  background: #171717;
  color: #fff;
}
.products-outro .products-eyebrow {
  color: rgba(255,255,255,.55);
}
.products-outro h2 {
  max-width: 950px;
  margin: 16px 0 25px;
  color: #fff;
  font-size: clamp(39px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -.048em;
}
.products-outro p {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.65;
}
.products-outro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}
.products-outro-actions .btn {
  background: #fff;
  color: #111;
}
.products-outro-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.5);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}
.products-outro-link:hover {
  color: #fff;
  opacity: .65;
}

@media (max-width: 991px) {
  .products-hero {
    padding-top: 140px;
  }
  .products-hero-text {
    max-width: 720px;
    margin-left: 0;
  }
  .product-story-grid,
  .product-benefits {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .product-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail h2 {
    font-size: 78px;
  }
  .products-outro-inner {
    padding: 55px;
  }
}

@media (max-width: 767px) {
  .products-hero {
    padding: 125px 0 65px;
  }
  .products-hero h1 {
    font-size: 40px;
  }
  .products-hero-text {
    font-size: 17px;
  }
  .products-hero-bg img {
    width: 150vw;
    right: -80vw;
  }
  .products-nav {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
  .products-nav-card {
    min-height: 205px;
    padding: 24px 22px;
    border-radius: 20px;
  }
  .products-nav-card strong {
    font-size: 49px;
  }
  .products-nav-card i {
    right: 22px;
    bottom: 25px;
  }
  .product-detail {
    padding: 75px 0;
    scroll-margin-top: 60px;
  }
  .product-detail-head {
    padding-bottom: 46px;
  }
  .product-detail-meta {
    margin-bottom: 45px;
  }
  .product-detail h2 {
    font-size: 54px;
  }
  .product-detail-subtitle {
    margin-top: 22px;
    font-size: 27px;
  }
  .product-detail-lead,
  .product-story-text p {
    font-size: 17px;
  }
  .product-story-grid {
    padding: 54px 0;
  }
  .product-story-intro h3,
  .product-capabilities-heading h3,
  .product-benefits h3 {
    font-size: 30px;
  }
  .product-story-text {
    padding-top: 0;
  }
  .product-process {
    grid-template-columns: 1fr;
  }
  .product-process article,
  .product-process article + article {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,.15);
  }
  .product-process article:first-child {
    border-top: 0;
  }
  .product-process h3 {
    margin-top: 35px;
  }
  .product-capabilities {
    padding: 70px 0 60px;
  }
  .product-capabilities-heading {
    margin-bottom: 34px;
  }
  .product-feature-grid,
  .poryadiks-modules {
    grid-template-columns: 1fr;
  }
  .product-feature-grid article {
    min-height: 0;
    padding: 23px 21px;
  }
  .product-feature-grid i {
    margin-bottom: 43px;
  }
  .product-audience {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .poryadiks-modules {
    padding-bottom: 70px;
  }
  .poryadiks-modules article {
    min-height: 0;
    padding: 26px 22px;
    border-radius: 20px;
  }
  .poryadiks-modules h3 {
    margin-top: 55px;
    font-size: 31px;
  }
  .poryadiks-modules p {
    font-size: 16px;
  }
  .poryadiks-modules ul {
    grid-template-columns: 1fr;
  }
  .product-benefits {
    padding: 54px 0;
  }
  .products-outro {
    padding: 75px 0 20px;
  }
  .products-outro-inner {
    padding: 35px 22px;
    border-radius: 20px;
  }
  .products-outro h2 {
    font-size: 38px;
  }
  .products-outro p {
    font-size: 17px;
  }
  .products-outro-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

/* Cases, contacts and case-driven content */
.home-cases-section {
  padding: 115px 0;
  background: #f4f4f1;
}
.home-cases-heading-side {
  max-width: 440px;
}
.home-cases-heading-side p {
  margin: 0 0 18px;
  color: #555;
  font-size: 17px;
  line-height: 1.6;
}
.home-cases-heading-side a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: #171717;
  font-weight: 600;
}
.home-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 50px;
}
.home-case-card {
  overflow: hidden;
  border-radius: 25px;
  background: #fff;
}
.home-case-media {
  display: block;
  min-height: 390px;
  overflow: hidden;
  background: #e9e9e4;
}
.home-case-media img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: transform .55s ease;
}
.home-case-card:hover .home-case-media img {
  transform: scale(1.025);
}
.home-case-placeholder,
.case-list-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: inherit;
  padding: 30px;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.72), transparent 34%),
    linear-gradient(135deg, #d8ded8 0%, #f1eee8 100%);
  color: #171717;
}
.home-case-placeholder::after,
.case-list-placeholder::after {
  position: absolute;
  inset: 14% 10% auto auto;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(0,0,0,.11);
  border-radius: 50%;
  content: '';
}
.home-case-placeholder small,
.case-list-placeholder small {
  font-size: 13px;
  letter-spacing: .1em;
}
.home-case-placeholder strong,
.case-list-placeholder strong {
  position: relative;
  z-index: 1;
  max-width: 84%;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.05em;
}
.home-case-content {
  padding: 31px;
}
.home-case-meta,
.case-list-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #777;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.home-case-content h3 {
  margin: 55px 0 16px;
  font-size: clamp(28px, 3.2vw, 43px);
  line-height: 1.08;
}
.home-case-content h3 a {
  color: #171717;
}
.home-case-content p {
  margin: 0;
  color: #565656;
  font-size: 17px;
  line-height: 1.62;
}
.home-case-link,
.case-read-link,
.about-result-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: #171717;
  font-size: 15px;
  font-weight: 600;
}
.about-result-card {
  display: flex;
  flex-direction: column;
}
.about-result-link {
  margin-top: auto;
  padding-top: 24px;
  align-self: flex-start;
}

.cases-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 80px;
}
.cases-hero::after {
  position: absolute;
  top: 55px;
  right: -9vw;
  width: 52vw;
  aspect-ratio: 1;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 50%;
  content: '';
  pointer-events: none;
}
.cases-eyebrow,
.contact-new-eyebrow {
  display: inline-block;
  color: #6d6d6d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.cases-hero h1,
.contact-new-hero h1 {
  margin: 15px 0 0;
  color: #111;
  font-size: clamp(54px, 7.8vw, 112px);
  line-height: .82;
  letter-spacing: -.075em;
}
.cases-hero .col-lg-4 > p,
.contact-new-hero .col-lg-4 > p {
  margin: 0;
  color: #414141;
  font-size: 19px;
  line-height: 1.65;
}
.cases-hero-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 78px;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,.14);
  border-bottom: 1px solid rgba(0,0,0,.14);
  color: #565656;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cases-list-section {
  padding: 95px 0 115px;
  background: #f4f4f1;
}
.cases-list {
  display: grid;
  gap: 24px;
}
.case-list-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
}
.case-list-card:nth-child(even) {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}
.case-list-card:nth-child(even) .case-list-card-media {
  order: 2;
}
.case-list-card-media {
  display: block;
  min-height: 520px;
  overflow: hidden;
  background: #e7e7e2;
}
.case-list-card-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform .55s ease;
}
.case-list-card:hover .case-list-card-media img {
  transform: scale(1.025);
}
.case-list-card-content {
  display: flex;
  flex-direction: column;
  padding: 38px;
}
.case-list-card-content h2 {
  margin: 90px 0 20px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.02;
}
.case-list-card-content h2 a {
  color: #161616;
}
.case-list-card-content > p {
  margin: 0;
  color: #555;
  font-size: 18px;
  line-height: 1.68;
}
.case-list-card-content .case-read-link {
  margin-top: auto;
  align-self: flex-start;
}
.cases-empty {
  padding: 80px 30px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 25px;
  background: #fff;
  text-align: center;
}
.cases-empty h2 {
  margin: 0 0 12px;
}
.cases-page-outro {
  padding: 105px 0 35px;
}
.cases-page-outro-inner {
  padding: 70px;
  border-radius: 30px;
  background: #171717;
  color: #fff;
}
.cases-page-outro .cases-eyebrow {
  color: rgba(255,255,255,.55);
}
.cases-page-outro h2 {
  max-width: 950px;
  margin: 16px 0 35px;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -.05em;
}
.cases-page-outro .btn {
  background: #fff;
  color: #111;
}
.case-admin-shortcut {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.case-admin-shortcut:hover {
  color: #fff;
  opacity: .8;
}

.case-detail-page {
  background: #fff;
}
.case-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 155px 0 65px;
}
.case-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 65px;
  color: #777;
  font-size: 13px;
}
.case-breadcrumbs a {
  color: #3f3f3f;
}
.case-detail-hero h1 {
  margin: 16px 0 0;
  color: #111;
  font-size: clamp(46px, 6.1vw, 88px);
  line-height: .89;
  letter-spacing: -.066em;
}
.case-detail-subtitle {
  margin: 0;
  color: #434343;
  font-size: 20px;
  line-height: 1.64;
}
.case-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 75px;
  border-top: 1px solid rgba(0,0,0,.14);
  border-bottom: 1px solid rgba(0,0,0,.14);
}
.case-detail-meta > div {
  min-height: 120px;
  padding: 25px 24px 24px 0;
}
.case-detail-meta > div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(0,0,0,.14);
}
.case-detail-meta span {
  display: block;
  margin-bottom: 28px;
  color: #777;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.case-detail-meta strong {
  color: #171717;
  font-size: 19px;
}
.case-detail-cover {
  padding: 0 0 100px;
}
.case-detail-cover img,
.case-detail-cover-placeholder {
  width: 100%;
  min-height: 640px;
  border-radius: 28px;
}
.case-detail-cover img {
  display: block;
  object-fit: cover;
}
.case-detail-cover-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 48px;
  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.75), transparent 23%),
    linear-gradient(140deg, #d9ded8 0%, #eeeae3 60%, #d8d5d0 100%);
}
.case-detail-cover-placeholder::before,
.case-detail-cover-placeholder::after {
  position: absolute;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 50%;
  content: '';
}
.case-detail-cover-placeholder::before {
  width: 44%;
  aspect-ratio: 1;
  top: 8%;
  right: 8%;
}
.case-detail-cover-placeholder::after {
  width: 68%;
  aspect-ratio: 1;
  left: 5%;
  bottom: -52%;
}
.case-detail-cover-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.case-detail-cover-placeholder strong {
  position: relative;
  z-index: 1;
  max-width: 75%;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: .87;
  letter-spacing: -.065em;
}
.case-detail-section {
  padding: 105px 0;
}
.case-detail-section--soft {
  background: #f4f4f1;
}
.case-detail-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
  align-items: start;
}
.case-detail-heading {
  position: sticky;
  top: 120px;
}
.case-detail-heading > span {
  display: block;
  margin-bottom: 35px;
  color: #777;
  font-size: 12px;
  letter-spacing: .08em;
}
.case-detail-heading h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: .96;
}
.case-detail-text {
  max-width: 760px;
}
.case-detail-text p {
  margin: 0 0 24px;
  color: #3f3f3f;
  font-size: 20px;
  line-height: 1.75;
}
.case-detail-text p:first-child {
  color: #222;
  font-size: 23px;
}
.case-feature-list {
  margin: 50px 0 0;
  padding: 0;
  border-top: 1px solid rgba(0,0,0,.14);
  list-style: none;
}
.case-feature-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,.14);
}
.case-feature-list span {
  color: #888;
  font-size: 12px;
}
.case-feature-list p {
  margin: 0;
  color: #2d2d2d;
  font-size: 18px;
  line-height: 1.5;
}
.case-gallery-section {
  padding: 20px 0 105px;
}
.case-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.case-gallery a {
  overflow: hidden;
  border-radius: 20px;
  background: #eee;
}
.case-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .4s ease;
}
.case-gallery a:hover img {
  transform: scale(1.02);
}
.case-detail-result {
  padding: 110px 0;
  background: #171717;
  color: #fff;
}
.case-detail-result .cases-eyebrow {
  color: rgba(255,255,255,.52);
}
.case-detail-result-inner {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
}
.case-detail-result h2 {
  grid-column: 1;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1;
}
.case-detail-result-inner > div {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding-top: 26px;
}
.case-detail-result p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.75);
  font-size: 21px;
  line-height: 1.7;
}
.case-related-section {
  padding: 110px 0 30px;
}
.case-related-heading {
  margin-bottom: 42px;
}
.case-related-heading h2 {
  margin: 15px 0 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.05em;
}
.case-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.case-related-card {
  position: relative;
  min-height: 380px;
  padding: 30px;
  border-radius: 24px;
  background: #f2f2ef;
  color: #171717;
}
.case-related-card > span {
  color: #777;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.case-related-card h3 {
  max-width: 90%;
  margin: 95px 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.case-related-card p {
  max-width: 560px;
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.58;
}
.case-related-card i {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 22px;
}

.contact-new-hero {
  padding: 190px 0 90px;
}
.contact-new-main {
  padding: 95px 0 110px;
  background: #f4f4f1;
}
.contact-new-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 80px;
  align-items: start;
}
.contact-new-info-head h2,
.contact-new-form-head h2 {
  margin: 15px 0 18px;
  color: #161616;
  font-size: clamp(38px, 4.7vw, 67px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.contact-new-info-head > p,
.contact-new-form-head > p {
  margin: 0;
  color: #555;
  font-size: 17px;
  line-height: 1.65;
}
.contact-method-list {
  margin-top: 42px;
  border-top: 1px solid rgba(0,0,0,.14);
}
.contact-method {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid rgba(0,0,0,.14);
  color: #171717;
}
.contact-method span {
  display: grid;
  gap: 5px;
}
.contact-method small {
  color: #777;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.contact-method strong {
  font-size: 19px;
}
.contact-method i {
  font-size: 19px;
}
.contact-new-form-wrap {
  padding: 40px;
  border-radius: 28px;
  background: #fff;
}
.contact-new-form {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}
.contact-new-field {
  display: grid;
  gap: 8px;
}
.contact-new-field label {
  color: #2f2f2f;
  font-size: 13px;
  font-weight: 700;
}
.contact-new-field label span {
  color: #8b8b8b;
  font-weight: 400;
}
.contact-new-field input,
.contact-new-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid rgba(0,0,0,.17);
  border-radius: 13px;
  outline: 0;
  background: #fff;
  color: #171717;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-new-field textarea {
  min-height: 170px;
  resize: vertical;
  line-height: 1.55;
}
.contact-new-field input:focus,
.contact-new-field textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}
.contact-new-submit {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-top: 6px;
}
.contact-new-submit p {
  max-width: 250px;
  margin: 0;
  color: #777;
  font-size: 12px;
  line-height: 1.45;
}
.contact-new-form button[disabled] {
  cursor: wait;
  opacity: .68;
}
.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
.form-message {
  margin: 18px 0 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
}
.form-message.success {
  color: #23723b;
}
.form-message.error {
  color: #a6372c;
}
.contact-new-note {
  padding: 80px 0 20px;
}
.contact-new-note-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 35px 0;
  border-top: 1px solid rgba(0,0,0,.14);
  border-bottom: 1px solid rgba(0,0,0,.14);
}
.contact-new-note-inner span {
  color: #777;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-new-note-inner p {
  max-width: 850px;
  margin: 0;
  color: #303030;
  font-size: clamp(23px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -.025em;
}

@media (max-width: 991px) {
  .home-cases-grid,
  .case-related-grid {
    grid-template-columns: 1fr;
  }
  .case-list-card,
  .case-list-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .case-list-card:nth-child(even) .case-list-card-media {
    order: 0;
  }
  .case-detail-grid,
  .case-detail-result-inner,
  .contact-new-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .case-detail-heading {
    position: static;
  }
  .case-detail-result-inner > div,
  .case-detail-result h2 {
    grid-column: auto;
    grid-row: auto;
  }
  .case-detail-result-inner > div {
    padding-top: 0;
  }
  .contact-new-layout {
    gap: 55px;
  }
}

@media (max-width: 767px) {
  .home-cases-section {
    padding: 78px 0;
  }
  .home-cases-grid {
    margin-top: 32px;
  }
  .home-case-media,
  .home-case-media img {
    min-height: 270px;
    height: 270px;
  }
  .home-case-placeholder,
  .case-list-placeholder {
    padding: 22px;
  }
  .home-case-content {
    padding: 23px 21px;
  }
  .home-case-content h3 {
    margin-top: 42px;
    font-size: 31px;
  }
  .cases-hero,
  .contact-new-hero {
    padding: 130px 0 60px;
  }
  .cases-hero h1,
  .contact-new-hero h1 {
    font-size: 54px;
  }
  .cases-hero .col-lg-4 > p,
  .contact-new-hero .col-lg-4 > p {
    font-size: 17px;
  }
  .cases-hero-line {
    justify-content: flex-start;
    margin-top: 48px;
  }
  .cases-list-section {
    padding: 65px 0 80px;
  }
  .case-list-card {
    border-radius: 20px;
  }
  .case-list-card-media,
  .case-list-card-media img {
    min-height: 285px;
  }
  .case-list-card-content {
    padding: 24px 21px;
  }
  .case-list-card-content h2 {
    margin-top: 50px;
    font-size: 34px;
  }
  .case-list-card-content > p {
    font-size: 16px;
  }
  .case-list-card-content .case-read-link {
    margin-top: 28px;
  }
  .cases-page-outro {
    padding: 70px 0 20px;
  }
  .cases-page-outro-inner {
    padding: 35px 22px;
    border-radius: 20px;
  }
  .cases-page-outro h2 {
    font-size: 38px;
  }
  .case-detail-hero {
    padding: 125px 0 50px;
  }
  .case-breadcrumbs {
    margin-bottom: 45px;
  }
  .case-detail-hero h1 {
    font-size: 44px;
  }
  .case-detail-subtitle {
    font-size: 17px;
  }
  .case-detail-meta {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
  .case-detail-meta > div,
  .case-detail-meta > div + div {
    min-height: 0;
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,.14);
  }
  .case-detail-meta > div:first-child {
    border-top: 0;
  }
  .case-detail-meta span {
    margin-bottom: 10px;
  }
  .case-detail-cover {
    padding-bottom: 65px;
  }
  .case-detail-cover img,
  .case-detail-cover-placeholder {
    min-height: 360px;
    border-radius: 20px;
  }
  .case-detail-cover-placeholder {
    padding: 25px 22px;
  }
  .case-detail-cover-placeholder strong {
    max-width: 95%;
    font-size: 42px;
  }
  .case-detail-section,
  .case-detail-result {
    padding: 70px 0;
  }
  .case-detail-heading h2 {
    font-size: 38px;
  }
  .case-detail-text p,
  .case-detail-text p:first-child,
  .case-detail-result p {
    font-size: 17px;
  }
  .case-feature-list {
    margin-top: 35px;
  }
  .case-feature-list li {
    grid-template-columns: 38px 1fr;
  }
  .case-feature-list p {
    font-size: 16px;
  }
  .case-gallery {
    grid-template-columns: 1fr;
  }
  .case-related-section {
    padding: 75px 0 20px;
  }
  .case-related-card {
    min-height: 310px;
    padding: 24px 21px;
    border-radius: 20px;
  }
  .case-related-card h3 {
    margin-top: 70px;
    font-size: 31px;
  }
  .contact-new-main {
    padding: 70px 0 80px;
  }
  .contact-new-form-wrap {
    padding: 28px 21px;
    border-radius: 20px;
  }
  .contact-new-info-head h2,
  .contact-new-form-head h2 {
    font-size: 40px;
  }
  .contact-new-submit {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-new-submit p {
    max-width: 100%;
  }
  .contact-new-note {
    padding-top: 55px;
  }
  .contact-new-note-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-new-note-inner p {
    font-size: 25px;
  }
}

.cookie-notice {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 100000;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 32px);
  padding: 7px 7px 7px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: #05070d;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  font-size: 13px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}
.cookie-notice[hidden] {
  display: none !important;
}
.cookie-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-notice span {
  white-space: nowrap;
}
.cookie-notice button {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 5px 12px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #05070d;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}
.cookie-notice button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .cookie-notice {
    left: 10px;
    bottom: 10px;
    max-width: calc(100vw - 20px);
    padding-left: 12px;
    font-size: 12px;
  }
}


/* Contacts hero refinement */
.contact-new-hero {
  padding: 135px 0 78px;
}
.contact-new-hero h1 {
  max-width: 880px;
  font-size: clamp(64px, 7vw, 112px);
  line-height: .9;
  letter-spacing: -.06em;
}
.contact-new-hero .col-lg-4 > p {
  max-width: 430px;
  margin-left: auto;
  padding-bottom: 8px;
}
@media (max-width: 991.98px) {
  .contact-new-hero {
    padding: 105px 0 58px;
  }
  .contact-new-hero h1 {
    max-width: 720px;
    font-size: clamp(58px, 10vw, 84px);
    line-height: .92;
  }
  .contact-new-hero .col-lg-4 > p {
    max-width: 620px;
    margin-left: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .contact-new-hero {
    padding: 82px 0 44px;
  }
  .contact-new-hero h1 {
    font-size: clamp(48px, 15vw, 68px);
    }
}

/* Footer refresh */
.footer-cta-section {
  padding: 88px 0 22px;
}
.footer-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 64px;
  align-items: end;
  padding: 56px 60px;
  border-radius: 30px;
  background: #05070d;
  color: #fff;
}
.footer-cta-label {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-cta-copy h2 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
}
.footer-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer-cta-action p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.55;
}
.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #fff;
  color: #05070d;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}
.footer-cta-button:hover {
  color: #05070d;
  background: #f0f0f0;
  transform: translateY(-2px);
}
.site-footer {
  padding: 34px 0 24px;
}
.site-footer-main {
  display: grid;
  grid-template-columns: 1fr 1.6fr .7fr;
  gap: 48px;
  align-items: start;
  padding: 38px 0 42px;
  border-bottom: 1px solid rgba(5, 7, 13, .12);
}
.site-footer-brand {
  color: #05070d;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.035em;
  text-decoration: none;
}
.site-footer-brand:hover {
  color: #05070d;
}
.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 28px;
}
.site-footer-nav a,
.site-footer-contacts a,
.site-footer-bottom a {
  color: #05070d;
  text-decoration: none;
}
.site-footer-nav a {
  font-size: 15px;
  font-weight: 500;
}
.site-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.site-footer-contacts a {
  font-size: 15px;
  font-weight: 500;
}
.site-footer-nav a:hover,
.site-footer-contacts a:hover,
.site-footer-bottom a:hover {
  opacity: .58;
}
.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  color: rgba(5, 7, 13, .62);
  font-size: 14px;
}
.site-footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .footer-cta-section {
    padding-top: 70px;
  }
  .footer-cta-card {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 44px 38px;
  }
  .footer-cta-copy h2 {
    font-size: clamp(42px, 8vw, 64px);
  }
  .site-footer-main {
    grid-template-columns: 1fr 1.5fr;
  }
  .site-footer-contacts {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 575.98px) {
  .footer-cta-section {
    padding: 54px 0 14px;
  }
  .footer-cta-card {
    gap: 28px;
    padding: 32px 24px;
    border-radius: 22px;
  }
  .footer-cta-label {
    margin-bottom: 14px;
    font-size: 11px;
  }
  .footer-cta-copy h2 {
    font-size: clamp(38px, 12vw, 52px);
    letter-spacing: -.035em;
  }
  .footer-cta-action p {
    font-size: 16px;
  }
  .footer-cta-button {
    width: 100%;
    justify-content: space-between;
    min-height: 54px;
    font-size: 16px;
  }
  .site-footer {
    padding-top: 16px;
  }
  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 0;
  }
  .site-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer-contacts {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 14px;
  }
}

/* Portfolio 2026 */
.portfolio-new-hero{padding:clamp(150px,17vw,260px) 0 clamp(70px,8vw,120px)}
.portfolio-new-hero-grid{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(280px,.55fr);gap:clamp(40px,8vw,140px);align-items:end}
.portfolio-new-hero h1{font-size:clamp(52px,6.4vw,104px);line-height:.98;letter-spacing:-.045em;max-width:980px;margin:24px 0 0}
.portfolio-new-hero p{font-size:clamp(18px,1.45vw,24px);line-height:1.5;margin:0;color:#4d4d50}
.portfolio-new-list{padding:0 0 clamp(100px,12vw,180px)}
.portfolio-new-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(50px,7vw,110px) clamp(24px,3vw,52px)}
.portfolio-new-card:nth-child(4n+1),.portfolio-new-card:nth-child(4n+4){grid-column:span 2}
.portfolio-new-media{display:block;aspect-ratio:16/10;overflow:hidden;border-radius:28px;background:#f0f0f2;color:#0b0c12;text-decoration:none}
.portfolio-new-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}.portfolio-new-card:hover .portfolio-new-media img{transform:scale(1.025)}
.portfolio-new-media>span{height:100%;display:flex;flex-direction:column;justify-content:space-between;padding:32px}.portfolio-new-media strong{font-size:clamp(34px,5vw,78px);line-height:1}
.portfolio-new-content{padding-top:24px}.portfolio-new-meta{display:flex;gap:16px;font-size:13px;text-transform:uppercase;letter-spacing:.08em;color:#707076}
.portfolio-new-content h2,.home-portfolio-new-card h3{font-size:clamp(28px,3vw,48px);line-height:1.08;margin:12px 0}.portfolio-new-content h2 a,.home-portfolio-new-card h3 a{color:inherit;text-decoration:none}
.portfolio-new-content p,.home-portfolio-new-card p{font-size:17px;line-height:1.55;color:#56565b;max-width:720px}.portfolio-new-link{display:inline-flex;gap:10px;color:#0b0c12;border-bottom:1px solid;text-decoration:none;padding-bottom:5px;margin-top:8px}
.portfolio-detail-hero{padding:clamp(150px,16vw,250px) 0 70px}.portfolio-detail-meta{display:flex;justify-content:space-between;text-transform:uppercase;letter-spacing:.08em;color:#6b6b71}.portfolio-detail-hero h1{font-size:clamp(48px,6.4vw,102px);line-height:.98;letter-spacing:-.045em;max-width:1150px;margin:24px 0}.portfolio-detail-hero>div>p{font-size:clamp(20px,2vw,32px);line-height:1.35;max-width:900px;color:#55555b}
.portfolio-detail-cover img{width:100%;display:block;border-radius:32px}.portfolio-detail-body{padding:clamp(70px,9vw,140px) 0}.portfolio-detail-facts{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;padding-bottom:70px;border-bottom:1px solid #ddd}.portfolio-detail-facts div{display:flex;flex-direction:column;gap:10px}.portfolio-detail-facts small{text-transform:uppercase;letter-spacing:.08em;color:#777}.portfolio-detail-facts strong,.portfolio-detail-facts a{font-size:20px;color:#111}
.portfolio-detail-text{display:grid;grid-template-columns:minmax(220px,.65fr) minmax(0,1.35fr);gap:60px;padding:80px 0;border-bottom:1px solid #ddd}.portfolio-detail-text h2{font-size:clamp(34px,4vw,62px);line-height:1.05;letter-spacing:-.04em}.portfolio-detail-text p{font-size:20px;line-height:1.65;color:#444}.portfolio-detail-works{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;padding:0;list-style:none}.portfolio-detail-works li{padding:20px;border:1px solid #ddd;border-radius:18px;font-size:18px}
.portfolio-detail-gallery{display:grid;gap:28px;padding:80px 0}.portfolio-detail-gallery figure{margin:0}.portfolio-detail-gallery img{width:100%;border-radius:24px;display:block}.portfolio-detail-result{margin:40px 0;padding:clamp(32px,5vw,72px);border-radius:28px;background:#0b0c12;color:#fff}.portfolio-detail-result span{text-transform:uppercase;letter-spacing:.08em;color:#aaa}.portfolio-detail-result p{font-size:clamp(24px,3vw,44px);line-height:1.25;max-width:1100px}.portfolio-detail-tech{display:flex;flex-wrap:wrap;gap:10px}.portfolio-detail-tech span{padding:10px 16px;border:1px solid #ccc;border-radius:999px}
.home-portfolio-new-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:60px 28px;margin-top:45px}.home-portfolio-new-card:first-child{grid-column:span 2}.home-portfolio-new-media{display:block;aspect-ratio:16/10;overflow:hidden;border-radius:24px;background:#eee;text-decoration:none;color:#111}.home-portfolio-new-media img{width:100%;height:100%;object-fit:cover}.home-portfolio-new-media span{height:100%;display:flex;flex-direction:column;justify-content:space-between;padding:28px}.home-portfolio-new-media strong{font-size:clamp(30px,4vw,64px)}.home-portfolio-new-card>div{padding-top:18px}
@media(max-width:991px){.portfolio-new-hero-grid,.portfolio-detail-text{grid-template-columns:1fr}.portfolio-new-grid,.home-portfolio-new-grid{grid-template-columns:1fr}.portfolio-new-card:nth-child(n),.home-portfolio-new-card:first-child{grid-column:auto}.portfolio-detail-facts{grid-template-columns:1fr}.portfolio-detail-works{grid-template-columns:1fr}.portfolio-new-hero h1,.portfolio-detail-hero h1{font-size:clamp(46px,11vw,76px)}}


/* Footer refinement */
.footer-cta-copy h2 {
    max-width: 720px;
    font-size: clamp(40px, 4.65vw, 68px);
    line-height: 1.03;
    letter-spacing: -.03em;
}
.footer-cta-action {
    max-width: 410px;
    gap: 20px;
    align-self: center;
}
.footer-cta-action p {
    max-width: 380px;
    font-size: 17px;
}
.site-footer-main {
    grid-template-columns: minmax(250px, 1fr) minmax(420px, 1.45fr) minmax(180px, .65fr);
}
.site-footer-brand-block {
    max-width: 280px;
}
.site-footer-brand-block p {
    margin: 12px 0 0;
    color: rgba(5,7,13,.58);
    font-size: 14px;
    line-height: 1.5;
}
.site-footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
}
.site-footer-legal a {
    color: rgba(5,7,13,.62);
}
@media (max-width: 991px) {
    .footer-cta-copy h2 { font-size: clamp(38px, 7vw, 58px); }
    .site-footer-main { grid-template-columns: 1fr 1.4fr; }
}
@media (max-width: 767px) {
    .footer-cta-copy h2 { font-size: clamp(34px, 10.5vw, 46px); line-height: 1.06; letter-spacing: -.02em; }
    .footer-cta-action { max-width: none; }
    .site-footer-main { grid-template-columns: 1fr; }
    .site-footer-brand-block { max-width: 260px; }
    .site-footer-legal { align-items: flex-start; flex-direction: column; gap: 8px; }
}

/* Footer typography compact */
.footer-cta-copy h2 {
    max-width: 680px;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.06;
}
.site-footer-bottom,
.site-footer-legal,
.site-footer-legal a {
    font-size: 13px;
}
@media (max-width: 991px) {
    .footer-cta-copy h2 { font-size: clamp(34px, 6.2vw, 50px); }
}
@media (max-width: 767px) {
    .footer-cta-copy h2 { font-size: clamp(30px, 9vw, 40px); line-height: 1.08; }
    .site-footer-bottom,
    .site-footer-legal,
    .site-footer-legal a { font-size: 12px; }
}

/* 404 page */
.not-found-page {
    min-height: 68vh;
    display: flex;
    align-items: center;
}
.not-found-section {
    width: 100%;
    padding: 110px 0 120px;
}
.not-found-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(40px, 7vw, 120px);
    padding: clamp(48px, 6vw, 92px);
    border: 1px solid rgba(3, 7, 18, .1);
    border-radius: 34px;
    background: #f5f5f6;
}
.not-found-code {
    font-size: clamp(150px, 18vw, 300px);
    line-height: .78;
    font-weight: 500;
    letter-spacing: -.07em;
    color: rgba(3, 7, 18, .08);
    user-select: none;
}
.not-found-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}
.not-found-label {
    display: block;
    margin-bottom: 22px;
    color: #62656b;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.not-found-content h1 {
    max-width: 650px;
    margin: 0 0 24px;
    font-size: clamp(46px, 5.1vw, 76px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.025em;
}
.not-found-content p {
    max-width: 590px;
    margin: 0;
    color: #565960;
    font-size: 19px;
    line-height: 1.55;
}
.not-found-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 26px;
    margin-top: 36px;
}
.not-found-primary {
    min-width: 180px;
}
.not-found-link {
    color: #171717;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, .35);
    padding: 6px 0 4px;
    transition: opacity .25s ease, border-color .25s ease;
}
.not-found-link:hover {
    color: #171717;
    opacity: .62;
    border-color: transparent;
}
@media (max-width: 991px) {
    .not-found-section { padding: 80px 0 90px; }
    .not-found-card {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 58px 48px;
    }
    .not-found-code {
        position: absolute;
        top: 42px;
        right: 34px;
        font-size: clamp(130px, 28vw, 220px);
    }
    .not-found-content { max-width: 650px; }
}
@media (max-width: 767px) {
    .not-found-page { min-height: auto; }
    .not-found-section { padding: 54px 0 70px; }
    .not-found-card {
        border-radius: 24px;
        padding: 44px 24px 38px;
    }
    .not-found-code {
        top: 34px;
        right: 18px;
        font-size: 130px;
    }
    .not-found-label { margin-bottom: 54px; font-size: 12px; }
    .not-found-content h1 {
        margin-bottom: 18px;
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.04;
    }
    .not-found-content p { font-size: 17px; }
    .not-found-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        margin-top: 28px;
    }
    .not-found-primary { width: 100%; justify-content: center; }
}

/* Privacy page */
.privacy-page {
    padding: 150px 0 110px;
}
.privacy-page__content {
    max-width: 920px;
}
.privacy-page h1 {
    max-width: 780px;
    margin: 18px 0 38px;
    font-size: clamp(44px, 4.8vw, 70px);
    line-height: 1.04;
    font-weight: 500;
}
.privacy-page p {
    max-width: 760px;
    margin: 0 0 26px;
    color: #444;
    font-size: 19px;
    line-height: 1.62;
}
.privacy-page a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (max-width: 991px) {
    .privacy-page { padding: 120px 0 90px; }
    .privacy-page h1 {
        max-width: 700px;
        font-size: clamp(42px, 7vw, 62px);
    }
}
@media (max-width: 767px) {
    .privacy-page { padding: 96px 0 72px; }
    .privacy-page h1 {
        margin: 14px 0 28px;
        font-size: clamp(36px, 11vw, 48px);
        line-height: 1.06;
    }
    .privacy-page p {
        margin-bottom: 22px;
        font-size: 17px;
        line-height: 1.58;
    }
}

/* Unified inner-page hero */
.page-standard-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 72px;
}
.page-standard-hero::after {
  position: absolute;
  top: 52px;
  right: -9vw;
  width: 52vw;
  aspect-ratio: 1;
  border: 1px solid rgba(0,0,0,.065);
  border-radius: 50%;
  content: '';
  pointer-events: none;
}
.page-standard-hero > .container { position: relative; z-index: 2; }
.page-standard-eyebrow {
  display: inline-block;
  color: #686868;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.page-standard-hero h1,
.cases-hero h1,
.contact-new-hero h1,
.products-hero h1,
.about-hero h1,
.portfolio-new-hero h1,
.privacy-hero h1 {
  max-width: 960px;
  margin: 16px 0 0;
  color: #0d0e12;
  font-size: clamp(46px, 6.1vw, 90px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.045em;
}
.page-standard-hero .col-lg-4 > p,
.products-hero-text,
.about-hero-side > p {
  max-width: 440px;
  margin: 0 0 2px auto;
  color: #414141;
  font-size: 19px;
  line-height: 1.62;
}
.page-standard-hero-line,
.cases-hero-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 70px;
  padding: 23px 0;
  border-top: 1px solid rgba(0,0,0,.14);
  border-bottom: 1px solid rgba(0,0,0,.14);
  color: #565656;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .055em;
  text-transform: uppercase;
}
/* Cases title reduced by about 20% from the previous maximum. */
.cases-hero h1 { font-size: clamp(46px, 6.1vw, 90px); }
.about-hero { padding-bottom: 72px; }
.about-hero::after, .products-hero::after { z-index: 0; }
.about-hero-bg, .products-hero-bg { opacity: .2; }
.about-facts { margin-top: 68px; }
.products-nav { margin-top: 68px; }
.portfolio-new-hero { padding: 170px 0 72px; }
.portfolio-new-hero-grid { display: contents; }
.privacy-page { padding: 88px 0 110px; background: #f4f4f1; }
.privacy-page__content { max-width: 780px; }
.privacy-page h1 { display: none; }
.privacy-page p { font-size: 19px; line-height: 1.68; }

@media (max-width: 991px) {
  .page-standard-hero { padding: 135px 0 62px; }
  .page-standard-hero h1,
  .cases-hero h1,
  .contact-new-hero h1,
  .products-hero h1,
  .about-hero h1,
  .portfolio-new-hero h1,
  .privacy-hero h1 { font-size: clamp(44px, 8vw, 68px); line-height: .98; }
  .page-standard-hero .col-lg-4 > p,
  .products-hero-text,
  .about-hero-side > p { max-width: 720px; margin-left: 0; }
  .page-standard-hero-line, .cases-hero-line { margin-top: 52px; }
  .portfolio-new-hero { padding: 135px 0 62px; }
}
@media (max-width: 767px) {
  .page-standard-hero { padding: 105px 0 48px; }
  .page-standard-hero::after { width: 90vw; right: -42vw; top: 72px; }
  .page-standard-hero h1,
  .cases-hero h1,
  .contact-new-hero h1,
  .products-hero h1,
  .about-hero h1,
  .portfolio-new-hero h1,
  .privacy-hero h1 {
    max-width: 100%;
    margin-top: 12px;
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1;
    letter-spacing: -.035em;
  }
  .page-standard-hero .col-lg-4 > p,
  .products-hero-text,
  .about-hero-side > p { font-size: 17px; line-height: 1.56; }
  .page-standard-hero-line, .cases-hero-line {
    justify-content: flex-start;
    margin-top: 38px;
    padding: 18px 0;
    font-size: 11px;
  }
  .about-facts, .products-nav { margin-top: 42px; }
  .portfolio-new-hero { padding: 105px 0 48px; }
  .privacy-page { padding: 58px 0 76px; }
  .privacy-page p { font-size: 17px; }
}

/* Cases header and breadcrumbs refinement */
body:has(.cases-hero) header .navbar-expand,
body:has(.case-detail-page) header .navbar-expand {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.055);
}
header .navbar-expand .navbar-nav .nav-item .nav-link.active {
  opacity: 1;
}
header .navbar-expand .navbar-nav .nav-item .nav-link.active::after {
  transform: translate(-50%, -50%) scale(1) rotate(.001deg);
}
.cases-hero {
  background: #fafaf8;
}
.case-detail-hero {
  padding-top: 175px;
}
.case-breadcrumbs {
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 52px;
  padding: 9px 13px;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 999px;
  background: #f5f5f2;
  color: #777;
  font-size: 12px;
  line-height: 1.2;
}
.case-breadcrumbs a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #171717;
  font-weight: 600;
}
.case-breadcrumbs a:hover {
  opacity: .65;
}
.case-breadcrumbs-separator {
  display: inline-flex;
  color: #aaa;
  font-size: 10px;
}
.case-breadcrumbs-current {
  display: block;
  overflow: hidden;
  max-width: min(42vw, 390px);
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .case-detail-hero { padding-top: 118px; }
  .case-breadcrumbs {
    margin-bottom: 34px;
    padding: 8px 11px;
  }
  .case-breadcrumbs-current { max-width: 42vw; }
}

/* Portfolio detail page refinement */
body:has(.portfolio-detail-page) header .navbar-expand {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.055);
}
.portfolio-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 165px 0 72px;
  background: #fafaf8;
}
.portfolio-detail-hero::after {
  position: absolute;
  top: 42px;
  right: -10vw;
  width: min(58vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(0,0,0,.055);
  border-radius: 50%;
  content: '';
  pointer-events: none;
  animation: portfolioHeroCircle 18s ease-in-out infinite alternate;
}
.portfolio-detail-hero::before {
  position: absolute;
  top: 178px;
  right: 15vw;
  width: min(23vw, 370px);
  aspect-ratio: 1;
  border: 1px solid rgba(0,0,0,.045);
  border-radius: 50%;
  content: '';
  pointer-events: none;
  animation: portfolioHeroCircleSmall 14s ease-in-out infinite alternate;
}
@keyframes portfolioHeroCircle {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-24px,18px,0) scale(1.035); }
}
@keyframes portfolioHeroCircleSmall {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(18px,-14px,0); }
}
.portfolio-detail-hero .container { position: relative; z-index: 2; }
.portfolio-detail-hero h1 {
  max-width: 980px;
  margin: 16px 0 0;
  color: #0d0e12;
  font-size: clamp(48px, 5.8vw, 86px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.035em;
}
.portfolio-detail-hero .col-lg-4 > p {
  max-width: 440px;
  margin: 0 0 3px auto;
  color: #414141;
  font-size: 19px;
  line-height: 1.62;
}
.portfolio-detail-hero-line a { color: inherit; text-decoration: none; }
.portfolio-detail-cover { padding: 54px 0 0; background: #f4f4f1; }
.portfolio-detail-cover img { border-radius: 28px; box-shadow: 0 24px 60px rgba(16,18,24,.08); }
.portfolio-detail-body { padding: clamp(72px,8vw,126px) 0; background: #f4f4f1; }
.portfolio-detail-facts { display: none; }
.portfolio-detail-text {
  grid-template-columns: minmax(220px,.58fr) minmax(0,1.42fr);
  gap: clamp(44px,6vw,90px);
  padding: clamp(62px,7vw,96px) 0;
}
.portfolio-detail-text h2 {
  position: sticky;
  top: 130px;
  align-self: start;
  font-size: clamp(34px,3.45vw,54px);
  line-height: 1.04;
  letter-spacing: -.025em;
}
.portfolio-detail-text p { max-width: 900px; font-size: 19px; line-height: 1.72; }
.portfolio-detail-work-section {
  display: grid;
  grid-template-columns: minmax(240px,.55fr) minmax(0,1.45fr);
  gap: clamp(44px,6vw,90px);
  padding: clamp(76px,8vw,118px) 0;
  border-bottom: 1px solid #d8d8d4;
}
.portfolio-detail-work-heading { position: sticky; top: 130px; align-self: start; }
.portfolio-detail-work-heading > span {
  display: block;
  margin-bottom: 15px;
  color: #777;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.portfolio-detail-work-heading h2 {
  margin: 0;
  font-size: clamp(38px,4vw,62px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.025em;
}
.portfolio-detail-work-heading p {
  max-width: 360px;
  margin: 24px 0 0;
  color: #5d5d61;
  font-size: 16px;
  line-height: 1.58;
}
.portfolio-detail-works {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  margin: 0;
  counter-reset: portfolio-work;
}
.portfolio-detail-works li {
  position: relative;
  display: flex;
  min-height: 156px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px 23px 24px;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  transition: transform .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.portfolio-detail-works li::after {
  position: absolute;
  right: -46px;
  bottom: -62px;
  width: 138px;
  aspect-ratio: 1;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 50%;
  content: '';
  transition: transform .45s ease;
}
.portfolio-detail-works li:nth-child(4n+1),
.portfolio-detail-works li:nth-child(4n+4) { min-height: 196px; }
.portfolio-detail-works li:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: rgba(0,0,0,.16);
  background: #fff;
  box-shadow: 0 18px 42px rgba(15,17,22,.08);
}
.portfolio-detail-works li:hover::after { transform: scale(1.18) translate(-7px,-7px); }
.portfolio-detail-works li > span {
  position: relative;
  z-index: 1;
  color: #8a8a8e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
}
.portfolio-detail-works li > p {
  position: relative;
  z-index: 1;
  max-width: 92%;
  margin: 34px 0 0;
  color: #24252a;
  font-size: 18px;
  line-height: 1.42;
}
.portfolio-detail-result {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px,.4fr) minmax(0,1.6fr);
  gap: clamp(36px,5vw,84px);
  overflow: hidden;
  margin: 46px 0 0;
  padding: clamp(38px,5vw,66px);
  border-radius: 30px;
  background: #0b0c12;
}
.portfolio-detail-result::after {
  position: absolute;
  right: -90px;
  top: -120px;
  width: 360px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  content: '';
}
.portfolio-detail-result-label,
.portfolio-detail-result-copy { position: relative; z-index: 1; }
.portfolio-detail-result-label { display: flex; flex-direction: column; gap: 12px; }
.portfolio-detail-result-label span { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.portfolio-detail-result-label small { color: #85868c; font-size: 14px; }
.portfolio-detail-result-copy p {
  max-width: 920px;
  margin: 0 0 20px;
  color: #f5f5f6;
  font-size: clamp(20px,2vw,30px);
  line-height: 1.42;
}
.portfolio-detail-result-copy p:last-child { margin-bottom: 0; }
.portfolio-detail-gallery-section { padding: clamp(72px, 8vw, 112px) 0; }
.portfolio-detail-gallery-heading { display: block; max-width: 760px; margin-bottom: clamp(28px, 4vw, 52px); }
.portfolio-detail-gallery-heading span { display: block; margin-bottom: 12px; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #777a82; }
.portfolio-detail-gallery-heading h2 { margin: 0 0 18px; font-size: clamp(40px, 5vw, 72px); line-height: 1; font-weight: 500; }
.portfolio-detail-gallery-heading p { max-width: 620px; margin: 0; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; color: #5f626a; }
.portfolio-detail-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.5vw, 22px); padding: 0; }
.portfolio-detail-gallery-item { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid rgba(15, 18, 25, .09); border-radius: 18px; background: #f3f4f6; box-shadow: 0 10px 30px rgba(16,18,24,.045); cursor: zoom-in; }
.portfolio-detail-gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 0; box-shadow: none; transition: transform .45s ease; }
.portfolio-detail-gallery-item > span { position: absolute; right: 12px; bottom: 12px; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(8,10,16,.82); color: #fff; opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease; }
.portfolio-detail-gallery-item:hover img { transform: scale(1.025); }
.portfolio-detail-gallery-item:hover > span { opacity: 1; transform: translateY(0); }
@media (max-width: 1199px) { .portfolio-detail-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 767px) { .portfolio-detail-gallery-heading { max-width: none; } .portfolio-detail-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } .portfolio-detail-gallery-item { border-radius: 14px; } .portfolio-detail-gallery-item > span { width: 34px; height: 34px; opacity: 1; transform: none; } }
@media (max-width: 430px) { .portfolio-detail-gallery { grid-template-columns: 1fr; } .portfolio-detail-gallery-item { aspect-ratio: 16 / 10; } }
@media (max-width: 991px) {
  .portfolio-detail-hero { padding: 135px 0 62px; }
  .portfolio-detail-hero h1 { font-size: clamp(44px,8vw,68px); line-height: .98; }
  .portfolio-detail-hero .col-lg-4 > p { max-width: 720px; margin-left: 0; }
  .portfolio-detail-text,
  .portfolio-detail-work-section,
  .portfolio-detail-result { grid-template-columns: 1fr; }
  .portfolio-detail-text h2,
  .portfolio-detail-work-heading { position: static; }
}
@media (max-width: 767px) {
  .portfolio-detail-hero { padding: 105px 0 48px; }
  .portfolio-detail-hero::after { width: 96vw; right: -48vw; top: 65px; }
  .portfolio-detail-hero::before { display: none; }
  .portfolio-detail-hero h1 { font-size: clamp(38px,12vw,52px); line-height: 1; letter-spacing: -.025em; }
  .portfolio-detail-hero .col-lg-4 > p { font-size: 17px; line-height: 1.56; }
  .portfolio-detail-cover { padding-top: 28px; }
  .portfolio-detail-cover img { border-radius: 18px; }
  .portfolio-detail-text { padding: 52px 0; gap: 28px; }
  .portfolio-detail-text p { font-size: 17px; }
  .portfolio-detail-work-section { padding: 58px 0; gap: 34px; }
  .portfolio-detail-works { grid-template-columns: 1fr; }
  .portfolio-detail-works li:nth-child(n) { min-height: 142px; }
  .portfolio-detail-result { padding: 30px 24px; border-radius: 22px; gap: 28px; }
  .portfolio-detail-result-copy p { font-size: 19px; }
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-detail-hero::after,
  .portfolio-detail-hero::before { animation: none; }
  .portfolio-detail-works li { transition: none; }
}

/* Portfolio detail layout polish */
body:has(.portfolio-detail-page) header .navbar-expand{background:#fafaf8;backdrop-filter:none;-webkit-backdrop-filter:none;border-bottom:0;box-shadow:none}body:has(.portfolio-detail-page) header{background:#fafaf8}.portfolio-detail-hero{border-top:0}.portfolio-detail-work-section{grid-template-columns:minmax(220px,.48fr) minmax(0,1.52fr);gap:clamp(36px,5vw,72px);padding:clamp(64px,7vw,96px) 0}.portfolio-detail-works{gap:12px}.portfolio-detail-works li,.portfolio-detail-works li:nth-child(4n+1),.portfolio-detail-works li:nth-child(4n+4){min-height:118px;padding:18px 20px 19px;border-radius:18px}.portfolio-detail-works li>p{margin-top:22px;font-size:17px;line-height:1.38}.portfolio-detail-works li::after{width:112px;right:-42px;bottom:-54px}.portfolio-detail-result{display:block;margin-top:42px;padding:clamp(34px,4.5vw,58px)}.portfolio-detail-result-label{display:flex;flex-direction:row;align-items:center;gap:14px;margin-bottom:26px}.portfolio-detail-result-label small{padding-left:14px;border-left:1px solid rgba(255,255,255,.15)}.portfolio-detail-result-copy{max-width:980px}.portfolio-detail-result-copy p{max-width:none;margin-bottom:16px;font-size:clamp(18px,1.45vw,23px);line-height:1.55}@media(max-width:991px){.portfolio-detail-work-section{grid-template-columns:1fr}.portfolio-detail-result{display:block}}@media(max-width:767px){.portfolio-detail-works li,.portfolio-detail-works li:nth-child(n){min-height:106px;padding:16px 17px 18px}.portfolio-detail-works li>p{margin-top:18px;font-size:16px}.portfolio-detail-result-label{align-items:flex-start;flex-direction:column;gap:8px;margin-bottom:20px}.portfolio-detail-result-label small{padding-left:0;border-left:0}.portfolio-detail-result-copy p{font-size:18px}}

/* Articles */
.articles-hero{background:#fafaf8;padding-bottom:70px}.articles-hero h1{font-size:clamp(64px,7vw,90px);line-height:.95;margin:20px 0 0}.articles-list-section{padding:110px 0}.articles-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:70px 32px}.article-card{min-width:0}.article-card--wide{grid-column:span 2;display:grid;grid-template-columns:1.35fr .65fr;gap:42px;align-items:end}.article-card-media{display:block;aspect-ratio:16/7;border-radius:28px;overflow:hidden;background:#f1f1ef;text-decoration:none}.article-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}.article-card-media>span{display:flex;height:100%;padding:34px;flex-direction:column;justify-content:space-between;color:#080a12}.article-card-media>span small{font-size:14px}.article-card-media>span strong{font-size:clamp(28px,3vw,48px);font-weight:500}.article-card:hover .article-card-media img{transform:scale(1.025)}.article-card-content{padding-top:24px}.article-card--wide .article-card-content{padding:0 0 8px}.article-card-content>span{display:block;text-transform:uppercase;letter-spacing:.08em;font-size:13px;color:#707176;margin-bottom:13px}.article-card-content h2{font-size:clamp(28px,3vw,48px);line-height:1.05;margin:0 0 18px}.article-card-content h2 a{color:inherit;text-decoration:none}.article-card-content p{font-size:18px;line-height:1.55;color:#5d5e63;max-width:650px}.article-detail-page{background:#fff}.article-detail-hero{background:#fafaf8;padding:150px 0 85px}.article-detail-hero h1{font-size:clamp(54px,6.3vw,88px);line-height:.98;margin:18px 0 0;max-width:1000px}.article-detail-hero p{font-size:22px;line-height:1.5;color:#55565b;margin:0}.article-detail-cover{background:#fafaf8;padding:0 0 90px}.article-detail-cover img{width:100%;aspect-ratio:16/7;object-fit:cover;border-radius:30px}.article-content-section{padding:110px 0}.article-content-layout{display:grid;grid-template-columns:220px minmax(0,760px);gap:90px;justify-content:center}.article-content-layout aside{position:sticky;top:130px;align-self:start;display:flex;flex-direction:column;gap:12px}.article-content-layout aside span{font-size:13px;text-transform:uppercase;letter-spacing:.08em;color:#777}.article-content-layout aside a{color:#24252a;text-decoration:none;font-size:15px}.article-rich-text{font-size:20px;line-height:1.75;color:#303137}.article-rich-text h2{font-size:clamp(34px,4vw,54px);line-height:1.08;margin:72px 0 24px;color:#080a12}.article-rich-text h3{font-size:28px;line-height:1.2;margin:48px 0 18px;color:#080a12}.article-rich-text p{margin:0 0 25px}.article-rich-text ul,.article-rich-text ol{margin:24px 0 34px;padding-left:26px}.article-rich-text li{margin:10px 0}.article-rich-text blockquote{margin:42px 0;padding:28px 32px;border-left:3px solid #080a12;background:#f6f6f4;border-radius:0 20px 20px 0;font-size:22px}.article-lead{font-size:25px;line-height:1.55;color:#121319;margin-bottom:55px}.article-conclusion{margin-top:70px;padding:42px;background:#090b12;color:#fff;border-radius:28px}.article-conclusion span{display:block;text-transform:uppercase;letter-spacing:.08em;font-size:13px;color:#aaa;margin-bottom:18px}.article-conclusion p:last-child{margin-bottom:0}.article-faq-section{padding:110px 0;background:#f7f7f5}.article-faq-section h2{font-size:clamp(44px,5vw,72px);margin:18px 0 50px}.article-faq-list{max-width:950px}.article-faq-list details{border-top:1px solid #d8d8d5;padding:24px 0}.article-faq-list details:last-child{border-bottom:1px solid #d8d8d5}.article-faq-list summary{font-size:23px;cursor:pointer;list-style:none}.article-faq-list p{font-size:18px;line-height:1.65;color:#5c5d62;max-width:760px;margin:18px 0 0}
@media(max-width:991px){.articles-grid{grid-template-columns:1fr}.article-card--wide{grid-column:auto;display:block}.article-card--wide .article-card-content{padding-top:24px}.article-detail-hero{padding-top:120px}.article-content-layout{grid-template-columns:1fr;gap:35px}.article-content-layout aside{position:static;flex-direction:row;flex-wrap:wrap}.article-content-section{padding:75px 0}}
@media(max-width:575px){.articles-hero{padding-bottom:45px}.articles-hero h1{font-size:52px}.articles-list-section{padding:70px 0}.articles-grid{gap:52px}.article-card-media{border-radius:20px}.article-detail-hero{padding:105px 0 55px}.article-detail-hero h1{font-size:44px}.article-detail-hero p{font-size:18px}.article-detail-cover{padding-bottom:55px}.article-detail-cover img{border-radius:20px}.article-rich-text{font-size:18px}.article-lead{font-size:21px}.article-conclusion{padding:28px;border-radius:20px}}

.site-footer-legal a {
    font-size: 13px !important;
}

/* Article automatic table of contents */
.article-content-layout aside a.article-toc-level-3{padding-left:14px;color:#66676c}.article-rich-text h2[id],.article-rich-text h3[id],#article-start,#article-faq{scroll-margin-top:120px}

/* Article hero adapts to long headlines */
.article-detail-title-column{width:66.66666667%}.article-detail-summary-column{width:33.33333333%}.article-detail-hero--long h1{font-size:clamp(40px,4.2vw,60px);line-height:1.02;max-width:1040px}.article-detail-hero--extra-long h1{font-size:clamp(36px,3.6vw,52px);line-height:1.04;max-width:1080px}.article-detail-hero--long .article-detail-title-column,.article-detail-hero--extra-long .article-detail-title-column{width:100%}.article-detail-hero--long .article-detail-summary-column,.article-detail-hero--extra-long .article-detail-summary-column{display:none}@media(max-width:991px){.article-detail-title-column,.article-detail-summary-column{width:100%}.article-detail-hero--long h1{font-size:clamp(38px,6.5vw,52px)}.article-detail-hero--extra-long h1{font-size:clamp(34px,5.8vw,46px)}}@media(max-width:575px){.article-detail-hero--long h1{font-size:36px}.article-detail-hero--extra-long h1{font-size:32px}}

/* Article hero: compact single-column layout */
.article-detail-hero{padding:118px 0 58px}
.article-detail-hero .row{display:block}
.article-detail-title-column{width:100%}
.article-detail-summary-column{width:100%;margin-top:24px}
.article-detail-hero h1,.article-detail-hero--long h1,.article-detail-hero--extra-long h1{font-size:clamp(42px,4.3vw,64px);line-height:1.02;max-width:1120px}
.article-detail-hero--long h1{font-size:clamp(38px,3.8vw,56px)}
.article-detail-hero--extra-long h1{font-size:clamp(34px,3.4vw,50px)}
.article-detail-hero p{font-size:19px;line-height:1.5;max-width:760px}
.article-detail-hero--long .article-detail-summary-column,.article-detail-hero--extra-long .article-detail-summary-column{display:block}
.article-detail-cover{padding-top:0}
@media(max-width:991px){.article-detail-hero{padding:105px 0 48px}.article-detail-hero h1,.article-detail-hero--long h1,.article-detail-hero--extra-long h1{font-size:clamp(36px,6vw,50px)}.article-detail-summary-column{margin-top:20px}}
@media(max-width:575px){.article-detail-hero{padding:92px 0 38px}.article-detail-hero h1,.article-detail-hero--long h1,.article-detail-hero--extra-long h1{font-size:34px;line-height:1.04}.article-detail-hero p{font-size:17px}.article-detail-summary-column{margin-top:16px}}

/* Прокручиваемое содержание длинных статей */
@media (min-width:992px){.article-content-layout aside{max-height:calc(100vh - 170px);overflow-y:auto;padding-right:14px;overscroll-behavior:contain;scrollbar-width:thin;scrollbar-color:#c6c8cc transparent}.article-content-layout aside::-webkit-scrollbar{width:5px}.article-content-layout aside::-webkit-scrollbar-track{background:transparent}.article-content-layout aside::-webkit-scrollbar-thumb{background:#c6c8cc;border-radius:999px}}

/* Article table of contents: fixed heading, scrollable links */
.article-toc-scroll{display:flex;flex-direction:column;gap:12px;min-height:0}
@media (min-width:992px){.article-content-layout aside{max-height:calc(100vh - 170px);overflow:hidden;padding-right:0}.article-content-layout aside>span{flex:0 0 auto}.article-toc-scroll{overflow-y:auto;padding-right:14px;overscroll-behavior:contain;scrollbar-width:thin;scrollbar-color:#c6c8cc transparent}.article-toc-scroll::-webkit-scrollbar{width:5px}.article-toc-scroll::-webkit-scrollbar-track{background:transparent}.article-toc-scroll::-webkit-scrollbar-thumb{background:#c6c8cc;border-radius:999px}}
