:root {
    --navy: #0c1a6b;
    --navy-900: #070e3d;
    --navy-800: #0a1350;
    --royal: #1e34c4;
    --royal-lite: #3d5be0;
    --gold: #f4c81e;
    --gold-deep: #e0a800;
    --gold-soft: #fce79a;
    --cyan: #cff6f9;
    --cyan-tint: #eafbfd;
    --paper: #ffffff;
    --ink: #141a3a;
    --muted: #5b6288;
    --line: #e5e8f3;
    --red: #d64545;
    --shadow: 0 24px 60px -28px rgba(7, 14, 61, 0.55);
    --shadow-sm: 0 10px 30px -18px rgba(7, 14, 61, 0.5)
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

h1,
h2,
h3,
h4 {
    font-family: Fraunces, Georgia, serif;
    line-height: 1.06;
    letter-spacing: -.01em;
    font-weight: 600
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.wrap {
    width: min(1200px, 92vw);
    margin-inline: auto
}

.eyebrow {
    font-family: "Hanken Grotesk";
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--royal);
    display: inline-flex;
    gap: .6em;
    align-items: center
}

.eyebrow.on-dark {
    color: var(--gold)
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: currentColor;
    display: inline-block
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .55em;
    font-family: "Hanken Grotesk";
    font-weight: 700;
    font-size: 15.5px;
    padding: 15px 26px;
    border-radius: 999px;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s, background .25s, color .25s
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-900);
    box-shadow: 0 12px 26px -12px rgba(244, 200, 30, .75)
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -12px rgba(244, 200, 30, .9)
}

.btn-ghost {
    background: 0 0;
    color: #fff;
    border-color: rgba(255, 255, 255, .45)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    transform: translateY(-3px)
}

.btn-navy {
    background: var(--navy);
    color: #fff
}

.btn-navy:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm)
}

.btn-arrow svg {
    transition: transform .3s
}

.btn:hover .btn-arrow svg {
    transform: translateX(4px)
}

.hero-rules {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .4;
    background-image: repeating-linear-gradient(to bottom, transparent 0 38px, rgba(160, 180, 255, .09) 38px 39px);
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent)
}

.util {
    background: var(--navy-900);
    color: #c9d0f2;
    font-size: 12px;
    font-weight: 500
}

.util .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 9px 0;
    flex-wrap: wrap
}

.util a {
    color: #dfe4ff;
    transition: color .2s;
    font-size: 14px;
}

.util a:hover {
    color: var(--gold)
}

.util .phones {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 75%
}

.util .phones b {
    color: #fff;
    font-weight: 700
}

.util .u-right {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 25%;
    justify-content: right
}

.util .mails {
    display: flex;
    gap: 14px;
    align-items: center
}

.util .mails svg {
    vertical-align: -2px;
    margin-right: 5px;
    opacity: .8
}

.ty-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gold);
    color: var(--navy-900) !important;
    font-weight: 700;
    font-size: 12.5px;
    padding: 6px 14px;
    border-radius: 999px;
    transition: .25s;
    white-space: nowrap
}

.ty-login:hover {
    background: #fff;
    color: var(--navy-900) !important;
    transform: translateY(-1px)
}

.util .wrap-flex {
    display: flex;
    padding-block: 10px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.util .wrap-flex span i {
    margin-right: 5px
}

.util .wrap-flex span {
    position: relative
}

.util .wrap-flex span:after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: -7.5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff
}

.util .wrap-flex span:last-child:after {
    display: none
}

header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s
}

header.scrolled {
    box-shadow: 0 8px 30px -20px rgba(7, 14, 61, .5)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 2px 0
}

.brand img {
    width: 200px;
    height: auto;
    display: block;
    object-fit: contain
}

.menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none
}

.menu>li {
    position: relative
}

.menu>li>a {
    font-weight: 600;
    font-size: 14.5px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
    cursor: pointer
}

.menu>li>a:hover {
    color: var(--royal)
}

.menu>li>a .chev {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: .55;
    margin-top: -3px;
    transition: transform .25s
}

.menu>li:hover>a .chev {
    transform: rotate(225deg);
    margin-top: 2px
}

.menu>li>a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.menu>li>a:hover::after {
    transform: scaleX(1)
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px;
    min-width: 258px;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 70;
    gap: 10px;
    overflow-y: auto;
    max-height: 450px;
    min-height: auto;
}

.dropdown.wide {
    min-width: 520px;
    columns: 2;
    column-gap: 8px
}

.menu>li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.dropdown a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    break-inside: avoid;
    transition: .15s;
}

.dropdown a:hover {
    background: var(--cyan-tint);
    color: var(--royal)
}

