


:root {
    --color1: #fff;
    --color2: #fff;
    --color3: #CEB4A7;
	--main: #111;
	--border-r:10px;
    --block-w:1600px;
    --font-body: 'EB Garamond', serif;
    /* Self-hosted variable Cormorant Garamond (assets/css/fonts.css) — any weight 300-700. */
    --font-display: 'Cormorant Garamond', serif;
}
.hero-back section {
    width: 100%;
}
.page-id-107 .sv-travel__grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
}
.sv-price__list ul {
    margin: 25px 0px;
    padding: 0;
    list-style: none;
}
/* ==========================================================================
   Bridal Makeup Portfolio  (page-portfolio.php + [featured_bridal_looks])
   ========================================================================== */

/* --- Intro Text: text left, picture right --- */
.sv-travel h2 {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 37px;
}
.pf-intro {

    margin: 0 auto;
    padding: 48px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.pf-intro__text p {
    margin: 0 0 16px;
    line-height: 1.75;
}

.pf-intro__text p:last-child {
    margin-bottom: 0;
}

.pf-intro__media {
    text-align: center;
}

.pf-intro__media img, .pf-intro__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-r);
}

@media (max-width: 820px) {
    .pf-intro {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 20px;
    }
}

/* --- Gallery: max 3 per row, small gap, identical height --- */
/* Six tracks, not three, and every tile spans two of them. That is the same
   layout - two tracks plus the gap between them measure exactly one third of
   the row, so full rows are pixel-identical to a repeat(3, 1fr) grid - but it
   halves the step a tile can be placed on, which is what lets a leftover of one
   or two photos sit centred on the last row instead of hugging the left edge
   (rules below). */
.pf-gallery {

    margin: 0 auto;
    padding: 0 20px 56px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.pf-item {
    margin: 0;
    position: relative;
    grid-column: span 2;
}

/* Centre the last row when the count is not a multiple of three.
   Scoped to the three-column layout, so the narrower breakpoints below start
   from a clean slate rather than having to undo these placements. */
@media (min-width: 901px) {

    /* one photo over (7, 10, 13 ... in total): centre it */
    .pf-item:last-child:nth-child(3n + 1) {
        grid-column: 3 / span 2;
    }

    /* two photos over (8, 11, 14 ...): centre the pair */
    .pf-item:nth-last-child(2):nth-child(3n + 1) {
        grid-column: 2 / span 2;
    }

    .pf-item:nth-last-child(2):nth-child(3n + 1) ~ .pf-item {
        grid-column: 4 / span 2;
    }
}

/* aspect-ratio + object-fit: every tile is the same height within a row,
   regardless of the source photo (the two crops are 3:4). */
.pf-img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #f1ece8;
    border-radius: var(--border-r);
}

.pf-cap {
    margin: 6px 2px 0;
    font-size: 13px;
    line-height: 1.35;
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-shadow: 0px 0px 11px #000;
    font-size: 24px;
    width: 88%;
    opacity: 0;
}

@media (max-width: 900px) {
    /* Two columns, same doubling trick: four tracks, two per tile. */
    .pf-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* An odd photo out in the two-column layout gets centred the same way. */
@media (max-width: 900px) and (min-width: 521px) {
    .pf-item:last-child:nth-child(2n + 1) {
        grid-column: 2 / span 2;
    }
}

@media (max-width: 520px) {
    .pf-gallery {
        grid-template-columns: 1fr;
    }

    /* One tile per row: the span would otherwise create a second, implicit column. */
    .pf-item {
        grid-column: auto;
    }
}

/* Featured block variant (Services page) — a touch tighter vertically. */
.pf-featured {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* --- CTA (shared with page-services.php, page-about.php) --- */
.pf-cta,
.sv-cta,
.ab-cta {
    text-align: center;
    padding: 56px 20px 72px;

    background-position: center;
    border-radius: var(--border-r);

}

.pf-cta h2, .sv-cta h2, .ab-cta h2 {
    margin: 0 auto;
    margin-bottom: 41px;
}


/* ==========================================================================
   Wedding Makeup Services  (page-services.php)
   ========================================================================== */

/* --- Introductory --- */
.sv-intro {
    padding: 48px 20px;
}

.sv-intro__text {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.sv-intro__text p {
    margin: 0 0 16px;
    line-height: 1.75;

}

.sv-intro__text p:last-child {
    margin-bottom: 0;
}

/* --- Services and prices: price list left, portrait right --- */
.sv-pricing {
    padding: 8px 20px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
}

.sv-price {
    padding: 26px 0;
    border-bottom: 1px solid #e6e0dc;
}

.sv-price:first-child {
    padding-top: 0;
}

.sv-price:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sv-price__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.sv-price__name {
    margin: 0;

    line-height: 1.25;
}

/* Dotted leader between the service name and its price. */
.sv-price__head::before {
    content: '';
    order: 1;
    flex: 1 1 auto;
    align-self: end;
    margin-bottom: 6px;
    border-bottom: 1px dotted #c9c1bb;
}

.sv-price__cost {
    order: 2;
    white-space: nowrap;
    font-size: clamp(18px, 2vw, 22px);
    font-style: italic;
}

.sv-price__list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.sv-price__list li {
    position: relative;
    padding-left: 22px;
    line-height: 1.8;
}

.sv-price__list li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 24px;
    width: 10px;
    height: 1px;
    background: var(--main);
    opacity: 0.5;
}

.sv-pricing__media {
    position: sticky;
    top: 110px; /* header height, matches html { scroll-padding-top } */
}

.sv-pricing__media img,
.sv-pricing__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-r);
}

@media (max-width: 820px) {
    .sv-pricing {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 8px 20px 32px;
    }

    /* Photo first on narrow screens, prices under it. */
    .sv-pricing__media {
        position: static;
        order: -1;
    }

    .sv-intro {
        padding: 32px 20px;
    }
}


/* ==========================================================================
   About & Contact  (page-about.php)
   ========================================================================== */

/* --- Intro: text left, portrait right --- */
.ab-intro {
    padding: 48px 20px;
    display: grid;
    grid-template-columns: 100%;
    gap: 44px;
    align-items: center;
    text-align: center;
    margin-bottom: 75px;
}

.ab-intro__text h2 {
    margin: 0 auto;
    margin-bottom: 29px;
}

.ab-intro__text p {
    margin: 0 0 16px;
    line-height: 1.75;
}

.ab-intro__text p:last-child {
    margin-bottom: 0;
}

.ab-intro__media {
    text-align: center;
}

.ab-intro__media img{
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-r);
}

.ab-intro__media img, .ab-intro__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 50%;
    width: 150px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    padding: 15px;
    margin: -40px auto;
}

/* --- Story: text + optional photo, sides alternating.
       One <section> per item, so each one gets its own .in-view fade. --- */
.ab-story {
    padding: 28px 20px;
}

.ab-story__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

/* Every other photo goes to the left, so the column edge alternates.
   Parity is counted across the story sections, not inside one. */
.ab-story:nth-child(even of .ab-story) .ab-story__media {
    order: -1;
}

/* No photo -> the text keeps the intro's measure instead of stretching wide. */
.ab-story__item--plain {
    grid-template-columns: 1fr;
    max-width: 900px;
}

.ab-story__text h2, .ab-story__text h3 {
    margin: 0 0 24px;
}

.ab-story__text p {
    margin: 0 0 16px;
    line-height: 1.75;
}

.ab-story__text p:last-child {
    margin-bottom: 0;
}

.ab-story__media img, .ab-story__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-r);
    aspect-ratio: 2/3;
    object-fit: cover;
}

@media (max-width: 820px) {
    .ab-intro {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 20px;
    }

    .ab-story {
        padding: 20px;
    }

    .ab-story__item {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Photo above its text on narrow screens, whichever side it sits on. */
    .ab-story__media {
        order: -1;
    }
}

/* --- Travel & Booking Requirements --- */
.sv-travel {
    padding: 48px 20px;
}


.sv-faq h2 {
    margin: 0 0 28px;
}

.sv-travel__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sv-travel__item {
    padding: 26px 24px;
    background: #faf7f5;
    border-radius: var(--border-r);
    line-height: 1.7;
}

.sv-travel__item i {
    display: block;
    margin-bottom: 12px;
    font-size: 22px;
    opacity: 0.55;
}

@media (max-width: 820px) {
    .sv-travel {
        padding: 32px 20px;
    }

    .sv-travel__grid {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ: native <details>, no JS --- */
.sv-faq {
    padding: 48px 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 650px;
}

.sv-faq__list {
    max-width: 900px;
}

.sv-faq__item {
    border-bottom: 1px solid #e6e0dc;
}

.sv-faq__q {
    cursor: pointer;
    list-style: none;
    padding: 20px 44px 20px 0;
    position: relative;
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.4;
}

/* Hide the default disclosure triangle (Safari/Chrome). */
.sv-faq__q::-webkit-details-marker {
    display: none;
}

.sv-faq__q::marker {
    content: '';
}

/* Chevron, rotates when the item opens. */
.sv-faq__q::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s;
}

.sv-faq__item[open] .sv-faq__q::after {
    transform: translateY(-20%) rotate(-135deg);
}

.sv-faq__q:hover {
    opacity: 0.65;
}

.sv-faq__a {
    padding: 0 44px 24px 0;
    line-height: 1.75;
}

.sv-faq__a p {
    margin: 0 0 12px;
}

.sv-faq__a p:last-child {
    margin-bottom: 0;
}

@media (max-width: 820px) {
    .sv-faq {
        padding: 32px 20px;
    }
}


html {
	scroll-padding-top: 100px; /* высота хедера */
}


section#video {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.vid-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.im ~ .im ~ .im ~ .im {
    margin-top: 0px;
}
.im ~ .im ~ .im {
    margin-top: -85px;
}
.im ~ .im {
    margin-top: 85px;
}

.im {
    position: relative;
    height: fit-content;
}
.im p {
    position: relative;
    z-index: 2;
    bottom: 0;
    left: 0;
    color: var(--color3);
    font-size: 26px;
    margin: 0;
    padding: 5px 0px;
    margin-bottom: 61px;
    text-align: center;
}
.im img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}
section.f-grid-ims .images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
}
.hero-back p {
    color: #fff;
    width: fit-content;
    border-radius: 30px;
    margin-top: 15px;
    width: 100%;
    font-size: 22px;
    text-align: left;
    margin-bottom: 29px;
}
.hero-back h2 {
    color: #fff;
    max-width: 650px;
    font-size: 26px;
    margin-bottom: 73px;
    font-size: 90px;
    margin: 0;
    line-height: 0.9;
}
.hero-back h2  strong {
    font-style: italic;
    /* Cormorant Garamond's variable range starts at 300, so 100 would round up
       to it anyway - asked for explicitly to keep the rendered weight honest. */
    font-weight: 300;
    font-family: var(--font-display);
}
.hero-back h1 {
    font-size: 20px;
    margin: 0;
    padding: 0;
    line-height: 1;
    letter-spacing: 5px;
    margin-bottom: 32px;
    color: var(--color3);
}

