/* @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap'); */

:root {
  --deep: #0B1F5B;
  --accent: #6A5CFF;
  --bg: #f7f8fc;
  --background-bg: #7da7ff;
  --white: #fff;
  --muted: #5b6480;
  --border: #dde0ef;
  --lb: rgba(47, 91, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Noto Sans', sans-serif;
  color: var(--deep);
  background: var(--bg);
  text-transform: capitalize;
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

/* TOPBAR */
 /* TOPBAR */
  .topbar {
    background: var(--deep);
    color: var(--white);
    font-size: 13px;
    padding: 7px 0;
  }
  .tb-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .tb-left {
    display: flex;
    gap: 20px;
  }
  .tb-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--bg);
    font-size: 14px;
  }
  .tb-left a { color: var(--bg); }
  .tb-left i { color: var(--bg); }
  .tb-right {
    display: flex;
    gap: 6px;
  }
  .tb-right a {
    width: 26px;
    height: 26px;
    border: 1px solid var(--muted);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-size: 13px;
    transition: .2s;
  }
  .tb-right a:hover { background: var(--accent); color: var(--white); }

  /* NAV */
  nav.snav {
    background: var(--white);
    border-bottom: 2px solid var(--deep);
    position: sticky;
    top: 0;
    z-index: 200;
  }
  .nav-in {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-logo-ico {
    width: 42px;
    height: 42px;
    background: var(--deep);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .nav-logo-ico i { color: var(--white); font-size: 20px; }
  .nav-brand { font-size: 19px; font-weight: 700; color: var(--deep); }
  .nav-brand a { color: var(--deep); }

  .nav-ul {
    display: flex;
    gap: 28px;
    list-style: none;
  }
  .nav-ul a {
    font-size: 15px;
    font-weight: 500;
    color: var(--deep);
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: .2s;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .nav-ul a:hover { color: var(--accent); border-bottom-color: var(--accent); }

  .btn-login {
    background: var(--deep);
    color: var(--white);
    padding: 9px 22px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: .2s;
    white-space: nowrap;
  }
  .btn-login:hover { background: var(--accent); }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
    z-index: 300;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--deep);
    border-radius: 2px;
    transition: all .3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* MOBILE DRAWER */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,46,74,0.55);
    z-index: 190;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }
  .mobile-drawer {
    position: absolute;
    top: 0; right: 0;
    width: 280px;
    height: 100%;
    background: var(--white);
    padding: 80px 0 30px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
  }
  .mobile-menu.open .mobile-drawer {
    transform: translateX(0);
  }
  .mobile-drawer ul {
    list-style: none;
    flex: 1;
    overflow-y: auto;
  }
  .mobile-drawer ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    color: var(--deep);
    border-left: 3px solid transparent;
    transition: .2s;
  }
  .mobile-drawer ul li a:hover {
    color: var(--accent);
    background: #fef5f0;
    border-left-color: var(--accent);
  }
  .mobile-drawer ul li a i { font-size: 16px; }
  .mobile-drawer .mobile-login {
    margin: 20px 28px 0;
    background: var(--deep);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: .2s;
  }
  .mobile-drawer .mobile-login:hover { background: var(--accent); }

  /* ── RESPONSIVE ── */

  /* Tablet: hide topbar left details, show only icons */
  @media (max-width: 900px) {
    .tb-left .tb-addr { display: none; }
  }

  /* Mobile: collapse nav */
  @media (max-width: 768px) {
    /* Topbar: stack or shrink */
    .topbar { display: none; } /* hide topbar on very small */
    .nav-ul { display: none; }
    .btn-login { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
  }

  @media (max-width: 480px) {
    .nav-in { padding: 0 16px; }
    .nav-brand { font-size: 17px; }
    .nav-logo-ico { width: 36px; height: 36px; }
    .nav-logo-ico i { font-size: 17px; }
  }

  /* Show topbar on tablet but compact */
  @media (min-width: 769px) and (max-width: 1000px) {
    .tb-left { gap: 12px; }
    .tb-left span { font-size: 12px; }
    .tb-addr { display: none; }
    .nav-ul { gap: 16px; }
    .nav-ul a { font-size: 13px; }
    .btn-login { padding: 8px 14px; font-size: 13px; }
  }

/* HERO */
.hero {
  position: relative;
  height: 700px;
  overflow: hidden;
  background: var(--deep)
}

.hslide {
  position: absolute;
  inset: 0;
  /* opacity: 0; */
  transition: opacity 1.1s ease
}

.hslide.on {
  opacity: 1;
  z-index: 1
}

.hslide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease
}

