/* 
  === Marlotech CSS modernization ===
  - All numeric px values converted to rem (base: 16px = 1rem)
  - Added responsive clamp() shortcuts for spacing & font sizes
*/
@import "/assets/css/typography.css?v=1.2.5";
:root {
  --primary-color: #00fff2;
  --heading-color: #1a1a1a;
  --primary-black-color: #0e0f11;
  --white-color: #b0aeae;
  --title-color: #fff;
  --text-color: #9e9fa0;
  --text: #eaf6f7;
  --border-color: #313131;
  --gray-dark: #18191b;
  --card-bg: #1a1c22;

  --ink: #0b1d24;
  --ink-weak: #3c5561;
  --bg: #e6fbff;
  --card: rgba(255, 255, 255, 0.7);
  --ring: rgba(0, 255, 242, 0.35);
  --radius: 1rem;
  --bs-body-color: #212529;

  --space-2xs: clamp(0.125rem, 0.25vw, 0.25rem);
  --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --space-sm: clamp(0.5rem, 1vw, 1rem);
  --space-md: clamp(1rem, 2vw, 2rem);
  --space-lg: clamp(1.5rem, 3vw, 3rem);
  --space-xl: clamp(2rem, 4vw, 4rem);
  --space-2xl: clamp(3rem, 6vw, 6rem);

  --fs-xs: clamp(0.75rem, 1vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 1.2vw, 1rem);
  --fs-md: clamp(1rem, 1.5vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 2vw, 1.375rem);
  --fs-xl: clamp(1.375rem, 3vw, 1.75rem);
  --fs-2xl: clamp(1.75rem, 4vw, 2.25rem);
  --fs-3xl: clamp(2rem, 6vw, 3rem);

  --stack-gap: 34px;
  --stack-card-h: 360px;
  --stack-count: 1;
  --stick-top: 0px;
}
[data-stroke-scroll] {
  color: transparent;
  -webkit-text-stroke-width: 1.2px;
  -webkit-text-stroke-color: var(--primary-color);
}
html {
  font-size: 100%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  background-color: #000 !important;
  background: 50% / contain url(/assets/images/marlo-bg.png);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
hr {
  margin: 0;
}
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

i,
span,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
  color: var(--title-color);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

input,
textarea {
  display: inherit;
}

button {
  border: none;
}

label {
  margin-bottom: 0;
}

iframe {
  width: 100%;
  border: none;
  display: inherit;
}

img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .container {
    padding: 0 1.25rem;
  }
}
main {
  display: inline-block;
  width: 100%;
}

/*===== Scrollbar =====*/
::-webkit-scrollbar {
  width: 0.3125rem;
}

::-webkit-scrollbar-track {
  background: #abafb9;
}

::-webkit-scrollbar-thumb {
  background-color: #13172b;
}
.primary-color {
  color: var(--primary-color);
}
/* Preloader CSS */
.preloader {
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--primary-black-color);
}

.loading-container,
.loading {
  height: 6.25rem;
  position: relative;
  width: 6.25rem;
  border-radius: 100%;
}

.loading-container {
  margin: 2.5rem auto;
}

.loading {
  border: 0.0625rem solid transparent;
  border-color: transparent var(--border-color) transparent var(--border-color);
  -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
  animation: rotate-loading 1.5s linear 0s infinite normal;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 4.125rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@-webkit-keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*  Back To Top */
.scrollTop {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  background-color: var(--primary-color);
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--heading-color);
  z-index: 1;
}
.scrollTop:hover {
  color: var(--heading-color);
}

/*---- 

====================
01. Base CSS
    # Common CSS
====================

----*/
#smooth-wrapper {
  z-index: 1;
}

label {
  margin-bottom: 0;
}

@media (min-width: 90.6875rem) {
  .container {
    max-width: 82.125rem;
  }
}
@media (min-width: 75rem) and (max-width: 90.625rem) {
  .container {
    max-width: 75rem;
  }
}
.p-r {
  position: relative;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
}

.font-200 {
  font-weight: 200;
}

.form-group {
  position: relative;
}

.form_control {
  width: 100%;
}

.gray-dark {
  background-color: var(--gray-dark);
}
.glass-bg {
  background-color: #3c3d3e26;
  backdrop-filter: blur(64px);
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5ex,
    #000 calc(100% - 5ex),
    transparent
  );
}
.sub-title {
  border: 0.0625rem solid var(--primary-color);
  padding: 0.625rem;
  border-radius: 0.5rem;
  color: var(--white-color);
  line-height: 0.625rem;
  text-transform: capitalize;
  margin-bottom: 1.25rem;
}

.section-title h2 {
  color: var(--white-color);
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .section-title h2 {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .section-title h2 {
    font-size: 2.25rem;
    line-height: 2.9375rem;
  }
}
@media (max-width: 47.9375rem) {
  .section-title h2 {
    font-size: 1.75rem;
    line-height: 2.5rem;
  }
}

.text-white p,
.text-white h6,
.text-white h5,
.text-white h4,
.text-white h3,
.text-white h2,
.text-white h1 {
  color: var(--white-color);
}
.text-white .sub-heading {
  background-color: var(--white-color);
  color: var(--heading-color);
  border-color: transparent;
}

.video-popup {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  z-index: 1;
}

.play-button.style-one .video-popup {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 50%;
  border: 0.0625rem rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(0.3125rem);
  backdrop-filter: blur(0.3125rem);
  font-size: 1.5rem;
  color: var(--white-color);
}
.play-button.style-one .video-popup:hover {
  color: var(--white-color);
}

@-webkit-keyframes playpopup {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes playpopup {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.theme-btn.style-one {
  background-color: var(--primary-color);
  padding: 0.625rem 1.875rem;
  border-radius: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.1s cubic-bezier(0.68, 0.01, 0.58, 0.75);
  transition: all 0.1s cubic-bezier(0.68, 0.01, 0.58, 0.75);
}
.theme-btn.style-one:hover .text-flip {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}
.theme-btn.style-one:hover .text-flip .text:nth-child(1) {
  opacity: 0;
}
.theme-btn.style-one:hover .text-flip .text:nth-child(2) {
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  opacity: 1;
}
.theme-btn.style-one:hover .icon i {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.theme-btn.style-one .text-flip {
  -webkit-transition:
    opacity 0.6s,
    -webkit-transform 0.8s;
  transition:
    opacity 0.6s,
    -webkit-transform 0.8s;
  transition:
    opacity 0.6s,
    transform 0.8s;
  transition:
    opacity 0.6s,
    transform 0.8s,
    -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.theme-btn.style-one .text-flip .text {
  -webkit-transition:
    opacity 0.6s,
    -webkit-transform 0.8s;
  transition:
    opacity 0.6s,
    -webkit-transform 0.8s;
  transition:
    opacity 0.6s,
    transform 0.8s;
  transition:
    opacity 0.6s,
    transform 0.8s,
    -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.theme-btn.style-one .text-flip .text:nth-child(2) {
  display: inline-block;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 80%);
  transform: translate(-50%, 80%);
  opacity: 0;
}
.theme-btn.style-one .icon {
  margin-left: 0.625rem;
}
.theme-btn.style-one .icon i {
  -webkit-transition: all 0.3s cubic-bezier(0.68, 0.01, 0.58, 0.75);
  transition: all 0.3s cubic-bezier(0.68, 0.01, 0.58, 0.75);
}
.theme-btn.style-two {
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  background-color: var(--primary-color);
  color: var(--heading-color);
  line-height: 1.25rem;
  border-radius: 1rem;
}

.read-more {
  color: var(--primary-color);
  font: 600 1rem var(--body-font);
}
.read-more.style-one {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 1rem;
  right: 6rem;
}
.read-more.style-one:hover {
  color: var(--primary-color);
}
.read-more.style-one:hover:after {
  width: 3.125rem;
}

.check-list.style-one li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.check-list.style-one li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.check-list.style-one li i {
  color: var(--primary-color);
  margin-right: 0.625rem;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .check-list.style-one li {
    font-size: 0.875rem;
  }
}

.ratings li {
  display: inline-block;
  color: #ff9900;
}

/* Offcanvas Overlay */
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 1;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}
.offcanvas__overlay.overlay-open {
  opacity: 0.95;
  visibility: visible;
}

/* Animated List Wrap */
.headline-wrap {
  font-size: 15.625rem;
  line-height: normal;
  font-family: var(--heading-font);
  text-transform: capitalize;
}
@media (max-width: 47.9375rem) {
  .headline-wrap {
    font-size: 5rem;
  }
}
.headline-wrap .marquee-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.headline-wrap .marquee-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 3.125rem;
}
.headline-wrap .marquee-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.headline-wrap .marquee-inner.left {
  -webkit-animation: marquee_left 15s linear infinite;
  animation: marquee_left 15s linear infinite;
}
.headline-wrap.style-one {
  color: var(--white-color);
}
.headline-wrap.style-two {
  color: var(--heading-color);
}

/* Headline Animation */
@-webkit-keyframes marquee {
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
@keyframes marquee {
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
@-webkit-keyframes marquee_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes marquee_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes marquee_left {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes marquee_left {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate-float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.animate-float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-1.25rem);
    transform: translateX(-1.25rem);
  }
  50% {
    -webkit-transform: translateX(-0.625rem);
    transform: translateX(-0.625rem);
  }
  100% {
    -webkit-transform: translateX(-1.25rem);
    transform: translateX(-1.25rem);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-1.25rem);
    transform: translateX(-1.25rem);
  }
  50% {
    -webkit-transform: translateX(-0.625rem);
    transform: translateX(-0.625rem);
  }
  100% {
    -webkit-transform: translateX(-1.25rem);
    transform: translateX(-1.25rem);
  }
}
@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-1.25rem);
    transform: translateY(-1.25rem);
  }
  50% {
    -webkit-transform: translateY(-0.625rem);
    transform: translateY(-0.625rem);
  }
  100% {
    -webkit-transform: translateY(-1.25rem);
    transform: translateY(-1.25rem);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-1.25rem);
    transform: translateY(-1.25rem);
  }
  50% {
    -webkit-transform: translateY(-0.625rem);
    transform: translateY(-0.625rem);
  }
  100% {
    -webkit-transform: translateY(-1.25rem);
    transform: translateY(-1.25rem);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotate360 {
  -webkit-animation: spin 7s linear infinite;
  animation: spin 7s linear infinite;
}

.zoomInOut {
  -webkit-animation: zoomInOut 6s linear infinite;
  animation: zoomInOut 6s linear infinite;
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* Offcanvas Overlay */
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #0e0f11;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}
.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

.sidebar-btn {
  margin-left: 0.9375rem;
  cursor: pointer;
  text-align: right;
}

.sidebar-btn span {
  width: 1.875rem;
  display: block;
  height: 0.125rem;
  background-color: var(--heading-color);
}
.sidebar-btn span:nth-child(2) {
  margin-top: 0.3125rem;
  margin-bottom: 0.3125rem;
  width: 1.5625rem;
  margin-left: auto;
}

.sidebar-panel {
  position: fixed;
  z-index: 1111;
  right: 0;
  top: 0;
  width: 21.875rem;
  height: 100%;
  opacity: 1;
  background-color: var(--white-color);
  -webkit-transition:
    opacity 0.45s ease-in-out,
    -webkit-transform 0.45s ease-in-out;
  transition:
    opacity 0.45s ease-in-out,
    -webkit-transform 0.45s ease-in-out;
  transition:
    transform 0.45s ease-in-out,
    opacity 0.45s ease-in-out;
  transition:
    transform 0.45s ease-in-out,
    opacity 0.45s ease-in-out,
    -webkit-transform 0.45s ease-in-out;
  -webkit-transform: translateX(calc(100% + 5rem));
  transform: translateX(calc(100% + 5rem));
  padding: 2.5rem 1.875rem;
  overflow: auto;
}
.sidebar-panel.info-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.sidebar-panel .panel-close .panel-close-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 0.0625rem solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}
.sidebar-panel .panel-body .panel-box h5 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.9375rem;
  border-bottom: 0.0625rem solid var(--border-color);
}
.sidebar-panel .panel-body .panel-box p {
  margin-bottom: 0.9375rem;
}
.sidebar-panel .panel-body .panel-box p i {
  width: 1.25rem;
  margin-right: 0.625rem;
  color: var(--primary-color);
}
.sidebar-panel .panel-body .panel-box ul.social-link li {
  display: inline-block;
  margin-right: 0.3125rem;
}
.sidebar-panel .panel-body .panel-box ul.social-link li a {
  width: 2.5rem;
  height: 2.5rem;
  border: 0.0625rem solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}
.sidebar-panel .panel-body .panel-box ul.social-link li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Agenko Pagination */
.agenko-pagination.text-center ul li {
  margin-left: 0.4375rem;
}
.agenko-pagination ul li {
  display: inline-block;
  margin-right: 0.4375rem;
}
.agenko-pagination ul li a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0.0625rem solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0.0625rem solid rgba(31, 31, 31, 0.1);
  font: 600 1rem var(--heading-font);
  letter-spacing: -0.0225rem;
}
.agenko-pagination ul li a:hover,
.agenko-pagination ul li a.active {
  background-color: var(--primary-color);
  color: var(--heading-color);
  border-color: transparent;
}

/*---- 
====================
3. Components CSS
    # Header CSS
====================

----*/
.neon-text {
  display: inline-block;
  font-weight: bold;
  font-size: 2rem;
  color: #00fff2;
  white-space: nowrap;
}

.neon-char {
  display: inline-block;
  will-change: transform;
}

.header-logo {
  max-width: 10rem;
}
.header-navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.4s ease-in-out;
}

.header-hidden {
  transform: translateY(-150%); /* posun hore mimo viewport */
}

.header-navigation .primary-menu {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}
@media (max-width: 992px) {
  .header-navigation .primary-menu.glass-active {
    background: #010109;
    padding: 1rem;
    border-radius: 0 0 1rem 1rem;
    box-shadow:
      rgba(0, 255, 242, 0.8) 0px 16px 60px -32px,
      rgba(0, 255, 242, 0.35) 0px 15px 21px -15px;
  }
}

@media (min-width: 992px) {
  .primary-menu {
    transition:
      background 0.35s ease,
      backdrop-filter 0.35s ease,
      border 0.35s ease,
      box-shadow 0.35s ease;
  }

  .primary-menu.sticky-on.glass-active {
    background: rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 255, 255, 0.2);
    border-radius: 0 0 1rem 1rem;
  }
}

.header-navigation .site-branding {
  max-width: max-content;
  line-height: 1;
  text-align: center;
  padding: 1rem;
  border-radius: 1rem;
}
.header-navigation .site-branding a {
  line-height: 1;
}