.hero-back {
    background-size: cover;
    background-position: center;
    height: calc(100vh - 79px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-shadow: 0px 0px 50px #000;
    min-height: 1050px;
    position: relative;
    overflow: hidden;
}
.hero-back__bg {
    position: absolute;
    left: 0;
    right: 0;
    top: -40%;
    height: 180%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    pointer-events: none;
}
/* Autoplaying hero background video. Sits above the poster image (.hero-back__bg,
   also z-index -1 but earlier in the DOM) and below the ::after gradient + text. */
.hero-back__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    background: #111;
    border-top: 106px solid #000000;
}
.error404 section.home-zag.small h1 {
    color: #111;
    margin-top: 172px;
}
@media (prefers-reduced-motion: reduce) {
    /* Reduced-motion users keep the still hero image instead of the video. */
    .hero-back__video { display: none; }
}
.hero-back::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 43%);
}
.hero-back > section > div {
    position: relative;
    z-index: 2;
    display: flex;
    text-align: center;
}
.hero-back > section > div .text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
}
.hero-video-window {
    position: relative;
    width: 100%;
    height: 45vh;
}
.hero-back > section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.hero-video-window::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #111;
    background-size: contain;
    z-index: -1;
    border-radius: 26px;
    opacity: 0.8;
}
.hero-back svg {
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 100%;
    height: auto;
    margin-bottom: -5px;
}
.hero-video-window video {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 30px;
}
.hero-video-bigplay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: rgb(255 255 255 / 85%);
    color: #111;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, opacity .2s ease, transform .2s ease;
}
.hero-video-bigplay:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.05);
}
.hero-video-bigplay i {
    margin-left: 3px;
}
.hero-video-window.is-playing .hero-video-bigplay {
    opacity: 0;
    pointer-events: none;
}
.hero-video-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: linear-gradient(to top, rgb(0 0 0 / 75%), rgb(0 0 0 / 0%));
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
}
.hero-video-window:hover .hero-video-controls,
.hero-video-window:focus-within .hero-video-controls,
.hero-video-window.is-playing .hero-video-controls {
    opacity: 1;
    transform: translateY(0);
}
.hero-video-play,
.hero-video-mute,
.hero-video-fullscreen {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgb(255 255 255 / 15%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s ease;
}
.hero-video-play:hover,
.hero-video-mute:hover,
.hero-video-fullscreen:hover {
    background: rgb(255 255 255 / 30%);
}
.hero-video-time {
    flex: 0 0 auto;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
}
.hero-video-progress {
    flex: 1 1 auto;
    height: 5px;
    border-radius: 5px;
    background: rgb(255 255 255 / 30%);
    cursor: pointer;
    overflow: hidden;
}
.hero-video-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--color3);
    border-radius: 5px;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
button,
a,
input,
textarea,
select {
    font-family: var(--font-body);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: start;
}
.products__grid > div {
    background: #ffffff;
    border-radius: var(--border-r);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    padding: 0;
    font-size: 16px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    grid-column: span 2;
    grid-row: span 1;
}
.products__grid > div h2 {
    text-align: left;
    margin: 0 auto;
}
.products__item:hover {
    transform: translateY(-6px);
}
.products__body {
    position: relative;
    bottom: 0;
    left: 0;
    background: var(--color1);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0px;
    box-sizing: border-box;
}
/* фото */
.products__item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    padding: 41px;
    transition: 0.4s;
    background: var(--color3);
    height: 100%;
}

/* иконка-бейдж поверх фото */
.products__icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--main);
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    z-index: 1;
}

/* контент под фото */
.products__item {
    position: relative;
    text-decoration: none;
    color: inherit;
    display: grid;
    grid-template-columns: 50% 50%;
    border-radius: var(--border-r);
    overflow: hidden;
}
.products__name {
    margin: 0;
    padding: 14px 16px 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    font-size: 22px;
    max-width: 245px;
}

/* характеристики */
.products__specs {
    list-style: none;
    margin: 0;
    padding: 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 0;
    height: fit-content;
    max-width: 200px;
}
.products__specs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    background: #f5f5f5;
    border-radius: var(--border-r);
    padding: 6px 10px;
}
.products__specs li i {
    color: var(--color1);
    width: 16px;
    flex-shrink: 0;
}
.products__specs li span {
    color: #666;
    flex: 1;
}
.products__specs li strong {
    font-weight: 700;
    color: var(--main);
}
.products__grid > a:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
}
.products__grid > a:nth-child(8) {
    grid-column: span 1;
    grid-row: span 1;
}

.activities__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 колонки */
  grid-auto-rows: 120px;                 /* базовая высота строки */
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.activities__list li {
    background: var(--color3);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0px 75px;
    border-radius: var(--border-r);
    position: relative;
    padding-left: 95px;
    font-size: 20px;
}
ul.activities__list li i {
    font-size: 28px;
    margin-bottom: 15px;
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
}

/* по умолчанию — 1×1 */
.activities__list li {
  /* стили карточки */
}

/* разные размеры вручную через :nth-child */
.activities__list li:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    background: url(/wp-content/uploads/2026/06/pexels-koprivakart-4144833-1-1.webp);
}
.activities__list li:nth-child(2) { grid-column: span 2; }                   /* 2×1 */
.activities__list li:nth-child(3) { grid-column: span 1; grid-row: span 2; }                      /* 1×2 — высокая */
.activities__list li:nth-child(4) { grid-column: span 1; }
.activities__list li:nth-child(5) { grid-column: span 1; }                   /* широкая */
.activities__list li:nth-child(6) { grid-column: span 1; grid-row: span 2;}
.activities__list li:nth-child(7) { grid-column: span 1; }
.activities__list li:nth-child(8) { grid-column: span 1; }
.activities__list li:nth-child(9) { grid-column: span 2; }

section.about-company > div img {
    border-radius: 20px;
}
section.about-company > div {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
section.about-company p, section.about-company h2 {
    color: #fff;
}
.about-company__text hr {
    opacity: 0.3;
    width: 95%;
}
section.about-company {
    overflow: visible;
    background: url(/wp-content/uploads/2026/06/pexels-wolfgang-weiser-467045605-17450309-1-1.webp);
    max-width: 100%;
    margin: 50px auto;
    background-position: center;
    background-size: cover;
    padding: 10vh 0px;
}
section.about-company::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 70%);
}

section.about-company > div {
    max-width: var(--block-w);
    display: grid;
    grid-template-columns: 48% 50%;
    gap: 3%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cs-caption .main-a {
    margin-top: 15px;
}

.cs-slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 83%), transparent);
    z-index: -1;
}
.cs-desc strong {
    background: var(--color3);
    padding: 10px 15px;
    display: block;
    margin: 35px 5px;
    text-transform: capitalize;
    border-radius: 10px;
}
.cs-desc {
    font-size: 32px;
    display: flex;
    width: 100%;
    height: fit-content;
}
body .cs-dots {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}
body .cs-dot {
    width: 25px;
    height: 25px;
    border: 0;
    border-radius: var(--border-r);
    cursor: pointer;
    background: rgba(255,255,255,.45);
    transition: transform .2s ease, background .2s ease;
    margin: 0px 4px;
}
section.home-zag.small.thanks-php h1 {
    color: #111;
}
body .cs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border: 0;
    width: 100px;
    height: 125px;
    border-radius: var(--border-r);
    cursor: pointer;
    background: rgba(255,255,255,.16);
    color: #fff;
    backdrop-filter: blur(5px);
    transition: background .2s ease, transform .2s ease;
    font-size: 30px;
}

section.home-zag.small.thanks-php {
    min-height: 61vh;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 0;
    margin: 0 auto;
    min-height: 704px;
}

body .cs-caption {
    width: var(--block-w);
    left: calc(50% - 800px);
    top: 32%;
    min-width: var(--block-w);
}
body .cs-caption h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 5vw, 92px);
    line-height: 1.05;
    font-weight: 800;
}
body .cs-caption p {
    margin: 20px 0px;
    font-size: clamp(14px, 1.8vw, 35px);
    opacity: .92;
    max-width: 850px;
}
body .cs-caption h2 {
    color: var(--color3);
}