.hslide.on img {
  transform: scale(1.04)
}

.hov {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right, rgba(11, 31, 91, .88) 0%, rgba(11, 31, 91, .52) 50%, rgba(11, 31, 91, .22) 100%); */
  z-index: 2
}

.hcontent {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 680px
}

/* .h-ey {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid var(--muted);
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  width: fit-content;
  margin-bottom: 20px
} */

.edot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--background-bg);
  animation: edot 2s ease-in-out infinite
}

@keyframes edot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.h-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px
}

.h-title span {
  color: var(--background-bg);
}

/* .h-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 460px
} */

.h-btns {
  display: flex;
  gap: 12px
}

.btn-hm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--deep);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 4px;
  transition: .2s
}

.btn-hm:hover {
  background: var(--accent);
  color: var(--white)
}

/* .btn-hg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 4px;
  transition: .2s
}

.btn-hg:hover {
  border-color: rgba(255, 255, 255, .7);
  color: var(--white)
} */

.h-thumbs {
  position: absolute;
  bottom: 22px;
  left: 80px;
  z-index: 10;
  display: flex;
  gap: 8px
}

.hthumb {
  width: 54px;
  height: 36px;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: .45;
  cursor: pointer;
  transition: .3s
}

.hthumb.on {
  border-color: var(--white);
  opacity: 1
}

.hthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.h-counter {
  position: absolute;
  bottom: 56px;
  right: 52px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px
}

.hcn {
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1
}

/* .hcs {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, .3)
} */

.hct {
  font-size: 14px;
  color: var(--white);
  font-weight: 500
}

.h-arrows {
  position: absolute;
  bottom: 58px;
  right: 160px;
  z-index: 10;
  display: flex;
  gap: 8px
}

.harr {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid var(--muted);
  background: var(--deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: .2s
}

.harr:hover {
  background: var(--accent);
}

.hprog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--muted);
  z-index: 10
}

.hpf {
  height: 100%;
  background: var(--background-bg);
  width: 0;
  transition: width .12s linear
}

/* STATS */
.stats-strip {
  background: var(--deep);
  padding: 30px 0
}

.sg {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.si {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--muted);
}

.si:last-child {
  border-right: none
}

.si-ico {
  font-size: 26px;
  color: var(--background-bg);
  margin-bottom: 8px
}

.si-n {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1
}

.si-l {
  font-size: 15px;
  color: var(--bg);
  margin-top: 5px
}

/* COMMONS */
section {
  padding: 64px 0
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 24px
}

.sec-hd {
  text-align: center;
  margin-bottom: 44px
}

.sec-tag {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  /* letter-spacing: .2em; */
  /* text-transform: uppercase; */
  color: var(--accent);
  margin-bottom: 10px
}

.sec-tag::before {
  content: '— '
}

.sec-tag::after {
  content: ' —'
}

.sec-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--deep);
  line-height: 1.2
}

.sec-title span {
  color: var(--accent)
}

.div {
  width: 44px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px
}

/* ABOUT */
.about-sec {
  background: var(--white)
}

.ag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.a-iw {
  position: relative
}

.a-iw img {
  width: 100%;
  /* height: 420px; */
  object-fit: cover;
  /* border-radius: 6px; */
  /* border: 3px solid var(--deep) */
}

.a-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--deep);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5
}

.a-badge span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--background-bg)
}

.a-lbl {
font-size: 17px;
    font-weight: 600;
    /* letter-spacing: .18em; */
    /* text-transform: uppercase; */
    color: var(--accent);
    margin-bottom: 10px;
}

.a-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--deep);
  line-height: 1.25;
  margin-bottom: 14px
}
.a-title span{
  color: var(--accent);
}

.a-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px
}

.a-list {
  list-style: none;
  margin-bottom: 28px
}

.a-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--deep);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border)
}

.a-list li:last-child {
  border-bottom: none
}

.chk {
  width: 22px;
  height: 22px;
  background: var(--deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--deep);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 4px;
  transition: .2s
}

.btn-solid:hover {
  background: var(--accent)
}

/* SERVICES */
.svc-sec {
  background: var(--bg)
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  border-top: 3px solid var(--deep);
  transition: box-shadow .25s, transform .25s
}

.svc-card:hover {
  box-shadow: 0 8px 32px rgba(11, 31, 91, .1);
  transform: translateY(-4px)
}

.svc-ico {
  width: 52px;
  height: 52px;
  background: var(--deep);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px
}