.header-navigation .main-menu ul > li {
  display: inline-block;
  position: relative;
}
.header-navigation .main-menu ul > li > a {
  position: relative;
  display: block;
  font: 600 1rem var(--heading-font);
  text-transform: capitalize;
  line-height: 1;
  color: #fff;
  padding: 0.6875rem 1.25rem;
  border-radius: 1rem;
  line-height: 0.875rem;
}
.header-navigation .main-menu ul > li > a span.dd-trigger {
  margin-left: 0.7rem;
  top: 1px;
  position: relative;
}

.header-navigation .main-menu ul > li .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 15.625rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 99;
  padding: 0.625rem 0.625rem;
  background-color: #0e0f11;
  height: auto;
  text-align: left;
  -webkit-box-shadow: 0 1.875rem 5rem 0.9375rem rgba(0, 0, 0, 0.09);
  box-shadow: 0 1.875rem 5rem 0.9375rem rgba(0, 0, 0, 0.09);
  border-radius: 0.4375rem;
}
.header-navigation .main-menu ul > li .sub-menu li {
  display: block;
  margin: 0;
}
.header-navigation .main-menu ul > li .sub-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0.9375rem;
  position: relative;
  line-height: 2.5;
  margin: 0;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.header-navigation .main-menu ul > li .sub-menu li a span.dd-trigger {
  margin-left: auto;
}
.header-navigation .main-menu ul > li .sub-menu li a:hover {
  color: var(--primary-color);
}
.header-navigation .main-menu ul > li .sub-menu li .sub-menu {
  left: 100%;
  top: 50%;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .header-navigation .main-menu ul > li .sub-menu li .sub-menu {
    left: auto;
    right: 100%;
    top: 50%;
  }
}
@media (min-width: 75rem) and (max-width: 90.625rem) {
  .header-navigation .main-menu ul > li .sub-menu li .sub-menu {
    left: auto;
    right: 100%;
    top: 50%;
  }
}
.header-navigation .main-menu ul > li .sub-menu li:hover .sub-menu {
  top: 0%;
}
.header-navigation .main-menu ul > li .sub-menu li:hover > a {
  color: var(--primary-color);
}
.header-navigation .main-menu ul > li:hover > a {
  color: var(--primary-color);
  font-weight: 800;
}
.header-navigation .main-menu ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 115%;
}
.header-navigation .navbar-toggler {
  padding: 0.6875rem 0.4375rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.7);
  background-color: transparent;
  cursor: pointer;
  display: none;
  border-radius: 0.3125rem;
  margin-left: 1.25rem;
}
.header-navigation .navbar-toggler span {
  position: relative;
  border-radius: 0.1875rem;
  display: block;
  height: 0.125rem;
  padding: 0;
  width: 1.875rem;
  cursor: pointer;
  display: block;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: rgba(255, 255, 255, 0.5);
}
.header-navigation .navbar-toggler span:not(:first-child) {
  margin-top: 0.3125rem;
}
.header-navigation .navbar-toggler.active span:nth-of-type(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  top: 0.4375rem;
}
.header-navigation .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}
.header-navigation .navbar-toggler.active span:nth-of-type(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
  top: -0.4375rem;
}
@media screen and (max-width: 61.9375rem) {
  .header-navigation .pf-nav-menu {
    text-align: left;
    position: fixed;
    top: 0;
    left: -18.125rem;
    width: 18.125rem;
    height: 100%;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    padding: 1.25rem 1.25rem 1.875rem;
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 9999;
    border-radius: 0;
    background-color: var(--primary-black-color);
  }
  .header-navigation .pf-nav-menu.menu-on {
    left: 0;
  }
  .header-navigation .pf-nav-menu .site-branding {
    margin: 0 auto 1.25rem;
  }
  .header-navigation .pf-nav-menu .main-menu {
    margin-top: 1.875rem;
  }
  .header-navigation .pf-nav-menu .main-menu ul li {
    display: block;
    margin: 0.5rem;
  }
  .header-navigation .pf-nav-menu .main-menu ul li:not(:last-child) {
    border-bottom: 0.0625rem solid var(--border-color);
  }
  .header-navigation .pf-nav-menu .main-menu ul li a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.125rem;
  }
  .header-navigation .pf-nav-menu .main-menu ul li a:after {
    display: none;
  }
  .header-navigation .pf-nav-menu .main-menu ul li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
  }
  .header-navigation .pf-nav-menu .main-menu ul li .sub-menu > li > a {
    padding: 0.3125rem 1.25rem;
    color: var(--white-color);
    text-transform: math-auto;
  }
  .header-navigation .pf-nav-menu .main-menu ul li .sub-menu > li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
    margin-left: 1.875rem;
  }
  .header-navigation .pf-nav-menu .main-menu ul li .dd-trigger {
    position: absolute;
    display: flex;
    right: 0;
    top: 0;
    height: 2.7rem;
    margin-top: -0.5rem;
    width: 6rem;
    z-index: 2;
    cursor: pointer;
    font-size: 1rem;
    justify-content: flex-end;
    padding-right: 10px;
    padding-top: 1rem;
  }
  .header-navigation .navbar-close {
    width: 2.1875rem;
    height: 2.1875rem;
    border-radius: 0.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0.0625rem solid var(--border-color);
    font-size: 1rem;
  }
  .header-navigation .navbar-toggler {
    display: block;
  }
  .header-navigation .pf-nav-button .theme-btn.style-one {
    padding: 0.625rem 2.5rem;
  }
  .header-navigation .pf-menu-bottom h5 {
    margin-bottom: 1.5625rem;
  }
  .header-navigation .pf-menu-bottom .social-link li {
    display: inline-block;
    margin-right: 0.625rem;
  }
  .header-navigation .pf-menu-bottom .social-link li a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 0.0625rem solid var(--border-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header-navigation .pf-menu-bottom .social-link li a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
}
.nav-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-one.transparent-header {
  top: 1.875rem;
}
/* Agenko Eotate Image */
.agenko-rotate-image {
  text-align: center;
}
.agenko-rotate-image .agenko-image img {
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
  border-radius: 1.25rem;
}

/* Agenko Dot */
.agenko-dot {
  position: relative;
  z-index: 1;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--primary-color);
}

/* Agenko Icon Button */
.icon-btn.style-one {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--gray-dark);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.icon-btn.style-one i {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

/* Agenko Setp */
.agenko-step {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--heading-color);
  border-radius: 0.5rem;
  padding: 0.3125rem 0.9375rem;
  line-height: 1.25rem;
}

