@import url('https://fonts.googleapis.com/css2?family=Forum&family=Jost:ital,wght@0,100..900;1,100..900&family=Marcellus&display=swap');

:root {

    --color-brand:        #8b4f1d;
    --color-brand-hover:  #aa6024;


    --color-surface-white:  #ffffff;
    --color-surface-cream:  #f8f2ea;
    --color-surface-sand:   #ede4d6;


    --color-text-dark:   #2a1505;
    --color-text-muted:  #7a5535;
    --color-text-white:  #ffffff;


    --color-border-soft: #ede4d6;


    --color-badge-warm:  #ede4d6;
    --color-badge-mid:   #ddd0be;


    --color-overlay-dark-35:  rgba(0, 0, 0, 0.35);

    --fs-base:    1rem;
    --fs-tag:     1rem;
    --fs-label:   1.125rem;
    --fs-heading: 1.75rem;
    --fs-title:   2rem;

    --badge-font-size:   var(--fs-base);
    --badge-padding-y:   .3rem;
    --badge-padding-x:   .85rem;
    --badge-font-weight: 300;


    --color-surface-linen: #faf7f2;


    --color-text-dark-faded: rgba(42, 21, 6, 0.55);


    --fs-display: 3rem;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}
body {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    
}

.ff-jost {
    font-family: 'Jost', sans-serif;
}
.ff-forum {
    font-family: 'Forum', sans-serif;
}

.ff-marcellus {
    font-family: 'Marcellus', sans-serif;
}
/* HERO */
.hero-custom {
    height: 65vh;
    min-height: 450px;
    position: relative;
}
.navbar-custom {
    z-index: 1000;
}

.hero-overlay-custom {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* HERO TEXT */
.hero-text-custom {
    background-color: rgba(0, 0, 0, 0.35);
    position: relative;
}
.hero-text-custom::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    left: -100%;
}

/* NAV LINKS */
.nav-link-custom {
    position: relative;
    color: white !important;
    font-size: 1rem;
    letter-spacing: 1px;
    padding-bottom: 5px;
    font-weight: 500;
}

.nav-link-custom::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link-custom.dark {
    color: black !important;
}

.nav-link-custom.dark::after {
    background: black;
}

.nav-link-custom:hover::after {
    width: 100%;
}

.nav-link-custom.active::after {
    width: 100%;
}

/* BUTTON */
.btn-consult-custom {
    border: 1px solid rgba(255, 255, 255, 0.50);
    color: white;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 8px 18px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 0px;
    padding-left: 32px;
    padding-right: 32px;
}

.btn-consult-custom:hover {
    background: rgba(255, 255, 255, 0.2);
    color:white;
    border: 1px solid white;
    border-radius: 0px;
}

.btn-consult-custom.dark {
    border: 1px solid rgba(0, 0, 0, 0.35);
    background: rgba(0, 0, 0, 0.05);
    color: black;
}

.btn-consult-custom.dark:hover {
    border: 1px solid black;
    background: rgba(0, 0, 0, 0.1);
}

/* CONTAINER WIDTH (optional premium tweak) */
.container-custom {
    /* max-width: 95%; */
}
.navbar-logo-custom {
    filter: invert(1);
}

.navbar-logo-custom.dark {
    filter: invert(0);
}

/* ===== DROPDOWN ===== */

.navbar-custom .container-custom {
    position: relative;
}
.dropdown-menu-custom {
    display: block !important;

    position: absolute;

    top: calc(10px); 

    left: 0;

    border: none;
    border-radius: 0;
    padding: 20px 30px;
    min-width: 260px;
    background: #f5f5f5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.25s ease, transform 0.25s ease;
}

.dropdown-custom {
    position: relative;
}

.dropdown-hover-custom:hover .dropdown-menu-custom {
    opacity: 1;
    transform: translateY(20px);
    visibility: visible;
    pointer-events: auto;
}

/* Remove caret */
.nav-item-custom.dropdown-custom > .nav-link-custom::after {
    display: none;
}