.svc-t {
  font-size: 17px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 8px
}

.svc-d {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px
}

.svc-lnk {
  font-size: 17px;
  font-weight: 600;
  color: var(--deep);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s
}

.svc-lnk:hover {
  gap: 10px
}

/* MEMBERS */
.mem-sec {
  background: var(--white)
}

.mem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.mem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s
}

.mem-card:hover {
  box-shadow: 0 8px 32px var(--bg);
  transform: translateY(-4px)
}

.mem-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden
}

.mem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.mem-card:hover .mem-img img {
  transform: scale(1.06)
}

.msb {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--bg);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 4px
}

.msb i {
  font-size: 8px
}

.msb.elder {
  color: #b45309;
}

.mem-body {
  padding: 16px;
  text-align: center
}

.mem-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px
}

.mem-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px
}

.mem-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 14px
}

.chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--deep);
  background: var(--lb);
  border: 1px solid var(--deep);
  padding: 3px 10px;
  border-radius: 20px
}

.btn-con {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--deep);
  border: 1px solid var(--deep);
  padding: 7px 18px;
  border-radius: 20px;
  transition: .2s
}

.btn-con:hover {
  background: var(--accent);
  color: var(--white)
}

/* GALLERY */
.gal-sec {
  background: var(--bg)
}

.gf {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px
}

.gf button {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--deep);
  padding: 7px 18px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: .2s
}

.gf button.active,
.gf button:hover {
  background: var(--deep);
  color: var(--white);
  border-color: var(--deep)
}

.gg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
  position: relative
}

.gi {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: opacity .3s, transform .3s
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.gi:hover img {
  transform: scale(1.07)
}

.gi::after {
  content: '\F52A';
  font-family: 'bootstrap-icons';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  background: var(--bg);
  opacity: 0;
  transition: opacity .3s
}

.gi:hover::after {
  /* opacity: 1 */
}

.gi.large {
  grid-column: span 2;
  grid-row: span 2
}

.gi.wide {
  grid-column: span 2
}

.gi.hide {
  opacity: 0;
  transform: scale(.88);
  pointer-events: none;
  position: absolute
}

/* EVENTS */
.ev-sec {
  background: var(--white)
}

.ev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.ev-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s
}

.ev-card:hover {
  box-shadow: 0 8px 32px var(--bg);
  transform: translateY(-4px)
}

.ev-img {
  position: relative;
  height: 200px;
  overflow: hidden
}

.ev-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.ev-card:hover .ev-img img {
  transform: scale(1.05)
}

.ev-img::after {
  content: '';
  position: absolute;
  /* inset: 0; */
  background: var(--deep)
}

.ev-db {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  padding: 8px 10px;
  border-radius: 4px;
  text-align: center;
  z-index: 2;
  min-width: 52px
}

.ev-db strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--deep);
  line-height: 1
}

.ev-db span {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em
}

.ev-sb {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f97316;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2
}

.ev-ot {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  z-index: 2
}

.ev-body {
  padding: 18px
}

.ev-tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px
}

.etag {
  font-size: 11px;
  font-weight: 700;
  color: var(--deep);
  background: var(--lb);
  padding: 3px 10px;
  border-radius: 20px
}

.eusers {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px
}

.ev-t {
  font-size: 15px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 12px;
  line-height: 1.4
}

.ev-meta {
  list-style: none;
  margin-bottom: 14px
}

.ev-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px dotted var(--border)
}

.ev-meta li:last-child {
  border-bottom: none
}

.ev-meta i {
  color: var(--deep);
  font-size: 13px;
  width: 14px
}

.ev-ft {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.btn-reg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--deep);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 4px;
  transition: .2s
}

.btn-reg:hover {
  background: var(--accent)
}

.ev-price {
  font-size: 13px;
  color: var(--muted)
}

.ev-price b {
  color: var(--deep)
}

/* CONTACT */
.ct-sec {
  background: var(--bg);
  padding: 64px 0
}

.ct-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border)
}

.ct-left {
  background: var(--deep);
  padding: 56px 48px;
  color: var(--white)
}

.ct-left h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px
}

.ct-left h2 span {
  color: var(--background-bg)
}

.ct-left>p {
  font-size: 15px;
  color: var(--bg);
  line-height: 1.7;
  margin-bottom: 30px
}

.ct-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px
}

.cft {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500
}

.cft-ico {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px
}

.ct-soc {
  display: flex;
  gap: 8px
}

.csoc {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .7);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: .2s
}