.dropdown .dd-div {
    height: 1px;
    background: var(--line);
    margin: 7px 6px
}

.dropdown .dd-cta {
    background: var(--navy);
    color: #fff !important;
    text-align: center;
    font-weight: 700;
    margin-top: 4px
}

.dropdown .dd-cta:hover {
    background: var(--royal);
    color: #fff !important
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: 0 0;
    border: 0;
    cursor: pointer;
    padding: 8px
}

.burger span {
    width: 26px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: .3s
}

.common_arrow{
    background-color: #333;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.common_arrow svg{
    width: 14px !important;
    color: #fff !important;
}

.quicklinks {
    position: relative;
    z-index: 8;
    margin-top: -46px
}

.ql-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow)
}

.ql {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    background: var(--cyan-tint);
    transition: .3s;
    border: 1px solid transparent
}

.ql:hover {
    background: var(--navy);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm)
}

.ql:hover b,
.ql:hover small {
    color: #fff
}

.ql .ic {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--gold)
}

.ql:hover .ic {
    background: var(--gold);
    color: var(--navy-900)
}

.ql b {
    display: block;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.15;
    transition: .3s
}

.ql small {
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 500;
    transition: .3s
}

.proof {
    background: var(--navy-900);
    color: #fff;
    padding: 18px 0;
    margin-top: 40px
}

.proof .wrap {
    display: flex;
    align-items: center;
    gap: 26px
}

.proof .label {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .05em;
    color: #aab3e6;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase
}

.marquee {
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent)
}

.marquee-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: scroll 34s linear infinite
}

.proof:hover .marquee-track {
    animation-play-state: paused
}

@keyframes scroll {
    to {
        transform: translateX(-50%)
    }
}

.chip {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 13.5px;
    color: #dfe4ff;
    white-space: nowrap
}

.chip .stars {
    color: var(--gold);
    font-size: 10px
}

.chip b {
    color: #fff;
    font-weight: 600
}

section {
    padding: 92px 0
}

.sec-head {
    max-width: 660px;
    margin-bottom: 50px
}

.sec-head.center {
    margin-inline: auto;
    text-align: center
}

.sec-head h2 {
    font-size: clamp(30px, 3.8vw, 46px);
    margin: 16px 0 14px;
    color: var(--navy)
}

.sec-head p {
    color: var(--muted);
    font-size: 18px
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 52px;
    align-items: center
}

.about-grid .sec-head {
    margin-bottom: 0;
    max-width: none
}

.about-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    position: relative;
    padding-bottom: 14px
}

.about-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    background: var(--navy-900);
    transition: .35s
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.about-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block
}

.about-card figcaption {
    padding: 12px 14px;
    background: #fff
}

.about-card figcaption b {
    display: block;
    font-size: 14.5px;
    color: var(--navy);
    line-height: 1.2
}

.about-card figcaption span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600
}

.about-badge {
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-900);
    font-family: Fraunces;
    font-weight: 700;
    font-size: 14px;
    padding: 9px 18px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap
}

.about-band p strong {
    color: var(--navy)
}

.cats {
    background: linear-gradient(180deg, #fff, var(--cyan-tint))
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.cat {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, border-color .35s
}

.cat:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: transparent
}

.cat .thumb {
    aspect-ratio: 16/11;
    overflow: hidden;
    background: var(--navy-900)
}

.cat .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.cat:hover .thumb img {
    transform: scale(1.07)
}

.cat .body {
    padding: 22px 22px 24px
}

.cat h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px
}

.cat p {
    color: var(--muted);
    font-size: 14.5px;
    margin-bottom: 14px
}

.cat .go {
    font-weight: 700;
    font-size: 14px;
    color: var(--royal);
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.cat .go svg {
    transition: transform .3s
}

.cat:hover .go svg {
    transform: translateX(4px)
}

.cat .tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--navy-900);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: 8px
}

.brochure {
    background: radial-gradient(900px 500px at 85% -10%, rgba(30, 52, 196, .5), transparent 55%), linear-gradient(160deg, var(--navy) 0, var(--navy-900) 75%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.br-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 50px;
    align-items: center;
    position: relative
}

.br-copy .eyebrow {
    color: var(--gold)
}

.br-copy h2 {
    color: #fff;
    font-size: clamp(28px, 3.6vw, 44px);
    margin: 16px 0 16px
}

.br-copy h2 em {
    color: var(--gold);
    font-weight: 500
}

.br-copy p {
    color: #cdd5f5;
    font-size: 17px;
    margin-bottom: 14px;
    max-width: 46ch
}

.br-points {
    list-style: none;
    display: grid;
    gap: 11px;
    margin: 22px 0 28px
}

.br-points li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-size: 15px;
    color: #e6eaff
}

