:root {
  --color-primary: #0E4C8A;
  --color-primary-hover: #0B3C6D;
  --color-primary-deep: #082C50;
  --color-primary-tint: #E8F0F8;
  --color-brand-logo: #008DD4;
  --color-brand-sky: #23C3FF;

  --color-accent: #F7C500;
  --color-accent-tint: #FDF3CC;

  --color-ink: #0F1418;
  --color-heading: #0F1418;
  --color-text: #2A3138;
  --color-text-secondary: #55606B;
  --color-text-muted: #6B7680;
  --color-text-inverse: #FFFFFF;

  --surface-0: #FFFFFF;
  --surface-1: #F4F6F8;
  --surface-2: #E9EDF1;
  --surface-dark: #0F1418;
  --surface-dark-2: #16202A;
  --border-color: #D8DEE4;
  --border-strong: #B6BFC8;
  --border-on-dark: rgba(255, 255, 255, 0.45);
  --border-on-dark-strong: rgba(255, 255, 255, 0.70);

  --color-success: #2E7D32;
  --color-warning: #9A5B00;
  --color-error: #C62828;
  --color-info: var(--color-primary);

  --color-link: var(--color-primary);
  --color-link-hover: var(--color-primary-hover);
  --overlay-primary: rgba(14, 76, 138, 0.90);
  --overlay-media: rgba(15, 20, 24, 0.55);
  --focus-ring: 0 0 0 3px rgba(14, 76, 138, 0.35);

  --shadow-1: 0 1px 2px rgba(15, 20, 24, 0.06);
  --shadow-2: 0 2px 6px rgba(15, 20, 24, 0.08);
  --shadow-3: 0 8px 24px rgba(15, 20, 24, 0.10);

  --border-width: 1px;

  --radius-s: 6px;
  --radius-m: 8px;
  --radius-l: 12px;
  --radius-round: 50%;

  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-28: 28px;
  --space-32: 32px;
  --space-40: 40px;
  --space-56: 56px;
  --space-72: 72px;
  --space-96: 96px;
  --space-120: 120px;

  --fs-h1: clamp(2rem, 1.45rem + 1.9vw, 3.25rem);
  --fs-h2: clamp(1.625rem, 1.25rem + 1.3vw, 2.375rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.55vw, 1.625rem);
  --fs-h4: clamp(1.125rem, 1.06rem + 0.25vw, 1.3125rem);
  --fs-h5: clamp(1rem, 0.96rem + 0.15vw, 1.125rem);
  --fs-h6: clamp(0.9375rem, 0.92rem + 0.06vw, 1rem);
  --fs-lead: clamp(1.0625rem, 1.02rem + 0.16vw, 1.1875rem);
  --fs-body: clamp(1rem, 0.97rem + 0.1vw, 1.0625rem);
  --fs-small: clamp(0.8125rem, 0.8rem + 0.05vw, 0.875rem);
  --fs-kicker: clamp(0.75rem, 0.73rem + 0.06vw, 0.8125rem);
  --fs-card-title: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);

  --lh-tight: 1.12;
  --lh-h2: 1.18;
  --lh-h3: 1.25;
  --lh-h4: 1.30;
  --lh-h5: 1.35;
  --lh-h6: 1.40;
  --lh-lead: 1.55;
  --lh-body: 1.60;
  --lh-small: 1.45;
  --lh-kicker: 1.20;

  --ls-h1: -0.02em;
  --ls-h2: -0.015em;
  --ls-h3: -0.01em;
  --ls-h4: -0.005em;
  --ls-kicker: 0.08em;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --measure: 68ch;
  --measure-narrow: 60ch;
  --prose-max: 840px;

  --section-pad-tight: clamp(32px, 4vw, 56px);
  --section-pad: clamp(48px, 6vw, 88px);
  --section-pad-roomy: clamp(64px, 8vw, 120px);
  --section-head-gap: clamp(28px, 3.5vw, 48px);
  --section-head-gap-roomy: clamp(36px, 4.5vw, 56px);
  --section-head-gap-tight: clamp(20px, 2.5vw, 28px);
  --page-head-pad: clamp(40px, 5vw, 72px);
  --layout-split-gap: clamp(32px, 3vw, 56px);

  --container-pad: 16px;
  --grid-gap: var(--space-12);
  --transition-ui: 160ms ease;

  --z-base: 1;
  --z-sticky: 100;
  --z-dropdown: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
  --z-preloader: 600;

  --font-sans: "Inter", "Segoe UI", system-ui, Roboto, Arial, sans-serif;
  --container-max: 1560px;
  --tap-target-min: 44px;

  color-scheme: light;
}

@media (min-width: 480px) {
  :root {
    --container-pad: var(--space-20);
    --grid-gap: var(--space-16);
  }
}

@media (min-width: 768px) {
  :root {
    --container-pad: clamp(16px, 3.5vw, 56px);
    --grid-gap: var(--space-20);
  }
}

@media (min-width: 992px) {
  :root {
    --grid-gap: var(--space-24);
  }
}

@media (min-width: 1200px) {
  :root {
    --grid-gap: var(--space-28);
  }
}

@media (min-width: 1440px) {
  :root {
    --grid-gap: var(--space-32);
  }
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  font-size: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-style: normal;
  color: var(--color-text);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.l-wrap {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.l-wrap--narrow {
  max-width: var(--prose-max);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

a:focus, input:focus, textarea:focus, button:focus, .btn:focus, .btn.focus, .btn:not(:disabled):not(.disabled).active, .btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
}

a {
  transition: all .3s ease-out 0s;
}

a, a:focus, a:hover {
  text-decoration: none;
}

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

audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

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

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}

h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-h1);
}

h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
}

h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  letter-spacing: var(--ls-h3);
  font-weight: var(--fw-semibold);
}

h4 {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-h4);
  font-weight: var(--fw-semibold);
}

h5 {
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  font-weight: var(--fw-semibold);
}

h6 {
  font-size: var(--fs-h6);
  line-height: var(--lh-h6);
  font-weight: var(--fw-semibold);
}

.fz-10 {
  font-size: 10px;
}

.fz-16 {
  font-size: 16px;
}

.fz-20 {
  font-size: 20px;
}

.fz-25 {
  font-size: 25px;
}

.fz-28 {
  font-size: 28px;
}

.fz-30 {
  font-size: 30px;
}

ul, ol {
  margin: 0;
  padding: 0;
}

.post-auto_escape {
  all: initial;
}

.post-auto_escape * {
  all: revert;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.error {
  color: var(--color-error);
}

.success {
  color: var(--color-success);
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-2);
  color: var(--color-text-inverse);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-primary-hover);
  color: var(--color-text-inverse);
}

.scroll-top .icon {
  width: 24px;
  height: 24px;
}

.scroll-top:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), var(--shadow-2);
}

@keyframes animation1 {
  0% {
    transform: translateY(30px)
  }
  50% {
    transform: translateY(-30px)
  }
  100% {
    transform: translateY(30px)
  }
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-preloader);
  width: 100%;
  height: 100%;
  background-color: var(--surface-0);
  overflow: hidden;
}

.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader-icon {
  width: 100px;
  height: 100px;
  display: inline-block;
  padding: 0;
}

.preloader-icon span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-round);
  background: var(--color-primary);
  -webkit-animation: preloader-fx 1.6s linear infinite;
  animation: preloader-fx 1.6s linear infinite;
}

.preloader-icon span:last-child {
  animation-delay: -.8s;
  -webkit-animation-delay: -.8s;
}

@keyframes preloader-fx {
  0% {
    transform: scale(0, 0);
    opacity: .5
  }
  100% {
    transform: scale(1, 1);
    opacity: 0
  }
}

@-webkit-keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: .5
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0
  }
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.base_up {
  right: 90px;
}

.qr-code-base {
  padding: 3px;
}

.button .btn .dir-part {
  background-color: var(--surface-0);
}

#pop {
  display: flex;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
}

#pop .pop-content {
  display: block;
  width: 400px;
  height: auto;
  box-shadow: var(--shadow-1);
  background-color: var(--surface-0);
  border-radius: var(--radius-m);
  text-align: center;
  padding: 10px;
}

#pop .pop-content h2 {
  margin-top: 20px;
}

#pop .pop-content hr {
  margin-bottom: -10px;
}

.close-qr-code {
  width: 45px;
  height: 45px;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: var(--color-text-inverse) !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: var(--z-modal);
  cursor: pointer;
  transition: all .3s ease-out 0s;
}