span.wpcf7-quiz-label {
    color: #fff;
    font-size: 15px;
    margin-right: 45px;
    width: 194px;
}
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: var(--border-r);
    background: var(
    --color3);
    color: #111;
    font-size: 15px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    transform: scale(1.1);
}

.soc a {
    position: relative;
    background: #fff;
    color: #000;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: var(--border-r);
    text-align: center;
}
.soc a:hover {
    background: #111;
    color: #fff;
}
.soc a:hover span{max-height:100%;opacity:1;}
.soc a span {
    color: #111;
    position: absolute;
    width: fit-content;
    right: 42px;
    background: #fff;
    height: 100%;
    border-radius: var(--border-r);
    padding: 6px 11px;
    transition: 0.4s;
    max-height: 0px;
    opacity: 0;
    pointer-events: none;
}
.soc a i {
    margin: 0 auto;
}
.soc {
    position: fixed;
    z-index: 9988;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    right: 4px;
    font-size: 23px;
    gap: 6px;
}
.bridal-local__text h2::after {
    left: 0;
    transform: none;
    bottom: -12px;
}
th, td {
    text-align: left;
    background: #f7f7f7;
    padding: 5px 11px;
    border-radius: var(--border-r);
    transition: 0.2s;
}
tr:hover th, tr:hover td {
    background: var(--color1);
    color: #fff;
}
table {
    width: 100%;
}


hr {
    height: 1px;
    border: 0;
    margin: 31px auto;
    background: var(--color3);
    width: 100%;
    position: relative;
    overflow: visible;
}
.hero-back > section > div .text hr {
    margin: 17px 0px;
    max-width: 100px;
}
ul.cargo-list.x3.zerebchi li h3 {
    position: absolute;
    bottom: 0;
    left: 26px;
    color: #fff;
    font-size: 31px;
    text-shadow: 0px 0px 25px #000;
}
ul.cargo-list.x3.zerebchi li {
    padding: 15px;
}
ul.cargo-list.x3.zerebchi img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
	display:block;
}

section.contacty iframe {
    border-radius: var(--border-r);
    margin-top: 0;
    min-height: 450px;
}
section.contacty > div span h2 {
    margin: 0;
    padding: 0;
    padding-top: 14px;
}
section.contacty a h3 {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 33px auto;
    text-align: left;
}
section.contacty > div  span {
    /* background: rgb(255 255 255 / 92%); */
    padding: 10px 22px;
    /* border-radius: var(--border-r); */
    margin: 0;
    display: block;
    margin-bottom: 0px;
}
section.contacty > div > :nth-child(1) {
    background: rgb(255 255 255 / 94%);
    border-radius: var(--border-r);
    max-width: 472px;
    padding: 35px 32px;
}
section.contacty h3 ~ a {
    margin-bottom: 17px;
    display: block;
}
section.contacty > div {
    max-width: 100%;
    margin: 0px 25px;
    gap: 30px;
}
section.contacty h3 {
    color: #111;
    margin: 0;
    margin-bottom: 5px;
}
section.contacty {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    background: #fff;
    padding: 25px;
    border-radius: var(--border-r);
    background-image: url(/wp-content/uploads/ytrima-1.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0;
    width: 96%;
    margin: 0 auto;
}


section.services > div > a::after {
    content: '';
    position: absolute;
    left: -8%;
    bottom: -50%;
    background: var(--color3);
    border-radius: 50%;
    width: 64vh;
    height: 64vh;
    transition: 0.4s;
    transform: translateY(50%)translateX(-50%);
    opacity: 0.6;
}
section.services > div > a:hover::after {
    transform: translateY(0%)translateX(0%);
}
section.services > div > a img {
    transition: 0.4s;
    display: block;
}
section.services > div > a:hover img{transform:scale(1.1);}
section.services > div > a h3 {
    position: absolute;
    bottom: 10px;
    z-index: 9;
    color: #fff;
    font-size: 45px;
    font-weight: 500;
    text-align: center;
    width: 100%;
}
section.services > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0px;
}
section.services > div > a {
    position: relative;
    border-radius: var(--border-r);
    overflow: hidden;
}
/* Services Overview tiles (page-services-overview.php): uniform size + a fill
   image, so tiles stay even regardless of the source photo, with a fallback
   height/tone when a child page has no featured image. */
section.services > div > a {
    aspect-ratio: 4 / 3;
    min-height: auto;
    background: #6f5b4e;
}
section.services > div > a img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.services > div > a h3 {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}



nav.breadcrumb i {
    font-size: 10px;
    transform: translateY(-2px);
}
.fade.active {
    opacity: 1;
    transform: translateY(0px);
}
.fade {
    transition: 1.4s;
    opacity: 0;
    transform: translateY(25px);
}

.pro-nas-line div.right > img {
    order: 1;
    justify-self: end;
}
.pro-nas-line div img {
    max-height: 30vh;
    object-fit: contain;
    float: left;
    width: fit-content;
    border-radius: var(--border-r);
}


.pro-nas-line div.right span,
.pro-nas-line div.right  h3,
.pro-nas-line div.right  h2,
.pro-nas-line div.right  p {
    order: 2;
	text-align:left;
	padding-left:15px;
}
.pro-nas-line::after {
    content: '';
    position: absolute;
    left: calc(50% - 1px);
    background: var(--color1);
    width: 1px;
    height: calc(100% - 110px);
    top: 55px;
}
.pro-nas-line {
    max-width: var(--block-w);
    margin: 0 auto;
    position: relative;
}
.pro-nas-line div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.pro-nas-line span,
.pro-nas-line h2, .pro-nas-line p {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: right;
    padding-right: 15px;
}