.br-points li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold)
}

.br-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.pdf-note {
    font-size: 12.5px;
    color: #9aa4d6;
    margin-top: 12px;
    text-align: center;
}

.showcase {
    background: #fff;
}

.show-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.show-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 7/10;
    transition: .4s;
}

.show-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.show-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.show-card:hover img {
    transform: scale(1.05);
}

.spotlight {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.spot-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 56px;
    align-items: center;
    position: relative
}

.spot-media {
    position: relative
}

.spot-media .frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(20, 9, 9, .16);
    box-shadow: 0 40px 80px -34px #000;
    aspect-ratio: 4/3
}

.spot-media .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.spot-media .stamp {
    position: absolute;
    top: -20px;
    left: -14px;
    background: var(--gold);
    color: var(--navy-900);
    border-radius: 16px;
    padding: 16px 20px;
    font-family: Fraunces;
    font-weight: 700;
    line-height: 1;
    box-shadow: var(--shadow)
}

.spot-media .stamp b {
    font-size: 30px;
    display: block
}

.spot-media .stamp span {
    font-size: 12px;
    font-weight: 600;
    font-family: "Hanken Grotesk";
    text-transform: uppercase;
    letter-spacing: .05em
}

.spot-copy h2 {
    color: #fff;
    font-size: clamp(28px, 3.6vw, 42px);
    margin: 18px 0 16px
}

.spot-copy h2 em {
    color: var(--gold);
    font-weight: 500
}

.spot-copy p {
    color: #cdd5f5;
    font-size: 17px;
    margin-bottom: 14px;
    max-width: 46ch
}

.feat-list {
    list-style: none;
    margin: 22px 0 30px;
    display: grid;
    gap: 12px
}

.feat-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15.5px;
    color: #e6eaff
}

.feat-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold)
}

.process .sec-head {
    text-align: center;
    margin-inline: auto
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 40px
}

.step {
    padding: 0 26px;
    position: relative
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 34px;
    right: -2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 14px 0 0 var(--line), 28px 0 0 var(--line), -14px 0 0 var(--line)
}

.step .num {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: var(--navy);
    color: var(--gold);
    font-family: Fraunces;
    font-size: 28px;
    font-weight: 600;
    box-shadow: var(--shadow-sm)
}

.step h3 {
    font-size: 21px;
    color: var(--navy);
    margin-bottom: 10px
}

.step p {
    color: var(--muted);
    font-size: 15px
}

.roof-band {
    margin-top: 56px;
    background: var(--cyan-tint);
    border: 1px solid #d3edf2;
    border-radius: 20px;
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap
}

.roof-band .r-txt {
    display: flex;
    align-items: center;
    gap: 18px
}

.roof-band .r-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--navy);
    display: grid;
    place-items: center;
    color: var(--gold)
}

.roof-band h4 {
    font-size: 21px;
    color: var(--navy)
}

.roof-band p {
    color: var(--muted);
    font-size: 15px;
    max-width: 52ch
}

.ty {
    background: radial-gradient(900px 500px at 15% 0, rgba(30, 52, 196, .5), transparent 55%), linear-gradient(150deg, var(--navy-900), var(--navy));
    color: #fff;
    position: relative;
    overflow: hidden
}

.ty-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 200, 30, .18), transparent 70%);
    bottom: -160px;
    left: -120px
}

.ty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    position: relative
}

.ty-copy .eyebrow {
    color: var(--gold)
}

.ty-copy h2 {
    color: #fff;
    font-size: clamp(28px, 3.6vw, 44px);
    margin: 14px 0 16px
}

.ty-copy p {
    color: #cdd5f5;
    font-size: 17px;
    margin-bottom: 16px;
    max-width: 48ch
}

.ty-quote {
    border-left: 3px solid var(--gold);
    padding: 6px 0 6px 20px;
    margin: 24px 0;
    font-family: Fraunces;
    font-style: italic;
    font-size: 18px;
    color: #eef1ff
}

.ty-quote cite {
    display: block;
    font-family: "Hanken Grotesk";
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    color: var(--gold);
    margin-top: 10px;
    letter-spacing: .02em
}

.ty-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.ty-years {
    display: flex;
    gap: 8px;
    margin: 4px 0 22px;
    flex-wrap: wrap
}

.ty-years a {
    border: 1px solid rgba(255, 255, 255, .28);
    color: #dfe4ff;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 999px;
    transition: .25s
}

.ty-years a:hover {
    background: var(--gold);
    color: var(--navy-900);
    border-color: var(--gold)
}

.ty-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.ty-media img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 24px 50px -30px #000
}