/* Agenko Iconic Box */
.agenko-iconic-box.style-one {
  padding: 1.4375rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 18.75rem;
  background-color: var(--gray-dark);
  border: 0.0625rem solid var(--border-color);
  border-radius: 3.75rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.agenko-iconic-box.style-one:hover {
  background-color: var(--primary-color);
}
.agenko-iconic-box.style-one:hover .content h4.title {
  color: var(--heading-color);
}
.agenko-iconic-box.style-one .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 3.75rem;
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #2f3031;
  font-size: 1.875rem;
  color: var(--white-color);
  margin-right: 0.9375rem;
}
.agenko-iconic-box.style-one .content h4.title {
  font-size: 1.25rem;
  color: var(--white-color);
  line-height: 1.4;
}
.agenko-iconic-box.style-two {
  background-color: var(--gray-dark);
  padding: 1.875rem;
}
@media (min-width: 75rem) and (max-width: 90.625rem) {
  .agenko-iconic-box.style-two {
    padding: 1.875rem 1.5625rem 1.875rem;
  }
}
.agenko-iconic-box.style-two .icon {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 0.0625rem solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1.5625rem;
  color: var(--white-color);
  font-size: 1.25rem;
}
.agenko-iconic-box.style-two .content h4 {
  margin-bottom: 0.9375rem;
}
.agenko-iconic-box.style-two .content p {
  margin-bottom: 2.5rem;
}
.agenko-iconic-box.style-two .content .step {
  display: inline-block;
  padding: 0.4375rem 0.625rem;
  line-height: 0.625rem;
  color: var(--heading-color);
  background-color: var(--primary-color);
  border-radius: 1.875rem;
  letter-spacing: 0.03rem;
}
.agenko-iconic-box.style-three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.agenko-iconic-box.style-three .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-margin-end: 1.25rem;
  margin-inline-end: 1.25rem;
}
.agenko-iconic-box.style-three .content h6 {
  margin-bottom: 0.625rem;
}
.agenko-iconic-box.style-three .content p {
  letter-spacing: 0.03rem;
  line-height: 1.25rem;
}
.agenko-iconic-box.style-three .content p:hover a {
  color: var(--primary-color);
}
.agenko-iconic-box.style-four {
  padding: 2.1875rem 2.5rem 1.875rem;
  border-radius: 1.5rem;
  position: relative;
  background:
    radial-gradient(
      1000px 460px at 15% -15%,
      rgb(140 255 255 / 18%),
      transparent 65%
    ),
    radial-gradient(
      820px 380px at 85% 5%,
      rgb(100 235 255 / 14%),
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.015)
    );
}
.agenko-iconic-box.style-four::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("/assets/images/noise.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.04;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -2;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-iconic-box.style-four {
    padding: 2.1875rem 1.875rem 1.875rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-iconic-box.style-four {
    margin-top: 2.5rem;
  }
}
.agenko-iconic-box.style-four .icon {
  font-size: 3.75rem;
  color: var(--white-color);
  margin-bottom: 1.5625rem;
}
.agenko-iconic-box.style-four .content h4.title {
  color: var(--primary-color);
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-iconic-box.style-four .content h4.title {
    font-size: 1.25rem;
  }
}
@media (max-width: 37.5rem) {
  .agenko-iconic-box.style-four {
    padding: 2rem 1.5rem 1rem;
  }
  .agenko-iconic-box.style-four .content h4.title {
    margin-bottom: 1rem;
  }
}
.agenko-iconic-box.style-four .content p {
  margin-bottom: 1.5625rem;
}
.agenko-iconic-box.style-five {
  background-color: var(--bs-body-color);
  padding: 1.875rem;
  min-height: 17rem;
  border-radius: 1rem;
}
@media (min-width: 75rem) and (max-width: 90.625rem) {
  .agenko-iconic-box.style-five {
    padding: 1.875rem 1.5625rem;
  }
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-iconic-box.style-five {
    padding: 1.875rem 0.625rem;
  }
}
@media (max-width: 48rem) {
  .agk-process-box .agenko-step {
    position: relative;
    z-index: 1;
  }

  .row > *:nth-child(n + 2) .agk-process-box .agenko-step::before {
    content: "";
    position: absolute;
    bottom: 1.875rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.0625rem;
    height: 2.5rem;
    background: var(--primary-color);
    z-index: 0;
    pointer-events: none;
  }
}
.agenko-iconic-box.style-five .icon {
  font-size: 2.5rem;
  color: var(--white-color);
  margin-bottom: 1.875rem;
}
.agenko-iconic-box.style-five .content h5 {
  margin-bottom: 0.9375rem;
}
.agenko-iconic-box.style-six {
  background-color: var(--gray-dark);
  padding: 2.5rem;
}
.agenko-iconic-box.style-six > .icon {
  font-size: 2.8125rem;
  margin-bottom: 1.25rem;
}
.agenko-iconic-box.style-six .content h4 {
  margin-bottom: 0.9375rem;
}
.agenko-iconic-box.style-six .content p {
  margin-bottom: 1.25rem;
}
.agenko-iconic-box.style-seven {
  background-color: var(--primary-black-color);
  padding: 1.875rem;
}
.agenko-iconic-box.style-seven:hover .icon {
  color: var(--primary-color);
}
.agenko-iconic-box.style-seven .icon {
  font-size: 3.75rem;
  color: var(--white-color);
  margin-bottom: 0.9375rem;
}
.agenko-iconic-box.style-seven .content h4 {
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 61.9375rem) {
  .agenko-iconic-box.style-eight .agenko-dot {
    display: none;
  }
}
.agenko-iconic-box.style-eight .content .number {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: var(--gray-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.agenko-iconic-box.style-eight .content h4 {
  margin-bottom: 1.25rem;
}
.agenko-iconic-box.style-eight .content p {
  margin-bottom: 2.1875rem;
}

/* Agenko Card Item */
.agenko-card-item.style-one {
  padding: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--primary-black-color);
  border: 0.0625rem solid var(--border-color);
  border-radius: 1rem;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-card-item.style-one {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-card-item.style-one {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.agenko-card-item.style-one .card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.agenko-card-item.style-one .card-title .sn-number {
  font-size: 2.5rem;
  margin-right: 1.875rem;
  font-family: var(--heading-font);
  font-weight: 700;
}
@media (max-width: 47.9375rem) {
  .agenko-card-item.style-one .card-title .sn-number {
    font-size: 1.25rem;
    margin-right: 0.9375rem;
  }
}
@media (max-width: 47.9375rem) {
  .agenko-card-item.style-one .card-title h3 {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-card-item.style-one .content {
    padding: 1.25rem 0;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-card-item.style-one .content {
    padding: 1.25rem 0;
  }
}
.agenko-card-item.style-one .content p {
  max-width: 26.875rem;
  padding: 0 1.875rem;
}
.agenko-card-item.style-one .content p span {
  color: var(--white-color);
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-card-item.style-one .content p {
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-card-item.style-one .content p {
    max-width: 100%;
    padding: 0;
  }
}
.agenko-card-item.style-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.875rem;
  background-color: var(--gray-dark);
  border-radius: 0.9375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 61.9375rem) {
  .agenko-card-item.style-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.agenko-card-item.style-two:hover {
  background-color: var(--primary-color);
}
.agenko-card-item.style-two:hover .card-title h2 {
  color: var(--heading-color);
}
.agenko-card-item.style-two:hover .card-title h4 {
  color: var(--heading-color);
}
.agenko-card-item.style-two:hover .content p {
  color: var(--heading-color);
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-card-item.style-two .thumbnail {
    max-width: 12.5rem;
  }
}
.agenko-card-item.style-two .thumbnail img {
  border-radius: 6.875rem;
}
@media screen and (max-width: 61.9375rem) {
  .agenko-card-item.style-two .thumbnail img {
    border-radius: 1.875rem;
  }
}
.agenko-card-item.style-two .card-title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-left: 10%;
}
@media (min-width: 75rem) and (max-width: 90.625rem) {
  .agenko-card-item.style-two .card-title {
    padding-left: 5%;
  }
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-card-item.style-two .card-title {
    padding-left: 5%;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-card-item.style-two .card-title {
    padding-left: 0;
    padding: 1.875rem 0;
  }
}
@media (min-width: 75rem) and (max-width: 90.625rem) {
  .agenko-card-item.style-two .card-title h2 {
    font-size: 2.3125rem;
    line-height: 2.8125rem;
  }
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-card-item.style-two .card-title h2 {
    font-size: 1.6875rem;
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-card-item.style-two .card-title h2 {
    font-size: 1.5rem;
    line-height: 2.1875rem;
  }
}
.agenko-card-item.style-two .card-title h4 {
  color: var(--text-color);
  font-family: var(--body-font);
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-card-item.style-two .card-title h4 {
    font-size: 1.375rem;
    line-height: 2.1875rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-card-item.style-two .card-title h4 {
    font-size: 1.375rem;
    line-height: 2.1875rem;
  }
}
.agenko-card-item.style-two .content {
  max-width: 24.0625rem;
}
@media screen and (max-width: 61.9375rem) {
  .agenko-card-item.style-two .content {
    max-width: 100%;
  }
}

/* Agenko Client Item */

.agenko-client-item.style-one:hover .client-image img {
  opacity: 1;
}
.agenko-client-item.style-one .client-image {
  cursor: pointer;
}
.agenko-client-item.style-one .client-image img {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.agenko-client-item.style-two {
  width: 14.6875rem;
  height: 14.6875rem;
  border-radius: 50%;
  background-color: var(--gray-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 75rem) and (max-width: 90.625rem) {
  .agenko-client-item.style-two {
    width: 12.5rem;
    height: 12.5rem;
  }
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-client-item.style-two {
    width: 10.625rem;
    height: 10.625rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-client-item.style-two {
    width: 12.5rem;
    height: 12.5rem;
  }
}
.agenko-client-item.style-two .client-image img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  max-width: 9.375rem;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-client-item.style-two .client-image img {
    max-width: 7.5rem;
  }
}

/* Agenko Experince Box */
.agenko-experince-box.style-one {
  display: inline-block;
  background-color: var(--primary-color);
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  max-width: 10rem;
  text-align: center;
}
.agenko-experince-box.style-one h2 {
  color: var(--heading-color);
  margin-bottom: 0.625rem;
}
.agenko-experince-box.style-one p {
  font-size: 1rem;
  line-height: 1.25rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

/* Agenko Skill Item */
.agenko-skill-item.style-one .progress-title {
  margin-bottom: 0.9375rem;
}
.agenko-skill-item.style-one .progress-title h5 span {
  float: right;
}
.agenko-skill-item.style-one .progress {
  height: 0.375rem;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.1);
}
.agenko-skill-item.style-one .progress .progress-bar {
  border-radius: 0;
  background-color: var(--primary-color);
}

/* Agenko Award Box */
.agenko-award-box.style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--gray-dark);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.625rem 2.5rem;
}
@media (max-width: 47.9375rem) {
  .agenko-award-box.style-one {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}
.agenko-award-box.style-one:hover .award-date h5,
.agenko-award-box.style-one:hover .award-platform h5 {
  color: var(--white-color);
}
.agenko-award-box.style-one:hover .award-name h5 {
  color: var(--primary-color);
}
.agenko-award-box.style-one .award-platform {
  width: 30%;
}
@media (max-width: 47.9375rem) {
  .agenko-award-box.style-one .award-platform {
    width: 100%;
  }
}
.agenko-award-box.style-one .award-platform h5 {
  font-size: 1.125rem;
  color: var(--text-color);
}
.agenko-award-box.style-one .award-name {
  width: 50%;
}
@media (max-width: 47.9375rem) {
  .agenko-award-box.style-one .award-name {
    width: 100%;
  }
}
@media (max-width: 47.9375rem) {
  .agenko-award-box.style-one .award-name {
    padding: 1.25rem 0;
  }
}
.agenko-award-box.style-one .award-date {
  width: 20%;
  text-align: right;
}
.agenko-award-box.style-one .award-date h5 {
  font-size: 1.125rem;
  color: var(--text-color);
}
@media (max-width: 47.9375rem) {
  .agenko-award-box.style-one .award-date {
    width: 100%;
    text-align: center;
  }
}

/* Agenko Counter Box */
.agenko-counter-box.style-one .content h2 {
  color: #ebffdc;
}
.agenko-counter-box.style-two .content h2 {
  margin-bottom: 0.9375rem;
}
.agenko-counter-box.style-two .content p {
  font-weight: 500;
}

.agenko-info-box .content h3 {
  margin-bottom: 0.9375rem;
}
.agenko-info-box .content p {
  font: 500 1.25rem var(--heading-font);
  margin-bottom: 0.625rem;
}
.agenko-info-box .content .social-link a {
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 50%;
  background-color: var(--white-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--heading-color);
  margin-right: 0.3125rem;
}
.agenko-info-box .content .social-link a:hover {
  background-color: var(--primary-color);
}
.agenko-project {
  max-width: 1450px;
  margin: auto;
}
.agenko-project-item:hover .thumbnail img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.agenko-project-item .thumbnail {
  overflow: hidden;
}
.agenko-project-item .thumbnail img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 61.9375rem) {
  .agenko-project-item.style-one {
    max-width: 34.375rem;
    margin: 0 auto 2.8125rem;
  }
}
.agenko-project-item.style-one:hover .thumbnail .project-button a {
  background-color: var(--primary-color);
  color: var(--heading-color);
}
.agenko-project-item.style-one .thumbnail {
  position: relative;
}
.agenko-project-item.style-one .thumbnail img {
  border-radius: 0.625rem;
}
.agenko-project-item.style-one .thumbnail .project-button a {
  position: absolute;
  bottom: 1.875rem;
  right: 1.875rem;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--primary-black-color);
  color: var(--white-color);
  font-size: 1.25rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.agenko-project-item.style-one .content {
  padding-top: 1.25rem;
}
.agenko-project-item.style-one .content .project-categories {
  margin-bottom: 0.9375rem;
}
.agenko-project-item.style-one .content .project-categories a {
  padding: 0.625rem 1.25rem;
  border: 0.0625rem solid var(--border-color);
  border-radius: 1.875rem;
  line-height: 1.125rem;
  margin-bottom: 0.625rem;
}
.agenko-project-item.style-one .content .project-categories a:not(:last-child) {
  margin-right: 0.3125rem;
}
.agenko-project-item.style-one .content h4.title:hover {
  color: var(--primary-color);
}
.agenko-project-item.style-two {
  padding: 1.875rem 1.875rem 1.5625rem;
  background-color: var(--gray-dark);
  border-radius: 1.25rem;
}
@media screen and (max-width: 61.9375rem) {
  .agenko-project-item.style-two {
    max-width: 37.5rem;
    margin: 0 auto 3.75rem;
  }
}
@media (max-width: 35.9375rem) {
  .agenko-project-item.style-two {
    padding: 1.875rem 0.9375rem 1.5625rem;
  }
}
.agenko-project-item.style-two .thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
}
.agenko-project-item.style-two .thumbnail img {
  width: 100%;
  border-radius: 1.25rem;
}
.agenko-project-item.style-two .thumbnail .hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.875rem;
}
@media (max-width: 35.9375rem) {
  .agenko-project-item.style-two .thumbnail .hover-content {
    padding: 0.9375rem;
  }
}
.agenko-project-item.style-two .thumbnail .hover-content .project-categories a {
  padding: 0.5625rem 1.25rem;
  border: 0.0625rem solid var(--border-color);
  border-radius: 1.875rem;
  background-color: var(--gray-dark);
  color: var(--white-color);
  line-height: 1.25rem;
  margin-bottom: 0.625rem;
}
@media (max-width: 35.9375rem) {
  .agenko-project-item.style-two
    .thumbnail
    .hover-content
    .project-categories
    a {
    padding: 0.5625rem 0.9375rem;
    font-size: 0.875rem;
  }
}
.agenko-project-item.style-two .content {
  padding-top: 1.5625rem;
}
.agenko-project-item.style-two .content h4.title {
  margin-bottom: 0.3125rem;
}
.agenko-project-item.style-two .content h4.title:hover {
  color: var(--primary-color);
}
.agenko-project-item.style-three .thumbnail {
  position: relative;
  z-index: 1;
}
.agenko-project-item.style-three .thumbnail img {
  border-radius: 1rem;
  width: 100%;
}
.agenko-project-item.style-three .thumbnail .hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.agenko-project-item.style-three .thumbnail .project-categories a {
  background-color: var(--primary-black-color);
  padding: 0.625rem 1.25rem;
  line-height: 1.25rem;
  color: var(--white-color);
  border-radius: 1.875rem;
}
@media (max-width: 35.9375rem) {
  .agenko-project-item.style-three .thumbnail .project-categories a {
    padding: 0.4375rem 0.9375rem;
    font-size: 0.875rem;
  }
}
.agenko-project-item.style-three .content {
  padding-top: 1.25rem;
}
.agenko-project-item.style-three .content h4:hover {
  color: var(--primary-color);
}
.agenko-project-item.style-four:hover .thumbnail .hover-content {
  visibility: visible;
  opacity: 1;
  bottom: 1.875rem;
}
.agenko-project-item.style-four .thumbnail {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
}
.agenko-project-item.style-four .thumbnail img {
  width: 100%;
  min-height: 18.75rem;
  border-radius: 1rem;
}
.agenko-project-item.style-four .thumbnail .hover-content {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80%;
  padding: 1.25rem 1.25rem 0.9375rem;
  background-color: var(--primary-color);
  visibility: hidden;
  opacity: 0;
  border-radius: 1rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 48rem) {
  .agenko-project-item.style-four .thumbnail img {
    min-height: 0;
  }
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-project-item.style-four .thumbnail .hover-content {
    width: 90%;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-project-item.style-four .thumbnail .hover-content {
    width: 90%;
  }
}
.agenko-project-item.style-four .content {
  text-align: center;
}
.agenko-project-item.style-four .content .title-project,
.agenko-project-item.style-four .content .subtitle-project {
  color: var(--heading-color);
  line-height: 1.3;
}
.agenko-project-item.style-four .content p {
  color: var(--bs-dark-text-emphasis);
  font-weight: 500;
}
.agenko-project-item.style-four .content .category-btn {
  padding: 0 0.5rem;
  line-height: 1.25rem;
  color: var(--bs-dark-text-emphasis);
  font-weight: 500;
}
.agenko-project-item.style-four .content h4 {
  max-width: 21.875rem;
  margin: 0 auto;
  color: var(--heading-color);
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-project-item.style-four .content h4 {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
@media (max-width: 47.9375rem) {
  .agenko-project-item.style-four .content h4 {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

/*  Accordion Item */
.agenko-accordion-item {
  border-radius: 0.625rem;
  border: 0.0625rem solid rgba(16, 16, 16, 0.1);
  background-color: var(--gray-dark);
  padding: 1rem 1.875rem;
}
.agenko-accordion-item .accordion-header .accordion-title {
  line-height: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 35.9375rem) {
  .agenko-accordion-item .accordion-header .accordion-title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 1rem;
  }
}
.agenko-accordion-item .accordion-header .accordion-title span.sn {
  margin-right: 0.5rem;
}
.agenko-accordion-item .accordion-header .accordion-title:after {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-left: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.agenko-accordion-item
  .accordion-header
  .accordion-title[aria-expanded="true"]:after {
  border-color: #26272b;
  content: "\f068";
}
.agenko-accordion-item .accordion-content p {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  letter-spacing: 0.03rem;
}

.agenko-pricing-item.style-one {
  position: relative;
  z-index: 1;
  background-color: var(--gray-dark);
  padding: 1.875rem;
}
.agenko-pricing-item.style-one .shape {
  position: absolute;
  z-index: -1;
}
.agenko-pricing-item.style-one .shape.shape-one {
  bottom: 1.25rem;
  right: 1.25rem;
}
.agenko-pricing-item.style-one .pricing-head {
  margin-bottom: 1.5625rem;
}
.agenko-pricing-item.style-one .pricing-head h2 {
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-pricing-item.style-one .pricing-head h2 {
    font-size: 1.6875rem;
    line-height: 1.2;
  }
}
@media (max-width: 47.9375rem) {
  .agenko-pricing-item.style-one .pricing-head h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
.agenko-pricing-item.style-one .pricing-body {
  margin-bottom: 1.5625rem;
}
.agenko-pricing-item.style-one .pricing-footer .theme-btn.style-two {
  padding: 0.75rem 1.875rem;
}
.agenko-pricing-item.style-two {
  background-color: var(--gray-dark);
  padding: 1.875rem 1.875rem 1.5625rem;
}
.agenko-pricing-item.style-two .pricing-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.9375rem;
}
.agenko-pricing-item.style-two .pricing-head h4 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.agenko-pricing-item.style-two .pricing-head .pricing {
  color: var(--primary-color);
  font-size: 1.6875rem;
  font-weight: 700;
  font-family: var(--heading-font);
}
.agenko-pricing-item.style-three {
  background-color: var(--gray-dark);
  padding: 2.5rem 2.1875rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.agenko-pricing-item.style-three .shape {
  position: absolute;
  top: -35%;
  right: -40%;
}
.agenko-pricing-item.style-three .shape span {
  width: 20.5rem;
  height: 20.5rem;
  border-radius: 50%;
  border: 3.125rem solid rgba(235, 255, 220, 0.02);
}
.agenko-pricing-item.style-three .pricing-head {
  padding-bottom: 1.5625rem;
  margin-bottom: 1.875rem;
  border-bottom: 0.0625rem solid var(--border-color);
}
.agenko-pricing-item.style-three .pricing-head h2 {
  margin-bottom: 0.9375rem;
}
.agenko-pricing-item.style-three .pricing-body {
  margin-bottom: 1.5625rem;
}
.agenko-pricing-item.style-three .pricing-footer .theme-btn {
  width: 100%;
  padding: 0.9375rem 2.1875rem;
}

.agenko-team-item.style-one .member-image {
  position: relative;
}
.agenko-team-item.style-one .member-image img {
  width: 100%;
}
.agenko-team-item.style-one .member-image .icon-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}
.agenko-team-item.style-one .member-image .icon-btn a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--heading-color);
}
.agenko-team-item.style-one .member-info {
  padding-top: 0.3125rem;
}
.agenko-team-item.style-one .member-info span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.9375rem;
}
.agenko-team-item.style-one .member-info span:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "";
  width: 3.125rem;
  height: 0.0625rem;
  background-color: var(--border-color);
  margin-right: 0.625rem;
}
.agenko-team-item.style-two:hover .member-image .hover-content {
  right: 1.875rem;
}
.agenko-team-item.style-two .member-image {
  position: relative;
  overflow: hidden;
}
.agenko-team-item.style-two .member-image .hover-content {
  position: absolute;
  bottom: 1.875rem;
  right: -50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.agenko-team-item.style-two
  .member-image
  .hover-content
  ul.social-link
  li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.agenko-team-item.style-two .member-image .hover-content ul.social-link li a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--heading-color);
}
.agenko-team-item.style-two
  .member-image
  .hover-content
  ul.social-link
  li
  a:hover {
  background-color: var(--primary-color);
}
.agenko-team-item.style-two .member-info {
  padding-top: 1.25rem;
}
.agenko-team-item.style-three:hover .member-image .hover-content {
  visibility: visible;
  opacity: 1;
}
.agenko-team-item.style-three:hover .member-info {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.agenko-team-item.style-three .member-image {
  position: relative;
  z-index: 1;
}
.agenko-team-item.style-three .member-image img {
  width: 100%;
}
.agenko-team-item.style-three .member-image .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 1.875rem;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(17.41%, rgba(235, 255, 220, 0)),
    color-stop(90.28%, #ebffdc)
  );
  background: linear-gradient(
    180deg,
    rgba(235, 255, 220, 0) 17.41%,
    #ebffdc 90.28%
  );
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.agenko-team-item.style-three .member-info {
  -webkit-transform: translateY(-1.875rem);
  transform: translateY(-1.875rem);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.agenko-team-item.style-three .member-info ul.social-link {
  margin-top: 1.25rem;
}
.agenko-team-item.style-three .member-info ul.social-link li {
  display: inline-block;
  margin-left: 0.3125rem;
  margin-right: 0.3125rem;
}
.agenko-team-item.style-three .member-info ul.social-link li a {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--heading-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.agenko-team-item.style-three .member-info h4 {
  color: var(--heading-color);
}
.agenko-team-item.style-three .member-info span.position {
  font: 700 1.125rem var(--heading-font);
  color: var(--heading-color);
}
.agenko-team-item.style-four:hover .member-image .hover-content {
  visibility: visible;
  opacity: 1;
}
.agenko-team-item.style-four .member-image {
  position: relative;
  z-index: 1;
}
.agenko-team-item.style-four .member-image img {
  width: 100%;
}
.agenko-team-item.style-four .member-image .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(156, 254, 79, 0.1);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.agenko-team-item.style-four .member-image .social-box {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
}
.agenko-team-item.style-four .member-image .social-box a {
  margin-bottom: 0.625rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--heading-color);
}
.agenko-team-item.style-four .member-image .social-box a:hover {
  background-color: var(--primary-color);
  color: var(--heading-color);
}
.agenko-team-item.style-four .member-info {
  padding-top: 1.25rem;
}

.author-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.author-item .author-thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 4.375rem;
  height: 4.375rem;
  -webkit-margin-end: 0.9375rem;
  margin-inline-end: 0.9375rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.author-item .author-thumb img {
  width: 100%;
  border-radius: 50%;
}
.author-item .author-info h4 {
  margin-bottom: 0.625rem;
}
.author-item .author-info h5 {
  color: var(--text-color);
  font-weight: 500;
}

.agenko-testimonial-item.style-one .testimonial-content ul.ratings {
  margin-bottom: 1.25rem;
}
.agenko-testimonial-item.style-one .testimonial-content ul.ratings li {
  color: var(--primary-color);
  font-size: 1.875rem;
}
.agenko-testimonial-item.style-one .testimonial-content p {
  font: 700 1.5rem var(--heading-font);
  color: var(--white-color);
  margin-bottom: 2.5rem;
}
@media (max-width: 47.9375rem) {
  .agenko-testimonial-item.style-one .testimonial-content p {
    font-size: 1rem;
  }
}
.agenko-testimonial-item.style-one
  .testimonial-content
  .author-item-quote
  .quote
  i {
  font-size: 1.875rem;
  color: var(--primary-color);
}
.agenko-testimonial-item.style-two .testimonial-content ul.ratings {
  margin-bottom: 2.5rem;
}
.agenko-testimonial-item.style-two .testimonial-content p {
  font: 700 1.6875rem var(--heading-font);
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 1.875rem;
}
@media (max-width: 47.9375rem) {
  .agenko-testimonial-item.style-two .testimonial-content p {
    font-size: 1.5rem;
  }
}
.agenko-testimonial-item.style-three .testimonial-content ul.ratings {
  margin-bottom: 1.375rem;
}
.agenko-testimonial-item.style-three .testimonial-content ul.ratings li i {
  color: var(--primary-color);
}
.agenko-testimonial-item.style-three .testimonial-content p {
  line-height: 2.8125rem;
  font: 500 2rem var(--heading-font);
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-testimonial-item.style-three .testimonial-content p {
    font-size: 1.375rem;
    line-height: 2.1875rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-testimonial-item.style-three .testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.875rem;
  }
}
@media (max-width: 35.9375rem) {
  .agenko-testimonial-item.style-three .testimonial-content p {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
  }
}

.post-categories a {
  padding: 0.625rem 1.25rem;
  border-radius: 1.875rem;
  border: 0.0625rem solid var(--border-color);
  font-weight: 600;
  line-height: 1.25rem;
  color: var(--white-color);
}

.agenko-blog-item.style-one {
  position: relative;
  background-color: var(--gray-dark);
  padding: 0 1.875rem;
}
.agenko-blog-item.style-one:hover .post-hover-wrap {
  visibility: visible;
  opacity: 1;
}
.agenko-blog-item.style-one .post-hover-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 3.75rem 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 47.9375rem) {
  .agenko-blog-item.style-one .post-hover-wrap {
    display: none;
  }
}
.agenko-blog-item.style-one .post-inner-wrap {
  padding: 3.75rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 61.9375rem) {
  .agenko-blog-item.style-one .post-inner-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.agenko-blog-item.style-one .author-item {
  width: 20%;
}
@media screen and (max-width: 61.9375rem) {
  .agenko-blog-item.style-one .author-item {
    width: 100%;
  }
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-blog-item.style-one .author-item .author-thumb {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 0.625rem;
  }
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-blog-item.style-one .author-item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.agenko-blog-item.style-one .post-content {
  width: 60%;
  padding: 0 1.875rem;
}
@media screen and (max-width: 61.9375rem) {
  .agenko-blog-item.style-one .post-content {
    width: 100%;
    padding: 1.5625rem 0;
  }
}
@media (max-width: 47.9375rem) {
  .agenko-blog-item.style-one .post-content .post-categories {
    padding: 1.25rem 0;
  }
}
.agenko-blog-item.style-one .post-content h3.title {
  margin-bottom: 0.9375rem;
}
.agenko-blog-item.style-one .post-content h3.title:hover {
  color: var(--primary-color);
}
.agenko-blog-item.style-one .post-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20%;
}
@media screen and (max-width: 61.9375rem) {
  .agenko-blog-item.style-one .post-date {
    width: 100%;
  }
}
.agenko-blog-item.style-one .post-date i {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white-color);
  background-color: rgba(255, 255, 255, 0.1);
  border: 0.0625rem solid rgba(26, 26, 26, 0.2);
  margin-right: 0.9375rem;
}
.agenko-blog-item.style-two {
  background-color: var(--bs-body-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.25rem;
  border-radius: 1rem;
  position: relative;
}
.agenko-blog-item.style-two::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("/assets/images/noise.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
}
@media (max-width: 47.9375rem) {
  .agenko-blog-item.style-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.agenko-blog-item.style-two .post-thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 16.25rem;
  margin-right: 1.875rem;
}
.agenko-blog-item.style-two .post-thumbnail img {
  border-radius: 0.4375rem;
}
@media (max-width: 47.9375rem) {
  .agenko-blog-item.style-two .post-thumbnail {
    margin-bottom: 1.5625rem;
    max-width: 100%;
    margin-right: 0;
  }
  .agenko-blog-item.style-two .post-thumbnail img {
    width: 100%;
  }
}
.agenko-blog-item.style-two .post-content .post-categories {
  margin-bottom: 0.9375rem;
}
.agenko-blog-item.style-two .post-content .post-categories a {
  padding: 0.5625rem 1.25rem;
  line-height: 1.25rem;
  border: 0.0625rem solid var(--border-color);
  border-radius: 1.875rem;
}
.agenko-blog-item.style-two .post-content h4.title {
  margin-bottom: 0.9375rem;
}
.agenko-blog-item.style-two .post-content h4.title:hover {
  color: var(--primary-color);
}
.agenko-blog-item.style-two .post-content p {
  margin-bottom: 0.625rem;
}
.agenko-blog-item.style-three:hover .post-button .icon-btn.style-one {
  background-color: var(--primary-color);
  color: var(--heading-color);
}
.agenko-blog-item.style-three:hover .post-button .icon-btn.style-one i {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.agenko-blog-item.style-three .post-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.agenko-blog-item.style-three .post-thumbnail img {
  width: 100%;
}
.agenko-blog-item.style-three .post-content {
  padding-top: 1.25rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 1.875rem;
}
.agenko-blog-item.style-three .post-content h4.title:hover {
  color: var(--primary-color);
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-blog-item.style-three .post-content h4.title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-blog-item.style-three .post-content h4.title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.agenko-blog-item.style-three .post-meta span {
  margin-bottom: 0.3125rem;
}
.agenko-blog-item.style-three .post-meta span:not(:last-child):after {
  display: inline-block;
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  vertical-align: middle;
  margin-left: 0.625rem;
  margin-right: 0.5rem;
}
.agenko-blog-item.style-four .post-thumbnail img {
  width: 100%;
  border-radius: 1rem;
}
.agenko-blog-item.style-four .post-content {
  padding-top: 1.5625rem;
}
.agenko-blog-item.style-four .post-content .post-meta span {
  margin-bottom: 0.625rem;
}
.agenko-blog-item.style-four .post-content .post-meta span:not(:last-child) {
  margin-right: 0.9375rem;
}
.agenko-blog-item.style-four .post-content .post-meta span i {
  margin-right: 0.625rem;
}
.agenko-blog-item.style-four .post-content .post-meta span:last-child {
  float: right;
}
.agenko-blog-item.style-four .post-content h4.title {
  margin-bottom: 0.9375rem;
}
.agenko-blog-item.style-four .post-content h4.title:hover {
  color: var(--primary-color);
}
@media screen and (max-width: 61.9375rem) {
  .agenko-blog-item.style-four .post-content h4.title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

/*---- 
====================
3. Components CSS
    # footer CSS
====================

----*/

.agenko-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bs-body-color);
}

.footer-widget {
  color: var(--white-color);
}
.footer-widget .footer-content .widget-title {
  margin-bottom: 0.9375rem;
  color: var(--primary-color);
}
.footer-widget .footer-content .footer-logo {
  padding: 0.3125rem;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-widget .footer-content ul li:not(:last-child) {
  margin-bottom: 0.8125rem;
}
.footer-widget .footer-content ul li a:hover {
  color: var(--primary-color);
}
.footer-widget .footer-content .form-group {
  max-width: 21.25rem;
}
.footer-widget .footer-content .form-group .form_control {
  width: 100%;
  background-color: var(--white-color);
  border-radius: 1.875rem;
  padding: 0.625rem 8.125rem 0.625rem 3.125rem;
  color: var(--heading-color);
  border: none;
}
.footer-widget
  .footer-content
  .form-group
  .form_control::-webkit-input-placeholder {
  color: var(--heading-color);
}
.footer-widget .footer-content .form-group .form_control::-moz-placeholder {
  color: var(--heading-color);
}
.footer-widget .footer-content .form-group .form_control:-ms-input-placeholder {
  color: var(--heading-color);
}
.footer-widget
  .footer-content
  .form-group
  .form_control::-ms-input-placeholder {
  color: var(--heading-color);
}
.footer-widget .footer-content .form-group .form_control::placeholder {
  color: var(--heading-color);
}
.footer-widget .footer-content .form-group label {
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  color: var(--heading-color);
}
.footer-widget .footer-content .form-group .theme-btn {
  position: absolute;
  top: 0.3125rem;
  right: 0.3125rem;
}
.footer-widget.footer-about-widget .footer-content p {
  max-width: 21.25rem;
  margin-bottom: 1.25rem;
}
.footer-widget.footer-contact-info-widget {
  padding-left: 2.5rem;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .footer-widget.footer-contact-info-widget {
    padding-left: 0;
  }
}
@media screen and (max-width: 61.9375rem) {
  .footer-widget.footer-contact-info-widget {
    padding-left: 0;
  }
}
.footer-widget.footer-contact-info-widget .footer-content p {
  max-width: 14.375rem;
  line-height: 1.6875rem;
  letter-spacing: 0.03rem;
}
.footer-widget.footer-nav-widget {
  padding-left: 2.5rem;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .footer-widget.footer-nav-widget {
    padding-left: 0;
  }
}
@media screen and (max-width: 61.9375rem) {
  .footer-widget.footer-nav-widget {
    padding-left: 0;
  }
}
.footer-widget.footer-contact-widget .footer-content h4.widget-title {
  margin-bottom: 1.25rem;
}

.footer-copyright {
  border-top: 0.0625rem solid var(--border-color);
  padding: 2.1875rem 0 1.875rem;
}
@media (max-width: 47.9375rem) {
  .footer-copyright .copyright-text {
    text-align: center;
  }
}

.footer-copyright .copyright-text p {
  font: 500 1.125rem var(--heading-font);
  color: var(--white-color);
}
.footer-copyright .copyright-text p span {
  color: var(--primary-color);
}
.footer-copyright .copyright-nav {
  float: right;
}
@media (max-width: 47.9375rem) {
  .footer-copyright .copyright-nav {
    float: none;
    text-align: center;
  }
}
.footer-copyright .copyright-nav ul li {
  display: inline-block;
}
.footer-copyright .copyright-nav ul li:not(:last-child) {
  margin-right: 1.25rem;
}
@media (max-width: 47.9375rem) {
  .footer-copyright .copyright-nav ul li {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
  .footer-copyright .copyright-nav ul li:not(:last-child) {
    margin-right: 0;
  }
}
.footer-copyright .copyright-nav ul li a {
  font: 500 1.125rem var(--heading-font);
  color: var(--white-color);
}
.footer-copyright .copyright-nav ul li a:hover {
  color: var(--primary-color);
}
@media (max-width: 47.9375rem) {
  .footer-copyright .copyright-nav ul li a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .footer-copyright .copyright-nav ul li a {
    font-size: 1rem;
  }
}

/*END footer*/
.hero-wrapper-one {
  background-color: #000;
  padding: 11rem 0 3rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.headline-title {
  width: 100%;
  max-width: 100%;
  font-size: clamp(3.5rem, 7.5vw, 8rem);
  line-height: 1;
  text-align: center;
  color: var(--primary-color);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .headline-title {
    font-size: clamp(3rem, 7.5vw, 6rem);
  }
}
@media screen and (max-width: 992px) {
  .headline-title {
    font-size: clamp(2.5rem, 6.5vw, 4.5rem);
    line-height: 1.05;
  }
}
@media (max-width: 500px) {
  .headline-title {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    text-align: center;
  }
}

.hero-content .big-text {
  font-size: 9.5rem;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  right: 5rem;
  position: relative;
  transform: rotate(5deg);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-content .big-text {
    font-size: 8.125rem;
  }
  .hero-content .text-box {
    left: 3%;
  }
}
@media screen and (max-width: 992px) {
  .hero-content .big-text {
    font-size: clamp(1.75rem, 10vw, 4.75rem);
  }
}
@media (max-width: 767px) {
  .hero-content .big-text {
    transform: rotate(6deg);
    right: 0;
    text-align: center;
  }
}
.hero-content .text-box {
  position: absolute;
  bottom: 5%;
  left: 15%;
  max-width: 20rem;
  text-align: right;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-content .text-box {
    left: 3%;
  }
}
@media screen and (max-width: 992px) {
  .hero-content .text-box {
    top: 55%;
    left: 0%;
    max-width: 18.875rem;
  }
}
@media (max-width: 767px) {
  .hero-content .text-box {
    position: relative;
    bottom: 0%;
    left: auto;
    width: 100%;
    max-width: 75%;
    margin: 2rem 4rem 0 2rem;
    top: -2rem;
  }
}
.hero-wrapper-one .hero-content .element {
  position: absolute;
  top: 5%;
  right: 15%;
}
@media (max-width: 767px) {
  .hero-wrapper-one .hero-content .element {
    top: 0;
  }
}
@media screen and (max-width: 992px) {
  .hero-wrapper-one .hero-content .hero-button {
    margin-top: 3.75rem;
  }
}

.hero-image.style-one img {
  border-radius: 1.875rem;
}

.agk-video {
  position: relative;
  z-index: 1;
  margin-top: -12.5rem;
}
.agk-video .agk-play-image-box .agk-image img {
  border-radius: 0.9375rem;
}

.text-box {
  max-width: 33.125rem;
}

/* Hero Wrapper Three */
.hero-wrapper-three {
  padding: 10rem 0;
}
.hero-wrapper-three .headline-title span {
  position: relative;
  padding: 0.3125rem 1.25rem;
  color: var(--heading-color);
  z-index: 1;
}
.hero-wrapper-three .headline-title span:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  background-color: var(--primary-color);
  border-radius: 0.9375rem;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
}
@media (max-width: 47.9375rem) {
  .hero-wrapper-three .headline-title {
    font-size: 3rem;
    line-height: 3.75rem;
  }
}
.hero-wrapper-three .hero-image-box {
  margin: 0 3.125rem;
  position: relative;
}
@media screen and (max-width: 61.9375rem) {
  .hero-wrapper-three .hero-image-box {
    margin: 0 0.9375rem;
  }
}
.hero-wrapper-three .hero-image-box img {
  border-radius: 1rem;
  width: 100%;
  min-height: 25rem;
}
@media screen and (max-width: 61.9375rem) {
  .hero-wrapper-three .hero-image-box img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.hero-wrapper-three .hero-image-box .text-box {
  position: absolute;
  top: 0;
  right: 10%;
  text-align: left;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .hero-wrapper-three .hero-image-box .text-box {
    right: 5%;
  }
}
@media screen and (max-width: 61.9375rem) {
  .hero-wrapper-three .hero-image-box .text-box {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 2.5rem;
  }
}
.hero-wrapper-three .hero-image-box svg {
  position: absolute;
  right: -0.0625rem;
  top: -0.0625rem;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .hero-wrapper-three .hero-image-box svg {
    top: -0.9375rem;
    width: 75%;
  }
}
@media screen and (max-width: 61.9375rem) {
  .hero-wrapper-three .hero-image-box svg {
    display: none;
  }
}

/* Page Banner CSS */
.agenko-page-banner {
  padding: 11.6875rem 0 7.5rem;
  background-color: var(--gray-dark);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 47.9375rem) {
  .agenko-page-banner {
    padding-bottom: 5rem;
  }
}
.agenko-page-banner .shape {
  position: absolute;
  z-index: -1;
}
.agenko-page-banner .shape span {
  border-radius: 50%;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}
.agenko-page-banner .shape.shape-circle1 {
  top: -45%;
  left: -5%;
}
.agenko-page-banner .shape.shape-circle1 span {
  width: 61.1875rem;
  height: 61.1875rem;
}
.agenko-page-banner .shape.shape-circle2 {
  top: -120%;
  right: 0;
}
.agenko-page-banner .shape.shape-circle2 span {
  width: 47.8125rem;
  height: 47.8125rem;
}
.agenko-page-banner .page-content h1 {
  margin-bottom: 2.5rem;
}
@media (min-width: 75rem) and (max-width: 90.625rem) {
  .agenko-page-banner .page-content h1 {
    font-size: 3.75rem;
    margin-bottom: 1.875rem;
  }
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-page-banner .page-content h1 {
    font-size: 3.25rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-page-banner .page-content h1 {
    font-size: 2.625rem;
    line-height: 3.125rem;
  }
}
.agenko-page-banner .page-content .text-box .icon {
  margin-right: 1.875rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 5.3125rem;
}
.agenko-page-banner .page-content ul.breadcrumb-link {
  display: block;
  border-radius: 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(0.3125rem);
  backdrop-filter: blur(0.3125rem);
  padding: 0.625rem 1.875rem;
  float: right;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-page-banner .page-content ul.breadcrumb-link {
    float: left;
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-page-banner .page-content ul.breadcrumb-link {
    float: left;
    margin: 2.5rem 0;
  }
}
.agenko-page-banner .page-content ul.breadcrumb-link li {
  display: inline-block;
}
.agenko-page-banner .page-content ul.breadcrumb-link li:not(:last-child):after {
  display: inline-block;
  content: "|";
  margin-left: 0.8125rem;
  margin-right: 0.8125rem;
}
.agenko-page-banner .page-content ul.breadcrumb-link li.active {
  color: var(--primary-color);
}
.marlotech-service {
  padding-block: 3rem 0;
}
@media (max-width: 767px) {
  .marlotech-service {
    padding-block: 1rem 0;
  }
}
.agk-service-ca .text-box {
  max-width: 18.75rem;
}
.service-box {
  opacity: 0;
  transform-origin: center;
}
.agk-process-box {
  text-align: center;
}
.agk-process-box .agenko-step {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.agk-process-box .agenko-step::after {
  position: absolute;
  content: "";
  top: 1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0.0625rem;
  height: 2.5rem;
  background-color: var(--primary-color);
  z-index: -1;
}

.agk-company-ca .client-list {
  padding-left: 6.25rem;
}
@media screen and (max-width: 61.9375rem) {
  .agk-company-ca .client-list {
    padding-left: 0;
  }
}
.agk-company-ca .client-list ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
}

.agk-award-ca .text-box {
  max-width: 18.75rem;
}

.agenko-content-box > p {
  margin-bottom: 1.875rem;
}

.agk-content-box.style-one {
  max-width: 44.375rem;
  padding-right: 6.25rem;
}
@media (min-width: 75rem) and (max-width: 90.625rem) {
  .agk-content-box.style-one {
    padding-right: 4.375rem;
  }
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agk-content-box.style-one {
    padding-right: 0;
    margin: 0 auto 3.125rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agk-content-box.style-one {
    padding-right: 0;
  }
}
.agk-content-box.style-one > p {
  margin-bottom: 1.875rem;
}
.agk-content-box.style-one ul li {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.agk-content-box.style-one ul li:not(:last-child) {
  padding-right: 2.8125rem;
  border-right: 0.0625rem solid var(--border-color);
}
@media (max-width: 47.9375rem) {
  .agk-content-box.style-one ul li:not(:last-child) {
    padding-right: 0;
    border-right: none;
  }
}
.agk-content-box.style-one ul li:last-child {
  padding-left: 2.8125rem;
}
@media (max-width: 47.9375rem) {
  .agk-content-box.style-one ul li:last-child {
    padding-left: 0;
  }
}

.agk-image-box.style-one {
  position: relative;
  max-width: 27.5rem;
  max-height: 33.125rem;
  margin-left: auto;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agk-image-box.style-one {
    margin: 0 auto 3.125rem;
    max-width: 34.375rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agk-image-box.style-one {
    margin: 0 auto 3.125rem;
    max-width: 34.375rem;
  }
}
.agk-image-box.style-one .agenko-experince-box {
  position: absolute;
  top: 37%;
  left: -5rem;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agk-image-box.style-one .agenko-experince-box {
    left: 1.25rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agk-image-box.style-one .agenko-experince-box {
    left: 1.25rem;
  }
}
@media (max-width: 47.9375rem) {
  .agk-image-box.style-one .agenko-experince-box {
    left: 0;
  }
}
.agk-image-box.style-one .agk-image {
  text-align: right;
}
.agk-image-box.style-one .agk-image img {
  width: auto;
  border-radius: 1.25rem;
}

.agk-who-we .big-text {
  border-top: 0.0625rem solid var(--border-color);
}
.agk-who-we .big-text h2 {
  color: rgba(255, 255, 255, 0);
  font-size: 8.75rem;
  text-transform: uppercase;
  line-height: 1em;
  font-family: var(--heading-font);
  -webkit-text-stroke-width: 0.0625rem;
  stroke-width: 0.0625rem;
  -webkit-text-stroke-color: #ffffff;
  stroke: #ffffff;
}
@media (min-width: 75rem) and (max-width: 90.625rem) {
  .agk-who-we .big-text h2 {
    font-size: 6.875rem;
  }
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agk-who-we .big-text h2 {
    font-size: 5rem;
  }
}
@media (max-width: 47.9375rem) {
  .agk-who-we .big-text h2 {
    font-size: 1.875rem;
  }
}

.agk-play-image-box .agk-image {
  position: relative;
}
.agk-play-image-box .agk-image .play-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.agk-play-image-box .agk-image .play-box .video-popup {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  font-size: 1.5rem;
  color: var(--heading-color);
}
@media (max-width: 47.9375rem) {
  .agk-play-image-box .agk-image .play-box .video-popup {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.125rem;
  }
}
/*klienti - homepage client-logo*/
.client-apple-wrap {
  max-width: 1100px;
  margin: 40px auto 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}
@media (max-width: 767px) {
  .client-apple-wrap {
    margin: 5px auto 5px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }
}
.client-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.client-card img {
  width: 100%;
}
@media (max-width: 767px) {
  .client-card img {
    width: 10rem;
  }
}
.client-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0px 8px 30px rgba(0, 255, 242, 0.08);
}
/*End clients*/
/* Agenko Process Wrapper */
.testimonial-wrapper {
  padding: 0 4.375rem;
}
@media (max-width: 47.9375rem) {
  .testimonial-wrapper {
    padding: 0;
  }
}

.faq-big-text {
  color: rgba(255, 255, 255, 0.03);
  font-family: var(--heading-font);
  font-size: 12.5rem;
  font-weight: 700;
  line-height: 12.5rem; /* 100% */
  text-transform: uppercase;
}

.agk-team .container-fluid {
  padding-left: 4.375rem;
  padding-right: 4.375rem;
}
@media (max-width: 47.9375rem) {
  .agk-team .container-fluid {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.client-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 61.9375rem) {
  .client-list ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.client-list ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  margin-bottom: -0.0625rem;
}
@media (max-width: 47.9375rem) {
  .client-list ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
  }
}

/* Agenko Process Wrapper */
.agk-process-wrapper {
  position: relative;
  z-index: 1;
}
.agk-process-wrapper .process-line {
  position: absolute;
  top: 0.9375rem;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--primary-color);
  z-index: -1;
}
@media screen and (max-width: 61.9375rem) {
  .agk-process-wrapper .process-line {
    display: none;
  }
}

/* Agenko Testimoial */
.agk-testimonial-ca {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.agk-testimonial-ca .shape {
  position: absolute;
  z-index: -1;
}
.agk-testimonial-ca .shape span {
  width: 40.625rem;
  height: 40.625rem;
  border-radius: 50%;
  border: 5.3372rem solid rgba(255, 255, 255, 0.03);
}
.agk-testimonial-ca .shape.shape-one {
  bottom: -45%;
  left: -20%;
}
.agk-testimonial-ca .shape.shape-two {
  top: -45%;
  right: -20%;
}
.agk-testimonial-ca .agk-content-box {
  position: relative;
  z-index: 1;
}
.agk-testimonial-ca .agk-content-box .fill-text {
  position: absolute;
  top: -3.125rem;
  left: 0;
  color: rgba(255, 255, 255, 0);
  font-size: 6.25rem;
  text-transform: uppercase;
  line-height: 1em;
  font-weight: 700;
  font-family: var(--heading-font);
  -webkit-text-stroke-width: 0.0625rem;
  stroke-width: 0.0625rem;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.05);
  stroke: rgba(255, 255, 255, 0.05);
  z-index: -1;
}

/* Agenko Service Details */
.agenko-service-details {
  position: relative;
  z-index: 1;
}
.agenko-service-details:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: -1;
  background-color: var(--gray-dark);
}

/* Agenko join Team */
.agenko-join-team .big-text {
  font-size: 8.75rem;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1;
  color: var(--white-color);
}
@media (max-width: 47.9375rem) {
  .agenko-join-team .big-text span img {
    display: none;
  }
}
.agenko-join-team .big-text span.fill-text {
  -webkit-text-stroke-width: 0.125rem;
  -webkit-text-stroke-color: var(--text-color);
  color: transparent;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .agenko-join-team .big-text {
    font-size: 6.25rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .agenko-join-team .big-text {
    text-align: center;
  }
}
@media (max-width: 47.9375rem) {
  .agenko-join-team .big-text {
    font-size: 5rem;
  }
}
.agenko-join-team .agenko-team-image {
  max-width: 30.625rem;
}
@media screen and (max-width: 61.9375rem) {
  .agenko-join-team .agenko-team-image {
    margin: 0 auto 3.125rem;
  }
}

/* Team Details Wrapper */
.team-details-wrapper .member-info h2 {
  margin-bottom: 1.25rem;
}
.team-details-wrapper .member-info span.position {
  margin-bottom: 1.5625rem;
}
.team-details-wrapper .member-info p {
  margin-bottom: 1.5625rem;
}
.team-details-wrapper .member-info ul.social-link li {
  display: inline-block;
  margin-right: 0.625rem;
}
.team-details-wrapper .member-info ul.social-link li a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--heading-color);
  background-color: var(--white-color);
}
.team-details-wrapper .member-info ul.social-link li a:hover {
  background-color: var(--primary-color);
}

/* Project Page */
.agenko-project .container-fluid {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
@media screen and (max-width: 61.9375rem) {
  .agenko-project .container-fluid {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

/* Project Details Wrapper */
.project-details-wrapper .agenko-content-box h2 {
  margin-bottom: 1.875rem;
  max-width: 40.625rem;
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .project-details-wrapper .agenko-content-box h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .project-details-wrapper .agenko-content-box h2 {
    font-size: 1.6875rem;
    line-height: 2.5rem;
  }
}
.project-details-wrapper .agenko-content-box h3 {
  margin-bottom: 0.9375rem;
}
.project-details-wrapper .project-duration-box h3 {
  font-size: 1.25rem;
}

/* Page 404 */
.page-404 {
  padding: 8.125rem 0;
}
.page-404 .page-content img {
  margin-bottom: 3.125rem;
}
.page-404 .page-content h4 {
  margin-bottom: 1.875rem;
}
@media (max-width: 47.9375rem) {
  .page-404 .page-content h4 {
    font-weight: 500;
    font-size: 1.125rem;
  }
}

/* Agenko CTA Wrapper */
.agenko-cta-wrappper {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.agenko-cta-wrappper .shape {
  position: absolute;
  z-index: -1;
}
.agenko-cta-wrappper .shape span {
  width: 23.75rem;
  height: 23.75rem;
  border-radius: 50%;
  border: 3.125rem solid rgba(255, 255, 255, 0.03);
}
.agenko-cta-wrappper .shape.shape_one {
  top: -15.625rem;
  left: -8%;
}
.agenko-cta-wrappper .shape.shape_two {
  bottom: -15.625rem;
  right: -8%;
}

.company-slider {
  margin-left: -1.5625rem;
  margin-right: -1.5625rem;
}
@media screen and (max-width: 61.9375rem) {
  .company-slider {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
}
.company-slider .slick-slide {
  margin-left: 1.5625rem;
  margin-right: 1.5625rem;
}
@media screen and (max-width: 61.9375rem) {
  .company-slider .slick-slide {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
}

.company-list {
  gap: 0 0.9375rem;
}

.agenko-process-wrapper-two {
  position: relative;
}
.agenko-process-wrapper-two .process-line {
  position: absolute;
  top: 0.1875rem;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--border-color);
}
/* === PROSE: jednotný typografický rytmus pre článok === */

.blog-details-wrapper .agenko-post-item .post-content {
  max-width: 70ch;
}

.prose > * {
  margin: 0;
}
.prose > * + * {
  margin-top: var(--flow-space, var(--space-md));
}

.prose p {
  line-height: 1.8;
  color: var(--text-color);
  --flow-space: var(--space-md);
  font-size: 1.125rem;
}
.prose p + p {
  margin-top: var(--space-sm);
}
.prose p + h2,
.prose p + h3,
.prose p + h4 {
  margin-top: var(--space-xl);
}

.prose h2,
.prose h3,
.prose h4,
.prose h5 {
  color: var(--title-color);
  line-height: 1.25;
}

.prose h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  --flow-space: var(--space-sm);
}
.prose h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xs);
  --flow-space: var(--space-sm);
}
.prose h4 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-2xs);
}
.prose h5 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-2xs);
}

.prose ul,
.prose ol {
  padding-left: 1.5rem;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}
.prose ul {
  list-style: disc;
}
.prose ol {
  list-style: decimal;
}
.prose li + li {
  margin-top: var(--space-2xs);
}

.prose blockquote {
  background: var(--gray-dark);
  border-left: 0.25rem solid var(--primary-color);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0.625rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.prose blockquote p {
  color: var(--white-color);
}

.prose figure {
  margin-top: var(--space-lg);
}
.prose img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: var(--space-sm) 0;
}
.prose figcaption {
  font-size: var(--fs-sm);
  color: var(--text-color);
  margin-top: var(--space-2xs);
  text-align: center;
}

.blog-details-wrapper .agenko-post-item .post-content .post-meta {
  margin: 0 0 var(--space-sm);
}
.blog-details-wrapper .agenko-post-item .entry-footer {
  padding: var(--space-md) 0;
}

.prose .section {
  margin-top: var(--space-lg);
}
.prose .section:first-child {
  margin-top: 0;
}
.prose .subsection {
  margin-top: var(--space-md);
}

.blog-details-wrapper .agenko-post-item .post-content h3,
.blog-details-wrapper .agenko-post-item .post-content h4 {
  margin: 0;
}

.prose :is(h2, h3, h4, h5)[id] {
  scroll-margin-top: 6rem;
}

@media (max-width: 48rem) {
  .prose p {
    line-height: 1.75;
  }
  .prose h2 {
    margin-top: var(--space-xl);
  }
  .prose h3 {
    margin-top: var(--space-lg);
  }
}

.agenko-blog-detils .post-meta {
  display: flex;
  gap: 1rem;
}
.agenko-blog-detils .post-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.table-responsive {
  margin: var(--space-md) 0;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(24, 25, 27, 0.6);
}

.table-responsive table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  color: var(--white-color);
}

.table-responsive thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(14, 15, 17, 0.9);
  backdrop-filter: saturate(160%) blur(6px);
  font: 700 var(--fs-sm) / 1.4 var(--heading-font);
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.table-responsive td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
}

.table-responsive tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}

.table-responsive tbody tr:hover td {
  background: rgba(0, 255, 242, 0.06);
}

.table-responsive td.num,
.table-responsive th.num {
  text-align: right;
}

.table-responsive td .badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  background: var(--gray-dark);
  color: var(--white-color);
  font-size: var(--fs-xs);
}

@media (max-width: 40rem) {
  .table-responsive {
    border-radius: 0.75rem;
  }
  .table-responsive table {
    min-width: 0;
  }
  .table-responsive thead {
    display: none;
  }
  .table-responsive tbody tr {
    display: block;
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
  }
  .table-responsive tbody tr + tr {
    margin-top: 0.5rem;
  }
  .table-responsive tbody td {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 0;
  }
  .table-responsive tbody td::before {
    content: attr(data-label);
    font: 600 var(--fs-xs) / 1.4 var(--heading-font);
    color: var(--white-color);
    opacity: 0.85;
  }
  .table-responsive tbody td.num {
    justify-content: end;
    text-align: right;
  }
}

/*blog section - end */
.sidebar-widget-area .sidebar-widget {
  background-color: var(--gray-dark);
  border-radius: 0.625rem;
  padding: 1.25rem 1.875rem 1.875rem;
}
@media (min-width: 75rem) and (max-width: 90.625rem) {
  .sidebar-widget-area .sidebar-widget {
    padding: 1.25rem 1.25rem 1.875rem;
  }
}
@media (max-width: 35.9375rem) {
  .sidebar-widget-area .sidebar-widget {
    padding: 1.25rem 1.25rem 1.875rem;
  }
}
.sidebar-widget-area .sidebar-widget .sidebar-title {
  margin-bottom: 1.25rem;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .form_control {
  width: 100%;
  border-radius: 0.625rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  background-color: var(--gray-dark);
  padding: 0.9375rem 1.5625rem;
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .form_control::-webkit-input-placeholder {
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .form_control::-moz-placeholder {
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .form_control:-ms-input-placeholder {
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .form_control::-ms-input-placeholder {
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .form_control::placeholder {
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .search-btn {
  position: absolute;
  top: 0.9375rem;
  right: 1.875rem;
  background-color: transparent;
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-category-widget
  .widget-content
  li:not(:last-child) {
  margin-bottom: 1.875rem;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-category-widget
  .widget-content
  li
  a {
  display: block;
  color: var(--white-color);
  font: 700 1.125rem var(--heading-font);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-category-widget
  .widget-content
  li
  a
  span {
  float: right;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-post-widget
  .widget-content
  ul
  li:not(:last-child) {
  margin-bottom: 1.25rem;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-post-widget
  .widget-content
  .post-thumbnail-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-post-widget
  .widget-content
  .post-thumbnail-content
  img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 6.875rem;
  margin-right: 1.25rem;
  border-radius: 0.625rem;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-post-widget
  .widget-content
  .post-title-date
  span {
  margin-bottom: 0.625rem;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-post-widget
  .widget-content
  .post-title-date
  span
  a {
  padding: 0.5rem 0.75rem;
  border-radius: 1.875rem;
  border: 0.0625rem solid var(--border-color);
  letter-spacing: 0.03rem;
  color: var(--white-color);
  line-height: 1.25rem;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-post-widget
  .widget-content
  .post-title-date
  h6 {
  line-height: 1.6875rem;
  letter-spacing: 0.03rem;
}
@media (min-width: 75rem) and (max-width: 90.625rem) {
  .sidebar-widget-area
    .sidebar-widget.sidebar-post-widget
    .widget-content
    .post-title-date
    h6 {
    font-size: 1rem;
  }
}
@media (max-width: 35.9375rem) {
  .sidebar-widget-area
    .sidebar-widget.sidebar-post-widget
    .widget-content
    .post-title-date
    h6 {
    font-size: 1rem;
  }
}
.sidebar-widget-area .sidebar-widget.sidebar-tag-widget {
  padding: 1.25rem 1.875rem 1.25rem;
}
.sidebar-widget-area .sidebar-widget.sidebar-tag-widget .widget-content a {
  padding: 0.625rem;
  background-color: var(--primary-black-color);
  border-radius: 1.875rem;
  padding: 0.75rem 1.25rem;
  line-height: 1.25rem;
  letter-spacing: 0.03rem;
  margin-bottom: 0.625rem;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-tag-widget
  .widget-content
  a:hover {
  background-color: var(--primary-color);
  color: var(--heading-color);
}
.sidebar-widget-area .sidebar-widget.sidebar-banner-widget {
  padding: 0;
  border-radius: 0.625rem;
  overflow: hidden;
}
.sidebar-widget-area .sidebar-widget.sidebar-banner-widget .widget-content {
  padding: 1.875rem;
  position: relative;
  z-index: 1;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-banner-widget
  .widget-content:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(181deg, rgba(0, 0, 0, 0) 0.62%, #000 70.85%);
  z-index: -1;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-banner-widget
  .widget-content
  .content {
  padding-top: 70%;
  text-align: center;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-banner-widget
  .widget-content
  .content
  h3 {
  margin-bottom: 1.875rem;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-banner-widget
  .widget-content
  .content
  .theme-btn {
  width: 100%;
  padding: 0.9375rem 1.875rem;
  border-radius: 0.625rem;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-contact-widget
  .widget-content
  .sidebar-title {
  margin-bottom: 0.625rem;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-contact-widget
  .agenko-contact-form.style-one
  .form_control {
  padding: 0.8125rem 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-contact-widget
  .agenko-contact-form.style-one
  .theme-btn {
  padding: 0.6875rem 1.25rem;
}

/* Slider */
.team-slider-one {
  margin-right: -0.3125rem;
  margin-left: -0.3125rem;
}
.team-slider-one .slick-slide {
  margin-left: 0.3125rem;
  margin-right: 0.3125rem;
}

.form-message {
  padding: 0.625rem 0;
}
.form-message.success {
  color: var(--primary-color);
}
.form-message.error {
  color: rgba(209, 12, 12, 0.808);
}

.contact-info-wrapper {
  position: relative;
  border-radius: 1.25rem;
  border: 0.0625rem solid #313131;
  background-color: #0e0f11;
  margin-right: 6.25rem;
  padding: 3.75rem 2.5rem;
  z-index: 1;
}
@media (min-width: 75rem) and (max-width: 90.625rem) {
  .contact-info-wrapper {
    margin-right: 3.125rem;
  }
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .contact-info-wrapper {
    margin-right: 0;
  }
}
@media screen and (max-width: 61.9375rem) {
  .contact-info-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 47.9375rem) {
  .contact-info-wrapper {
    padding: 3.125rem 1.875rem;
  }
}
.contact-info-wrapper .shape {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
.contact-info-wrapper ul li:not(:last-child) {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 0.0625rem solid var(--border-color);
}
.contact-info-wrapper ul li:first-child {
  padding-bottom: 0;
  border-bottom: none;
}
.contact-info-wrapper ul li .phone {
  font: 700 1.7rem var(--heading-font);
  color: var(--primary-color);
}
@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .contact-info-wrapper ul li .phone {
    font-size: 1.6875rem;
  }
}
@media screen and (max-width: 61.9375rem) {
  .contact-info-wrapper ul li .phone {
    font-size: 1.6875rem;
  }
}

.map-box iframe {
  height: 37.5rem;
}
@media (max-width: 767px) {
  .agenko-contact .left-col {
    order: 2;
  }
}

.agenko-contact-form.style-one .form_control {
  border-radius: 0.625rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  background-color: #1a1b1d;
  padding: 0.9375rem 1.875rem;
  margin-bottom: 1.875rem;
  color: var(--white-color);
  font: 500 1rem var(--heading-font);
}
.agenko-contact-form.style-one .form_control::-webkit-input-placeholder {
  color: var(--white-color);
}
.agenko-contact-form.style-one .form_control::-moz-placeholder {
  color: var(--white-color);
}
.agenko-contact-form.style-one .form_control:-ms-input-placeholder {
  color: var(--white-color);
}
.agenko-contact-form.style-one .form_control::-ms-input-placeholder {
  color: var(--white-color);
}
.agenko-contact-form.style-one .form_control::placeholder {
  color: var(--white-color);
}
.agenko-contact-form.style-one .checkbox_gdpr {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 1.875rem;
}
.form-message-box {
  background-color: #dcedc8;
  border-left: 5px solid #33691e;
  padding: 20px 24px;
  border-radius: 10px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-family: inherit;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  animation: fadeInBox 0.4s ease;
  max-width: 100%;
  margin-top: 24px;
  width: 100%;
}

.form-message-box .icon {
  font-size: 28px;
  color: #33691e;
  flex-shrink: 0;
  margin-top: 4px;
}

.form-message-box .content .title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1b5e20;
}

.form-message-box .content p {
  margin: 6px 0;
  color: #1b5e20;
  line-height: 1.5;
  font-size: 0.8rem;
}

.form-message-box small {
  font-size: 12px;
  color: #558b2f;
}

.form-message-box.error {
  background-color: #ffebee;
  border-left-color: #c62828;
}

.form-message-box.error .icon,
.form-message-box.error .title,
.form-message-box.error p,
.form-message-box.error small {
  color: #c62828;
}

@keyframes fadeInBox {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.agenko-contact-form .form_control {
  border-radius: 0.625rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  background-color: #1a1b1d;
  padding: 0.9375rem 1.875rem;
  margin-bottom: 1.875rem;
  color: var(--white-color);
  font: 700 1.25rem var(--heading-font);
}
.agenko-contact-form .form_control::-webkit-input-placeholder {
  color: var(--white-color);
}
.agenko-contact-form .form_control::-moz-placeholder {
  color: var(--white-color);
}
.agenko-contact-form .form_control:-ms-input-placeholder {
  color: var(--white-color);
}
.agenko-contact-form .form_control::-ms-input-placeholder {
  color: var(--white-color);
}
.agenko-contact-form .form_control::placeholder {
  color: var(--white-color);
}
.agenko-contact-form.style-two .theme-btn {
  width: 100%;
  padding: 0.9375rem 1.875rem;
  border-radius: 0.625rem;
}

/* ====== HERO / VIDEO / DECO ====== */

.hero-wrapper-one {
  position: relative;
  border-radius: 2rem;
}
.video-bg-wrapper {
  position: relative;
  inset: 0;
  overflow: hidden;
  z-index: 3;
  display: flex;
  justify-content: center;
}
.video-bg-wrapper .container {
  position: absolute;
  z-index: 5;
  top: 40%;
}
@media (max-width: 992px) {
  .video-bg-wrapper .container {
    top: 55%;
  }
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 600px;
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      black 40%,
      black 70%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      black 40%,
      black 70%,
      transparent 90%
    );
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
  filter: brightness(0.8);
}
@media (max-width: 767px) {
  .hero-video {
    height: 100vh;
  }
}
.hero-video,
.hero-content,
.headline-title,
.big-text,
.text-box {
  will-change: transform;
}
.svg-deco {
  position: absolute;
  width: 417.5px;
  height: 86px;
  z-index: 2;
  pointer-events: none;
}
.svg-deco .hero-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.svg-deco-tr {
  top: 0;
  right: 0;
  transform-origin: top right;
}
.svg-deco-bl {
  bottom: -1px;
  left: -1px;
  transform-origin: bottom left;
}
.hero-content {
  position: relative;
  z-index: 5;
}
.bottom-svg-box {
  position: absolute;
  bottom: -1px;
  right: 2.7rem;
}

#mouse-smoke-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: screen;
}
@media (max-width: 500px) {
  #mouse-smoke-canvas {
    display: none;
  }
}
#space-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; /* pozadie */
  pointer-events: none;
}
#mouse-smoke-canvas {
  z-index: 1;
}
#ui-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1; /* guľa nad HTML */
  pointer-events: none;
  mix-blend-mode: screen; /* DÔLEŽITÉ – nikdy netmaví, iba zosvetľuje */
}
#container {
  position: fixed;
  inset: 0;
  z-index: 0;
  /* za celý obsah stránky */
  pointer-events: none;
}

canvas.threejs-explosion {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.section-title h2,
.section-title .sub-title {
  color: inherit;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  mask-image: none;
}

.agenko-iconic-box.style-four {
  transform-style: preserve-3d;
}

.agenko-iconic-box.style-four .icon,
.agenko-iconic-box.style-four .read-more {
  will-change: transform;
  transition: transform 0.25s cubic-bezier(0.2, 0.6, 0.2, 1);
  transform-origin: center;
}

.agenko-iconic-box.style-four:hover .icon svg {
  filter: drop-shadow(0 6px 18px rgba(0, 255, 242, 0.25));
}

/*Blog*/
.clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 1.3;
  max-height: calc(1.3em * 2);
}
.hero-wrapper-blog {
  background-color: #000;
  padding: 25rem 0 3rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0 0 2rem 4rem;
}
@media (max-width: 992px) {
  .hero-wrapper-blog {
    padding: 15rem 0 0rem;
    border-radius: 0;
  }
}

.hero-wrapper-blog::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%; /* môžeš upraviť */
  background: linear-gradient(to top, #000 50%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.agk-blog .title a {
  color: inherit;
  text-decoration: none;
  display: inherit;
}
.blog-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

@media (max-width: 992px) {
  .blog-row {
    gap: 1.25rem;
  }
}
.thumbnail-marlotech {
  width: 260px;
  height: 230px;
  overflow: hidden;
  border-radius: 15px;
}
@media (max-width: 992px) {
  .thumbnail-marlotech {
    width: 100%;

    height: 100%;
  }
}
.blog-marlotech {
  padding-block: 6rem;
}
@media (max-width: 992px) {
  .blog-marlotech {
    padding-block: 2rem;
  }
  .blog-marlotech .agk-button .btn-primary {
    width: 100%;
  }
}
.blog-hero {
  max-width: 90rem;
  margin: 0 auto;
}
.blog-hero .blog-wrapper_image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
  overflow: hidden;
}

.spacer,
.wrapper--project {
  width: 100%;
  min-height: 100vh;
}

.wrapper--project {
  padding-block: 100px 50px;
  border-top: dashed 2px var(--color-surface50);
  border-bottom: dashed 2px var(--color-surface50);
}
@media (max-width: 992px) {
  .wrapper--project {
    padding-block: 50px 0;
  }
}
.cards--project {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 3;
  position: relative;
}

.card-wrapper--project {
  width: 100%;
  perspective: 500px;
  margin-bottom: 50px;
}

.card-wrapper--project:last-child {
  margin-bottom: 0;
}

.card--project {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  will-change: transform;
  border: none;
}

.card--project::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background-image: url(/assets/images/noise.png);
  opacity: 0.5;
  pointer-events: none;
}

.card {
  will-change: transform;
}
.card--project.one {
  background-image: url(/assets/images/projects/finby-project-mobile.png);
}

.card--project.two {
  background-image: url(/assets/images/projects/chatyforest-banner-marlotech-min.png);
}

.card--project.three {
  background-image: url(/assets/images/projects/sunlite7-banner-marlotech.png);
}

.card--project.four {
  background-image: url(/assets/images/projects/fabriarchitekt-project-mobile.png);
  margin-bottom: 2rem;
}

.card-wrapper--project:hover .card--project {
  filter: none;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

@media (min-width: 768px) {
  .cards--project {
    width: 80%;
    padding: 0 30px;
  }
  .card--project.one {
    background-image: url(/assets/images/projects/finby-banner-marlotech.png);
  }

  .card--project.four {
    background-image: url(/assets/images/projects/fabriarchitekt-banner-marlotech.png);
  }
}

@media (min-width: 1024px) {
  .cards--project {
    width: 70%;
    padding: 0 50px;
  }
}

.mt-scroll-spacer {
  height: 60vh;
  pointer-events: none;
}

/*Single project */

.project-hero__wrapper {
  min-height: 35rem;
}
.project-wrapper_video {
  height: 100vh;
  object-fit: cover;
}
@media (max-width: 992px) {
  .project-wrapper_video.full-screen {
    margin-top: -4rem;
  }
}
/*about page*/
.marlotech-why {
  padding-block: 5rem 10rem;
}
@media (max-width: 992px) {
  .marlotech-why {
    padding-block: 1rem 1rem;
  }
}
.marlotech-why-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.marlotech-why-content .highlight-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.marlotech-why-content ul li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.marlotech-why-content blockquote {
  font-style: italic;
  color: #ccc;
  border-color: var(--primary-color, #c0a969);
}

.marlotech-why-content .sub-title {
  color: var(--primary-color, #c0a969);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}
/*service-page*/
.agk-services-pro {
  --bg: #0f0f12;

  --muted: #9aa3b2;
  --text: #e9edf3;
  --primary: var(--primary-color, #5b8cff);
  --ok: #36d399;
  --soft: #2a2d35;
}
.agk-services-pro .lead {
  color: var(--muted);
}
.agk-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  background: var(--primary);
  padding: 10px;
  border-radius: 1rem;
  width: max-content;
}
@media (max-width: 992px) {
  .agk-tabs {
    justify-content: center;
    width: auto;
  }
}
@media (max-width: 767px) {
  .agk-tabs {
    justify-content: normal;
  }
}
.agk-tab {
  background: var(--primary-color);
  color: var(--primary-black-color);
  padding: 0.6rem 1rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: 0.15s;
  display: inline-flex;
  align-items: center;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.agk-tab.is-active {
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  border: 1px solid var(--bs-body-color);
}
.agk-tab.is-active .msr.material-symbols-rounded {
  color: var(--bg);
}
.agk-tabpanel {
  display: none;
}
.agk-tabpanel.is-active {
  display: block;
}
.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, 1fr);
}
@media (min-width: 992px) {
  .service-grid > article {
    grid-column: span 4;
  }
}
@media (max-width: 991.98px) {
  .service-grid > article {
    grid-column: span 12;
  }
}
.service-card {
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid #23262f;
  border-radius: 18px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: 0.25s;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: #2d3340;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}
.service-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(91, 140, 255, 0.1),
    rgba(91, 140, 255, 0.04)
  );
  display: grid;
  place-items: center;
}

.bullets {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.bullets li {
  position: relative;
  padding-left: 20px;
  color: #c9d1e0;
}
.bullets li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ok);
}
.meta {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.badge {
  background: rgba(54, 211, 153, 0.14);
  color: #bff3df;
  border: 1px solid rgba(54, 211, 153, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
}
.badge-soft {
  background: rgba(233, 237, 243, 0.06);
  color: #e3e8ef;
  border-color: rgba(233, 237, 243, 0.18);
}
.link-more {
  display: inline-flex;
  margin-top: 6px;
  font-weight: 600;
  color: #dce6ff;
  text-decoration: none;
  color: var(--primary-color);
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  cursor: pointer;
}
.link-more:hover {
  color: var(--title-color);
}
.price-note {
  color: var(--muted);
  font-size: 0.95rem;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat {
  background: var(--soft);
  border: 1px solid #242936;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  position: relative;
}
.stat > .material-symbols-rounded {
  color: var(--primary);
  font-size: 22px;
  position: absolute;
  left: 14px;
  top: 14px;
}
@media (max-width: 500px) {
  .stat > .material-symbols-rounded {
    position: relative;
    top: 0;
    left: 0;
  }
}
.stat strong {
  display: block;
  font-size: 1.6rem;
}
.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}
.process-title {
  margin: 0 0 14px;
}
.process-steps {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
@media (max-width: 767px) {
  .process-steps {
    justify-content: flex-start;
  }
}
.process-steps li {
  background: var(--soft);
  border: 1px solid #242936;
  border-radius: var(--radius);
  padding: 0.5rem 0.9rem;
  color: #dbe4f3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.process-steps li span {
  background: var(--primary);
  color: #000;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.95rem;
  margin-right: 0.4rem;
  align-items: center;
}
.cta-band {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    135deg,
    rgba(91, 140, 255, 0.1),
    rgba(32, 38, 54, 0.9)
  );
  border: 1px solid #2a3040;
  border-radius: 16px;
  padding: 22px;
}
@media (max-width: 767px) {
  .cta-band {
    margin-top: 4rem;
  }
}
.cta-band .cta-text h3 {
  margin: 0;
}

.title-anim {
  will-change: transform;
}
.me-6 {
  margin-right: 0.4rem;
}
.ms-10 {
  margin-left: 0.6rem;
}
.msr.material-symbols-rounded {
  font-variation-settings:
    "FILL" 0,
    "wght" 600,
    "GRAD" 0,
    "opsz" 24;
  line-height: 1;
  font-size: 20px;
}
/*end service page*/

/*web na mieru - sluzba */

.m-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .m-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .m-section {
    padding: 40px 0;
  }
}
.blur-accent {
  position: absolute;
  inset: auto auto 8% -8%;
  width: 340px;
  height: 340px;
  filter: blur(70px);
  background: radial-gradient(
    closest-side,
    var(--primary-color),
    transparent 70%
  );
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}
.kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 255, 242, 0.1);
  border: 1px solid var(--ring);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
}
@media (max-width: 767px) {
  .kicker {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
    gap: 0.5rem;
  }
}
.feature,
.card-soft,
.pros-cons,
.card-like {
  background: var(--bs-body-color);
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.feature {
  padding: 20px;
}

.card-link:hover {
  cursor: pointer;
}
.feature .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary-color);
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 10px;
}

.card-soft {
  padding: 20px;
  height: 100%;
  background: #161a1d;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.card-soft h6,
.card-soft h5 {
  color: #fff;
}
.card-soft .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--primary-color);
  background: transparent;
  border: 1px solid var(--primary-color);
  margin-bottom: 10px;
}
.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
}
.portfolio .thumbnail {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.portfolio img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.03);
  transition: transform 0.6s ease;
}
.portfolio .thumbnail:hover img {
  transform: scale(1.07);
}
.portfolio .hover-content {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  color: #fff;
  padding: 20px;
}
.sticky-sidebar {
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

.list-check {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.list-check li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin: 0.4rem 0;
}
.list-check .material-symbols-rounded {
  font-size: 20px;
  margin-top: 1px;
  color: var(--primary-color);
}

.card-slider {
  position: relative;
  overflow: hidden;
}
.card-slider .swiper {
  overflow: visible;
  width: 100%;
  padding: 0 6px;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 15ex,
    #000 calc(100% - 15ex),
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 15ex,
    #000 calc(100% - 15ex),
    transparent
  );
  mask-mode: alpha;
  -webkit-mask-mode: alpha;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-position: center;
  -webkit-mask-position: center;
}
.card-slider .project a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.card-slider .swiper-slide {
  position: relative;
  height: clamp(350px, 60vw, 500px);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #111;
  color: #fff;
}
.card-slider .swiper-slide .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s ease;
}
.card-slider .swiper-slide:hover .bg {
  transform: scale(1.08);
}
.card-slider .swiper-slide .content {
  position: absolute;
  inset: auto 16px 16px 16px;
  z-index: 2;
  background: var(--bs-body-color);
  padding: 1rem;
  border-radius: var(--radius);
}
.card-slider .swiper-slide .content h5 {
  margin: 0 0 0.25rem 0;
  color: var(--primary-color);
  font-size: clamp(1.15rem, 1vw + 1rem, 1.6rem);
  font-weight: 800;
}
.card-slider .swiper-slide .content p {
  margin: 0;
  opacity: 0.9;
}
.card-slider .swiper-slide .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--primary-color);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.card-slider .nav {
  position: absolute;
  inset: auto 6px -46px auto;
  display: flex;
  gap: 8px;
}
.card-slider .btn-nav {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--primary-color);
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 14px rgba(0, 255, 242, 0.25);
}
.card-slider .btn-nav:hover {
  filter: brightness(0.95);
}
.tech-text {
  color: var(--bs-border-color);
}
.wnm-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wnm-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.wnm-list .material-symbols-rounded {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .wnm-list .material-symbols-rounded {
    font-size: 25px;
  }
}
.wnm-list.good .material-symbols-rounded {
  color: #00fff2;
}
.wnm-list .bad {
  color: #ff6b6b;
}
@media (max-width: 576px) {
  .m-section {
    padding: 60px 0;
  }
  .card-slider .swiper {
    padding: 0 !important;
    margin: 0 -6px;
  }
  .card-slider .swiper-slide {
    width: 100% !important;
    margin-right: 0 !important;
    border-radius: 0.75rem;
  }
  .card-slider .nav {
    inset: auto 0 -46px auto !important;
    justify-content: center;
    gap: 12px;
  }
  .swiper-slide .content {
    inset: auto 12px 12px 12px !important;
    padding: 0;
  }

  .row {
    --bs-gutter-x: 1rem;
  }
  .col-md-4,
  .col-sm-6 {
    padding: 0 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .card-slider .swiper-slide {
    width: calc(100% - 12px) !important;
  }
}
@media (min-width: 768px) {
  .card-slider .swiper-slide {
    width: calc(60% - 20px);
  }
}
@media (min-width: 992px) {
  .card-slider .swiper-slide {
    width: calc(45% - 20px);
  }
}
.second-row {
  margin-top: 5px;
}
#web-na-mieru .wnm-note {
  background: rgba(0, 255, 242, 0.05);
  border-radius: 8px;
  padding: 10px;
  font-size: 0.9em;
  margin-top: 10px;
}
#web-na-mieru .mini-flex {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
#web-na-mieru .mini {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px;
}
#web-na-mieru .mini .label {
  font-size: 0.8rem;
  opacity: 0.7;
}
#web-na-mieru .mini .val {
  font-weight: 600;
  margin-top: 2px;
}
#web-na-mieru .steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
#web-na-mieru .step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

#web-na-mieru .wnm-cta {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 255, 242, 0.08),
    rgba(0, 255, 242, 0.02)
  );
}
#web-na-mieru .quote {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
#web-na-mieru .quote .material-symbols-rounded {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  opacity: 0.7;
}
#web-na-mieru .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

#web-na-mieru .cta .btn-outline {
  background: transparent;
  color: inherit;
}
.deco-blob {
  position: absolute;
  inset: auto -6% -8% auto;
  width: 400px;
  height: 400px;
  filter: blur(60px);
  opacity: 0.4;
  background: radial-gradient(closest-side, #00fff2, transparent 70%);
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 15ex,
    #000 calc(100% - 2ex),
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 15ex,
    #000 calc(100% - 2ex),
    transparent
  );
}
#web-na-mieru [data-animate] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
#web-na-mieru [data-animate].in {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {
  #web-na-mieru .mini-flex {
    flex-direction: column;
  }
  #web-na-mieru .cta {
    flex-direction: column;
  }
  #web-na-mieru .cta .btn {
    min-width: auto;
  }
  #web-na-mieru .wnm-list li,
  #web-na-mieru .step,
  #web-na-mieru .ticks li {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  #web-na-mieru .wnm-head {
    flex-direction: column;
    align-items: flex-start;
  }
  #web-na-mieru .icon {
    width: auto;
    height: auto;
  }
  #web-na-mieru .deco-blob {
    width: 300px;
    height: 300px;
  }
}
/*e-shop - sluzba*/

#eshop-na-mieru .wnm-note {
  background: rgba(0, 255, 242, 0.05);
  border-radius: 8px;
  padding: 10px;
  font-size: 0.9em;
  margin-top: 10px;
}
#eshop-na-mieru .mini-flex {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
#eshop-na-mieru .mini {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px;
}
#eshop-na-mieru .mini .label {
  font-size: 0.8rem;
  opacity: 0.7;
}
#eshop-na-mieru .mini .val {
  font-weight: 600;
  margin-top: 2px;
}
#eshop-na-mieru .steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
#eshop-na-mieru .step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