.top-gallery__overlay {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 43%);
    width: 100%;
    height: 100%;
    border-radius: var(--border-r);
    transition: 0.4s;
}
span.top-gallery__icon {
    color: #fff;
    font-size: 33px;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
span.top-gallery__plate {
    position: absolute;
    display: grid;
    color: #fff;
    bottom: 10px;
    left: 10px;
}
.fancybox__caption strong,
span.top-gallery__plate strong {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}
span.top-gallery__plate-description {
    overflow: hidden;
    max-height: 40px;
}

.main-a span {
    font-weight: 600;
}
.main-a:hover .wpcf7-spinner{background:#000;}
.main-a .wpcf7-spinner {
    opacity: 1;
    position: absolute;
    z-index: 99999999;
    background: var(--color1);
    top: 50%;
    transform: translateY(-50%);
    left: -9px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 0;
    height: 26px;
	transition:0.4s;
}
section.con-form .main-a {
    color: #fff;
    border: 2px solid #fff;
}
section.con-form .main-a:hover{background:#fff;color:#111;border: 2px solid #111;}

section.con-form input, section.con-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    box-sizing: border-box;
    width: 100%;
    color: #fff;
    padding-left: 45px;
    margin-left: -35px;
    width: calc(100% + 35px);
}

section.con-form h2 {
    color: #fff;
}
section.con-form {
    background: url(/wp-content/uploads/slide-1-copyright.jpg), #090c13;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: right;
    width: 96%;
    margin: 30px 2%;
    border-radius: var(--border-r);
}


.servs-text a.active h3 {
    color: var(--color1);
}
.servs-text a h3 {
    text-align: right;
    font-size: 40px;
    font-weight: 500;
    color: #000;
    transition: 0.4s;
    position: relative;
    padding-right: 60px;
}
.servs-text a h3 i {
    font-size: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.servs-text a h3::after {
    content: '';
    position: absolute;
    right: 35px;
    top: calc(50% - -2px);
    width: 13px;
    height: 2px;
    background: #c1c1c1;
}
section.servs h2 {
    text-align: center;
}
.servs-images {
    position: relative;
}
.servs-ins {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin: 0 auto;
    max-width: 100%;
    background: #fff;
    border-radius: var(--border-r);
}
section.servs {
    padding-top: 8vh;
    padding-bottom: 8vh;
}
.servs-text a {
    position: relative;
    z-index: 2;
}
.servs-text::after {
    content: '';
    position: absolute;
    left: -11%;
    top: 0;
    width: 44%;
    height: 100%;
    background: url(/wp-content/uploads/logo.png);
    background-size: 45%;
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: center;
    z-index: 1;
    transform: rotate(-90deg);
    opacity: 0.03;
}
.servs-images img {
    position: absolute;
    height: 120%;
    width: 100%;
    object-fit: cover;
    transition: 0.8s;
    opacity: 0;
    border-radius: var(--border-r);
    filter: blur(12px);
    top: -10%;
}
.servs-images img.active {
    opacity: 1;
    filter: blur(0px);
}

section.main-site.sale .main-a {
    margin: 0 auto;
    display: block;
    margin-top: 6px;
}
section.main-site.sale .main-a {
    margin: 0 auto;
    display: block;
    margin-top: 30px;
    border: 2px solid #ffffff;
    max-height: fit-content;
}
.perevagy {
    margin-top: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}




ul.cargo-list.x2 li h3 {
    font-size: 32px;
}
ul.cargo-list.x2 {
    grid-template-columns: 1fr 1fr;
}
.marquee {
    overflow: hidden;
    white-space: nowrap;
    width: calc(100%);
    position: relative;
    z-index: 1;
    margin-top: -110px;
    margin-bottom: 50px;
}
.marquee-content p bold i {
    font-size: 38px;
}
.marquee-content p bold {
    font-size: 200px;
    color: var(--color3);
}
.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
.marquee-content p {
    display: inline-block;
    margin: 0;
    padding-right: 50px;
    font-size: 75px;
    color: var(--color1);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

h2.big {
    color: var(--color1);
    text-align: center;
    font-size: 100px;
}

.benner_2 .main-a {
    background: #fff;
    color: var(--color1);
    margin-top: 22px;
}
.benner_2 .main-a:hover {
    background: var(--color1);
    color: #fff;
}
.benner_2 {
    background: linear-gradient(45deg, var(--color1), var(--color2));
    border-radius: var(--border-r);
    color: #fff;
    padding: 1% 4%;
    padding-bottom: 3%;
}
.benner_2 strong {
    color: var(--color3);
}


.benner_2 h3 {
    letter-spacing: 1px;
    color: #fff;
    font-size: 22px;
}
.benner_2 h2{
    color: #fff;;
}
.banner_01 img.as {
    position: absolute;
    right: 24%;
    top: -16%;
    width: 50%;
    filter: brightness(0)invert(1);
}
.banner_01 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: var(--border-r);
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
}
.banner_01 h3 {
    color: #000;
    font-size: 26px;
    font-weight: 400;
}
.text-par {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0% 10%;
    position: relative;
    z-index: 2;
}

ul.cargo-list.centers h3{height:calc(100% - 45px);}
ul.cargo-list li:hover h3 {
    color:#fff;
}
ul.cargo-list li h3 {
    font-size: 20px;
    transition: 0.4s;
    display: grid;
    grid-template-columns: auto 100px;
    gap: 25px;
    box-sizing: border-box;
}
ul.cargo-list li {
  transform-style: preserve-3d;
  will-change: transform;
  transform-origin: center center; /* Вращение вокруг центра */
}

ul.cargo-list li p {
    font-weight: 600;
    color: #111;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 144px;
}
ul.cargo-list li:hover i{transform:scale(1.2);}
ul.cargo-list li i {
    color: var(--color2);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 49px;
    float: right;
    transition: 0.4s;
}
ul.cargo-list li:hover {
    background: var(--color1);
    box-shadow: 0px 0px 30px -14px #000;
    color: #fff;
}
ul.cargo-list.x4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
ul.cargo-list li {
    padding: 40px;
    border-radius: var(--border-r);
    background: #ffffff;
    transition: background 0.4s;
}
ul.cargo-list li:hover h3 img {
    filter: brightness(0) saturate(100%) invert(74%) sepia(23%) saturate(303%) hue-rotate(365deg) brightness(92%) contrast(88%);
}

ul.cargo-list li h3 img {
    /* transition: 0.4s; */
    width: 75px;
}
ul.cargo-list li h3 span {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
ul.cargo-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin: 30px 0px;
    margin-bottom: 45px;
    margin-top: 45px;
}
ul.cargo-list li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(/wp-content/uploads/logo.png);
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 51%;
    z-index: -1;
    background-repeat: no-repeat;
    transition: 1s;
    opacity: 0.02;
}

ul.cargo-list li:hover::after {
    opacity: 0.05;
    filter: brightness(0);
}
ul.cargo-list li:hover p, ul.cargo-list li:hover i {
    color: var(--color3);
}

.pub-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    background: #fff;
    border: 1px solid transparent;
    color: var(--color1);
    font-size: 16px;
    border-radius: 4px;
    padding: 7px 16px;
    text-decoration: none;
    transition: 0.25s;
}
.pub-filter:hover,
.pub-filter.is-active {
    background: var(--color1);
    border-color: var(--color1);
    color: #fff;
}

.pub-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 18px;
    background: #fff;
    padding: 25px;
    border-radius: var(--border-r);
    margin-bottom: 25px;
}

/* Publications AJAX loading overlay */
.page-publications-php {
    position: relative;
}

.pub-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 10;
}

.pub-card__more, .pub-card__excerpt, p.pub-card__meta, h3.pub-card__title {
    font-size: 16px;
    padding: 0px 5%;
    margin: 0;
}
a.pub-card__more {
    margin-bottom: 2%;
    display: block;
}

li.pub-card {
    background: #fff;
    border-radius: var(--border-r);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

a.pub-card__thumb img{
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f2f2f2;
        object-fit: cover;
    transition: 0.4s;
}
.pub-card__thumb {
    display: block;
        overflow: hidden;
    position: relative;
}

.pub-card:hover .pub-card__thumb-img {
    transform: scale(1.04);
}

.pub-card__thumb-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(23, 114, 169, 0.14), rgba(15, 143, 123, 0.12));
}

.pub-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 0 24px;
}

h3.pub-card__title {
    margin-bottom: 10px;
}

h3.pub-card__title a {
    color: var(--color1);
    text-decoration: none;
    font-size: 24px;
    margin-top: 4%;
    display: block;
}

p.pub-card__meta {
    margin-bottom: 12px;
    color: #8e8e8e;
    font-weight: 500;
    font-size: 12px;
}

.pub-card__excerpt {
    margin-bottom: 18px;
    color: #5f6872;
}

a.pub-card__more {
    margin-top: auto;
    color: var(--color1);
    font-weight: 700;
    text-decoration: none;
    margin-left: 5%;
}

.pub-empty,
.pub-error {
    margin: 0;
    padding: 28px;
    border-radius: var(--border-r);
    background: #fff;
    color: var(--color3);
}

.pub-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.pub-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 4px;
    background: #fff;
    color: var(--color3);
    text-decoration: none;
}

.pub-pagination .page-numbers.current,
.pub-pagination .page-numbers:hover {
    background: var(--color1);
    color: #fff;
}
.pub-loading.is-visible {
    opacity: 1;
    pointer-events: all;
}

.pub-loading i {
    font-size: 32px;
    color: var(--color1);
}