/* Items */
.dropdown-item-custom {
    font-size: 0.9rem;
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-item-custom:hover {
    background: transparent;
    color: black;
}

.action-btn {
    padding: 12px;
    padding-left: 16px;
    padding-right: 16px;
    color: white;
    background-color: #8b4f1d;
    text-decoration: none;
    transition: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}

.action-btn:hover {
    background-color: #aa6024
}

/* FAQ */

.faq-container {
    background-color: #F6F7F6;
    padding-top: 32px;
    padding-bottom: 32px;
}

.faq {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-size: 36px;
    color: #1f2937;
    font-family: 'Forum', sans-serif;
}

.faq-item {
    border-bottom: 1px solid #d1d5db;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111827;
}

.faq-question:focus-visible {
    outline: none;
}

.faq-question:hover {
    color: #aa6024;
}

.icon {
    font-size: 36px;
    transition: transform 0.3s ease;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease;
    opacity: 0;
    font-size: 18px;
}

.faq-answer p {
    padding-bottom: 20px;
    margin: 0;
    color: #4b5563;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

/* FOOTER */
.footer-custom {
    background: #8b4f1d;
    color: #fff;
}

.footer-custom .nav-link {
    color: white;
}


.on-scroll-navbar {
    position: fixed;
    top: -150px;
    left: 0;
    z-index: 10000;
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    background-color: #8b4f1d;
    transition: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    padding-top: 8px;
    padding-bottom: 8px;
}


.on-scroll-navbar.active {
    top: 0px;
}

@media (max-width: 990px) {
    .on-scroll-navbar {
        display: none;
    }
}


.card-custom {
    padding: 32px;
    background: #8b4f1d;
    color: white;
    border-radius: 16px;
    transition: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}

.card-custom:hover {
    background-color: #aa6024;
    transform: scale(1.01);
}

@media (max-width: 990px) {
    
    .card-custom  {
        padding: 16px;
        
    }
}

.description-action-btn {
    padding: 12px;
    padding-left: 16px;
    padding-right: 16px;
    color: white;
    background-color: #8b4f1d;
    text-decoration: none;
    transition: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    font-size: 12px;
    font-weight: bold;
    border: none;
    margin-top: 32px;
}

.description-action-btn:hover {
    background-color: #aa6024
}

.bg-legacy-gray {
    background-color: #F6F7F6;
}

.hero-section-full-image {
    min-height: fit-content;
    max-height: 400px;
    padding: 32px;
    background-size: cover;
    background-position: center;
}

@media (min-width: 768px) {
    .hero-section-full-image {
        min-height: 50vh;
        background-position: 70% center;
    }
}

.hover-card-as4 {
    transition: all 0.3s ease;
}

.hover-card-as4:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    opacity: 1;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #4CAF50;
}

.model-card-image {
    transform: scale(0.6);
    opacity: 0.7;
}

/* SAFARI IMAGE TEXT OVERLAY */
/* Container */
.image-card-models {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

/* Image */
.image-card-models img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

/* Overlay */
.image-card-models .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 20px;

  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover effects */
.image-card-models:hover img {
  transform: scale(1.05);
}

.image-card-models:hover .overlay {
  opacity: 1;
}

/* Typography */
.image-card-models .overlay h5 {
  margin-bottom: 10px;
}

.image-card-models .overlay p {
  font-size: 1rem;
  line-height: 1.5;
}


/* Background */
.hero-section-models {
  min-height: 50vh;
  position: relative;
}

/* Dark overlay */
.hero-section-models::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

/* Keep content above overlay */
.hero-section-models .container {
  position: relative;
  z-index: 2;
}

/* Form card */
.form-card-models {
  background: #f8f8f8;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Minimal input style (like screenshot) */
.form-control-custom-models {
  border: none;
  border-bottom: 1px solid #999;
  border-radius: 0;
  background: transparent;
}

.form-control-custom-models:focus {
  box-shadow: none;
  border-color: #000;
  background-color: transparent;
}


@media (min-width: 1500px) {
    .container {
        max-width: 1460px;
    }
}

.feature-box {
  max-width: 300px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  color: #8b4f1d; /* maro */
  margin-bottom: 20px;
}

.feature-box h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-box p {
  color: #555;
  line-height: 1.6;
}

.feature-box {
  max-width: 300px;
  margin: 0 auto; /* THIS centers each block */
}

.feature-box img {
  max-height: 70px;
  object-fit: contain;
}

.footer-logo {
    filter: invert(1);
}

.border-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.32) !important;
}

h1, h2 {
    font-size: 2.5rem !important;
}

header {
    display: block;
    z-index: 100;
    
}

header {
    transition: all 0.7s ease-in-out 0s;
}

header.bg-nav {
    background-color: #8b4f1d;
    padding-bottom: 0px !important;
    transition: all 0.7s ease-in-out 0s;
    top: 0px;
    backdrop-filter: blur(10px);
}
header.bg-nav .container{
    padding-bottom: unset !important;
}
.bg-header,
.navbar-custom {
    width: 100%;
    max-width: 100%;
}
.phone-icon{
    text-decoration: none;
    letter-spacing: -1px;
    line-height: 1.1;
}
.phone-icon svg{
    height: 23px;
    margin-right: 10px;
}
header.d-none {
    top: -150px;
}

.bg-nav .border-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0) !important;
}