.ty-media img.wide {
    grid-column: 1/-1;
    aspect-ratio: 16/9
}

.dail {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(244, 200, 30, .14);
    border: 1px solid rgba(244, 200, 30, .35);
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 15px;
    border-radius: 999px;
    margin-bottom: 10px
}

.reviews {
    background: linear-gradient(180deg, var(--cyan-tint), #fff)
}

.rev-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 44px
}

.page-template-reviews .rev-top {
    align-items: center
}

.google-rate {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: var(--shadow-sm)
}

.google-rate .g {
    font-size: 26px;
    font-weight: 800;
    font-family: "Hanken Grotesk";
    color: var(--navy)
}

.google-rate .g b {
    color: #4285f4
}

.google-rate .g i {
    color: #ea4335;
    font-style: normal
}

.google-rate .g u {
    color: #fbbc05;
    text-decoration: none
}

.google-rate .g s {
    color: #34a853;
    text-decoration: none
}

.google-rate .rr b {
    font-size: 22px;
    color: var(--navy);
    font-family: Fraunces
}

.google-rate .stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 1px
}

.google-rate small {
    color: var(--muted);
    font-weight: 600;
    font-size: 12.5px
}

.rev-grid {
    columns: 3;
    column-gap: 20px
}

.review {
    break-inside: avoid;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 22px 20px;
    margin-bottom: 20px;
    box-shadow: 0 12px 30px -24px rgba(7, 14, 61, .5);
    transition: .3s
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent
}

.review .stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 12px
}

.review p {
    font-size: 14.5px;
    color: #2c3358;
    line-height: 1.62
}

.review .who {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid var(--line)
}

.review .av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--gold);
    font-weight: 800;
    font-family: Fraunces;
    font-size: 16px
}

.review .who b {
    font-size: 14px;
    color: var(--navy);
    display: block;
    line-height: 1.2
}

.review .who small {
    color: var(--muted);
    font-size: 12px
}

.google-rate img {
    width: 100px
}

.cta {
    padding: 0 0 92px
}

.cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    color: #fff;
    padding: 64px 8%;
    background: radial-gradient(700px 400px at 90% 10%, rgba(30, 52, 196, .65), transparent 60%), linear-gradient(150deg, var(--navy), var(--navy-900))
}

.cta-card .inner {
    position: relative;
    max-width: 640px
}

.cta-card h2 {
    font-size: clamp(30px, 4vw, 50px);
    color: #fff;
    margin-bottom: 16px
}

.cta-card h2 em {
    color: var(--gold);
    font-weight: 500
}

.cta-card p {
    color: #cdd5f5;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 46ch
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.cta-crest {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 230px;
    opacity: .9;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .5))
}

footer {
    background: var(--navy-900);
    color: #c3cbf0;
    padding: 72px 0 0
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 52px
}

.brand-foot {
    display: inline-block;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 26px -18px rgba(0, 0, 0, .6)
}

.brand-foot img {
    width: 200px;
    height: auto;
    display: block
}

.rev-more {
    text-align: center;
    margin-top: 44px
}

.foot-brand p {
    font-size: 14.5px;
    color: #9aa4d6;
    max-width: 34ch;
    margin-bottom: 18px
}

.foot-brand .addr {
    font-size: 14px;
    color: #c3cbf0;
    font-style: normal;
    line-height: 1.7
}

.foot-col h4 {
    font-family: "Hanken Grotesk";
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px
}

.foot-col ul {
    list-style: none;
    display: grid;
    gap: 11px
}

.foot-col a {
    font-size: 14.5px;
    color: #c3cbf0;
    transition: .2s
}

.foot-col a:hover {
    color: #fff;
    padding-left: 4px
}

.foot-contact .fc {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14.5px;
    align-items: baseline
}

.foot-contact .fc svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold)
}

.foot-contact a {
    color: #dfe4ff
}

.hours {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 18px;
    font-size: 13.5px
}

.hours b {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold)
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: #8b96cf
}

.foot-bottom a {
    color: var(--gold);
    font-weight: 600
}

.socials {
    display: flex;
    gap: 10px
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .07);
    color: #c3cbf0;
    transition: .25s
}

.socials a:hover {
    background: var(--gold);
    color: var(--navy-900);
    transform: translateY(-3px)
}

.float-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 10;
    display: none
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

.inner_banner {
    position: relative
}

.inner_banner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 53%;
    height: 100%;
    border-right: 15px solid #0f2652;
    border-radius: 100%;
    z-index: 2
}

.common_bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.inner_ban_txt h1 {
    font-size: 100px;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: #fff;
    font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif
}

.inner_ban_txt {
    position: relative;
    z-index: 5;
    padding-right: 13rem;
}