#eshop-na-mieru .wnm-cta {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 255, 242, 0.08),
    rgba(0, 255, 242, 0.02)
  );
}
#eshop-na-mieru .quote {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
#eshop-na-mieru .quote .material-symbols-rounded {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  opacity: 0.7;
}

#eshop-na-mieru .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

@media (max-width: 991px) {
  #eshop-na-mieru .mini-flex {
    flex-direction: column;
  }
  #eshop-na-mieru .cta {
    flex-direction: column;
  }
  #eshop-na-mieru .cta .btn {
    min-width: auto;
  }
  #eshop-na-mieru .wnm-list li,
  #eshop-na-mieru .step,
  #eshop-na-mieru .ticks li {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  #eshop-na-mieru .wnm-head {
    flex-direction: column;
    align-items: flex-start;
  }
  #eshop-na-mieru .icon {
    width: auto;
    height: auto;
  }
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ticks li {
  display: flex;
  align-items: center;
  gap: 6px;
}

/*digitalny-marketing sluzby*/
.experience-box {
  z-index: -3;
}
.service-row {
  z-index: 99;
}
#digitalny-marketing {
  color: #eaf6f7;
  margin-top: 100px;
  padding: 2rem 0 0 0;
}

@media (max-width: 767px) {
  #digitalny-marketing {
    padding: 100px 0 0;
  }
}
.dm-hero {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .dm-hero {
    padding: 1rem;
  }
}
.dm-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin: 8px 0 16px;
  background: linear-gradient(135deg, #fff 0%, #dafcfd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dm-hero .lead {
  color: #cfe7e9;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.dm-hero .feat {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: #cfe7e9;
  padding: 10px 0;
  font-size: 0.95rem;
}
.dm-hero .feat .material-symbols-rounded {
  font-size: 18px;
  color: var(--primary-color);
  margin-top: 1px;
}