.close-qr-code:hover {
  color: var(--color-text-inverse);
  background: var(--color-primary-hover);
}

.hero-slider {
  position: relative;
  background: var(--color-primary-tint);
}

.hero-slider .single-slider {
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-item img {
  opacity: .7;
}

.carousel-h1 {
  font-size: 45px;
  line-height: 55px;
  color: var(--color-text-inverse);
}

.carousel-caption {
  position: absolute;
  top: 40%;
}

.hero-slider .hero-text {
  float: none;
  margin-top: 150px;
}

.hero-slider .hero-text .small-title {
  color: var(--color-text-inverse);
  background: var(--color-primary);
  font-size: 15px;
  padding: 5px 18px;
  display: inline-block;
  margin-bottom: 15px;
}

.hero-slider .hero-text h1 {
  color: var(--color-ink);
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 25px;
  animation: fadeInUp 1s both .6s;
}

.hero-slider .hero-text h1 span {
  font-weight: 300;
}

.hero-slider .hero-text p {
  color: var(--color-text-secondary);
  font-size: 16px;
}

.hero-slider .hero-text .button {
  margin-top: 35px;
}

.hero-slider .hero-text .button .btn {
  color: var(--color-ink);
  background: transparent;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  border: 1px solid var(--border-strong);
  margin-right: 10px;
}

.hero-slider .hero-text .button .btn .dir-part {
  background-color: var(--color-primary);
}

.hero-slider .hero-text .button .btn:hover {
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.hero-slider .hero-text .button .btn:last-child {
  margin-right: 0;
}

.hero-slider .hero-image {
  margin-top: 175px;
}

.carousel-p {
  color: var(--color-text-inverse);
}

.hero-slider .home-slider {
  position: relative;
}

.hero-slider .tns-nav {
  background: var(--color-primary);
  display: inline-block;
  padding: 8px 20px;
  position: absolute;
  left: -30px;
  top: 260px;
  transform: rotate(90deg);
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  z-index: 9;
}

.hero-slider .tns-nav button {
  width: 10px;
  height: 10px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0;
  background: var(--surface-0);
  display: inline-block;
  border: none;
  margin-right: 9px;
  border-radius: var(--radius-m);
}

.hero-slider .tns-nav button:last-child {
  margin: 0;
}

.hero-slider .tns-nav button.tns-nav-active {
  width: 20px;
}

.Features {
  background: var(--surface-0);
}

.Features .feature-content {
  padding-left: 50px;
  padding-bottom: 30px;
}

.Features .feature-content .title {
  margin-bottom: 30px;
}

.Features .feature-content .title span {
  text-transform: capitalize;
  font-size: 16px;
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: 4px 18px;
  margin-bottom: 5px;
}

.Features .feature-content .title h3 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

.Features .feature-item {
  margin-bottom: 15px;
  position: relative;
  padding-right: 30px;
}

.Features .feature-item:last-child {
  margin-bottom: 0;
}

.Features .feature-item .feature-thumb {
  height: 55px;
  width: 55px;
  background: url(../images/feature-icon-bg.png) no-repeat center center;
  background-size: contain;
  font-size: 23px;
  line-height: 55px;
  text-align: center;
  color: var(--color-text-inverse);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 10px;
}

.Features .feature-item .banner-content {
  display: inline-block;
}

.Features .feature-item .banner-content .title {
  text-transform: capitalize;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 38px;
}

.Features .feature-item .banner-content p {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 16px;
  display: block;
  margin-top: 6px;
  text-indent: 45px;
  text-align: justify;
}

.feature-right {
  position: relative;
  background-image: url(../images/bg/building-cak.webp);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.feature-right .watch-inner {
  text-align: center;
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -40px;
  top: 50%;
  margin-top: -80px;
}

.feature-right .video-head {
  display: inline-block;
  border-radius: var(--radius-round);
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  margin-top: 35px;
}

.feature-right .video-head .video {
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  background: var(--surface-0);
  color: var(--color-ink);
  border-radius: var(--radius-round);
  display: inline-block;
  font-size: 28px;
  padding-left: 5px;
}

.feature-right .video-head .video:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.feature-right .video-head .video {
  height: 80px;
  width: 80px;
  background: var(--surface-0);
  color: var(--color-primary);
  text-align: center;
  line-height: 84px;
  border-radius: var(--radius-round);
  position: relative;
  z-index: 5;
}

.feature-right .video-head .video:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  border-radius: var(--radius-round);
  border: 1px solid var(--surface-0);
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-animation: play-btn-1 1.8s linear infinite;
  -moz-animation: play-btn-1 1.8s linear infinite;
  -o-animation: play-btn-1 1.8s linear infinite;
  animation: play-btn-1 1.8s linear infinite;
}

.feature-right .video-head .video:after {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  border-radius: var(--radius-round);
  border: 1px solid var(--surface-0);
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-animation: play-btn-2 1.5s linear infinite;
  -moz-animation: play-btn-2 1.5s linear infinite;
  -o-animation: play-btn-2 1.5s linear infinite;
  animation: play-btn-2 1.5s linear infinite;
}

.card-specialty {
  min-height: 380px;
}

.latest-news-area .single_new, .specialty .single_specialty {
  margin: 5px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-l);
  overflow: hidden;
}

.specialty .single_specialty .image {
  overflow: hidden;
}

.specialty .single_specialty .image img {
  margin-bottom: -10px;
}

.slick-arrow.slick-prev,
.slick-arrow.slick-next {
  width: 44px;
  height: 44px;
  background: var(--surface-0);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-m);
  z-index: var(--z-sticky);
}

.slick-arrow.slick-prev:hover,
.slick-arrow.slick-next:hover,
.slick-arrow.slick-prev:focus,
.slick-arrow.slick-next:focus {
  background: var(--surface-1);
  border-color: var(--border-strong);
}

.slick-arrow.slick-prev {
  left: 12px;
}

.slick-arrow.slick-next {
  right: 12px;
}

.slick-arrow.slick-prev:before,
.slick-arrow.slick-next:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  background: var(--color-heading);
  opacity: 1;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M10.5 2 4.5 8l6 6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M10.5 2 4.5 8l6 6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.slick-arrow.slick-next:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 2 11.5 8l-6 6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 2 11.5 8l-6 6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.slick-slider .slick-dots li {
  width: 24px;
  height: 24px;
  margin: 0;
}

.slick-slider .slick-dots li button {
  width: 24px;
  height: 24px;
  padding: 0;
}

.slick-slider .slick-dots li button:before {
  content: "";
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--border-strong);
  border-radius: var(--radius-round);
  opacity: 1;
  font-size: 0;
}

.slick-slider .slick-dots li.slick-active button:before {
  background: var(--color-primary);
}

.student-table {
  background: var(--surface-1);
  padding-bottom: 85px;
}

.student-table .section-title {
  margin-bottom: 65px;
}

.student-table .single-student {
  text-align: left;
  position: relative;
  padding: 130px 40px 45px;
  box-shadow: var(--shadow-2);
  border-radius: 0;
  background: var(--surface-0);
  z-index: 5;
  overflow: hidden;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  margin: 15px 0;
  height: 320px;
}

.student-table .single-student .serial span {
  font-size: 30px;
  position: absolute;
  left: 40px;
  top: 40px;
  height: 65px;
  width: 65px;
  line-height: 65px;
  text-align: center;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
}

.student-table .single-student:hover {
  background: var(--color-primary);
}

.student-table .single-student:hover .serial span {
  border-color: transparent;
  background: var(--surface-0);
  color: var(--color-primary);
  border-radius: var(--radius-round);
}

.student-table .single-student h3 a {
  color: var(--color-ink);
  font-weight: 600;
  font-size: 22px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
}

.student-table .single-student:hover h3 a {
  color: var(--color-text-inverse);
}

.student-table .single-student p {
  margin-top: 20px;
  line-height: 24px;
  font-size: 16px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
}

.student-table .single-student:hover p {
  color: var(--color-text-inverse);
}

.student-table .single-student {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 15px;
}

.student-table .single-student img {
  height: 100%;
  width: 100%;
  z-index: 2;
}

.student-table .single-student .content {
  z-index: 2;
  width: 100%;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  margin-top: 30px;
}

.student-table .single-student .content h4 {
  display: block;
  margin-bottom: 25px;
  padding-bottom: 15px;
  color: var(--color-heading);
  position: relative;
}