#to-top {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0% 0% !important;
    box-shadow: rgba(255, 255, 255, 0.16) 0px 0px 2px 0px !important;
    color: #0b1f3a;
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 55;
    overflow: auto;
    font-weight: normal;
    font-size: 20px;
    line-height: 60px;
    text-align: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.7s ease-in-out 0s;
    border-radius: 50%;
}
#to-top:hover {
    background: rgba(0, 0, 0, 0.9) none repeat scroll 0% 0% !important;
}

@media (max-width:512px) {
    header{
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
    }
    header .container.border-nav {
        border-bottom: 0px !important;
    }
    .navbar-logo-custom {
        height: 45px;
    }
}

/* reset */
.navbar-toggler {
    border: none;
    padding: 0;
    box-shadow: none !important;
}

/* container */
.premium-toggler {
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

/* liniile */
.line,
.line::before,
.line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ffffff;
    left: 0;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* linia mijloc */
.line {
    top: 50%;
    transform: translateY(-50%);
}

/* sus */
.line::before {
    top: -9px;
    width: 70%;
}

/* jos */
.line::after {
    top: 9px;
    width: 85%;
}

/* ✨ hover premium */
.premium-toggler:hover .line::before {
    width: 100%;
}

.premium-toggler:hover .line::after {
    width: 100%;
}

/* 🔄 stare activă (X elegant) */
.navbar-toggler[aria-expanded="true"] .line {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .line::before {
    transform: translateY(9px) rotate(45deg);
    width: 100%;
}

.navbar-toggler[aria-expanded="true"] .line::after {
    transform: translateY(-9px) rotate(-45deg);
    width: 100%;
}

.footer-icon {
    width: 36px;
    height: 36px;
    fill: white;
    transition: fill 0.3s ease;
}

@media (max-width: 991.98px) {
   .navbar .dropdown-menu {
      display: none !important;
   }
}

.btn-outline-primary{
    --bs-btn-border-color: var(--color-brand);
    --bs-btn-color: var(--color-brand);
    --bs-btn-hover-bg: var(--color-brand);
    --bs-btn-hover-color: #fff;
}
.btn-outline-primary:hover {
    --border-color: var(--color-brand);
}

.stats-strip {
    background: var(--color-surface-cream);
    border-bottom: 1px solid var(--color-border-soft);
}

.stats-strip_col {
    border: 1px solid var(--color-border-soft);
    border-bottom: none;
    border-top: none;
}


.stats-strip_number {
    font-size: 32px;
    color: var(--color-brand);
    line-height: 1;
}

.stats-strip_label {
    color: var(--color-text-dark);
    opacity: .55;
}

#modele {
    background: var(--color-surface-white);
    padding: 5rem 0;
}

.pf-tag {
    font-size: var(--fs-tag);
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-brand);
}

.pf-divider {
    width: 36px;
    height: 2px;
    background: var(--color-brand);
}

.ms-title {
    font-family: 'Forum', sans-serif;
    color: var(--color-text-dark);
    font-size: var(--fs-title);
}

.ms-intro-text {
    max-width: 560px;
    color: var(--color-text-muted);
    font-size: var(--fs-base);
    line-height: 1.7;
}