.inner_ban_txt p {
    color: #fff
}

.inner_ban_txt h1:after {
    content: "";
    width: 100px;
    height: 4px;
    border-radius: 20px;
    background-color: var(--gold);
    position: absolute;
    left: 0;
    bottom: 0
}

.inner_ban_txt h1 span {
    color: var(--gold)
}

.get_touch {
    text-transform: capitalize;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    display: inline-block;
    border-radius: 5px;
    padding: 5px 7px;
    font-size: 14px;
    margin-bottom: 15px;
    font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
    color: #fff
}

.get_touch span {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--navy);
    color: #fff;
    margin-right: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1)
}

.contact_area .sec-head h2 {
    font-size: 35px
}

.contact_form,
.contact_info {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 12px 30px -24px rgba(7, 14, 61, .5);
    height: 100%
}

.my_contact_form input[type=submit] {
    margin-top: 1rem
}

.form_style,
.form_textarea {
    width: 100%;
    font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    height: 45px;
    padding: 15px;
    background-color: #fff;
    color: var(--muted)
}

.form_style:focus-within,
.form_textarea:focus-within {
    outline: 0;
    box-shadow: none;
    border: 1px solid var(--gold)
}

input::placeholder {
    color: var(--muted);
    opacity: 0
}

.form_textarea {
    height: 100px
}

.each_form label {
    font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    color: #2c3358;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: capitalize
}

.contact_head {
    margin-bottom: 25px
}

.contact_info .sec-head h2 {
    font-size: 28px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
    margin-top: 0
}

.contact_info .sec-head h2:after {
    content: "";
    width: 100px;
    height: 2px;
    border-radius: 20px;
    background-color: var(--gold);
    position: absolute;
    left: 0;
    bottom: 0
}

.contact_info .sec-head h2 span {
    color: var(--gold)
}

.contact_info .get_touch {
    display: flex;
    width: 100%;
    margin-bottom: 25px;
    align-items: center;
    font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    padding: 10px;
    text-transform: none
}

.contact_info {
    background: radial-gradient(900px 500px at 85% -10%, rgba(30, 52, 196, .5), transparent 55%), linear-gradient(160deg, var(--navy) 0, var(--navy-900) 75%)
}

.contact_info .get_touch span {
    width: 36px;
    height: 36px;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 15px;
    border: 1px solid rgba(255, 255, 255, .1);
    background-color: transparent
}

.contact_info .get_touch:last-child {
    margin-bottom: 0
}

.contact_info .get_touch a {
    display: inline-block;
    margin-left: 10px;
    transition: .5s all;
    -webkit-transition: .5s all;
    padding: 5px;
    color: #fff
}

.contact_info .get_touch p {
    color: #fff
}

.contact_info .get_touch b {
    color: var(--gold);
    margin-right: 6px
}

.contact_info .get_touch a:hover {
    color: var(--gold)
}

.map_area {
    padding: 10px;
    height: auto
}

.map_area iframe {
    border: 0;
    width: 100%;
    height: 460px;
    border-radius: 15px
}

.about_area .contact_info .sec-head p {
    color: #fff;
    line-height: 1.5;
    font-size: 16px
}

.about_area .contact_info .sec-head h2 {
    font-size: 25px;
    margin-bottom: 8px;
    padding-bottom: 7px
}

.about_area .contact_info .sec-head h2:after {
    width: 40px;
    height: 2px
}

.about_area .contact_info .sec-head {
    margin-bottom: 10px
}

.about_area .contact_info .sec-head:not(:last-child) {
    margin-bottom: 15px !important
}

.each_about_info:not(:last-child) {
    margin-bottom: 25px
}

.about_area .contact_form img {
    height: 100%;
    object-fit: contain
}

.four_zero_area .contact_info {
    text-align: center;
    margin: 0 auto;
    max-width: 700px
}

.four_zero_area .contact_info h1 {
    font-size: 90px;
    color: #fff
}

.four_zero_area .contact_info h4 {
    font-size: 50px;
    color: #fff;
    margin-block: 15px
}

.four_zero_area .contact_info p {
    color: #fff;
    font-size: 22px
}

.four_zero_area .contact_info ul {
    justify-content: center;
    margin-top: 20px;
    gap: 15px
}

.four_zero_area .contact_info ul .btn-gold {
    padding: 10px 30px;
    text-transform: capitalize
}

.four_zero_area .contact_info ul .btn-gold:hover {
    color: #fff
}

.fancybox-close-small {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(0, 0, 0, .5) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    text-align: center !important;
    color: #fff !important;
    font-size: 24px !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 999999 !important
}

.fancybox-close-small:hover {
    background: rgba(0, 0, 0, .8) !important
}