.dm-hero .side {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
}
.dm-hero .side h6 {
  margin: 0 0 10px 0;
  color: #fff;
  font-size: 1rem;
}
.dm-hero .statline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cfe7e9;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.dm-hero .statline .num {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.feat-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cta-row .btn-primary {
    width: 100%;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  padding: 10px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.btn-outline {
  background: transparent;
  color: #eaf6f7;
  border-color: rgba(255, 255, 255, 0.18);
}

.dm-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.dm-card {
  grid-column: span 3;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: start;
  transition: all 0.3s ease;
}
.dm-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 1199.98px) {
  .dm-card {
    grid-column: span 4;
  }
}
@media (max-width: 767.98px) {
  .dm-card {
    grid-column: span 6;
  }
}
@media (max-width: 575.98px) {
  .dm-card {
    grid-column: span 12;
  }
}
.dm-card .head {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: start;
  margin-bottom: 10px;
}
.dm-card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--primary-color);
  background: transparent;
  border: 1px solid var(--primary-color);
  margin-bottom: 10px;
}
.dm-card .material-symbols-rounded {
  font-size: 20px;
}
.dm-card h6 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1rem;
}
.dm-card p {
  color: #cfe7e9;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.dm-timeline {
  margin: 40px 0;
  position: relative;
}
.dm-timeline ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}
.dm-timeline ul:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: var(--primary-color);
  opacity: 0.3;
  transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .dm-timeline ul:before {
    left: 20px;
  }
}
.dm-timeline .box {
  margin: 40px -15px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  width: 400px;
  position: relative;
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dm-timeline .box:nth-child(even) {
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .dm-timeline .box {
    width: calc(100% - 60px);
    margin-left: 45px !important;
    margin-right: 0;
  }
}

.dm-timeline .step {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
}
.dm-timeline .step .material-symbols-rounded {
  font-size: 18px;
}
.dm-timeline .box h6 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.3;
}
.dm-timeline .box p {
  color: #cfe7e9;
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.dm-timeline .box small {
  color: var(--ink-weak);
  font-size: 0.85rem;
  display: block;
  margin-top: 4px;
}

.dm-image {
  text-align: center;
  margin: 40px 0;
}
.dm-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

#digitalny-marketing .deco-blob {
  position: absolute;
  right: -120px;
  top: 18%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    closest-side,
    var(--primary-color),
    transparent 70%
  );
  filter: blur(80px);
  opacity: 0.32;
}
/*branding*/
#branding {
  background: linear-gradient(
    180deg,
    transparent 0%,
    #0c1417 50%,
    transparent 100%
  );

  color: #eaf6f7;
  position: relative;
  overflow: hidden;
  margin-block: 100px 80px;
}
@media (max-width: 767px) {
  #branding {
    margin-block: 50px;
  }
}