ul.pub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 1024px) {
    ul.pub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {

    .pub-filters {
        gap: 10px;
        padding: 14px;
    }

    .pub-filter {
        flex: 1 1 auto;
        font-size: 14px;
    }

    ul.pub-grid {
        grid-template-columns: 1fr;
    }
}


.why-1 h2 {
    color: #fff;
}
.why>div h2 i {
    display: block;
    margin: 0 auto;
    margin-bottom: 31px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #00000026;
    border-radius: 50px 0px;
}







body.why-1 {
    background: var(--color1);
}
body.why-1 .why>div h2,
body.why-1 .why>div {
    color: #fff;
}
.why-1 ul.menu.scrolled-100.scrolled-300{
    background: var(--color1);
    box-shadow: 0px 0px 30px -15px rgb(242 242 242 / 0%);
}
.why-1 ul.menu.scrolled-100.scrolled-300 >li>a{color:#fff;}


body.why-2 {
    background: #1a5e93;
}
.why-2 ul.menu.scrolled-100.scrolled-300{box-shadow: 0px 0px 30px -15px rgb(242 242 242 / 0%);background:#1a5e93;}
.why-2 ul.menu.scrolled-100.scrolled-300 >li>a{color:#fff;}
body.why-2 .why>div h2,
body.why-2 .why>div {
    color: #fff;
}



body.why-3 {
    background: var(--color2);
}
.why-3 ul.menu.scrolled-100.scrolled-300{box-shadow: 0px 0px 30px -15px rgb(242 242 242 / 0%);background:var(--color2);;}
.why-3 ul.menu.scrolled-100.scrolled-300 >li>a{color:#fff;}
body.why-3 .why>div h2,
body.why-3 .why>div {
    color: #fff;
}


body.why-4 {
    background: #009688;
}
.why-4 ul.menu.scrolled-100.scrolled-300{box-shadow: 0px 0px 30px -15px rgb(242 242 242 / 0%);background:#009688;}
.why-4 ul.menu.scrolled-100.scrolled-300 >li>a{color:#fff;}
body.why-4 .why>div h2,
body.why-4 .why>div {
    color: #fff;
}


body.why-5 {
    background: #f2f2f2;
}
.why-5 ul.menu.scrolled-100.scrolled-300{box-shadow: 0px 0px 30px -15px rgb(242 242 242 / 0%);background:#f2f2f2;}
.why-5 ul.menu.scrolled-100.scrolled-300 >li>a{color:var(--color1);}
body.why-5 .why>div h2,
body.why-5 .why>div {
    color: var(--color1);
}



.why>div p {
    transition: 0.4s;
    font-size: 22px;
}
.why>div h2 {
    text-align: center;
	transition:0.4s;
}
.why>div {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
}





p, li {
    font-size: 26px;
    color: #000000;
}
strong {
    color: var(--color3);
}
.home-1 .swiper-button-next, .home-1 .swiper-button-prev {
    font-size: 24px;
    width: 50px;
    text-align: center;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    color: var(--main);
}
.home-1 .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
    width: 18px;
    height: 18px;
    background: var(--main);
}
.home-1 .swiper-button-prev::after, .home-1 .swiper-button-next::after {
display:none;
}
.revs > div {
    position: relative;
}

.revs {
    position: absolute;
    bottom: 122px;
    left: 55px;
    display: flex;
    justify-content: space-between;
}


.home-1 .swiper-button-prev {
    bottom: 0;
    left: 0;
    top: auto;
}




.f-m-menu{display:none;}

section.main-site {
    display: block;
    margin-top: 0;
}


.faq-container {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 6px;
}

.faq-question {
    cursor: pointer;
    padding: 15px 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    transition: background 0.3s;
    position: relative;
    padding-left: 60px;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question i {
    transition: 0.4s;
    position: absolute;
    left: 0;
    background: #f0f0f0;
    height: 100%;
    width: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.faq-question.active i {
    background: #0078c0;
    color: #fff;
}
.faq-question.active i::before{    transform: rotate(90deg);}
.faq-question i::before{transition:0.4s;}
.faq-answer {
    max-height: 0px;
    overflow: hidden;
    padding: 30px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    transition: 0.4s;
    margin: -30px 0px;
    opacity: 0;
    pointer-events: none;
}

.faq-answer.open {
    max-height: 500px;
    opacity: 1;
    margin: 0px 0px;
}


.home-1 ul ~ div {
    display: grid;
    grid-template-columns: max-content auto;
    gap: 30px;
}
.home-1 ul ~ div .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
    background: #fff;
    padding: 0px;
    border-radius: 10px;
}
body .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
    background: #eeeeee;
    padding: 0px;
    border-radius: 10px;
}
.home-1 h2 {
    margin: 0;
}
.texta {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.texta > * {
    margin: 30px 0px;
}
.poshyk .main-a {
    width: 100%;
    text-align: center;
}
.poshyk {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
    grid-template-columns: 22% 74%;
    gap: 4%;
}
.home-1 ul li bold {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: var(--color1);
    background: rgb(255 255 255 / 60%);
    padding: 5px 13px;
    padding-right: 19px;
    border-radius: 0px 0px 50px 0px;
}

.home-1 ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 22% 22% 22% 22%;
    gap: 4%;
    margin-bottom: 30px;
}
video#bgVideo {
    max-height: 400px;
    width: 110%;
    margin-left: -10%;
    object-fit: cover;
    z-index: -2;
    border-radius: 15px;
    overflow: hidden;
    min-height: 100%;
}
.home-1 ul li {
    color: #fff;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    min-height: auto;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    aspect-ratio: 1 / 1;
    background-size: cover;
}
.home-1 ul li:hover {
    filter: contrast(1.1)saturate(0.8);
}
.home-1 ul li h3 {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    background: var(--color1);
    margin: 0;
    font-size: 14px;
    padding: 12px;
    padding-right: 26px;
    border-radius: 0px 50px 0px 0px;
    font-weight: 500;
}
.g2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.home-about .text {
    padding: 95px 6%;
    border-radius: var(--border-r);
    overflow: hidden;
    background: #fff;
    position: relative;
}
.home-about .text * {
    z-index: 2;
    position: relative;
}
.home-about .text::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -50%;
    border: 125px solid #f8f8f8;
    width: 500px;
    height: 500px;
    z-index: 0;
    border-radius: 50%;
}
.home-about h2 {
    margin-top: 10px;
}
.sfg > :nth-child(1) i {
    transform: rotate(5deg);
}
.sfg > :nth-child(2) i {
    transform: rotate(-5deg);
}
.sfg > :nth-child(3) i {
    transform: rotate(15deg);
}
.sfg {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 19px;
    width: 210px;
    background: #ffffff;
    color: var(--color3);
    padding: 25px;
    border-radius: 0px 0px 150px 0px;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 30px;
    opacity: 0;
    transition: 0.4s;
}

.clins a:hover .sfg > div {
  transform: rotate(360deg);
}

.clins a:hover .sfg > :nth-child(1){transition:0.4s; transition-delay: 0.00s;}
.clins a:hover .sfg > :nth-child(2){transition:0.4s; transition-delay: 0.05s;}
.clins a:hover .sfg > :nth-child(3){transition:0.4s; transition-delay: 0.10s;}
.clins a:hover .sfg > :nth-child(4){transition:0.4s; transition-delay: 0.15s;}
.clins a:hover .sfg > :nth-child(5){transition:0.4s; transition-delay: 0.20s;}
.clins a:hover .sfg > :nth-child(6){transition:0.4s; transition-delay: 0.25s;}
.clins a:hover .sfg > :nth-child(7){transition:0.4s; transition-delay: 0.30s;}
.clins a:hover .sfg > :nth-child(8){transition:0.4s; transition-delay: 0.35s;}
.clins a:hover .sfg > :nth-child(9){transition:0.4s; transition-delay: 0.40s;}
.clins a:hover .sfg > :nth-child(10){transition:0.4s; transition-delay: 0.45s;}
.clins a:hover .sfg > :nth-child(11){transition:0.4s; transition-delay: 0.50s;}
.clins a:hover .sfg > :nth-child(12){transition:0.4s; transition-delay: 0.55s;}








.clins a~a .sfg i {
    color: var(--color3);
}

.clins a~a .sfg {
    background: #fff;
}

.clins {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.is-scrolled .clins a .sfg{opacity:1;}
.is-scrolled .clins a {
    max-height: 1000px;
}
.clins a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10%;
    font-size: 40px;
    background: var(--color1);
    color: #fff;
    transition: 0.8s;
    position: relative;
    border-radius: var(--border-r);
    max-height: 167px;
    transition: 0.4s;
}
.clins a ~ a {
    background: transparent;
    color: var(--color2);
}
div:not(.is-scrolled) .clins a~a:hover {
    background: var(--color1);
    color: #fff;
}
div:not(.is-scrolled) .clins a:hover {
    background: #fff;
    color: var(--color1);
}
.is-scrolled .clins a:hover {
    padding-bottom: 20%;
}

.home-about {
    padding: 0;
    margin-bottom: 4%;
    width: 100%;
    box-sizing: border-box;
    border-radius: 15px;
    overflow: hidden;
    gap: 30px;
}
.imas {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.home-1 img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 95%;
    z-index: 2;
    pointer-events: none;
    transition: 0.4s;
}
.home-1 .swiper-slide-active img {
	opacity:1;
}
.media-part {
    position: relative;
}
.home-1 .swiper-wrapper {
    height: 400px;
    padding: 105px 0px;
}
.home-1 .swiper-slide {
    display: grid;
    grid-template-columns: 50% 50%;
    background: #fff;
    border-radius: var(--border-r);
}
.home-1 img~img {
    right: 284px;
    height: 100%;
    width: auto;
}
.home-1 .text-part::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1000px;
    height: 1000px;
    background: #fafafa;
    border-radius: 50%;
}
nav.breadcrumb {
    color: #ffffff;
    position: relative;
    z-index: 2;
    margin-top: 0;
    pointer-events: all;
    margin-bottom: 5px;
    margin-top: 5px;
}
.im-main {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 999;
    width: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.home-1.h-slider {
    margin-top: -15px;
    margin-bottom: -50px;
}
.home-1.small {
    background: #fff;
    padding: 50px 2%;
    overflow: hidden;
    padding-top: 226px;
    padding-bottom: 100px;
    text-align: center;
}
.home-1.small::after {
    content: '';
    position: absolute;
    background: url(/wp-content/uploads/2026/07/1.1-home-hero-1.webp);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 110%;
    right: 0;
    top: -5%;
    filter: brightness(0.2);
}
.home-1 {
    margin-top: 0;
    z-index: 1;
    position: relative;
    pointer-events: none;
    margin-bottom: 42px;
}
.home-1 .text-part {
    position: relative;
    overflow: hidden;
    padding: 55px;
    border-radius: 15px;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
    background: transparent;
    padding: 10px 0px;
    border-radius: 10px;
}
span.slimness-contact__value, a.slimness-contact__link {
    color: var(--color1);
    font-weight: 600;
}
aside.slimness-contact {
    display: flex;
    justify-content: space-between;
    width: 75%;
}
span.slimness-contact__label {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    font-size: 14px;
    color: #929292;
    font-weight: 400;
}
.slimness-contact__item {
    position: relative;
    padding-left: 45px;
    margin: 16px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.slimness-contact__item i {
    position: absolute;
    left: 0;
    top: calc(50% - 19px);
    background: var(--color1);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 50px;
}
.slimness-contact__text {
    text-align: left;
}
.form-callback b {
    position: fixed;
    top: 50px;
    right: 50px;
    font-size: 150px;
    width: 80px;
    height: 80px;
    font-weight: 100;
    transform: rotate(45deg);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    transition: 0.4s;
}
.form-callback b:hover{transform: rotate(225deg);}
.form-callback {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0);
    z-index: 999;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: 0.4s;
    pointer-events: none;
    opacity: 0;
    color: #fff;
}
.form-callback > div label {
    display: block;
}
.form-callback.active {
    opacity: 1;
    pointer-events: all;
}
.form-callback > div input, .form-callback > div textarea {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    font-size: 18px;
    max-height: 100px;
}
body .wpcf7 form.invalid .wpcf7-response-output, 
body .wpcf7 form.unaccepted .wpcf7-response-output, 
body .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: transparent;
    background: transparent;
    color: #ffb300;
    border-radius: 15px;
    text-align: center;
}
.main-a:hover {
    background: #111;
    color: #fff;
}
.main-a {
    background: #F9F1F1;
    padding: 18px 22px;
    border-radius: 10px;
    color: #000000;
    padding-left: 70px;
    position: relative;
    overflow: visible;
    display: inline-block;
    width: fit-content;
    border: none;
    font-size: 22px;
    transition: 0.4s;
    overflow: hidden;
    z-index: 2;
    height: fit-content;
}
.main-a ~ a.main-a {
    border-radius: 10px 50px 50px 10px;
}
.home-1 .b img {
    top: 0;
    transform: none;
    max-height: 400px;
    width: 113%;
    left: -14%;
    object-fit: cover;
    z-index: 1;
    max-width: 200%;
}
.home-1 .swiper-pagination,
.home-1 .swiper-button-next,
.home-1 .swiper-button-prev,
.home-1 button{pointer-events: all;}
.home-1 .main-a {
    margin-top: 30px;
    pointer-events: all;
}

.main-a span .wpcf7-spinner {
    position: absolute;
    left: -30px;
    top: 0px;
    margin: 0;
}

.main-a:hover i {
    transform: rotate(-45deg);
}
.main-a p,
.main-a input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.form-callback > div {
    max-width: 650px;
    margin: 0 auto;
}

.home-1.wow.fadeInUp {
    padding-bottom: 0;
}

body.single.single-post .post-thumbnail img {
    max-width: 400px;
    border-radius: 15px;
    float: left;
    margin-right: 3%;
    margin-bottom: 3%;
}
ul.latest-news {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 32.33% 31.33% 32.33%;
    grid-column-gap: 2%;
}
ul.latest-news li {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    display: block;
    margin: 0;
    padding: 0;
    margin-bottom: 5%;
}
ul.latest-news h3 {
    background: rgb(23 114 169 / 70%);
    color: #fff;
    padding: 25px;
    margin: 0;
    width: 90%;
    border-radius: 0px 0px 150px 0px;
    font-size: 18px;
}
a.news-thumb {
    display: block;
    background-size: cover;
    background-position: center;
    min-height: 250px;
}

.socials {
    position: fixed;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    top: 0;
    left: 0;
}
.socials strong {
    transition: 0.4s;
    position: absolute;
    opacity: 0;
    left: 63px;
    top: 0;
    font-weight: 700;
    transform: rotate3d(0, 4, -1, 27deg);
}
.socials a:hover strong {
    opacity: 1;
    transform: rotate3d(0, 0, 0, 0deg);
}
.socials a {
    position: relative;
}
.socials a:hover i {
    transform: rotate(360deg);
}
.socials i {
    font-size: 30px;
    width: 50px;
    height: 50px;
    border: 1px solid #d8d8d8;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin: 5px 10px;
    border-radius: 50px;
    transition: 0.4s;
}

ul.d-ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.d-ul > li {
    border: 1px solid #dfdcdc;
    padding: 25px;
    margin-right: 1%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 15px;
    border: 0px solid #e7e7e7;
    border-radius: 15px;
    box-shadow: 0px 0px 15px -9px #000;
}
ul.d-ul > li ~ li {
    margin-left: 2%;
    width: 98%;
}
ul.d-ul ul {
    padding: 0px 18px;
}
h3 {
    color: var(--color2);
}


.main-a span.user-info__name {
    position: absolute;
    background: var(--color2);
    right: 0;
    bottom: -15px;
    width: 100%;
    border-radius: 10px 0px 10px 10px;
    padding: 4px 10px;
    height: fit-content;
    width: fit-content;
}


.main-a i {
    z-index: 2;
}
.main-a span {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: auto;
    text-transform: inherit;
    font-size: 18px;
    font-weight: 500;
}
.main-a i {
    position: absolute;
    left: 10px;
    top: 10px;
    transition: 0.4s;
    width: auto;
    height: calc(100% - 20px);
    background: #CEB4A7;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 50px;
    color: #ffffff;
    font-size: 18px;
}




h1.page-title {
    display: none;
}

.a21 {
    background: #87b65f;
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 12px;
}
:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}
.container {
    position: relative;
    border-radius: 15px;
}
input, textarea, select {
    border-radius: 12px;
    border: none;
    background: transparent;
    border: 1px solid #d2d2d2;
    color: #000;
    font-size: 16px;
    border-radius: 5px;
    font-family: 'Montserrat';
    font-weight: 500;
    padding: 16px 0px;
}
form.wpcf7-form {
    max-width: 475px;
}
.phone-code {
    color: #111;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 6px;
    font-weight: 600;
    border-radius: var(--border-r);
}
section.con-form p.i {
    position: relative;
    padding-left: 30px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: #fff;
    border-radius: var(--border-r);
    padding: 7px 15px;
}
.qiz .wpcf7-not-valid-tip {
    bottom: 10px;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-weight: normal;
    display: block;
    position: absolute;
    border-bottom: 1px solid red;
    height: 1px;
    width: calc(100% + 35px);
    left: -35px;
    bottom: -17px;
    font-size: 13px;
}
section.con-form p.i i {
    position: absolute;
    color: #fff;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
    border-color: transparent;
    color: #dc3232;
    text-align: center;
}
a#joie {
    width: 100%;
    text-align: center;
    display: block;
    padding: 20px 0px;
    margin-top: -50px;
    text-transform: uppercase;
    font-weight: 400;
    color: #999999;
    font-size: 12px;
}
.vxod {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}
h2 {
    color: var(--main);
    font-weight: 100;
    font-size: 40px;
    position: relative;
    width: fit-content;
}
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50%;
    max-width: 200px;
    height: 1px;
    border-bottom: 2px solid var(--color3);
    transform: translate(-50%, 16px);
}

h2.sv-price__name::after,
.wbc__grid h2::after,
.hero-back h2::after {
    opacity: 0;
}
.home-1 h1 strong {
    display: block;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--color1);
    text-transform: uppercase;
}
.home-1 h1 strong~strong {
    letter-spacing: normal;
    font-size: 40px;
    text-transform: none;
    color: var(--main);
    font-weight: 700;
    margin-top: 22px;
    margin-bottom: 15px;
}
.home-1 h1 {
    color: #fff;
    font-size: 68px;
    position: relative;
    z-index: 2;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 0;
}
.home-1 h2 {
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 2;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--main);
}
h1 {
    font-size: 40px;
    color: var(--color2);
    font-weight: 100;
}
a {
    color: var(--color1);
    transition: 0.4s;
}
section.home-zag.small h1 {
    margin-bottom: 6px;
    line-height: 45px;
}