.fancybox-close-small:after {
    content: '×' !important;
    font-size: 30px !important;
    font-weight: 300 !important;
    line-height: 40px !important
}

.fancybox-slide--html .fancybox-close-small,
.fancybox-slide--image .fancybox-close-small {
    display: block !important
}

.each_gal_box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--navy-900);
    padding: 5px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.each_gal_box img {
    border-radius: 10px
}

.each_gal_box .gallery_number {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4c81e;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.book_area {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px
}

.book_area img {
    object-fit: contain
}
.wp_float{
    position: fixed;
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    color: #fff;
    font-size: 25px;
    right: 20px;
    bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #128C7E;
    border: 2px solid transparent;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
}
.wp_float:hover{
    color: #128C7E;
    background: transparent;
    border: 2px solid #128C7E;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}
@media (max-width:1000px) {

    .about-grid,
    .br-grid,
    .show-grid,
    .spot-grid,
    .ty-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 0
    }

    .step:not(:last-child)::after {
        display: none
    }

    .rev-grid {
        columns: 2
    }

    .cta-crest {
        display: none
    }

    .cta-card {
        padding: 52px 7%
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px
    }

    .about-media {
        max-width: 440px
    }
}

@media (max-width:820px) {
    .util .mails {
        display: none
    }

    .burger {
        display: flex
    }

    .menu_open {
        display: block !important
    }

    .dropdown_open {
        display: block !important;
        max-height: 350px;
        min-height: auto;
        overflow-y: auto;
    }

    .drop_arrow_rotate {
        transform: rotate(225deg) !important;
        margin-top: 0 !important
    }

    .menu>li:hover>a .chev {
        transform: rotate(45deg);
        margin-top: 0
    }

    .chev {
        transform: rotate(45deg)
    }

    .menu {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        padding: 14px;
        gap: 2px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        height: 100vh;
        overflow: auto;
        display: none
    }

    .menu.open>li>a::after {
        display: none
    }

    .menu.open>li>a .chev {
        margin-left: auto
    }

    .dropdown {
        display: none
    }

    .dropdown,
    .dropdown.wide {
        min-width: 100%;
        visibility: visible;
        opacity: 1
    }

    .util .phones {
        width: 60%
    }

    .util .u-right {
        width: 40%
    }

    .menu>li>a::after {
        display: none
    }

    .inner_banner .row {
        flex-direction: column-reverse
    }

    .inner_ban_img {
        margin-bottom: 30px
    }

    .inner_ban_txt h1 {
        font-size: 70px
    }

    .inner_banner:after {
        display: none
    }

    .each_about_info:nth-child(even) .row,
    .each_about_info:nth-child(odd) .row {
        flex-direction: column-reverse
    }
    .inner_ban_txt {
        padding-right: 0;
    }
}

@media (max-width:720px) {
    body {
        font-size: 16px
    }

    section {
        padding: 60px 0
    }

    .slider-nav {
        width: 38px;
        height: 38px
    }

    .slider-nav.prev {
        left: 10px
    }

    .slider-nav.next {
        right: 10px
    }

    .quicklinks {
        margin-top: -30px
    }

    .ql-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px
    }

    .ql {
        flex-direction: column;
        text-align: center;
        gap: 9px;
        padding: 16px 8px
    }

    .ql .ic {
        width: 42px;
        height: 42px
    }

    .cat-grid,
    .foot-grid,
    .rev-grid,
    .show-grid,
    .ty-media {
        grid-template-columns: 1fr;
        columns: 1
    }

    .steps {
        grid-template-columns: 1fr
    }

    .roof-band {
        flex-direction: column;
        align-items: flex-start
    }

    .float-cta {
        display: block
    }

    .proof .label {
        display: none
    }

    .util .phones {
        width: 100%;
        gap: 0;
        justify-content: center
    }

    .util .u-right {
        width: 100%
    }

    .util .wrap-flex span {
        position: relative;
        width: 42%;
        font-size: 11px;
        line-height: 1;
        margin-bottom: 10px;
        padding-inline: 5px
    }

    .util .wrap-flex span:nth-child(odd) {
        text-align: right
    }

    .util .wrap-flex span:nth-child(even) {
        text-align: left
    }

    .util .wrap-flex span::after {
        right: 0
    }

    .util .wrap-flex span i {
        margin-right: 3px
    }

    .util .wrap-flex span:last-child {
        width: 61%
    }

    .util .wrap-flex span:nth-child(3) {
        width: 36%
    }

    .util .wrap-flex span:nth-child(2):after {
        display: none
    }

    .util .wrap-flex span:after {
        right: 0
    }

    .util .u-right {
        justify-content: center
    }

    .quicklinks {
        margin-top: 0
    }

    .inner_ban_txt h1 {
        font-size: 40px;
        margin-bottom: 15px
    }

    .inner_ban_txt p {
        font-size: 14px
    }

    .contact_form,
    .contact_info {
        padding: 15px
    }

    .contact_info .sec-head h2 {
        font-size: 24px
    }

    .contact_info .get_touch a,
    .contact_info .get_touch p {
        font-size: 14px
    }
    .wp_float {
        bottom: 150px;
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

.menu>li>a.active {
    color: var(--royal)
}

.menu>li>a.active::after {
    transform: scaleX(1)
}

.page-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    padding: 66px 0 74px;
    background: radial-gradient(900px 460px at 82% -20%, rgba(30, 52, 196, .55), transparent 60%), linear-gradient(160deg, var(--navy) 0, var(--navy-900) 78%)
}

.page-hero .hero-rules {
    opacity: .4
}

.page-hero .inner {
    position: relative
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #9aa4d6;
    margin-bottom: 18px
}

.breadcrumb a {
    color: #cdd5f5;
    transition: .2s
}

.breadcrumb a:hover {
    color: var(--gold)
}

.breadcrumb span {
    color: var(--gold)
}

.page-hero h1 {
    font-size: clamp(34px, 4.6vw, 56px);
    color: #fff;
    margin-bottom: 16px
}

.page-hero h1 em {
    color: var(--gold);
    font-weight: 500;
    font-style: italic
}

.page-hero p {
    color: #cdd5f5;
    font-size: 18px;
    max-width: 60ch;
    margin: 0 auto
}

.story {
    background: #fff
}

.story-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 54px;
    align-items: center
}