.row-custom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (max-width: 767px) {
  .row-custom {
    text-align: start;
  }
}
.col-custom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.agk-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 40px);
  align-items: start;
  max-width: 1280px;
  margin-inline: auto;
}

.agk-gallery .masonry-tile {
  position: relative;
  will-change: transform;
  transition: transform 0.4s ease;
}

.agk-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius, 16px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.agk-gallery .masonry-tile:nth-child(1) {
  transform: translateY(-10px);
}
.agk-gallery .masonry-tile:nth-child(2) {
  transform: translateY(20px);
}
.agk-gallery .masonry-tile:nth-child(3) {
  transform: translateY(-5px);
}
.agk-gallery .masonry-tile:nth-child(4) {
  transform: translateY(25px);
}
.agk-gallery .masonry-tile:nth-child(5) {
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .agk-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .agk-gallery .masonry-tile {
    transform: none !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .agk-gallery .masonry-tile:hover {
    transform: translateY(-4px) scale(1.02);
  }
}

@media (hover: none), (pointer: coarse) {
  .agk-gallery .masonry-tile:hover,
  .agk-gallery .masonry-tile:active,
  .agk-gallery .masonry-tile:focus {
    transform: none !important;
  }
}

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  opacity: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  transition: opacity 0.25s ease;
}
.lightbox-backdrop.is-open {
  display: flex;
  opacity: 1;
}