section.home-zag.small {
    position: relative;
    color: #000000;
    width: 80%;
    margin: 0 auto;
    margin-top: 86px;
    border-radius: 15px;
    overflow: hidden;
    padding: 0;
    padding-bottom: 35px;
}

body {
    background: #fcfcfc;
    background-size: contain;
    color: #000000;
    position: relative;
}
.wc-block-components-button__text,
body {
    margin: 0;
}
button, a {
    text-decoration: none;
    cursor: pointer;
    transition: 0.4s;
    font-weight: 600;

}
img {
    width: 100%;
    height: auto;
}
section {
    padding: 50px 0%;
    position: relative;
    overflow: hidden;
    max-width: var(--block-w);
    margin: 0 auto;
}


* {
    box-sizing: border-box;
}

.f-men ul a:hover {
    color: var(--color3);
}
.f-men ul a {
    color: #000;
    padding: 4px 0px;
    display: block;
}
.f-men ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
section.fyter > div ~ div::after {
    content: '';
    position: absolute;
    left: -26px;
    height: 100%;
    width: 1px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color3);
}
section.fyter > div {
    position: relative;
}
section.fyter h3 {
    margin: 0;
    margin-bottom: 15px;
    color: #111;
    font-size: 22px;
}

.f-right {
    text-align: left;
}
.f-right a {
    display: block;
    margin-bottom: 11px;
    color: #000;
    position: relative;
    padding-left: 32px;
}
.f-right a.main-a {
    border: 2px solid var(--color3);
    border-radius: 10px;
    padding: 14px;
    margin-top: 20px;
    display: block;
}
.f-right a i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.f-right a {
    display: block;
    margin-bottom: 11px;
    color: #000;
    font-size: 22px;
    font-weight: 300;
    font-size: 16px;
}
section.fyter p {
    text-align: left;
}
section.fyter img {
    max-width: 220px;
    margin: 0;
    display: block;
    margin-bottom: 4px;
}
.f-men {
    text-align: left;
}
/* Service-area cities: "City • City • City", with an italic "and more" line. */
.f-area .areas {
    line-height: 2;
    color: #2b2b2b;
}
.areas__city::before {
    content: "•";
    margin: 0 9px;
    color: #b9b0a6;
}
span.areas__city {
    float: left;
}
.f-area .areas__more {
    display: flex;
    margin-top: 4px;
    font-style: italic;
    color: #6f675f;
    width: 100%;
}
/* Bottom copyright line */
.f-copyright {
    text-align: center;
    padding: 20px 15px;
    font-style: italic;
    font-size: 15px;
    color: #6f675f;
}
.f-copyright p {
    margin: 0;
    color: var(--color3);
}
.log p {
    font-size: 14px;
}
.log {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.top-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}
.top-gallery > a {
    position: relative;
    overflow: hidden;
}
body .fancybox__container {
    z-index: 99999;
}
.top-gallery > a > img {
    aspect-ratio: 2/1;
    object-fit: cover;
    border-radius: var(--border-r);
    transition: 0.4s;
    display: block;
}
section.gallery .main-a {
    margin: 0 auto;
    display: block;
    margin-top: 30px;
    border: 2px solid #ffffff;
}
.top-gallery > a:hover img{transform:scale(1.1);}
.top-gallery > a:hover > i{opacity: 1;}
.top-gallery > a > i {
    position: absolute;
    background: rgb(0 0 0 / 45%);
    width: 100%;
    height: 100%;
    z-index: 2;
    left: 0;
    border-radius: var(--border-r);
    display: flex;
    justify-content: center;
    flex-direction: column;
    top: 0;
    transition: 0.4s;
    opacity: 0;
    font-size: 42px;
    color: #fff;
}
section.fyter {
    display: grid;
    background: #fff;
    color: #000000;
    text-align: center;
    width: 96%;
    margin: 50px auto;
    border-radius: var(--border-r);
    padding: 30px 50px;
    margin-bottom: 0;
    grid-template-columns: auto auto auto auto;
    gap: 40px;
}
section.fyter p, section.fyter a {
    color: #808080;

}
section.fyter i {
    color: var(--color3);
}
.joie:hover g circle {
    animation: rotate_alogo .5s linear infinite
}