.story-copy .eyebrow {
    margin-bottom: 14px
}

.story-copy h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    color: var(--navy);
    margin-bottom: 18px
}

.story-copy p {
    color: #41496f;
    font-size: 16.5px;
    margin-bottom: 16px
}

.story-copy p strong {
    color: var(--navy)
}

.story-media {
    position: relative
}

.story-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow)
}

.story-media .stamp {
    position: absolute;
    bottom: -20px;
    left: -14px;
    background: var(--gold);
    color: var(--navy-900);
    border-radius: 16px;
    padding: 15px 20px;
    font-family: Fraunces;
    font-weight: 700;
    line-height: 1;
    box-shadow: var(--shadow)
}

.story-media .stamp b {
    font-size: 28px;
    display: block
}

.story-media .stamp span {
    font-size: 11.5px;
    font-weight: 600;
    font-family: "Hanken Grotesk";
    text-transform: uppercase;
    letter-spacing: .05em
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px
}

.stat-strip .s {
    background: var(--cyan-tint);
    border: 1px solid #d7f1f4;
    border-radius: 16px;
    padding: 24px 22px;
    text-align: center
}

.stat-strip .s b {
    font-family: Fraunces;
    font-size: 34px;
    font-weight: 600;
    color: var(--navy);
    display: block;
    line-height: 1
}

.stat-strip .s span {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-top: 9px
}

.team {
    background: linear-gradient(180deg, #fff, var(--cyan-tint))
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px
}

.team-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 150px 1fr;
    transition: .35s
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.team-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    background: var(--navy-900)
}

.team-card .tc-body {
    padding: 22px 24px
}

.team-card h3 {
    font-size: 21px;
    color: var(--navy);
    margin-bottom: 3px
}

.team-card .role {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 10px
}

.team-card p {
    font-size: 14px;
    color: #5a6288;
    line-height: 1.6
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.value {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 24px;
    transition: .3s
}

.value:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent
}

.value .ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--gold);
    margin-bottom: 16px
}

.value h3 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 8px
}

.value p {
    color: var(--muted);
    font-size: 14.5px
}

@media (max-width:1000px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .story-media {
        order: -1
    }

    .team-grid {
        grid-template-columns: 1fr
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:720px) {
    .page-hero {
        padding: 44px 0 52px
    }

    .stat-strip {
        grid-template-columns: 1fr 1fr
    }

    .values-grid {
        grid-template-columns: 1fr
    }

    .team-card {
        grid-template-columns: 1fr
    }

    .team-card img {
        aspect-ratio: 16/10
    }

    .story-media .stamp {
        left: auto;
        right: -6px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1200px
    }
}

.spr-navbar {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: .55rem 0;
    transition: box-shadow .3s
}

.spr-navbar.scrolled {
    box-shadow: 0 8px 30px -20px rgba(7, 14, 61, .5)
}

.spr-navbar .navbar-brand {
    padding: 0;
    margin: 0
}

.spr-navbar .navbar-brand img {
    height: 52px;
    width: auto
}

.spr-navbar .navbar-nav {
    gap: 0
}

.spr-navbar .nav-link {
    font-family: "Hanken Grotesk";
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
    padding: .6rem .8rem;
    position: relative;
    transition: color .2s
}

.spr-navbar .nav-item.show .nav-link,
.spr-navbar .nav-link.active,
.spr-navbar .nav-link:focus,
.spr-navbar .nav-link:hover {
    color: var(--royal)
}

.spr-navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: .8rem;
    right: .8rem;
    bottom: .35rem;
    height: 2px;
    background: var(--gold)
}