.lightbox-img-wrap {
  max-width: 96vw;
  max-height: 92vh;
  position: relative;
}
.lightbox-img {
  display: block;
  max-width: 96vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.lightbox-close {
  top: 14px;
  right: 14px;
  transform: none;
}
.lightbox-prev {
  left: -58px;
}
.lightbox-next {
  right: -58px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
}

body.lb-lock {
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.col-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  color: #eaf6f7;
  font-size: 1.1rem;
}

.col-head .material-symbols-rounded {
  font-size: 20px;
  color: var(--primary-color);
}

.col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.col-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: #cfe7e9;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.col-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

.col-list .material-symbols-rounded {
  font-size: 18px;
  color: var(--primary-color);
  margin-top: 1px;
  flex-shrink: 0;
}

.dm-hero .side {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(0, 255, 242, 0.03)
  );
  box-shadow: 0 10px 30px rgba(0, 255, 242, 0.1);
}

.dm-hero .side h6 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dm-hero .statline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cfe7e9;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.dm-hero .statline .num {
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), #00f5e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .dm-hero .side {
    padding: 12px;
  }
  .dm-hero .statline {
    gap: 4px;
    font-size: 0.8rem;
  }
  .dm-hero .statline .num {
    font-size: 0.95rem;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 12px;
  padding: 12px 20px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.show,
.btn-primary-check:checked + .btn {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 7px 20px rgba(0, 255, 242, 0.4);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}
@media (max-width: 992px) {
  .btn-outline {
    width: 100%;
    border: 1px solid var(--primary-color);
  }
}
.project-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.2px;
}
@media (max-width: 767px) {
  .project-head {
    margin-bottom: 0;
  }
}
.project-head .material-symbols-rounded {
  color: var(--primary-color);
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 255, 242, 0.3));
}

