/* ===== CSS Reset / Base ===== */

/* 1) Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2) Remove default margins */
html,
body,
h1, h2, h3, h4, h5, h6,
p,
blockquote,
figure,
dl, dd {
    margin: 0;
}

/* 3) Lists */
ul[role="list"],
ol[role="list"],
ul,
ol {
    margin: 0;
    padding: 0;
}
ul,
ol {
    list-style: none;
}

/* 4) Base html/body */
html:focus-within {
    scroll-behavior: smooth;
}
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    min-height: 100vh;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--font-text);
    color: var(--text);
}

/* 5) Media elements */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}
img {
    height: auto;
}

/* 6) Forms */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}
button {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}
textarea {
    resize: vertical;
}

/* 7) Links */
a {
    color: inherit;
    text-decoration: none;
    text-decoration-skip-ink: auto;
}
a:hover {
    text-decoration: underline;
}

/* 8) Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th {
    font-weight: inherit;
}
td,
th {
    padding: 0;
}

/* 9) Misc */
hr {
    border: 0;
    border-top: 1px solid currentColor;
    opacity: 0.2;
    margin: 0;
    }
:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* 10) Reduce motion */
@media (prefers-reduced-motion: reduce) {
    html:focus-within { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root{
    --container: 1280px;
    --inner-container: calc(var(--container) - 50px);

    --font-text: "Manrope", system-ui;
    --font-head: "Playfair Display", ui-sans-serif;
    --font-section: "Montserrat", sans-serif;

    --bg: #FFFAFA;
    --surface: #ffffff;
    --text: #1E1E1E;
    --muted: #774D26;

    --accent: #10B5B8;
    --accent-2: #DA972F;

    --radius-xs: 12px;
    --radius: 20px;
    --radius-lg: 26px;

    --shadow: 0 12px 30px rgba(16, 39, 49, .10);

    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 48px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    font-family: "Rubik", sans-serif;
    scroll-behavior: smooth;
}

.lightbox .lb-image {
    border: none !important;
}

.section {
    padding: var(--space-6) 0;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
}

.inner-container {
    max-width: var(--inner-container);
    margin: 0 auto;
}

.btn {
    border-radius: var(--radius);
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4ms;
}

.btn:hover {
    transition: all 0.4s;
}

.btn--primary {
    background: var(--text);
}

.section-title {
    font-size: 35px;
    font-weight: 900;
    font-style: italic;
    color: var(--accent);
    font-family: "Rubik", sans-serif;
    line-height: 1.2;
}

.absolute__call {
    width: 55px;
    height: 55px;
    z-index: 999;
    background: var(--accent);
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    bottom: 20px;
    right: 20px;
}

.call-icon {
    width: 32px;
}

/* header */

.site-header {
    padding-top: 40px;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    justify-content: space-between;
    width: 700px;
}

.nav__link {
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
}

/* menu */

.menu-container {
    position: fixed;
    display: inline-block;
    top: 40px;
    z-index: 999;
}

.menu-button {
    background: #4ECDC4;
    border: none;
    border-radius: 20px;
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    gap: 6px;
    align-items: center;
}

.menu-button span {
    width: 8px;
    height: 8px;
    background: transparent;
    border-radius: 50%;
    border: 1px solid white;
}

.dropdown {
    position: absolute;
    top: calc(100% + 17px);
    left: 0;
    width: 300px;
    height: 0;
    background: var(--bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
    overflow: hidden !important;
}

.dropdown.active {
    height: auto;
    opacity: 1;
    overflow: hidden !important;
}

.dropdown-content {
    padding: 20px;
    height: 100%;
    overflow-y: hidden;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.dropdown ul {
    list-style: none;
}

.dropdown li {
    padding: 5px 0;
}

.dropdown a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.2s;
}

.dropdown a:hover {
    color: #4ECDC4;
}

/* hero */

.hero {        
    overflow: hidden;
    padding: var(--space-4) 0;
}

.hero__container {
    position: relative;
    min-height: 700px;
    height: 700px;
    border-radius: var(--radius);
    width: var(--container);
}

.hero__inner-container {
    position: relative;
    z-index: 10;
    height: 100%;
}

.hero-body {
    width: var(--inner-container);
}

.hero__header {
    padding-top: 16px;
}

.hero-phone {
    color: var(--bg);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: flex-end;
}

.sep {
    width: var(--inner-container);
    height: 1px;
    background: var(--bg);
    margin-top: 16px;
    border-radius: 1px;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slides {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: var(--radius);
}

.slide.active {
  opacity: 1;
}

.hero__slogan {
    position: absolute;
    bottom: 50px;
}

.hero-slogan {
    font-size: 38px;
    font-weight: 900;
    font-style: italic;
    color: var(--bg);
    line-height: 1;
}

.hero__btns {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    position: absolute;
    right: 0;
    bottom: 50px;
}

.booking-btn {
    background: var(--accent-2);
    color: var(--bg);
    text-align: center;
    font-weight: 700;
    transition: all .4s;
}

.booking-btn:hover {
    background: var(--accent);
    text-decoration: none;
    transition: all .4s;
}

.price-btn {
    background: var(--accent);
    color: var(--bg);
    text-align: center;
    font-weight: 700;
    transition: all .4s;
}

.price-btn:hover {
    text-decoration: none;
    background: var(--accent-2);
    transition: all .4s;
}

.hero__plate {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -35px;
}

.hero-plate {
    color: var(--bg);
    font-size: 18px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 40px;
    background: var(--accent);
    text-align: center;
    width: 330px;
    border: var(--bg) 12px solid;
}

/* gallery */

.gallery-wrapper {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 16px;
    animation: scroll 40s linear infinite;
}

.reverse-track {
    animation: reverse-scroll 40s linear infinite;
    margin-top: 20px;
}

.gallery-item {
    flex: 0 0 auto;
    width: 550px;
    height: 320px;
    overflow: hidden;
    border-radius: var(--radius);
    transition: transform 0.4s ease;
}

.gallery-link-wrap {
    position: relative !important;
}

.gallery-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    z-index: 998;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gallery-track {
    width: max-content;
}

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

@keyframes reverse-scroll {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* placement */

.placement__border {
    border: 1px solid var(--accent-2);
    width: fit-content;
    padding: 25px 25px 50px 25px;
    border-radius: var(--radius) var(--radius) 0 0;
    margin-bottom: -50px;
}

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

.placement-subtitle {
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

.placement-iframe {
    width: var(--container);
    height: 650px;
    margin-top: 20px;
}

/* price */

.price-outer {
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 32px 0;
}

.price__subtitle {
    margin-top: 10px;
    text-align: center;
}

.price-subtitle {
    font-weight: 500;
    font-size: 20px;
}

.price__title {
    text-align: center;
}

.table-container {
    max-width: var(--container);
    margin: 30px 0;
    border-radius: 20px;
}

table {
    width: 1100px;
    border-collapse: separate;
    background-color: var(--bg);
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
}

th {
    background: var(--accent);
    font-weight: 800;
    padding: 10px 15px;
    text-align: center;
    border: 1px solid var(--accent);
    border-bottom: none;
    font-size: 18px;
    color: var(--bg);
}

th:first-child {
    border-top-left-radius: 13px;
}

th:last-child {
    border-top-right-radius: 13px;
}

th:not(:last-child),
td:not(:last-child) {
    border-right: none;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 13px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 13px;
}

td {
    padding: 15px;
    text-align: center;
    border: 1px solid var(--accent);
    background-color: var(--bg);
    font-size: 18px;
    font-weight: 600;
}

tr:not(:last-child) th,
tr:not(:last-child) td {
    border-bottom: none;
}

tr:nth-child(even) td {
    background-color: #F8F8F8;
}

.pricelist__wrapper {
    width: 1100px;
    margin: 0 auto;
    text-align: right;
}

.pricelist {
    display: block;
    text-align: right;
    font-size: 16px;
    max-width: 635px;
    margin-left: auto;
    margin-top: 40px;
    font-weight: 600;
}

/* activities */

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* Карточка с эффектом переворота */

.card-flip {
    perspective: 1000px;
    height: 300px;
    position: relative;
}

.card-flip-xs {
    height: 220px;
}

.card-flip-lg {
    height: 380px;
    margin-top: -80px;
}

.card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 1s;
    transform-style: preserve-3d;
    transform-origin: center center;
}

.card-flip:hover .card-flip-inner {
    transform: rotateY(180deg);
}

/* Передняя и задняя стороны */

.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.card-front {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    position: relative;
    transform: rotateY(0deg);
}

.card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7));
}

.card-title {
    position: relative;
    z-index: 2;
    color: var(--bg);
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.card-back {
    background: var(--accent);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: var(--bg);
}

.card-back-content {
    text-align: center;
}

.card-back-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.card-back-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* Иконка (плюс/минус) */

.card-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: transform 0.3s, background 0.3s;
}

/* Плюс */

.plus {
    position: relative;
    width: 20px;
    height: 20px;
}

.plus::before,
.plus::after {
    content: '';
    position: absolute;
    background: var(--accent);
    transition: all 0.3s;
}

.plus::before {
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
}

.plus::after {
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}

/* Минус */

.minus {
    position: relative;
    width: 20px;
    height: 20px;
}

.minus::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: translateY(-50%);
}

/* Большая карточка слева */

.card-large {
    grid-row: span 2;
    height: 620px;
    background: url(img/wave-bg.svg) center / cover no-repeat, linear-gradient(180deg, #1AAAA6 0%, #0F8986 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    position: relative;
    overflow: hidden;
}

.card-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.card-large-content {
    position: relative;
    z-index: 2;
}

.card-large h2 {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 1.4;
}

.card-large span {
    font-style: italic;
}

.card-large-button {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.card-large-button:hover {
    background: white;
    transform: scale(1.1);
}

.card-large-button svg {
    width: 30px;
    height: 30px;
    stroke: white;
    transition: stroke 0.3s;
}

.card-large-button:hover svg {
    stroke: #2c9a8f;
}

/* Адаптивность */

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .card-large {
        grid-row: span 1;
        height: 400px;
    }

    .card-large h2 {
        font-size: 32px;
    }

    .card-large h3 {
        font-size: 28px;
    }

    .card-flip {
        height: 250px;
    }

    .card-title {
        font-size: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* social */

.social-title {
    font-size: 26px;
    font-weight: 900;
    font-style: italic;
    line-height: 0.9;
}

.social__subtitle {
    margin-top: 20px;
    width: 500px;
}

.social-subtitle {
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
}

.social__icons {
    border: 1px solid var(--accent);
    border-radius: 30px;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 135px;
    margin-top: 20px;
}

/* safety */

.safety__subtitle {
    margin-top: 20px;
}

.safety-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
}

.safety__container {
    position: relative;
}

.safety__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.safety-card {
    border: 1px solid rgba(255, 153, 0, 0.2);
    border-radius: var(--radius);
    padding: 20px;
    transition: all 0.5s;
}

.safety-card:last-child {
    position: relative;
}

.safety-card:hover {
    background: #FFF2DD;
    transition: all 0.5s;
}

.safety-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.02rem;
}

.safety-card__text {
    font-size: 16px;
    line-height: 1.3;
    color: var(--text);
}

.safety__btn {
    position: absolute;
    bottom: -35px;
    right: 0;
    padding: 10px 35px;
    background-color: var(--accent);
    color: var(--bg);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    z-index: 5;
}

.safety__btn:hover {
    background-color: var(--accent);
}

@media (max-width: 768px) {
    .safety__grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}

/* eco */

.eco__title {
    text-align: center;
}

.eco__subtitle {
    text-align: center;
    margin: 20px auto;
    width: 730px;
}

.eco-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
}

.eco-subtitle span {
    color: var(--accent-2);
}

.eco__grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.eco__grid--top {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 50px;
}

.eco__grid--bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
}