a.joie svg {
    width: 115px;
    height: auto;
    margin: -14px 7px
}

.joie:hover g>:nth-child(2n) circle {
    animation: rotate_alogo .4s linear infinite
}

@keyframes rotate_alogo {
    0% {
        transform: rotate(0) translate(8px) rotate(0)
    }

    to {
        transform: rotate(360deg) translate(8px) rotate(-360deg)
    }
}


a.joie svg>g>:nth-child(1),
a.joie svg>g>:nth-child(3),
a.joie svg>g>:nth-child(4),
a.joie svg>g>:nth-child(5) {
    fill: #152c52
}
a.joie svg g {
    filter: none;
}
a.joie svg path~g path {
    stroke-width: 24px;
    filter: brightness(0);
}
a.joie {
    text-align: center;
    display: block;
    padding: 24px;
    background: transparent;
    letter-spacing: 1px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 15px;
    color: #000000;
    font-weight: 300;
}
nav.footer-nav ul {
    list-style: none;
    margin: 0;
    display: grid;
    padding: 0;
}
nav.footer-nav ul a {
    color: #000;
    font-weight: 600;
    font-size: 22px;
}

@media(max-height:850px){
body .cinematic-slider, .canvas-slider {
    min-height: 650px;
}
body .cs-next {
    right: 40px;
}
body .cs-caption {
    max-width: min(880px, 90%);
}
body .cs-caption h2 {
    font-size: 40px;
}
}


@media(max-width:1850px){

:root {
    --block-w: 1400px;
}
ul.cargo-list li {
    padding: 10px 40px;
}
ul.cargo-list li h3 span  {
    order: 2;
}
ul.cargo-list li h3 span ~ span {
    order: 1;
}
ul.cargo-list li h3 {
    grid-template-columns: 1fr;
}
.clins a {
    font-size: 32px;
    max-height: 142px;
}
.home-1 h2 {
    font-size: 16px;
}
.home-1 h1 strong {
    font-size: 14px;
}
.home-1 h1 strong~strong {
    font-size: 30px;
}

}

@media(max-width:1600px){
.hero-back h2 {
    font-size: 74px;
}
:root {
        --block-w: 92%;
}
.top-gallery {
    grid-template-columns: 1fr 1fr 1fr;
}
.banner_01 h3 {
    font-size: 22px;
}
section.fyter {
    width: 98%;
}

section {
    padding: 35px 2%;
}



section.fyter {
    padding: 50px 20px;
}
}

@media(max-width:1500px){
section.f-grid-ims .images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
    width: 67vw;
    margin: 71px auto;
}
.im p {
    font-size: 28px;
}
}

@media(max-width:1200px){
section.services > div > a h3 {
    font-size: 32px;
}   

.banner_01 h3 {
    font-size: 16px;
}
ul.cargo-list {
    grid-template-columns: 1fr 1fr;
}
ul.cargo-list li p {
    min-height: 55px;
}
ul.cargo-list.x4 {
    grid-template-columns: 1fr 1fr;
}
.home-1.small {
    background: #fff;
    padding: 50px 2%;
    overflow: hidden;
    padding-top: 145px;
    text-align: center;
    margin-bottom: 25px;
}
.sfg {
    width: 170px;
}
.clins a {
    font-size: 24px;
    min-height: 385px;
}

.home-1 {
    margin-top: 0;
}
.home-1 .swiper-wrapper {
    height: 485px;
    padding: 105px 0px;
}
}


@media(max-width:1100px){
section.fyter > div ~ div::after {
    opacity: 0;
}
section.fyter img {
    max-width: 220px;
    margin: 0 auto;
    display: block;
}

section.fyter > div {
    position: relative;
    margin: 0 auto;
    display: block;
    width: 250px;
    margin-bottom: 33px;
}
.home-1 h1 strong~strong {
    font-size: 26px;
}
.home-1 h2 {
    font-size: 14px;
}

aside.slimness-contact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: fit-content;
    margin: 1px auto;
    margin-top: 49px;
}
section.fyter {
    display: block;
}
section.home-zag.small {
    margin-top: 70px;
}



.home-1 .swiper {
    margin-top: 0px;
}
.g2 {
    grid-template-columns: 100%;
}
.home-1 ul {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
		margin-bottom: 8px;
}
.poshyk {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.texta > * {
    margin: 6px 0px;
}
.im p {

    font-size: 22px;

}
}

@media(max-width:850px){
    section.f-grid-ims .images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 80px;
}
.hero-back {
    display: block;
    min-height: auto;
    position: relative;
    padding: 114px 0px;
    height: auto;
}
.hero-back > section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 78px;
}
.pro-nas-line {
    max-width: var(--block-w);
    margin: 0 auto;
    position: relative;
    padding: 0px 25px;
}
.pro-nas-line div.right > img {
    order: 1;
    justify-self: start;
}
.pro-nas-line div.right span, .pro-nas-line div.right  h3, .pro-nas-line div.right  h2, .pro-nas-line div.right  p {
    order: 1;
    text-align: left;
    padding-left: 0;
}
.pro-nas-line::after {
    opacity: 0;
}
.pro-nas-line div img {
    width: 100%;
}
.pro-nas-line span, .pro-nas-line h2, .pro-nas-line p {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    padding-right: 15px;
}
.pro-nas-line div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.top-gallery {
    grid-template-columns: 1fr 1fr;
}
.home-1 .text-part {
    padding: 25px;
}
.imas {
    max-width: 250px;
		margin:0 auto;
}
.home-1 {
    grid-template-columns: 1fr;
    padding: 15px;
}

.home-1 ul li h3 {
    font-size: 14px;
    padding: 10px 25px;
    padding-left: 10px;
}
body ul.products.columns-4 {
    grid-template-columns: 1fr;
    gap: 2%;
}

header .head-top  .main-a {
    font-size: 0px;
    height: 51px;
    width: 51px;
    padding: 0;
}
header .head-top .main-a  i {
    position: relative;
    left: 15px;
    top: calc(50% - 9px);
    font-size: 18px;
}
body .swiper-slide > a {
    padding: 0px 65px;
}
section.services > div {
    grid-template-columns: 1fr;
}
section.services > div > a::after {
    left: -42%;
    bottom: -102%;
}
}

@media(max-width:650px){
.im p {
    margin-bottom: 0;
}
section.f-grid-ims .images {
    gap: 0px;
}
.hero-back h2 {
    font-size: 36px;
}
.f-right a {
    font-size: 18px;
}
.ab-intro__media img, .ab-intro__img {
    margin-bottom: -10px;
}
ul.product-categories, section {
    padding: 20px 15px;
}
    .main-a {
    font-size: 18px;
}
.hero-back h1 {
    font-size: 20px;
}
body .cinematic-slider, .canvas-slider {
    min-height: 100vh;
    max-height: 100vh;
}
body .cs-caption h2 {
    font-size: 24px;
}
section.contacty > div {
    max-width: 100%;
    margin: 0;
}
section.contacty {
    padding: 25px;
}
.top-gallery {
    grid-template-columns: 1fr;
}
.marquee {
    margin-top: -54px;
}
.marquee-content p bold {
    font-size: 100px;
}
.marquee-content p bold i {
    font-size: 20px;
}
.marquee-content p {
    font-size: 36px;
}
ul.cargo-list.x2 {
    grid-template-columns: 1fr;
}
.banner_01 img.as {
    right: 50%;
    top: 12%;
    width: 100%;
}
.banner_01 {
    grid-template-columns: 1fr;
}
.benner_2 h3 {
    font-size: 16px;
}
ul.cargo-list.x4,
ul.cargo-list {
    grid-template-columns: 1fr;
}
p, li {
    font-size: 20px;
}
.home-1 {
    pointer-events: all;
}
video#bgVideo {
    max-height: 100%;
    width: 110%;
    margin-left: -10%;
    object-fit: cover;
    z-index: -2;
    border-radius: 15px;
    overflow: hidden;
    min-height: 100%;
    margin-bottom: -6%;
    transform: scale(1.2);
}
.home-1 .text-part::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
}
.home-1 .swiper-wrapper {
    height: fit-content;
    padding: 105px 0px;
}
.home-1 img {
    position: relative;
    right: 0;
    top: 0;
    transform: translateY(0%);
    width: 100%;
    z-index: 2;
    pointer-events: none;
    max-height: 200px;
    object-fit: contain;
}
.home-1 .swiper-slide {
    grid-template-columns: 1fr;
    border-radius: 15px;
    overflow: hidden;
}
.home-about .text {
    padding: 17px 6%;
}
.f-m-menu a i {
    margin: 0 auto;
    font-size: 18px;
    margin-bottom: 5px;
}
.f-m-menu a {
    color: #fff;
    display: grid;
    text-align: center;
}
.f-m-menu {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
    background: url(/wp-content/uploads/2026/01/01.webp);
    background-size: cover;
    width: 100%;
    padding: 25px;
    display: flex;
    justify-content: center;
    gap: 30px;
}
h2 {
    font-size: 24px;
}
.home-1 ul li bold {
    font-size: 29px;
    padding: 8px 21px;
}
.home-1 ul li {
    min-height: 130px;
}
body .swiper-slide > a {
    min-height: 550px;
}