.project-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

.project-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.project-visual:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 255, 242, 0.2);
}

.project-visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-visual:hover img {
  transform: scale(1.05);
}

.project-desc {
  padding: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(0, 255, 242, 0.02)
  );
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-desc h6 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.2rem;
}

.project-desc p {
  color: #cfe7e9;
  margin: 0 0 0;
  line-height: 1.6;
  font-size: 0.98rem;
}

.project-desc .tag {
  display: inline-block;
  font-size: 0.8rem;
  color: #0b1d24;
  background: linear-gradient(135deg, var(--primary-color), #00d4d4);
  border-radius: 8px;
  padding: 0.2rem 0.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 255, 242, 0.3);
}

.dm-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 60px 0;
  position: relative;
}

@media (max-width: 767.98px) {
  .dm-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.dm-steps .steps-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 35px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    rgba(0, 255, 242, 0.2),
    var(--primary-color)
  );
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 255, 242, 0.4);
}

@media (max-width: 767.98px) {
  .dm-steps .steps-track {
    display: none;
  }
}

.step-card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(0, 255, 242, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 255, 242, 0.25);
}

.badge-step {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--primary-color), #00d4d4);
  color: #0b1d24;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 255, 242, 0.4);
}

.step-card h6 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.1rem;
}

.step-card p {
  margin: 0 0 0.5rem;
  color: #cfe7e9;
  line-height: 1.5;
}

.step-card small {
  color: var(--ink-weak);
  font-size: 0.85rem;
}

.deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.deco-blob-1 {
  right: -100px;
  top: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-color), transparent 70%);
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

.deco-blob-2 {
  left: -80px;
  bottom: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 242, 0.6), transparent 70%);
  animation: float 6s ease-in-out infinite;
  z-index: -1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

[data-gsap] {
  opacity: 0;
  transform: translateY(40px);
}

.project-visual img {
  will-change: transform, opacity;
}
/*FAQS*/
.agenko-faqs {
  padding-top: 130px;
  padding-bottom: 90px;
}

.agenko-accordion .agenko-accordion-item {
  margin-bottom: 20px;
}

.agenko-faq .accordion-header h6 {
  cursor: pointer;
}

.agenko-faq .accordion-content p {
  margin-bottom: 0;
}

/*o-nas */
.marlotech-about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .marlotech-about .row {
    gap: 1rem;
  }
}
.marlotech-about-image img {
  border-radius: 1rem;
}
.service-card,
.timeline-item {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover,
.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.process-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  background: rgba(0, 0, 0, 0.05);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.theme-btn {
  background-color: var(--primary-color) !important;
  color: #000 !important;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.theme-btn:hover {
  background-color: darken(var(--primary-color), 10%) !important;
  color: #000 !important;
}

.marlotech-services {
  position: relative;
  overflow: hidden;
}

.marlotech-services::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  height: 25rem;
  width: 25rem;
  background: linear-gradient(135deg, var(--primary-color), transparent);
  filter: blur(100px);
  animation: smokeDrift 8s linear infinite;
  z-index: 0;
}
.marlotech-services > * {
  position: relative;
  z-index: 1;
}

@keyframes smokeDrift {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }

  25% {
    transform: translate(10px, -20px) rotate(2deg);
    opacity: 0.5;
  }

  50% {
    transform: translate(20px, -10px) rotate(0deg);
    opacity: 0.2;
  }

  75% {
    transform: translate(10px, -30px) rotate(-1deg);
    opacity: 0.4;
  }

  100% {
    transform: translate(0, -40px) rotate(0deg);
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .pt-130,
  .pt-120 {
    padding-top: 60px !important;
  }

  .pb-90 {
    padding-bottom: 60px !important;
  }
  .card-body {
    padding: 20px !important;
  }

  .img-fluid {
    width: 100%;
    height: auto;
  }

  .row.g-4 > .col-12 {
    margin-bottom: 20px;
  }
}
.flex-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stroke-text {
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-color);
  text-stroke: 1px var(--primary-color);
}
/* ERROR PAGE 404 */

#errorParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.marlotech-referencie {
  padding-block: 6rem;
}
@media (max-width: 992px) {
  .marlotech-referencie {
    padding-block: 3rem;
  }
}
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 255, 242, 0.12);
  border: 2px solid var(--primary-color);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  pointer-events: none;
}
@media (max-width: 992px) {
  .scroll-top {
    width: 40px;
    height: 40px;
  }
}
.scroll-top span {
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--primary-color);
  border-right: 3px solid var(--primary-color);
  transform: rotate(-45deg);
  margin-top: 4px;
}

.scroll-top:hover {
  background: rgba(0, 255, 242, 0.22);
  box-shadow: 0 0 15px var(--primary-color);
  transform: translateY(-4px);
}

/* Zobrazenie po scrollnutí */
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.row-zou {
  padding-block: 4rem;
}
.headline-3d {
  font-size: 9.5rem;
}
@media (max-width: 992px) {
  .headline-3d {
    font-size: clamp(2rem, 10vw, 5.75rem);
  }
}
.eapps-widget-toolbar-panel-wrapper {
  display: none !important;
}
a[href*="elfsight.com"],
a[href*="google-reviews"] {
  display: none !important;
}

.elfsight-app a[rel="noreferrer"] {
  display: none !important;
}