.csoc:hover {
  background: rgba(255, 255, 255, .12);
  color: var(--white)
}

.ct-right {
  padding: 56px 48px
}

.ct-right h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 6px
}

.ct-right>p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px
}

.ft-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px
}

.ft-tabs button {
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--deep);
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: .2s
}

.ft-tabs button.active {
  background: var(--deep);
  color: var(--white);
  border-color: var(--deep)
}

.fg {
  position: relative;
  margin-bottom: 18px
}

.fg input,
.fg textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  font-size: 15px;
  color: var(--deep);
  font-family: inherit;
  outline: none;
  transition: border-color .2s
}

.fg textarea {
  height: 100px;
  resize: vertical
}

.fg input:focus,
.fg textarea:focus {
  border-color: var(--accent);
  background: var(--white)
}

.fg label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 14px;
  color: var(--muted);
  pointer-events: none;
  transition: .2s;
  background: transparent
}

.fg input:focus+label,
.fg input:valid+label,
.fg textarea:focus+label,
.fg textarea:valid+label {
  top: -9px;
  left: 10px;
  font-size: 12px;
  background: var(--white);
  padding: 0 4px;
  color: var(--accent)
}

.btn-send {
  width: 100%;
  padding: 14px;
  background: var(--deep);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .2s
}

.btn-send:hover {
  background: var(--accent)
}

.succ {
  display: none;
  margin-top: 14px;
  padding: 12px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 4px;
  color: #065f46;
  font-size: 14px;
  font-weight: 600;
  text-align: center
}

/* FOOTER — only --deep bg */
footer {
  background: var(--deep);
  color: var(--white);
  padding: 60px 0 0
}

.fg-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 44px
}

.fl-brand {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.fl-brand i {
  color: var(--background-bg)
}

.fl-desc {
  font-size: 14px;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 20px
}

.fl-soc {
  display: flex;
  gap: 8px
}

.fsoc {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  transition: .2s
}

.fsoc:hover {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

.fh {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .16em;
  /* text-transform: uppercase; */
  margin-bottom: 18px;
  color: var(--white);
}

.fl-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.fl-ul a {
  font-size: 14px;
  color: var(--white);
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 6px
}

.fl-ul a i {
  font-size: 11px;
  color: var(--background-bg)
}

.fl-ul a:hover {
  color: var(--white)
}

.fn-p {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.65
}

.fin {
  display: flex;
  gap: 8px
}

.fin input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none
}

.fin input::placeholder {
  color: rgba(255, 255, 255, .35)
}

.fin button {
  padding: 10px 18px;
  background: var(--white);
  color: var(--deep);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: .2s
}

.fin button:hover {
  background: var(--bg);
}

.fct {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px
}

.fct span {
  font-size: 15px;
  color: var(--bg);
  display: flex;
  align-items: center;
  gap: 8px
}

.fct i {
  color: var(--background-bg)
}

.fb {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--white)
}

.fb a {
  color: var(--white);
  margin-left: 16px;
  transition: .2s
}

.fb a:hover {
  color: var(--white)
}

/* RESPONSIVE */
@media(max-width:992px) {

  .ag,
  .ct-box {
    grid-template-columns: 1fr
  }

  .ev-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .fg-grid {
    grid-template-columns: 1fr 1fr
  }

  .sg {
    grid-template-columns: repeat(2, 1fr)
  }

  .si:nth-child(2) {
    border-right: none
  }

  .si:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .12)
  }

  .ct-left,
  .ct-right {
    padding: 40px 32px
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .mem-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:680px) {
   .mem-grid {
    grid-template-columns: repeat(1, 1fr)
  }
  .hero {
    height: 440px
  }

  .hcontent {
    padding: 0 28px;
    max-width: 100%
  }

  .h-title {
    font-size: 28px
  }

  .h-sub {
    font-size: 14px
  }

  .nav-ul {
    display: none
  }

  .tb-left span:nth-child(3) {
    display: none
  }

  .ev-grid {
    grid-template-columns: 1fr
  }

  .gg {
    grid-template-columns: repeat(2, 1fr)
  }

  .gi.large {
    grid-column: span 1;
    grid-row: span 1
  }

  .fg-grid {
    grid-template-columns: 1fr
  }

  .h-thumbs,
  .h-counter {
    display: none
  }

  .h-arrows {
    bottom: 16px;
    right: 16px
  }

  .a-badge {
    right: 0;
    bottom: -12px
  }

  .svc-grid {
    grid-template-columns: 1fr
  }
}