.student-table .single-student .content h4:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 80px;
  background: var(--color-primary);
  z-index: var(--z-base);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}

.student-table .single-student:hover .content h4:before {
  width: 110px;
}

.student-table .single-student .content h4:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: var(--color-primary-tint);
  z-index: -1;
}

.student-table .single-student .content h4 a {
  font-weight: 600;
  font-size: 23px;
  color: var(--color-heading);
}

.student-table .single-student .content p {
  color: var(--color-text-secondary);
  transition: all .4s ease;
}

.student-table .single-student .content .button {
  margin-top: 30px;
}

.student-table .single-student .content .button .btn {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.student-table .single-student .content .button .btn:hover {
  border-color: transparent;
  color: var(--color-text-inverse);
  background: var(--color-primary);
}

.card-news {
  min-height: 380px;
}

.img-box {
  position: relative;
  overflow: hidden;
  width: inherit;
  height: 250px;
}

.img-box a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 400px;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-box .category_span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: var(--color-accent-tint);
  color: var(--color-ink);
  padding: 5px 10px;
  font-size: 25px;
  border-radius: var(--radius-s);
}

.news-box {
  width: 100% !important;
  height: 220px !important;
}

.img-box .span_360 {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  bottom: 10px;
  right: 10px;
  padding: 5px 10px;
  background-image: url(../images/more/360-degrees-02.svg);
  background-size: cover;
  background-color: transparent;
}

.img-box .span_360::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  bottom: 0;
  right: 0;
  padding: 5px 10px;
  background-image: url(../images/more/360-degrees-01.svg);
  background-size: cover;
  background-color: transparent;
  transition: 2s;
}

@keyframes rotate_span_360 {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(360deg)
  }
}

@keyframes rotate_span_360_row {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(-360deg)
  }
}

.single_new:hover .span_360::after {
  animation: rotate_span_360 2s linear;
  animation-delay: .3s;
  animation-iteration-count: infinite;
}

.office_image_360 {
  width: 100%;
  height: 300px !important;
}

.office_image_360 a img {
  width: 100% !important;
}

.office_image_360 .office_svg {
  position: absolute;
  display: block;
  background: transparent;
  background-position: center;
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin-top: -100px;
  margin-left: -100px;
  transition: 1s;
}

.office_image_360 .svg_office_01 {
  background-image: url(../images/360/360-02-01.svg);
  animation: rotate_span_360 5s linear;
  animation-delay: .3s;
  animation-iteration-count: infinite;
}

.office_image_360 .svg_office_02 {
  background-image: url(../images/360/360-02-02.svg);
  animation: rotate_span_360_row 4s linear;
  animation-delay: .5s;
  animation-iteration-count: infinite;
}

.office_image_360 .svg_office_03 {
  background-image: url(../images/360/360-02-03.svg);
  animation: rotate_span_360 3s linear;
  animation-delay: .7s;
  animation-iteration-count: infinite;
}

.office_image_360 .svg_office_04 {
  background-image: url(../images/360/360-02-04.svg);
}

.teachers {
  background: var(--surface-1);
  padding-bottom: 85px;
}

.teachers .section-title {
  margin-bottom: 65px;
}

.teachers .slick-center .single-teacher {
  background: var(--color-primary);
  transform: scale(1.1);
  z-index: 5 !important;
}

.teachers .single-teacher {
  text-align: center;
  position: relative;
  padding: 10px;
  margin: 7px;
  box-shadow: var(--shadow-3);
  border-radius: 0;
  background: var(--surface-0);
  z-index: 5;
  overflow: hidden;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  height: 390px;
}

.teachers .single-teacher .image img {
  width: 180px;
  height: auto;
}

.teachers .single-teacher h3 a {
  color: var(--color-ink);
  font-weight: 600;
  font-size: 22px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
}

.teachers .slick-center .single-teacher h3 a {
  color: var(--color-text-inverse);
}

.teachers .single-teacher p {
  margin-top: 10px;
  line-height: 24px;
  font-size: 16px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
}

.teachers .slick-center .single-teacher p {
  color: var(--color-text-inverse);
}

.teachers .teacher-social {
  margin-top: 20px;
}

.teachers .teacher-social ul {
  width: 90%;
  margin: auto;
}

.teachers .teacher-social li {
  display: inline-block;
}

.teachers .teacher-social li a {
  color: var(--color-text-inverse);
  padding: 4px 7px;
  background-color: var(--color-primary);
}

.teachers .teacher-social li a:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-text-inverse);
}

.teachers .slick-center .single-teacher li a {
  color: var(--color-primary);
  background-color: var(--surface-0);
}

.teachers .single-teacher:hover .teacher-social li a:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-text-inverse);
}

.teachers .single-teacher {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 15px;
}

.teachers .single-teacher img {
  height: 100%;
  width: 100%;
  z-index: 2;
}

.teachers .single-teacher .content {
  z-index: 2;
  width: 100%;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  margin-top: 30px;
}

.teachers .single-teacher .content h4 {
  display: block;
  margin-bottom: 25px;
  padding-bottom: 15px;
  color: var(--color-heading);
  position: relative;
}

.teachers .single-teacher .content h4:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 80px;
  background: var(--color-primary);
  z-index: var(--z-base);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}

.teachers .single-teacher:hover .content h4:before {
  width: 110px;
}

.teachers .single-teacher .content h4:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: var(--color-primary-tint);
  z-index: -1;
}

.teachers .single-teacher .content h4 a {
  font-weight: 600;
  font-size: 23px;
  color: var(--color-heading);
}

.teachers .single-teacher .content p {
  color: var(--color-text-secondary);
  transition: all .4s ease;
}

.teachers .single-teacher .content .button {
  margin-top: 30px;
}