body .swiper-slide > a::after {
    background: rgb(0 0 0 / 77%);
}

.form-callback .main-a {
    margin: 0 auto;
    float: none;
    display: block;
}
.form-callback b {
    top: 0;
    right: 0;
}
.form-callback {
    background: rgb(0 0 0);
}
section.home-zag.small {
    width: 100%;
    border-radius: 0px;
		padding: 0px 16px;
}
section.fyter {
    width: 100%;
    margin: 50px auto;
    border-radius: 0;
    margin-bottom: 0;
}
ul.d-ul > li ~ li {
    margin-left: 0%;
    width: 98%;
    margin: 15px 0px;
}
section.home-zag.small h1 {
    margin-bottom: 12px;
    line-height: 25px;
    font-size: 22px;
}
section.home-zag.small {
        position: relative;
        padding-top: 18px;
        padding-bottom: 35px;
        color: #fff;
        margin-top: 77px;
    }
ul.product-categories li {
    padding: 15px;
}
.im ~ .im ~ .im ~ .im {
    margin-top: 10px;
}
.im ~ .im ~ .im {
    margin-top: 10px;
}
.im ~ .im {
    margin-top: 10px;
}

    body .swiper-slide > a {
        padding: 75px 10px;
        grid-template-columns: 100%;
    }
	body #adfy__woofc-trigger .badge, body #adfy__woofc-trigger:hover svg {
    fill: #fff;
}

#adfy__woofc-trigger .badge.top-left {
    bottom: auto;
    left: -8px;
    right: auto;
    top: -7px;
    padding: 0px;
    background: var(--color1);
    width: 14px;
    height: 14px;
}
#adfy__woofc-trigger .icon svg {
    fill: var(--color1);
    margin: 0px;
    transform: translate(2px, 2px);
}
.socials {
    position: fixed;
    display: flex;
    justify-content: center;
    flex-direction: row;
    min-height: auto;
    top: 8px;
    left: auto;
    right: 100px;
}

    header .head-top .main-a i {
        position: relative;
        left: 7px;
        top: calc(50% - 9px);
        font-size: 18px;
    }
.head-top {
    justify-content: space-between;
    padding: 10px 60px;
    position: fixed;
    width: 100%;
    padding-left: 5px;
    z-index: 999;
    padding-right: 36px;
    height: 75px;
}
    .socials i {
        margin: 5px 4px;
        width: 36px;
        height: 36px;
        font-size: 24px;
        margin: 10px 2px;
    }
h2 {
    font-size: 24px;
}
body .swiper-button-next::after, body .swiper-button-prev::after {
    opacity: 0;
}
.home-1 .b img {
    top: 0;
    transform: none;
    max-height: 100%;
    width: 100%;
    left: 0;
    object-fit: cover;
    z-index: 1;
    max-width: 100%;
    position: relative;
}
body .swiper-slide > a img {
    border-radius: 75px 0px;
}
body .swiper-slide > a h2, body .swiper-slide > a div {
    text-align: center;
}
.home-1 .swiper-button-next, .home-1 .swiper-button-prev {
    font-size: 24px;
    width: 50px;
    text-align: center;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    color: #ffffff;
    background: var(--color1);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    box-shadow: 0px 0px 17px -6px #000;
    transform: scale(0.6);
}
.media-part {
    position: relative;
    order: 0;
    max-height: 200px;
    min-height: 200px;
    z-index: 1;
	overflow:hidden;
}
.clins a {
    min-height: 350px;
}
.clins {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.home-1 .text-part {
    padding: 25px 50px;
    height: 343px;
    display: block;
    order: 2;
    z-index: 9;
    overflow: visible;
    border-radius: 15px;
}
.revs .swiper-pagination{display:none;}
.revs {
    position: absolute;
    bottom: auto;
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9999;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
}
@media(max-width:500px){
.banner_01 img.as {
    right: 53%;
    top: auto;
    bottom: -1%;
    width: 72%;
}
}

@media(max-width:385px){
.home-1 h1 strong~strong {
    font-size: 18px;
}
.home-1 h2 {
    font-size: 10px;
}
.head-top img {
    width: 153px;
    height: auto;
    margin: 6px 0%;
    max-width: 100%;
    box-sizing: border-box;
}
}


/* =====================================================================
   Why Brides Choose Evelin
   ===================================================================== */
.wbc__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.wbc__title {
    font-size: 46px;
    margin: 0 0 30px;
    line-height: 1.1;
}
.wbc__card {
    display: grid;
    grid-template-columns: 78px auto;
    gap: 24px;
    align-items: start;
    padding: 28px 30px;
    background: #fff;
    border-radius: var(--border-r);
    box-shadow: 0px 0px 30px -30px #000;
    transition: 0.4s;
}
.wbc__card ~ .wbc__card {
    margin-top: 22px;
}

.wbc__icon {
    width: 78px;
    height: 78px;
    border-radius: 50px;
    border: 2px solid var(--color3);
    color: var(--color3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    margin: 14px 0px;
}
.wbc__title ~ p {
    margin-bottom: 34px;
}
h3 {
    margin: 0 0 8px;
    font-size: 24px;
    color: var(--main);
    font-weight: 400;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
}
p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #373737;
    font-weight: 400;
    letter-spacing: 1px;
}
.wbc__media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--border-r);
}


/* =====================================================================
   Reviews  (distinct editorial style, not the competitor's)
   ===================================================================== */
.revs-block__head {
    margin-bottom: 55px;
}
.revs-block__head h2 {
    font-size: 46px;
    margin: 0 0 10px;
}
.revs-block__head p {
    margin: 0;
    font-size: 22px;
    font-style: italic;
    color: #777;
    margin-top: 30px;
}
.revs-block__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.rev-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 40px 34px 32px;
    background: #fff;
    border: 1px solid #efe3ef;
    border-radius: 10px 10px 10px 40px;
    transition: 0.4s;
}
.rev-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--color3);
}
.rev-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 24px 45px -26px #bfbfbf;
}
.rev-card__mark {
    position: absolute;
    top: 26px;
    right: 30px;
    font-size: 46px;
    color: var(--color3);
    opacity: 0.6;
}
/* ===== Video block ===== */
.vid-block__head {
    margin-bottom: 34px;
}
.vid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.vid-card {
    margin: 0;
}
/* The hero player is sized for the hero (height: 45vh); in the grid the cards
   set their own aspect instead. */
.vid-card .hero-video-window {
    height: auto;
    aspect-ratio: 9 / 16;
}
.vid-card figcaption {
    margin-top: 14px;
    text-align: center;
    font-size: 17px;
    color: #3f3a3f;
}
@media (max-width: 1100px) {
    .vid-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 650px) {
    .vid-grid {
        grid-template-columns: 1fr;
    }
}
.rev-card__stars {
    display: flex;
    gap: 5px;
    color: var(--color3);
    font-size: 16px;
    margin-bottom: 18px;
}
/* Unfilled star for ratings under 5. Dimmed solid glyph rather than the regular
   (outline) face, which this install's Font Awesome subset may not ship. */
.rev-card__star--off {
    opacity: 0.28;
}
.rev-card__text {
    font-size: 19px;
    line-height: 1.6;
    color: #3f3a3f;
    margin: 0 0 26px;
    flex: 1;
}
.rev-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #f0e6f0;
}
.rev-card__avatar {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color3), #ffffff);
    color: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
}
.rev-card__meta {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.rev-card__name {
    font-size: 20px;
    color: var(--main);
    font-weight: 600;
}
.rev-card__role {
    font-size: 14px;
    color: #9a8f9a;
}


/* =====================================================================
   Bridal Makeup in Charlotte, NC  (local SEO)
   ===================================================================== */
.bridal-local__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.bridal-local__media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--border-r);
}
.bridal-local__text h2 {
    font-size: 44px;
    margin: 0 0 22px;
    line-height: 1.1;
}
.bridal-local__text p {
    font-size: 21px;
    line-height: 1.65;
    color: #444;
    margin: 0;
}


/* ---- Blocks: responsive ---- */
@media (max-width: 850px) {
    .wbc__grid,
    .bridal-local__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .wbc__media {
        order: -1;
    }
    .revs-block__grid {
        grid-template-columns: 1fr;
    }
    .wbc__title,
    .revs-block__head h2,
    .bridal-local__text h2 {
        font-size: 34px;
    }
}

@media (max-width: 500px) {
    .wbc__card {
        grid-template-columns: 60px auto;
        gap: 16px;
        padding: 22px 20px;
    }
    .wbc__icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .rev-card {
        padding: 32px 24px 26px;
    }
}


/* ==========================================================================
   Плавный переход между страницами
   Появление — чистый CSS, работает и без JS. Уход — класс .is-leaving
   на <html>, его вешает script.js перед переходом по ссылке.
   ========================================================================== */

@keyframes joie-page-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes joie-page-out {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Фон body поднимается на канвас браузера и под opacity не попадает, поэтому
   гаснет только контент, а не подложка. Трансформы здесь недопустимы: они
   ломают position: fixed у хедера и кнопки «наверх». */
body {
    animation: joie-page-in 0.45s ease backwards;
}

html.is-leaving body {
    animation: joie-page-out 0.28s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
    body,
    html.is-leaving body {
        animation: none;
    }
}