.ms-col-name  { width: 28%; }
.ms-col-size  { width: 15%; }
.ms-col-badge { width: 15%; }

.ms-table-wrap {
    border-color: var(--color-border-soft);
}

.ms-thead {
    background: var(--color-brand);
    color: var(--color-text-white);
    font-size: var(--fs-tag);
    letter-spacing: .16em;
    text-transform: uppercase;
}

.pf-model-row {
    border-bottom: 1px solid var(--color-border-soft);
    transition: background .18s;
}

.pf-model-row:last-child {
    border-bottom: none;
}

.pf-model-row:hover {
    background: var(--color-surface-cream);
}

.ms-row-featured {
    background: var(--color-surface-cream);
}

.ms-cell-name {
    color: var(--color-text-dark);
    font-family: 'Forum', sans-serif;
}

.ms-cell-name-featured {
    color: var(--color-brand);
}

.ms-cell-size {
    color: var(--color-text-muted);
    font-size: var(--fs-base);
}

.ms-cell-desc {
    color: var(--color-text-muted);
    font-size: var(--fs-base);
    line-height: 1.6;
}

.ms-badge {
    font-size:   var(--badge-font-size);
    padding:     var(--badge-padding-y) var(--badge-padding-x);
    font-weight: var(--badge-font-weight);
}

.ms-badge-warm {
    background: var(--color-badge-warm);
    color: var(--color-text-muted);
}

.ms-badge-9 {
    background: var(--color-badge-mid);
    color: var(--color-text-muted);
}

.ms-badge-year {
    background: var(--color-brand);
    color: var(--color-text-white);
}

.ms-accordion .accordion-button {
    font-family: 'Forum', sans-serif;
    font-size: var(--fs-label);
    background: var(--color-surface-white);
    color: var(--color-text-dark);
}

.ms-accordion .accordion-button:not(.collapsed) {
    color: var(--color-brand);
    background: var(--color-surface-cream);
    box-shadow: none;
}

.ms-accordion .accordion-button:focus {
    box-shadow: none;
}

.ms-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--color-border-soft);
}

.ms-accordion .accordion-item:last-child {
    border-bottom: none;
}

.ms-accordion .accordion-body {
    font-size: var(--fs-base);
    color: var(--color-text-muted);
    line-height: 1.75;
}

.ms-spotlight {
    border: 1px solid var(--color-border-soft);
}

.ms-carousel {
    min-height: 380px;
    height: 100%;
}

.ms-carousel .carousel-inner,
.ms-carousel .carousel-item {
    height: 100%;
    min-height: 380px;
}

.ms-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ms-carousel .carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .45);
    opacity: 1;
    margin: 0 4px;
}

.ms-carousel .carousel-indicators .active {
    background: var(--color-surface-white);
}

.ms-carousel .carousel-control-prev,
.ms-carousel .carousel-control-next {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: .6rem;
    background: var(--color-overlay-dark-35);
    opacity: 1;
    border-radius: 0;
}

.ms-carousel .carousel-control-prev {
    left: auto;
    right: 46px;
}

.ms-carousel .carousel-control-next {
    right: 6px;
}

.ms-carousel .carousel-control-prev-icon,
.ms-carousel .carousel-control-next-icon {
    width: 14px;
    height: 14px;
}

.ms-meta {
    background: var(--color-surface-cream);
    padding: 2rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ms-meta-title {
    font-family: 'Forum', sans-serif;
    color: var(--color-text-dark);
    font-size: var(--fs-heading);
    font-weight: 400;
}

.ms-meta-sub {
    font-family: 'Forum', sans-serif;
    font-style: italic;
    color: var(--color-brand);
    font-size: var(--fs-base);
}

.ms-spec i {
    color: var(--color-brand);
}

.ms-spec span {
    font-size: var(--fs-base);
    color: var(--color-text-muted);
}

.ms-cta {
    background: var(--color-brand);
    color: var(--color-text-white);
    font-size: var(--fs-tag);
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background .2s;
}

#contact {
    background: var(--color-surface-linen);
    padding: 7rem 0;
}

.cta-section_headline {
    font-size: 64px !important;
    line-height: 1.1;
    font-family: "Forum", serif;
}