.eco-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.eco-card__icon {
    margin-bottom: 20px;
}

.eco-card__icon > img {
    width: 130px;
    height: 130px;
}

.eco-card__text {
    font-size: 16px;
    line-height: 1.2;
    color: var(--text);
    max-width: 366px;
}

@media (max-width: 992px) {
    .eco__grid--top {
        grid-template-columns: repeat(2, 1fr);
    }

    .eco__grid--top .eco-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .eco__grid--bottom {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .eco {
        padding: 40px 0;
    }

    .eco__grid--top,
    .eco__grid--bottom {
        grid-template-columns: 1fr;
    }

    .eco__grid--top .eco-card:last-child {
        grid-column: auto;
    }

    .eco__grid--bottom {
        max-width: 100%;
    }

    .eco-card__icon {
        width: 100px;
        height: 100px;
    }

    .eco-card__text {
        font-size: 13px;
    }
}

/* footer */

.footer {
    padding: var(--space-6) 0;
}

.footer__container {
    padding: var(--space-6) 0;
    background: #E1E8F0;
    border-radius: 50px;
}

.footer__inner-container {
    display: flex;
    justify-content: space-between;
}

.footer__social {
    border: 1px solid var(--accent);
    border-radius: 30px;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 135px;
}

.tg-social {
    width: 38px;
    margin-right: 10px;
}

.vk-social {
    width: 38px;
    margin-left: 10px;
}

.footer-link-accent {
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    margin-left: 5px;
}

.footer__address {
    margin-top: 40px;
}

.footer__address, .footer__phone, .footer__email {
    display: flex;
    align-items: center;
}

.adress-icon, .phone-icon, .email-icon {
    width: 20px;
}


.footer__contacts {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;   
}

.contacts {
    font-size: 16px;
    font-weight: 500;
}
.email, .phone {
    font-size: 16px;
    font-weight: 500;
    margin-left: 40px;
}

.footer__rights {
    margin-top: 90px;
}

.footer-rights {
    font-size: 16px;
    font-weight: 500;
}

iframe {
    border-radius: var(--radius);
}

@media (max-width: 1300px) {
    
    :root{
        --container: calc(100vw - 100px);
        --inner-container: calc(var(--container) - 40px);
    }

}

@media (max-width: 1200px) {
    
    .section-title {
        font-size: 30px;
    }

    .card-flip-lg, .card-flip-xs {
        margin-top: 0;
        height: 300px;
    }

    table, .pricelist__wrapper {
        width: calc(var(--inner-container) - 20px);
    }

    .footer__inner-container {
        flex-direction: column;
        row-gap: 40px;
    }
    .footer__rights {
        display: none;
    }
    .footer__contacts {
        justify-content: unset;
    }
    .footer__map {
        width: var(--inner-container);
    }

}

@media (max-width: 900px) {
    
    .hero__slogan {
        bottom: unset;
        top: 200px;
    }

    .eco__subtitle {
        width: var(--inner-container);
    }
    .eco-subtitle {
        font-size: 18px;
    }

}

@media (max-width: 700px) {
    
    body {
        overflow-x: hidden !important;
    }

    :root{
        --container: calc(100vw - 30px);
        --inner-container: calc(var(--container) - 20px);

        --radius-xs: 12px;
        --radius: 20px;
        --radius-lg: 26px;

        --space-1: 8px;
        --space-2: 12px;
        --space-3: 16px;
        --space-4: 24px;
        --space-5: 32px;
        --space-6: 38px;
    }

    .section-title {
        font-size: 20px;
    }
    
    /* hero */

    .hero__container, .slide {
        height: 610px;
        min-height: 610px;
    }
    .hero__slogan {
        display: none;
    }
    .hero__plate {
        bottom: -29px;
    }
    .hero-plate {
        font-size: 12px;
        width: 270px;
        border-width: 8px;
    }
    .hero__btns {
        display: none;
    }

    /* gallery */

    .gallery-item {
        width: 310px;
    }

    /* placement */

    .placement-subtitle {
        font-size: 13px;
    }
    .placement__border {
        padding: 15px 15px 40px 15px;
    }
    .placement-iframe {
        height: 350px;
    }

    /* price */

    .price-subtitle {
        font-size: 13px;
    }
    table {
        width: 350px;
    }
    th, td {
        font-size: 12px;
    }
    .pricelist__wrapper {
        width: 350px;
    }
    .pricelist {
        font-size: 12px;
        text-align: center;
    }

    /* activities */

    .card-large {
        height: 175px;
        position: relative;
        padding: 25px;
    }
    .card-large h2 {
        font-size: 24px;
    }
    .card-large-button {
        width: 40px;
        height: 40px;
        transform: rotate(90deg);
    }
    .card-flip {
        height: 225px;
    }
    .card-flip-lg {
        margin-top: 0;
    }
    .card-icon {
        width: 30px;
        height: 30px;
    }
    .plus {
        width: 10px;
        height: 10px;
    }
    .plus::after {
        height: 2px;
    }
    .plus::before {
        width: 2px;
    }
    .card-title {
        font-size: 16px;
    }

    /* social */

    .social-title {
        font-size: 20px;
    }
    .social__subtitle {
        width: var(--container);
    }
    .social-subtitle {
        font-size: 13px;
    }

    /* safety */

    .safety-subtitle {
        font-size: 13px;
    }
    .safety__grid {
        padding: 0;
    }
    .safety-card {
        padding: 10px;
    }
    .safety-card__title {
        font-size: 16px;
    }
    .safety-card__text {
        font-size: 13px;
    }
    .safety__btn {
        font-size: 12px;
        padding: 10px 25px;
    }

    /* eco */

    .eco__subtitle {
        width: var(--container);
    }
    .eco-subtitle {
        font-size: 13px;
    }
    .eco-card__icon {
        margin-bottom: 35px;
    }
    .eco-card__text {
        font-size: 14px;
        max-width: 300px;
        line-height: 1.25;
    }

    /* footer */

    .footer__container {
        border-radius: 20px;
        padding: 20px 0;
    }
    .footer__inner-container {
        flex-direction: column;
    }
    .footer__right-container {
        margin-top: 20px;
    }
    .footer__address {
        margin-top: 20px;
    }
    .footer__email {
        margin: 5px 0;
    }
    .footer-link-accent {
        color: var(--accent);
        font-weight: 700;
        font-size: 13px;
        margin-left: 5px;
    }
    .footer__contacts {
        flex-direction: column;
        row-gap: 5px;
        margin-top: 20px;
    }
    .contacts {
        font-size: 13px;
    }
    .email, .phone {
        margin-left: 0;
        font-size: 13px;
    }
    .footer__map {
        width: var(--inner-container);
    }
    .footer__rights {
        display: none;
    }

}