.spr-navbar .dropdown-menu {
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: .5rem;
    margin-top: .4rem;
    min-width: 230px
}

.spr-navbar .dropdown-menu.two-col {
    min-width: 440px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px
}

.spr-navbar .dropdown-item {
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    padding: .5rem .75rem;
    white-space: normal
}

.spr-navbar .dropdown-item:focus,
.spr-navbar .dropdown-item:hover {
    background: var(--cyan-tint);
    color: var(--royal)
}

.spr-navbar .dropdown-item.dd-cta {
    grid-column: 1/-1;
    background: var(--navy);
    color: #fff;
    text-align: center;
    font-weight: 700;
    margin-top: .25rem
}

.spr-navbar .dropdown-item.dd-cta:hover {
    background: var(--royal);
    color: #fff
}

.spr-navbar .navbar-toggler {
    border: 0;
    color: var(--navy);
    font-size: 1.5rem;
    padding: .25rem .5rem;
    line-height: 1
}

.spr-navbar .navbar-toggler:focus {
    box-shadow: none
}

.navbar-quote {
    margin-left: .4rem
}

@media (max-width:991.98px) {
    .spr-navbar .navbar-collapse {
        background: #fff;
        margin-top: .5rem;
        border-top: 1px solid var(--line);
        padding: .5rem 0 .75rem
    }

    .spr-navbar .nav-link.active::after {
        display: none
    }

    .spr-navbar .dropdown-menu {
        box-shadow: none;
        border: 0;
        border-left: 2px solid var(--gold);
        border-radius: 0;
        margin: .15rem 0 .35rem .8rem;
        padding: .15rem 0
    }

    .spr-navbar .dropdown-menu.two-col {
        display: block;
        min-width: 0
    }

    .navbar-quote {
        margin: .6rem 0 0
    }
}

.to-top {
    position: fixed;
    right: 18px;
    bottom: 84px;
    z-index: 90;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    border: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .3s;
    box-shadow: var(--shadow-sm)
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: none
}

.to-top:hover {
    background: var(--gold);
    color: var(--navy-900)
}

@media (min-width:721px) {
    .to-top {
        bottom: 26px
    }
}

.slide .bg {
    width: 100%;
    height: 100%;
    object-position: center;
}

.cta-icon {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 150px;
    color: rgba(244, 200, 30, .2);
    pointer-events: none
}

@media (max-width:1000px) {
    .cta-icon {
        display: none
    }
}

.br-points li i,
.fc i,
.feat-list li i,
.ql .ic i,
.r-icon i,
.value .ic i {
    line-height: 1
}

.book-controls .pg i,
.slider-nav i {
    font-size: 1.1rem
}

.ql-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow)
}

@media (max-width:720px) {
    .ql-card {
        padding: 10px
    }
    .util a {
        font-size: 10px;
    }
    .common_arrow{
        width: 30px !important;
        height: 30px !important; 
    }
    .common_arrow svg{
        width: 9px !important;
    }
    .brand img {
        width: 150px;
    }
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0
}

p {
    margin: 0
}

figure {
    margin: 0
}

address {
    margin: 0;
    font-style: normal
}

.foot-grid-bs {
    padding-bottom: 52px
}

.default-page-content {
    padding-block: 70px
}



/************* Registration Page Style Start *************/

.registration_choice {
    text-align: center;
    margin-bottom: 40px;
}

.registration_choice h2 {
    margin-bottom: 30px;
    text-decoration: underline;
}

.registration_choice_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.registration_option {
    padding: 15px 25px;
    border: 2px solid #222;
    background: #fff;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.registration_option:hover,
.registration_option.active {
    background: #222;
    color: #fff;
}

.registration_form_box {
    display: none;
}

.registration_form_box.active {
    display: block;
}

@media only screen and (max-width: 600px) {
    .registration_option {
        font-size: 14px;
        padding: 12px 15px;
    }
    .registration_choice_buttons {
        gap: 5px;
        flex-wrap: nowrap;
        align-items: stretch;
        overflow-x: scroll;
    }
}

/************** Registration Page Style End **************/