.cta-section_headline em {
    font-style: italic;
    color: var(--color-brand);
    font-family: "Forum", sans-serif;
    font-size: 64px !important;
}

.cta-section_body {
    color: var(--color-text-dark-faded);
    font-size: var(--fs-base);
    line-height: 1.85;
    max-width: 420px;
    margin: 0 auto 3rem;
}

.cta-section_footnote {
    opacity: .35;
}

.pf-img {
    overflow: hidden;
    display: block;
}
.pf-img img {
    display: block; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .75s cubic-bezier(.25,1,.5,1);
}
.pf-img:hover img { 
    transform: scale(1.04); 
}

.pf-img.sectionare {
    height: 60vh;
    min-height: 360px;
}


.gl-section {
    background: var(--color-surface-linen);
    padding: 7rem 0;
}
 
.gl-eyebrow {
    font-size: var(--fs-tag);
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-brand);
}
 
.gl-title {
    font-family: 'Forum', sans-serif;
    font-weight: 400;
    font-size: var(--fs-title);
    color: var(--color-text-dark);
}
 
.gl-rule {
    width: 36px;
    height: 2px;
    background: var(--color-brand);
    display: block;
}
 
.gl-lead {
    color: var(--color-text-dark-faded);
    font-size: var(--fs-base);
    line-height: 1.8;
    max-width: 420px;
}
 
.gl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
 
@media (max-width: 767px) {
    .gl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
 
@media (max-width: 479px) {
    .gl-grid {
        grid-template-columns: 1fr;
    }
}
 
 
.gl-cell {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    aspect-ratio: 4 / 3;
}
 
.gl-cell_img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.25, 1, .5, 1);
}
 
.gl-cell:hover .gl-cell_img {
    transform: scale(1.06);
}
 
 
.gl-cell_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(42, 21, 6, .75) 0%,
        rgba(42, 21, 6, .10) 55%,
        transparent          100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: .35rem;
    padding: 1.1rem 1.25rem;
    opacity: 0;
    transition: opacity .32s ease;
}
 
.gl-cell:hover .gl-cell_overlay {
    opacity: 1;
}
 
.gl-cell_caption {
    color: var(--color-text-white);
    font-size: var(--fs-tag);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.2;
}
 
.gl-cell_icon {
    color: var(--color-text-white);
    font-size: 1.1rem;
    opacity: .65;
    order: -1;
    align-self: flex-end;
}
 
 
.gl-modal .modal-dialog {
    max-width: min(92vw, 1140px);
}
 
.gl-modal .modal-content {
    background: var(--color-text-dark);
    border: none;
    border-radius: 0;
}
 
.gl-modal .modal-body {
    padding: 0;
    position: relative;
}
 
.gl-modal_img {
    display: block;
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}
 
 
.gl-modal_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .8rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
 
.gl-modal_caption {
    color: var(--color-text-white);
    font-size: var(--fs-tag);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 300;
    opacity: .6;
    margin: 0;
}
 
.gl-modal_counter {
    color: var(--color-text-white);
    font-size: var(--fs-tag);
    font-weight: 300;
    opacity: .3;
    white-space: nowrap;
}
 
 
.gl-modal_close {
    position: absolute;
    top: .6rem;
    right: .6rem;
    z-index: 10;
    background: var(--color-overlay-dark-35);
    border: none;
    color: var(--color-text-white);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 0;
    transition: background .2s;
}
 
.gl-modal_close:hover {
    background: var(--color-brand);
}
 
.gl-modal_prev,
.gl-modal_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--color-overlay-dark-35);
    border: none;
    color: var(--color-text-white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 0;
    transition: background .2s;
}
 
.gl-modal_prev { left: .5rem; }
.gl-modal_next { right: .5rem; }
 
.gl-modal_prev:hover,
.gl-modal_next:hover {
    background: var(--color-brand);
}
 
@media (max-width: 479px) {
    .gl-modal_prev,
    .gl-modal_next {
        width: 32px;
        height: 32px;
        font-size: .8rem;
        opacity: .7;
    }
 
    .gl-modal_prev { left: .25rem; }
    .gl-modal_next { right: .25rem; }
}

.error{
    border: 1px solid red !important;

}