.teachers .single-teacher .content .button .btn {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.teachers .single-teacher .content .button .btn:hover {
  border-color: transparent;
  color: var(--color-text-inverse);
  background: var(--color-primary);
}

.recaptcha_img {
  height: 60px !important;
}

.call-action {
  background-image: url(../images/creative-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 9;
}

.call-action.overlay:before {
  background: var(--surface-dark);
  opacity: .9;
  z-index: -1;
}

.call-action .section-title {
  text-align: left;
  padding: 0;
  margin-bottom: 40px;
  margin-top: 90px;
}

.call-action .section-title span {
  text-transform: capitalize;
  font-size: 16px;
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: 4px 18px;
  margin-bottom: 5px;
}

.call-action .section-title h2 {
  color: var(--color-text-inverse);
  font-size: 40px;
  line-height: 50px;
}

.call-action .section-title p {
  color: var(--color-text-inverse);
}

.call-action .section-title h2:before {
  left: 0;
  margin-left: 0;
}

.call-action .right-form {
  background: var(--surface-0);
  padding: 70px 50px;
  box-shadow: var(--shadow-2);
  padding-bottom: 79px;
}

.call-action .section-heading {
  margin-bottom: 30px;
  display: block;
}

.call-action .section-heading .small {
  color: var(--color-primary);
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
}

.call-action .section-heading h4 {
  font-size: 28px;
  font-weight: 700;
}

.call-action .contact-form-box input {
  height: 50px;
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 0;
  margin-bottom: 10px;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 500;
  padding: 0 20px;
}

.call-action .contact-form-box textarea {
  height: 150px;
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 0;
  margin-bottom: 10px;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 500;
  padding: 20px;
}

.call-action .contact-form-box .button .btn {
  width: 100%;
}

.portfolio-section.section {
  padding-bottom: 70px;
}

.portfolio-section .portfolio-btn-wrapper {
  margin-bottom: 0;
  text-align: center;
}

.portfolio-section .section-title {
  margin-bottom: 50px;
}

.portfolio-section .portfolio-btn-wrapper button {
  padding: 10px 23px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  background: var(--surface-2);
  color: var(--color-heading);
  border-radius: 0;
  margin-right: 10px;
  margin-bottom: 50px;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.portfolio-section .portfolio-btn-wrapper button.active {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

@media only screen and (min-width:768px) and (max-width:991px) {
  .portfolio-section .portfolio-btn-wrapper button {
    margin-right: 10px;
    padding: 7px 18px;
    font-size: 16px;
  }

}
@media(max-width:767px) {
  .portfolio-section .portfolio-btn-wrapper button {
    margin-right: 10px;
    padding: 7px 18px;
    font-size: 16px;
  }

}
.portfolio-section .portfolio-btn-wrapper button:last-child {
  margin-right: 0;
}

.portfolio-item-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 30px;
}

.portfolio-item-wrapper:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.portfolio-item-wrapper .portfolio-img img {
  width: 100%;
}

.portfolio-item-wrapper .portfolio-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0;
  background: var(--overlay-primary);
  padding: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  -webkit-transform: scale(.9);
  transform: scale(.9);
}

@media only screen and (min-width:992px) and (max-width:1199px) {
  .portfolio-item-wrapper .portfolio-overlay {
    padding: 30px 20px;
  }

}
@media only screen and (min-width:768px) and (max-width:991px) {
  .portfolio-item-wrapper .portfolio-overlay {
    padding: 30px 20px;
  }

}
.portfolio-item-wrapper .portfolio-overlay .overlay-content h4 {
  color: var(--color-text-inverse);
  margin-bottom: 20px;
  font-size: 23px;
}

.portfolio-item-wrapper .portfolio-overlay .overlay-content p {
  color: var(--color-text-inverse);
  margin-bottom: 35px;
}

.portfolio-item-wrapper .portfolio-overlay .overlay-content .border-btn {
  padding: 8px 27px;
  color: var(--color-text-inverse);
  border: 2px solid var(--surface-0);
}

.portfolio-item-wrapper .portfolio-overlay .overlay-content .border-btn:hover {
  color: var(--color-primary);
  background: var(--surface-0);
}

.single-portfolio .single-portfolio-img {
  border-radius: 0;
  overflow: hidden;
}

.single-portfolio .single-portfolio-img img {
  width: 100%;
}

.project-info-box ul li {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
}

.project-info-box ul li:last-child {
  margin-bottom: 0;
}

.project-info-box ul li .destination {
  width: 40%;
  color: var(--color-heading);
  text-transform: uppercase;
}

.specialty.single .content p {
  margin-top: 26px;
}

.specialty.single .project-sidebar .sb-project-detail {
  background: var(--surface-1);
  margin-top: 30px;
}

.specialty.single .project-sidebar .sb-project-detail .title {
  padding: 16px 20px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  margin-bottom: 0;
  font-weight: 700;
  font-size: 23px;
}

.specialty.single .project-sidebar .sb-project-detail ul {
  padding: 25px 30px;
}

.specialty.single .project-sidebar .sb-project-detail ul li {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.specialty.single .project-sidebar .sb-project-detail ul li span {
  width: 150px;
  display: inline-block;
  color: var(--color-ink);
  font-weight: 600;
}

.specialty.single .project-sidebar .sb-project-detail ul li b a {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
}

.specialty.single .project-sidebar .sb-project-detail ul li:last-child {
  padding: 0;
  margin: 0;
  border: none;
}

.specialty.single .gallery-wrap .gallery-item {
  border-radius: var(--radius-s);
  overflow: hidden;
  position: relative;
}

.specialty.single .gallery-wrap .gallery-item a.image-popup {
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: var(--radius-round);
  border: 1px solid var(--surface-0);
  text-align: center;
  position: absolute;
  content: '';
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: var(--color-text-inverse);
  opacity: 0;
  visibility: hidden;
  z-index: var(--z-base);
}

.specialty.single .gallery-wrap .gallery-item a.image-popup:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.specialty.single .gallery-wrap .gallery-item:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.specialty.single .gallery-wrap .gallery-item:hover a.image-popup {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.specialty.single .gallery-wrap .gallery-item:hover:after {
  opacity: 1;
  visibility: visible;
}

.free-version-banner {
  position: relative;
  background: var(--color-primary);
}

.custom-section.single .content p {
  margin-top: 26px;
}

.custom-section.single .project-sidebar .sb-project-detail {
  background: var(--surface-1);
  margin-top: 30px;
}

.custom-section.single .project-sidebar .sb-project-detail .title {
  padding: 16px 20px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  margin-bottom: 0;
  font-weight: 700;
  font-size: 23px;
}

.custom-section.single .project-sidebar .sb-project-detail ul {
  padding: 25px 30px;
}

.custom-section.single .project-sidebar .sb-project-detail ul li {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.custom-section.single .project-sidebar .sb-project-detail ul li span {
  width: 150px;
  display: inline-block;
  color: var(--color-ink);
  font-weight: 600;
}

.custom-section.single .project-sidebar .sb-project-detail ul li b a {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
}

.custom-section.single .project-sidebar .sb-project-detail ul li:last-child {
  padding: 0;
  margin: 0;
  border: none;
}

.custom-section.single .gallery-wrap .gallery-item {
  border-radius: var(--radius-s);
  overflow: hidden;
  position: relative;
}

.custom-section.single .gallery-wrap .gallery-item a.image-popup {
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: var(--radius-round);
  border: 1px solid var(--surface-0);
  text-align: center;
  position: absolute;
  content: '';
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: var(--color-text-inverse);
  opacity: 0;
  visibility: hidden;
  z-index: var(--z-base);
}

.custom-section.single .gallery-wrap .gallery-item a.image-popup:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.custom-section.single .gallery-wrap .gallery-item:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.custom-section.single .gallery-wrap .gallery-item:hover a.image-popup {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.custom-section.single .gallery-wrap .gallery-item:hover:after {
  opacity: 1;
  visibility: visible;
}

.free-version-banner {
  position: relative;
  background: var(--color-primary);
}

.free-version-banner .section-title {
  margin: 0;
  padding: 0;
  text-align: left;
}

.free-version-banner .section-title h2 {
  padding-bottom: 20px;
}

.free-version-banner .section-title h2::before {
  left: 0 !important;
  margin-left: 0 !important;
  line-height: 50px !important;
}

.free-version-banner .button {
  z-index: 5;
}

.team-area {
  background: var(--surface-1);
  padding-bottom: 70px !important;
}

.team-card {
  margin-bottom: 30px;
  background-color: var(--surface-0);
  -webkit-box-shadow: var(--shadow-2);
  box-shadow: var(--shadow-2);
  border-radius: 0;
}

.team-card:hover .team-img img {
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
}

.team-card:hover .team-img .social-icon .social-link li a {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.team-card .team-img {
  position: relative;
}

.team-card .team-img img {
  border-radius: 0;
  height: 100%;
  width: 100%;
}

.team-card .team-img .team-social-icon {
  position: absolute;
  right: 0;
  left: 0;
  text-align: center;
  margin: 0 auto;
  bottom: 40px;
}

.team-card .team-img .team-social-icon .social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-card .team-img .team-social-icon .social-link li {
  display: inline-block;
  margin-right: 5px;
}

.team-card .team-img .team-social-icon .social-link li a {
  border-radius: 0;
  -webkit-box-shadow: var(--shadow-2);
  box-shadow: var(--shadow-2);
  width: 35px;
  height: 35px;
  margin: 0 auto;
  line-height: 37px;
  text-align: center;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  color: var(--color-heading);
  background-color: var(--surface-0);
  -webkit-transition: .7s;
  transition: .7s;
  display: block;
}

.team-card:hover .team-img .team-social-icon .social-link li a {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.team-card .team-img .team-social-icon .social-link li a:hover {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-m);
}

.team-card .content {
  padding: 30px 20px;
  position: relative;
}

.team-card .content::before {
  content: '';
  position: absolute;
  background-color: var(--color-primary);
  width: 90%;
  margin: 0 auto;
  height: 3px;
  border-radius: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}

.team-card .content h3 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}

.team-card .content span {
  color: var(--color-text-secondary);
}

.team-card .content p {
  color: var(--color-text-secondary);
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 16px;
}

.team-view-btn {
  margin-top: 50px;
  margin-bottom: 30px;
}

.team-view-btn .view-btn {
  padding: 11px 35px;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid var(--border-strong);
  color: var(--color-primary);
  -webkit-transition: .7s;
  transition: .7s;
}

.team-view-btn .view-btn:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-text-inverse);
}

.testimonials {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.testimonials .section-title {
  margin-bottom: 50px;
}

.testimonials .shape1 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
}

.testimonials .shape2 {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.testimonials .section-title h2 {
  color: var(--color-text-inverse);
}

.testimonials .section-title span {
  background: var(--surface-0);
  color: var(--color-primary);
}

.testimonials .section-title p {
  color: var(--color-text-inverse);
}

.testimonials .section-title h2:before {
  background: var(--surface-0);
}

.testimonials .single-testimonial {
  text-align: left;
  margin: 0;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  background: var(--surface-0);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  padding: 30px 30px 30px 250px;
}

.testimonials .single-testimonial i {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
  color: var(--color-primary);
}

.testimonials .single-testimonial p {
  color: var(--color-text-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.testimonials .single-testimonial .bottom {
  position: relative;
  margin-top: 22px;
}

.testimonials .single-testimonial .client1 {
  height: 100%;
  width: 220px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/testimonial/testi1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials .single-testimonial .client2 {
  height: 100%;
  width: 220px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/testimonial/testi2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials .single-testimonial .client3 {
  height: 100%;
  width: 220px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/testimonial/testi3.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials .single-testimonial .client4 {
  height: 100%;
  width: 220px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/testimonial/testi4.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials .single-testimonial .name {
  color: var(--color-ink);
  font-weight: 500;
  text-transform: capitalize;
  font-size: 17px;
  line-height: 22px;
}

.testimonials .single-testimonial .name span {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-top: 1px;
  text-transform: capitalize;
}

.testimonials .tns-outer [data-action] {
  cursor: pointer;
  display: none;
}

.testimonials .home-slider {
  position: relative;
}

.testimonials .tns-nav {
  background: var(--surface-0);
  display: inline-block;
  padding: 8px 12px 11px 20px;
  position: absolute;
  left: -31px;
  top: 430px;
  transform: rotate(90deg);
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  z-index: 9;
}

.testimonials .tns-nav button {
  width: 10px;
  height: 10px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0;
  background: var(--color-primary);
  display: inline-block;
  border: none;
  margin-right: 9px;
  border-radius: var(--radius-m);
}

.testimonials .tns-nav button:last-child {
  margin: 0;
}

.testimonials .tns-nav button.tns-nav-active {
  width: 20px;
}

.pricing-table {
  background: var(--surface-0);
  position: relative;
}

.pricing-table .single-table {
  background: var(--surface-0);
  text-align: center;
  position: relative;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  padding: 60px 20px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

.pricing-table .single-table .popular {
  color: var(--color-text-inverse);
  background: var(--color-primary);
  display: inline-block;
  padding: 5px 70px;
  position: absolute;
  right: -60px;
  top: 16px;
  font-size: 13px;
  transform: rotate(45deg);
}

.pricing-table .single-table .title {
  font-size: 23px;
  font-weight: 600;
  line-height: 26px;
}

.pricing-table .single-table .title span {
  display: block;
  margin-top: 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
  text-transform: capitalize;
}

.pricing-table .single-table .price {
  height: 120px;
  width: 120px;
  display: inline-block;
  border: 1px dashed var(--color-primary-tint);
  border-radius: var(--radius-round);
  margin: 20px 0;
}

.pricing-table .single-table .amount {
  position: relative;
  color: var(--color-ink);
  font-size: 35px;
  display: inline-block;
  margin: 45px 0;
  font-weight: 600;
}

.pricing-table .single-table .curency {
  color: var(--color-text-secondary);
  font-size: 17px;
  font-weight: 400;
  position: absolute;
  left: -16px;
  top: -7px;
}

.pricing-table .single-table .duration {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 400;
  position: absolute;
  right: -25px;
  bottom: -6px;
}

.pricing-table .table-list li {
  color: var(--color-text);
  margin-bottom: 5px;
  font-size: 16px;
}

.pricing-table .table-list li:last-child {
  margin-bottom: 0;
}

.pricing-table .button {
  margin-top: 30px;
}

.fun-facts {
  padding: 0;
  background-image: url(../images/fun-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fun-facts.overlay::before {
  opacity: .9;
  background: var(--surface-dark);
}

.fun-facts .fun-inner {
  padding: 70px 0 100px;
}

.fun-facts .single-fun {
  color: var(--color-text-inverse);
  position: relative;
  margin-top: 30px;
  text-align: center;
  box-shadow: none;
  z-index: 3;
  padding: 0 30px;
}

.fun-facts .single-fun .head {
  overflow: hidden;
}

.fun-facts .single-fun .icon {
  width: 80px;
  height: 80px;
  display: inline-block;
  text-align: center;
  border-radius: var(--radius-round);
  line-height: 80px;
  left: 0;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  background: rgba(255, 255, 255, 0.5);
}

.fun-facts .single-fun:hover .icon {
  background: transparent;
}

.fun-facts .single-fun i {
  font-size: 30px;
  width: 66px;
  height: 66px;
  line-height: 66px;
  border-radius: var(--radius-round);
  color: var(--color-text-inverse);
  background: var(--color-primary);
  top: 6px;
  position: relative;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  display: inline-block;
}

.fun-facts .single-fun:hover i {
  transform: scale(1.2) rotate(360deg);
  background: var(--surface-0);
  color: var(--color-primary);
}

.fun-facts .counter {
  color: var(--color-text-inverse);
  font-size: 32px;
  font-weight: 600;
  position: relative;
  margin-top: 30px;
  margin-bottom: 10px;
}

.fun-facts .single-fun h2 {
  color: var(--color-text-inverse);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}

.fun-facts .single-fun p {
  color: var(--color-text-inverse);
  margin-top: 20px;
}

.text-applicants {
  text-align: justify !important;
  text-indent: 50px !important;
  font-size: 18px !important;
  line-height: 30px !important;
  color: var(--color-ink) !important;
}

.text-applicants-center {
  text-align: center !important;
  text-indent: 50px !important;
  font-size: 18px !important;
  line-height: 30px !important;
  color: var(--color-ink) !important;
}

.latest-news-area {
  background: var(--surface-0);
  position: relative;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.latest-news-area .section-title {
  margin-bottom: 50px;
}

.latest-news-area .letest-news-item {
  box-shadow: var(--shadow-1);
  margin-top: 30px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-l);
  overflow: hidden;
}

.latest-news-area .letest-news-item .image {
  overflow: hidden;
}

.latest-news-area .letest-news-item .image img {
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
}

.latest-news-area .letest-news-item:hover .image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}

.latest-news-area .letest-news-item .content-body {
  background: var(--surface-0);
  padding: 30px;
  padding-top: 20px;
  border: 1px solid var(--border-color);
}

.latest-news-area .letest-news-item .meta-details {
  margin-bottom: 5px;
}

.latest-news-area .letest-news-item .meta-list {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 500;
  padding-bottom: 7px;
  display: inline-block;
  margin-right: 15px;
}

.latest-news-area .letest-news-item .meta-list:last-child {
  margin: 0;
}

.latest-news-area .letest-news-item .meta-list i {
  color: var(--color-primary);
  margin-right: 10px;
  display: inline-block;
  font-size: 13px;
}

.latest-news-area .letest-news-item .meta-list span {
  color: var(--color-ink);
  display: inline-block;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  font-weight: 400;
  font-size: 16px;
}

.latest-news-area .letest-news-item .meta-list:hover span {
  color: var(--color-primary);
}

.latest-news-area .letest-news-item .title {
  padding-bottom: 25px;
  line-height: 25px;
}

.latest-news-area .letest-news-item .title a {
  color: var(--color-ink);
  font-weight: 600;
  font-size: 18px;
}

.latest-news-area .letest-news-item .title a:hover {
  color: var(--color-primary);
}

.latest-news-area .letest-news-item p {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 28px;
}

.latest-news-area .letest-news-item .button {
  margin-top: 25px;
}

.blog-single {
  background: var(--surface-0);
}

.post-details .detail-inner {
  background-color: var(--surface-0);
  padding: 20px;
  box-shadow: var(--shadow-2);
}

.post-details .post-thumbnils {
  margin-bottom: 30px;
}

.post-details .post-title {
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 32px;
}

.post-details .post-title a {
  font-size: 22px;
  font-weight: 600;
}

.post-details .post-title a:hover {
  color: var(--color-primary);
}

ul.custom-flex {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.post-details .post-meta li {
  font-weight: 500;
  font-size: 15px;
  margin-right: 25px;
  margin-bottom: 20px;
}

.post-details .post-meta li a i {
  font-weight: 400;
  margin-right: 3px;
}

.post-details .post-meta li a:hover {
  color: var(--color-primary);
}

.post-details p {
  font-size: 15px;
  margin-bottom: 20px;
}

.post-details h3 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 28px;
}

.post-details p:last-child {
  margin-bottom: 0;
}

.blog-middle-image {
  overflow: hidden;
  width: 100%;
}

.blog-middle-image img {
  width: 100%;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
}

.blog-middle-image:hover img {
  transform: scale(1.1);
}

blockquote {
  position: relative;
  padding: var(--space-24);
  margin: var(--space-24) 0;
  color: var(--color-text-secondary);
  font-weight: var(--fw-regular);
  font-style: italic;
  text-align: left;
  clear: both;
  background: var(--surface-1);
  border-radius: var(--radius-m);
}

blockquote h4 {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-ink);
}

.post-details .list {
  margin-bottom: 30px;
  margin-left: 30px;
}

.post-details .list li {
  color: var(--color-text-muted);
  font-weight: 400;
  position: relative;
  padding-left: 18px;
  display: block;
  margin-bottom: 12px;
}

.post-details .list li:last-child {
  margin: 0;
}

.post-details .list li::before {
  position: absolute;
  left: -5px;
  top: 1px;
  border-radius: 0;
  transform: rotate(-45deg);
  content: \eab6;
  font-family: icofont;
  text-align: left;
  color: var(--color-primary);
  font-size: 12px;
}

.popular-tag-widget .tag-title {
  margin-bottom: 20px;
  font-weight: 500;
}

.popular-tag-widget .tags>a {
  display: inline-flex;
  justify-content: center;
  padding: 4px 15px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  background: var(--color-primary);
  margin-right: 7px;
  margin-bottom: 10px;
  color: var(--color-text-inverse);
}

.post-tags-media .share-title {
  margin-bottom: 20px;
  font-weight: 500;
}

.post-details .post-tags-media .post-tags .tags a:hover {
  color: var(--color-text-inverse);
  background-color: var(--color-primary);
}

.post-details .post-tags-media .post-social-media ul {
  justify-content: flex-end;
}

.post-details .post-tags-media .post-social-media ul>li>a {
  color: var(--color-text-muted);
  font-size: 18px;
  margin-left: 30px;
  margin-bottom: 10px;
  display: inline-flex;
}

.post-details .post-tags-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.post-details .post-meta li {
  font-weight: 500;
  font-size: 15px;
  margin-right: 25px;
  margin-bottom: 20px;
}

.post-details .post-meta li a {
  font-size: 16px;
  font-weight: 400;
}

.post-details .post-meta li a i {
  font-weight: 400;
  margin-right: 5px;
  color: var(--color-primary);
}

.post-details>p {
  font-size: 16px;
}

.post-details .post-image {
  margin: 40px 0;
  width: 100%;
  overflow: hidden;
}

.post-details .post-image img {
  width: 100%;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
}

.post-details>ul>li {
  font-weight: 500;
}

.post-details .image-alignment.left {
  margin-right: 25px;
  margin-bottom: 0;
}

.post-details .post-tags-media .post-tags .tags a {
  color: var(--color-ink);
  background: transparent;
}

.post-details .post-tags-media .post-tags .tags a:hover {
  color: var(--color-text-inverse);
  background-color: var(--color-primary);
}

.post-details .post-tags-media .post-social-media {
  text-align: right;
}

.post-details .post-tags-media .post-social-media ul {
  justify-content: flex-end;
}

.post-details .post-tags-media .post-social-media ul>li>a {
  color: var(--color-text-muted);
  font-size: 16px;
  margin-left: 12px;
  margin-bottom: 10px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  border: 1px solid var(--border-color);
  border-radius: 0;
}

.post-details .post-tags-media .post-social-media ul>li>a:hover {
  color: var(--color-primary);
}

.detail-post-navigation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-0);
  padding: 30px;
  border: 1px solid var(--border-color);
}

.detail-post-navigation .next-post {
  text-align: right;
}

.detail-post-navigation .prev-post span, .detail-post-navigation .next-post span {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  display: block;
}

.detail-post-navigation .prev-post {
  position: relative;
  width: 50%;
  padding-right: 20px;
}

.detail-post-navigation .prev-post span i {
  display: inline-block;
  margin-right: 10px;
  font-size: 15px;
  color: var(--color-primary);
  position: relative;
  top: 2px;
}

.detail-post-navigation .prev-post a:hover i {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: transparent;
}

.detail-post-navigation .next-post {
  position: relative;
  width: 50%;
  padding-left: 20px;
}

.detail-post-navigation .next-post span i {
  display: inline-block;
  margin-left: 10px;
  font-size: 15px;
  color: var(--color-primary);
  position: relative;
  top: 2px;
}

.detail-post-navigation .next-post a:hover i {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: transparent;
}

.detail-post-navigation .prev-post a, .detail-post-navigation .next-post a {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-ink);
}

.detail-post-navigation .prev-post a:hover, .detail-post-navigation .next-post a:hover {
  color: var(--color-primary);
}

.detail-post-navigation span.icon {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(0%, -50%);
}

.post-comments {
  background-color: var(--surface-0);
  padding: 40px;
  box-shadow: var(--shadow-2);
  margin-top: 40px;
}

.comment-title {
  margin-bottom: 30px !important;
  font-size: 25px;
  font-weight: 600;
  padding-left: 10px;
  padding-bottom: 5px;
  line-height: 28px;
}

.comment-reply-title {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
  font-size: 25px;
  font-weight: 600;
  padding-left: 10px;
  padding-bottom: 5px;
  line-height: 28px;
}

.post-comments .comments-list li {
  padding-left: 130px;
  position: relative;
  font-size: 16px;
}

.post-comments .comments-list li .comment-img {
  position: absolute;
  left: 0;
  width: 100px;
  height: 100px;
}

.post-comments .comments-list li .comment-img img {
  max-width: 100px;
  max-height: 100px;
}

.post-comments .comments-list li .comment-desc .desc-top {
  margin-bottom: 20px;
  position: relative;
  display: block;
}

.post-comments .comments-list li .comment-desc .desc-top h6 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}

.post-comments .comments-list li .comment-desc .desc-top h6 .saved {
  color: var(--color-primary);
  font-size: 16px;
  margin-left: 10px;
}

.post-comments .comments-list li .comment-desc .desc-top span.date {
  font-size: 13px;
  font-weight: 400;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 10px 0;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  z-index: 2;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link i {
  margin-right: 5px;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link:hover {
  color: var(--color-primary);
}

.post-comments .comments-list li .comment-desc p {
  font-weight: 400;
  margin-bottom: 0;
  font-size: 16px;
}

.post-comments .comments-list li.children {
  margin-left: 130px;
}

.post-comments .comments-list li:not(:first-child) {
  padding-top: 30px;
  margin-top: 30px;
}

.comment-form {
  background-color: var(--surface-0);
  padding: 40px;
  box-shadow: var(--shadow-2);
  margin-top: 40px;
}

.comment-form form .form-box {
  position: relative;
}

.comment-form form .form-box .icon {
  position: absolute;
  top: 17px;
  right: 25px;
  font-size: 16px;
}

.comment-form form .form-box .form-control-custom {
  background: var(--surface-0);
  color: var(--color-ink);
  padding: 25px;
  padding-left: 30px;
  padding-right: 50px;
  height: 60px;
  border: 2px solid var(--border-color);
  margin-bottom: 25px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
}

.comment-form form .form-box textarea.form-control-custom {
  height: auto;
}

.comment-form form .form-box .form-control-custom::placeholder {
  font-size: 16px;
  color: var(--color-ink);
  font-weight: 500;
}

.sidebar .widget {
  padding: 40px;
  background-color: var(--surface-0);
  box-shadow: var(--shadow-2);
}

.sidebar .widget .widget-title {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1;
  position: relative;
  padding-left: 18px;
  font-weight: 600;
}

.sidebar .widget .widget-title:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: var(--color-primary);
  content: '';
}

.sidebar .widget.search-widget form {
  position: relative;
}

.sidebar .widget.search-widget form input {
  width: 100%;
  background-color: transparent;
  height: 60px;
  padding: 0 80px 0 20px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0;
  border: 2px solid var(--border-color);
}

.sidebar .widget.search-widget form input::placeholder {
  color: var(--color-ink);
}

.sidebar .widget.search-widget form button {
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: var(--z-base);
  background-color: var(--color-primary);
  font-size: 17px;
  transition: all .3s ease-out 0s;
  color: var(--color-text-inverse);
  border-radius: 0;
}

.sidebar .widget.search-widget form button:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-text-inverse);
}

.sidebar .widget.popular-feeds .single-popular-feed {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  align-items: center;
}

.sidebar .widget.popular-feeds .single-popular-feed:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-img {
  width: 80px;
  margin-right: 15px;
  border-radius: var(--radius-round);
  height: 80px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc {
  width: calc(100% - 95px);
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title a {
  font-size: 16px;
  font-weight: 500;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title a:hover {
  color: var(--color-primary);
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .time {
  font-weight: 400;
  font-size: 13px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .time>i {
  margin-right: 4px;
}

.sidebar .widget.categories-widget ul li {
  margin-bottom: 10px;
}

.sidebar .widget.categories-widget ul li:last-child {
  margin-bottom: 0;
}

.sidebar .widget.categories-widget ul li a {
  font-size: 16px;
  height: 35px;
  background-color: transparent;
  display: block;
  position: relative;
  line-height: 35px;
  color: var(--color-ink);
  transition: all .3s ease-out 0s;
  font-weight: 500;
  padding: 0;
}

.sidebar .widget.categories-widget ul li a span {
  position: absolute;
  right: 0;
  top: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: transparent;
  color: var(--color-ink);
  transition: all .3s ease-out 0s;
  border-radius: var(--radius-round);
  border: 1px solid var(--border-color);
  font-size: 13px;
}

.sidebar .widget.categories-widget ul li a:hover {
  color: var(--color-primary);
}

.sidebar .widget.categories-widget ul li a:hover span {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: transparent;
}

.sidebar .widget.social-widget ul li {
  display: inline-block;
  margin-right: 10px;
}

.sidebar .widget.social-widget ul li a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 15px;
  background-color: var(--surface-1);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidebar .widget.social-widget ul li a:hover {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.sidebar .widget.popular-tag-widget {
  padding-bottom: 30px;
}

.popular-tag-widget .tags>a {
  display: inline-flex;
  justify-content: center;
  padding: 6px 16px;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 500;
  margin-right: 7px;
  margin-bottom: 10px;
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--border-color);
}

.popular-tag-widget .tags>a:hover {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: transparent;
}

.blog-list .single-list {
  margin-bottom: 40px;
}

.blog-list .single-list:last-child {
  margin-bottom: 0;
}

.blog-list .single-list .button {
  margin-top: 30px;
}

.client-logo-section {
  background: var(--surface-1);
  padding: 50px 0;
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo {
  padding: 10px;
  text-align: center;
  margin: auto;
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img {
  max-width: 220px;
  width: 100%;
  opacity: .3;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img:hover {
  opacity: 1;
}

.profile-page {
  background: var(--surface-0);
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 20px;
}

.profile-page .profile-content {
  width: 80%;
  margin: auto;
}

.profile-page .user-content {
  margin-top: -120px;
  margin-left: 20px;
}

.profile-page .user-content .main-img-name .image-av {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 230px;
  height: 230px;
}

.profile-page .user-content .main-img-name .image-av img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 400px;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}

.profile-page .profile-text h2 {
  color: var(--color-ink);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 30px;
  display: block;
}

.profile-page .profile-text h2 i {
  font-size: 100px;
}

.profile-page .profile-text h2 span {
  display: block;
  margin-top: 25px;
}

.profile-page .profile-text p {
  color: var(--color-ink);
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 30px;
  padding-right: 50px;
}

.newsletter {
  background-color: var(--color-primary);
}

.newsletter .subscribe-text h6 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--color-text-inverse);
  font-weight: 700;
}

.newsletter .subscribe-text p {
  font-size: 16px;
  color: var(--color-text-inverse);
}

.newsletter .subscribe-form {
  position: relative;
}

.newsletter .common-input {
  height: 60px;
  width: 350px;
  box-shadow: none;
  text-shadow: none;
  border-radius: 0;
  padding: 0 30px;
  font-weight: 500;
  font-size: 16px;
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--color-text-inverse) !important;
}

.common-input::-webkit-input-placeholder {
  color: var(--color-text-inverse);
}

.common-input::-moz-placeholder {
  color: var(--color-text-inverse);
}

.newsletter .button {
  display: inline-block;
}

.newsletter .button button {
  height: 60px;
  background: var(--surface-0);
  color: var(--color-ink);
  position: relative;
  top: -1px;
  margin-left: 10px;
}

.newsletter .button button .dir-part {
  background-color: var(--color-primary);
}

.newsletter .button button:hover {
  border-color: var(--surface-0) !important;
  color: var(--color-text-inverse);
}

.error-page {
  background: var(--surface-0);
  width: 100%;
  height: 100%;
  position: relative;
}

.error-page .error-image img {
  width: 80%;
  text-align: right;
  float: right;
}

.error-page .error-text {
  flex-direction: initial;
  height: auto;
  text-align: left;
  margin-top: 80px;
}

.error-page .error-text h2 {
  color: var(--color-ink);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 30px;
  display: block;
}

.error-page .error-text h2 i {
  font-size: 100px;
}

.error-page .error-text h2 span {
  display: block;
  margin-top: 25px;
}

.error-page .error-text p {
  color: var(--color-ink);
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 30px;
  padding-right: 50px;
}

.mail-success {
  background: var(--surface-0);
  width: 100%;
  height: 100%;
  position: relative;
}

.mail-success .success-image img {
  text-align: right;
  float: right;
  margin-top: 70px;
  padding-right: 50px;
}

.mail-success .success-text {
  flex-direction: initial;
  height: auto;
  text-align: left;
  margin-top: 80px;
}

.mail-success .success-text h2 {
  color: var(--color-ink);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  display: inline-block;
  font-size: 30px;
}

.mail-success .success-inner h2 i {
  font-size: 100px;
}

.mail-success .success-text h2 span {
  display: block;
  margin-top: 25px;
}

.mail-success .success-text p {
  color: var(--color-ink);
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 30px;
  padding-right: 50px;
}

.contact-area {
  background: var(--surface-0);
}

.contact-area .inner-section-title {
  text-align: left;
  margin-bottom: 40px;
}

.contact-area .inner-section-title h4 {
  text-transform: capitalize;
  font-size: 16px;
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: 4px 18px;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-area .inner-section-title h2 {
  font-weight: 700;
  font-size: 32px;
}

.contact-area .contact-address-wrapper {
  padding-right: 50px;
}

.contact-area .single-info {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.contact-area .single-info:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

.contact-area .single-info ul li span {
  display: block;
}

.contact-area .single-info ul li b {
  font-size: 17px;
  font-weight: 600;
}

.contact-area .single-info ul li a {
  display: inline-block;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}

.contact-area .single-info ul li a:hover {
  color: var(--color-primary);
}

.checkbox-block {
  padding: 0 !important;
  display: flex;
  align-items: center;
  font-size: 17px;
}

#checkbox_feedback {
  height: 30px !important;
  width: 30px !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-right: 10px !important;
}

.checkbox_label {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.contacts-form input {
  height: 60px;
  margin-bottom: 20px;
  padding: 0 28px !important;
  width: 100%;
  font-size: 16px;
  color: var(--color-ink) !important;
  font-weight: 500;
  background: transparent;
  border: 2px solid var(--border-color) !important;
  border-radius: 0 !important;
}

.contacts-form textarea {
  height: 150px;
  margin-bottom: 20px;
  padding: 28px;
  width: 100%;
  font-size: 16px;
  color: var(--color-heading);
  font-weight: 500;
  border-radius: 0;
  background: transparent;
  border: 2px solid var(--border-color) !important;
}

.contacts-form input.is-invalid {
  border: 2px solid var(--color-error) !important;
}

.contacts-form input.is-invalid::placeholder {
  color: var(--color-error) !important;
}

.contacts-button button {
  padding: 16px 30px;
  width: 100%;
  border: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 0;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  color: var(--color-text-inverse);
  background: var(--color-primary);
  height: 60px;
}

.contacts-button button:hover {
  color: var(--color-text-inverse);
}

.map-section {
  height: 500px;
  width: 100%;
}

.custom-section .single .content p {
  margin-top: 26px;
}

.custom-section .single .project-sidebar .sb-project-detail {
  background: var(--surface-1);
  margin-top: 30px;
}

.custom-section .single .project-sidebar .sb-project-detail .title {
  padding: 16px 20px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  margin-bottom: 0;
  font-weight: 700;
  font-size: 23px;
}

small {
  font-size: 0.875rem;
  line-height: 1.4;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--fill {
  fill: currentColor;
  stroke: none;
}

.skip-link {
  position: absolute;
  top: 0;
  left: -9999px;
  z-index: var(--z-toast);
  display: inline-flex;
  align-items: center;
  min-height: var(--tap-target-min);
  padding: var(--space-12) var(--space-16);
  background: var(--surface-0);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-s);
  color: var(--color-primary-deep);
  font-weight: var(--fw-semibold);
}

.skip-link:focus {
  top: 8px;
  left: 8px;
}

.topbar {
  background: var(--color-primary-deep);
  color: var(--color-text-inverse);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px 12px;
  min-height: 44px;
  padding-block: 4px;
}

.topbar__hours {
  display: none;
}

@media (min-width: 768px) {
  .topbar__hours {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-right: auto;
    font-size: 0.875rem;
  }
}

.topbar__contacts-link,
.auth-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  min-height: var(--tap-target-min);
  padding: var(--space-8);
  border-radius: var(--radius-s);
  color: var(--color-text-inverse);
  font-size: 0.875rem;
  font-weight: 600;
}

.topbar__contacts-link:hover,
.auth-link:hover {
  background: var(--color-primary-hover);
  color: var(--color-text-inverse);
}

.topbar__lang,
.topbar__auth {
  display: flex;
  align-items: center;
}

.lang-select {
  height: var(--tap-target-min);
  width: auto;
  padding: 0 var(--space-32) 0 var(--space-12);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 6 8 10.5 12.5 6' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right var(--space-12) center;
  background-size: 12px 12px;
  border: var(--border-width) solid var(--border-on-dark);
  border-radius: var(--radius-s);
  color: var(--color-text-inverse);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.lang-select:hover {
  border-color: var(--border-on-dark-strong);
}

.lang-select option {
  background: var(--surface-0);
  color: var(--color-ink);
}

.lang-select:focus {
  color: var(--color-text-inverse);
}

.lang-select:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.brand {
  background: var(--surface-0);
}

.brand__link {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  padding-block: 12px;
  color: var(--color-ink);
}

.brand__logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .brand__logo {
    height: 64px;
  }
}

.brand__names {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand__title {
  color: var(--color-heading);
  font-size: clamp(1.0625rem, 5vw, 1.375rem);
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.brand__subtitle {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  min-height: 56px;
  background: var(--surface-0);
  box-shadow: var(--shadow-1);
}

.main-nav.is-stuck {
  background: var(--surface-0);
  box-shadow: var(--shadow-3);
}

.main-nav__inner {
  display: flex;
  align-items: center;
  min-height: 56px;
}

.nav-list {
  display: none;
}

.nav-burger {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: var(--radius-s);
  cursor: pointer;
}

.nav-burger:hover {
  background: var(--surface-1);
}

.burger__line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-burger.is-open .burger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-open .burger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 992px) {
  .nav-burger {
    display: none;
  }

  .nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-item {
    position: relative;
    display: flex;
  }

  .nav-link,
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    min-height: 56px;
    padding: 0 var(--space-12);
    background: transparent;
    border: 0;
    border-radius: var(--radius-s);
    color: var(--color-ink);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
  }

  .nav-link:hover,
  .nav-toggle:hover {
    background: var(--surface-1);
    color: var(--color-ink);
  }

  .nav-link.is-active {
    background: var(--color-primary-tint);
    color: var(--color-primary-deep);
  }

  .nav-caret {
    flex-shrink: 0;
    transition: transform 200ms ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-caret {
    transform: rotate(180deg);
  }

  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: var(--z-dropdown);
    min-width: 260px;
    max-width: 360px;
    margin: 0;
    padding: var(--space-8);
    list-style: none;
    background: var(--surface-0);
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  }

  .submenu--right {
    left: auto;
    right: 0;
  }

  .submenu.is-open,
  .nav-item:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .submenu__link {
    display: flex;
    align-items: center;
    min-height: var(--tap-target-min);
    padding: var(--space-12) var(--space-16);
    border-radius: var(--radius-s);
    color: var(--color-text);
    font-size: 0.875rem;
  }

  .submenu__link:hover {
    background: var(--surface-1);
    color: var(--color-primary-deep);
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-overlay);
  width: min(320px, 86vw);
  height: 100vh;
  height: 100dvh;
  background: var(--surface-0);
  box-shadow: var(--shadow-3);
  overflow-y: auto;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 200ms ease, visibility 200ms;
}

.mobile-nav.is-open {
  visibility: visible;
  transform: translateX(0);
  transition: transform 200ms ease, visibility 0s;
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-12);
}

.mobile-nav__logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.mobile-nav__title {
  flex: 1;
  min-width: 0;
  color: var(--color-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
}

.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: var(--radius-s);
  color: var(--color-ink);
  cursor: pointer;
}

.mobile-nav__close:hover {
  background: var(--surface-1);
}

.mobile-nav__list {
  margin: 0;
  padding: 4px 8px 16px;
  list-style: none;
}

.mobile-nav__list > li > a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px;
  border-radius: var(--radius-s);
  color: var(--color-ink);
  font-size: 0.9375rem;
  font-weight: 600;
}

.mobile-nav__list > li > a:hover {
  background: var(--surface-1);
}

.mobile-nav__list > li > a.is-active {
  background: var(--color-primary-tint);
  color: var(--color-primary-deep);
}

.mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 12px;
  background: transparent;
  border: 0;
  border-radius: var(--radius-s);
  color: var(--color-ink);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.mobile-nav__toggle:hover {
  background: var(--surface-1);
}

.mobile-nav__toggle .icon {
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.mobile-nav__toggle[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.mobile-nav__submenu {
  margin: 0;
  padding: 0 0 8px 12px;
  list-style: none;
}

.mobile-nav__submenu[hidden] {
  display: none;
}

.mobile-nav__submenu a {
  display: flex;
  align-items: center;
  min-height: var(--tap-target-min);
  padding: var(--space-12);
  border-radius: var(--radius-s);
  color: var(--color-text);
  font-size: 0.875rem;
}

.mobile-nav__submenu a:hover {
  background: var(--surface-1);
  color: var(--color-primary-deep);
}

.nav-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: calc(var(--z-overlay) - 1);
  background: rgba(15, 20, 24, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms;
}

.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

body.has-open-menu {
  overflow: hidden;
}

@media (min-width: 992px) {
  .mobile-nav,
  .nav-backdrop {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .burger__line,
  .nav-caret,
  .submenu,
  .mobile-nav,
  .mobile-nav__toggle .icon,
  .nav-backdrop {
    transition: none;
  }
}

.site-footer {
  background: var(--surface-dark);
  color: var(--color-text-inverse);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-block: 72px 40px;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-title {
  margin: 0 0 12px;
  color: var(--color-text-inverse);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--surface-2);
  font-size: 0.9375rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--color-text-inverse);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-brand__logo {
  height: 56px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand__names {
  margin-bottom: 8px;
}

.footer-brand__title {
  color: var(--color-text-inverse);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.footer-brand__subtitle {
  color: var(--surface-2);
  font-size: 0.875rem;
}

.footer-brand__about {
  margin: 0 0 16px;
  color: var(--surface-2);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap-target-min);
  height: var(--tap-target-min);
  border: var(--border-width) solid var(--border-on-dark);
  border-radius: var(--radius-m);
  color: var(--color-text-inverse);
}

.footer-social__link .icon {
  width: 20px;
  height: 20px;
}

.footer-social__link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-ink);
}

.site-footer__bottom {
  padding-block: 12px;
  background: var(--surface-dark-2);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-copyright {
  margin: 0;
  color: var(--surface-2);
  font-size: 0.875rem;
}

.footer-site-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-text-inverse);
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-site-link:hover {
  color: var(--color-accent);
}

.content-image {
  max-width: 100%;
  height: auto;
}

@media print {
  .site-header,
  .site-footer,
  .mobile-nav,
  .nav-backdrop,
  .skip-link,
  .scroll-top,
  .slick-slider,
  .slick-arrow,
  .slick-dots,
  .news-slider__arrows,
  .home-hero,
  .preloader,
  form,
  button,
  .c-btn,
  .button {
    display: none;
  }

  body,
  .container-main,
  .c-section,
  .c-section--dark,
  .c-section--alt,
  .stats-band,
  .img-bg {
    background: var(--surface-0);
    background-image: none;
    color: var(--color-ink);
    box-shadow: none;
  }

  h1, h2, h3, h4, h5, h6, p, li, td, th, span, a {
    color: var(--color-ink);
  }

  .container-main,
  .container {
    max-width: none;
    width: auto;
    padding: 0;
  }

  table, tr, td, th {
    break-inside: avoid;
  }

  a {
    text-decoration: underline;
  }

  main a[href^="http"]::after {
    content: " (" attr(href) ")";
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html *,
  html *::before,
  html *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }

  .animated,
  .wow {
    animation: none;
    visibility: visible;
  }
}
