:root {
    --font-lil: "Inter", sans-serif;
    --font-big: "Unbounded", sans-serif;
}

body {
    line-height: 1.2;
    font-family: var(--font-lil);
    font-weight: 400;
}
input,
button {
    font-family: var(--font-lil);
}
section {
    margin-bottom: 4rem;
}

.container {
    width: 81.25rem;
}

img {
    object-fit: cover;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    background: white;
    transition: box-shadow 0.3s ease;
}

.head-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head-logo {
    width: 10rem;
    height: auto;
    display: block;
}

.head-nav {
    display: flex;
    align-items: center;
    border-radius: 0.625rem;
    border: 0.5px solid #474747;
    padding: 0.25rem;
    gap: 1.25rem;
}

.head-nav a {
    font-size: 0.85rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.head-nav a:hover {
    color: #015e67;
}

.head-nav a.active {
    background: #01969c;
    color: #ffffff;
}

.head-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-dropdown {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    padding: 0.4rem 0.2rem;
    text-transform: uppercase;
}

.lang-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in;
}

.lang-dropdown:hover .lang-arrow,
.lang-dropdown.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 0.4rem 0;
    margin: 0;
    min-width: 70px;
    z-index: 100;
}

.lang-dropdown.open .lang-menu,
.lang-dropdown:hover .lang-menu {
    display: block;
}

.lang-menu li a {
    display: block;
    padding: 0.4rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #333;
    transition: background 0.15s;
}

.lang-menu li a:hover {
    background: #f3f4f6;
}

.btn {
    position: relative;
    height: 3.125rem;
    display: flex;
    padding: 0.625rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.75rem;
    background: linear-gradient(
        109deg,
        #01969c -36.69%,
        #015e67 10.32%,
        #02b3f1 91.03%
    );
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 12.5rem;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0b555c;
    opacity: 0;
    transition: opacity 0.3s ease-in;
    z-index: 1;
}

.btn:hover::before {
    opacity: 1;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-menu.open {
    visibility: visible;
    pointer-events: all;
}

.mobile-menu.open::before {
    opacity: 1;
}

.mobile-menu-inner {
    background: #fff;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    border-radius: 1rem 1rem 0 0;
}

.mobile-menu.open .mobile-menu-inner {
    transform: translateY(0);
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.mobile-menu-title {
    font-weight: 600;
    font-size: 1.35rem;
    text-transform: uppercase;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    font-weight: 800;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    color: #333;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.mobile-btns {
    margin-top: 1.5rem;
}

.hero-section {
    padding-top: 1.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 1.25rem;
}

.hero-content {
    border-radius: 1.5rem;
    background: linear-gradient(
        107deg,
        #015e67 6.23%,
        #01969c 48.19%,
        #02b3f1 104.77%
    );
    padding: 1.8rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.hero-title {
    font-family: var(--font-big);
    font-size: 2.25rem;
    margin-bottom: 1.15rem;
    font-weight: 400;
}

.hero-desc {
    max-width: 70%;
}

.hero-actions {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    align-items: flex-end;
}

/* Стили сложных кнопок-карточек */
.hero-card-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.hero-card-btn.dark {
    background-image: url("../img/hero-back1.png");
    width: 17.5rem;
    height: 10.3125rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-card-btn.outline {
    background-image: url("../img/hero-back2.png");
    width: 24.5rem;
    height: 8.125rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-btn-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.hero-btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
}

.hero-btn-icon {
    width: 4.21525rem;
    height: 4.21525rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    transition: all 0.25s ease-in;
}
.hero-btn-icon svg {
    transform: rotate(-45deg);
    transition: all 0.2s ease-in;
}
.hero-btn-icon:hover svg {
    transform: rotate(0deg);
}
.hero-card-btn-bot {
    position: relative;
    display: flex;
    justify-content: end;
}

.hero-card-btn.dark .hero-btn-icon {
    background-color: #0b555c;
    left: 1rem;
    top: 0.7rem;
}

.hero-card-btn.outline .hero-btn-icon {
    border: 1px solid #ffffff;
    left: 1rem;
    bottom: 1.15rem;
}

/* Правый блок с картинкой */
.hero-image-wrap {
    border-radius: 1.5rem;
    overflow: hidden;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-header.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.section-label {
    color: #292929;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.section-label::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 6.25rem;
    background: #0198a1;
}

.section-title {
    font-family: var(--font-big);
    font-size: 2.25rem;
    color: #242424;
}

.partners-grid-lil {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.partners-grid-big {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.partner-card {
    background: #e6f3f4;
    border-radius: 1.25rem;
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
}

.partner-img-wrap {
    height: 12.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.partner-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.partner-title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #0a545b;
    margin-bottom: 1.25rem;
}

.partner-desc {
    color: #0a545b;
    margin-bottom: unset;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.about-card {
    border-radius: 1.5rem;
    padding: 1.5625rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 25rem;
    position: relative;
    overflow: hidden;
}

.about-card.span-2 {
    grid-column: span 2;
}

.about-card.img-only {
    padding: 0;
}

.about-card.img-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-card-top,
.about-card-desc {
    position: relative;
    z-index: 2;
}

.about-card-val {
    font-size: 2.45rem;
    font-weight: 500;
}
.about-card-val span {
    font-size: 3rem;
}

.about-card-sub {
    font-size: 1.65rem;
    opacity: 0.7;
}

.about-card-desc {
    margin-bottom: 0;
}

.about-card.light {
    background-color: #eaf3f4;
    color: #1a1a1a;
}
.about-card.light .about-card-val,
.about-card.light .about-card-sub {
    color: #085a63;
}

.about-card.dark {
    background: #0b555c;
    color: #ffffff;
}
.about-card.dark .about-card-sub {
    color: #a5c3c6;
}

.about-card.white {
    background-color: #ffffff;
    color: #1a1a1a;
}
.about-card.white .about-card-val {
    color: #0a545b;
}
.about-card.white .about-card-sub {
    color: #0a545b;
    opacity: 0.7;
}

.about-card.blue-grad {
    background: linear-gradient(
        78deg,
        rgba(1, 94, 103, 0.9) 10.72%,
        rgba(1, 150, 156, 0.9) 37.15%,
        rgba(2, 143, 195, 0.9) 80.2%
    );
    color: #ffffff;
    z-index: 10;
}

.about-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.15;
    mix-blend-mode: luminosity;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: transparent;
    border-radius: 0.75rem;
    border: 1px solid #0a545b;
    height: 2.6875rem;
    color: #0a545b;
    padding: 0.5625rem 1.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #085a63;
    color: #085a63;
}

.filter-btn.active {
    background: #0a545b;
    border-color: #085a63;
    color: #ffffff;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.catalog-card {
    border-radius: 1.5rem;
    background: rgba(1, 137, 144, 0.1);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.catalog-img-wrap {
    border-radius: 1rem;
    height: 17rem;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.catalog-img-wrap img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in;
}
.catalog-card:hover img {
    scale: calc(1.07);
}

.catalog-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.catalog-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.catalog-subtitle {
    color: rgba(1, 94, 103, 0.7);
    margin-bottom: 1.15rem;
    font-weight: 500;
}

.catalog-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.text-up {
    text-transform: uppercase;
}

.adv-slider-wrap {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
}
.adv-slider {
    width: 100%;
}
.adv-slide {
    position: relative;
    height: 34rem;
    border-radius: 1.25rem;
    overflow: hidden;
}
.adv-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}
.adv-slider .slick-active .adv-slide-bg {
    transform: scale(1.03);
}
.adv-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(98deg, rgba(2, 179, 241, 0) 77.7%, #01969c 92.13%),
        linear-gradient(
            248deg,
            rgba(2, 179, 241, 0) 52.2%,
            rgba(1, 150, 156, 0.8) 80.1%,
            #0a545b 95.24%
        );
}
.adv-slide-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 1.5rem;
    padding-top: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}
.adv-slide-top {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.adv-slide-label {
    font-weight: 600;
    color: rgba(255, 255, 255);
}
.adv-slide-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    max-width: 24.25rem;
}
.adv-slide-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
}
.adv-slide-desc {
    margin: 0;
}
.adv-arrows {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 1rem;
    z-index: 5;
}
.adv-arr {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
}
.adv-arr:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.adv-slick-dots {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 5;
}
.adv-slick-dots li {
    width: 0.7rem;
    height: 0.7rem;
}
.adv-slick-dots li button {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}
.adv-slick-dots li.slick-active button {
    background: #fff;
}

/* services section */
.services-list {
    display: flex;
    flex-direction: column;
}
.service-card {
    display: flex;
    align-items: center;
    padding: 1.65rem;
    border-radius: 1.25rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease-in;
    gap: 2rem;
}

.service-card:hover {
    transform: scale(1.01);
    filter: brightness(1.05);
}

.service-card.dark {
    background: #0b555c;
}

.service-card.teal {
    background: #01969d;
}

.service-num {
    font-family: var(--font-big);
    font-size: 2.25rem;
}

.service-info {
    flex-grow: 1;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.service-desc {
    opacity: 0.7;
    margin-bottom: unset;
    max-width: 50rem;
}

.service-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-slider-wrap {
    position: relative;
    width: 100%;
}

.projects-slider {
    margin: 0 -0.625rem;
}

.project-slide {
    padding: 0 0.625rem;
    outline: none;
}

.project-slide-inner {
    position: relative;
    height: 35rem;
    border-radius: 1.25rem;
    overflow: hidden;
    background-color: #eaf3f4;
}

.project-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.project-content {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 3;
    border-radius: 1rem;
    border: 0.5px solid #ffffff50;
    background: rgba(11, 85, 92, 0.1);
    backdrop-filter: blur(15px);
    padding: 1.25rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-tags {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
    opacity: 0.8;
}

.project-tag {
    display: flex;
    align-items: center;
    gap: 0.32rem;
}

.project-tag::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background-color: #0198a1;
    border-radius: 50%;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.project-desc {
    margin-bottom: 1.25rem;
}

.projects-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2.15rem;
}

.proj-arrow {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease-in;
    background: #4eb6bb;
}

.proj-arrow:hover {
    background: #0a545b;
}

.contact-wrap {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    padding: 1.88rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        175deg,
        rgba(1, 94, 103, 0.8) 15.11%,
        rgba(1, 150, 156, 0.64) 55.51%,
        rgba(2, 179, 241, 0.8) 99.53%
    );
    z-index: 2;
}

.contact-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.section-header.white .section-title {
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: var(--font-big);
    text-align: center;
}

.contact-form-box {
    background: #0b555c;
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    padding: 1.5rem;
    max-width: 55rem;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-input {
    width: 100%;
    border-radius: 0.75rem;
    border: 0.3px solid #ffffff56;
    background: rgba(116, 207, 237, 0.12);
    height: 3.75rem;
    padding: 0.625rem 1.25rem;
    color: #ffffff;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    border-color: #ffffff;
}

.form-textarea {
    font-weight: 500;
    font-size: 1rem;
    font-family: var(--font-lil);
    grid-column: span 2;
    min-height: 6.65rem;
    resize: none;
    padding: 1.25rem;
}

.form-select-wrap {
    position: relative;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.form-select option {
    background-color: #14565b;
    color: #ffffff;
}

.form-select-wrap::after {
    content: "";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-policy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.form-policy a:hover {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.form-policy a {
    color: white;
    text-decoration: underline;

}

.form-btn {
    background: #01969c;
    color: #ffffff;
    align-self: flex-start;
}

.form-btn:hover {
    background: #fff;
    color: #015e67;
}

.form-btn::before {
    display: none;
}

.content-bot {
    border-radius: 2.5rem 2.5rem 0 0;
    background: #e6f3f4;
    padding: 2.5rem 0;
    padding-bottom: 3.5rem;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 1.25rem;
}

.contacts-map-wrap {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(46, 182, 195, 0.58);
    display: flex;
}

.contacts-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 26rem;
    border: none;
    display: block;
}

.contacts-info-card {
    background:
        linear-gradient(
            90deg,
            #015e67 0.26%,
            rgba(1, 150, 156, 0.8) 47.78%,
            #02b3f1 99.56%
        ),
        #0a545b;
    border-radius: 1.25rem;
    padding: 1.5rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.75rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-name {
    font-weight: 600;
    font-size: 1.25rem;
}

.contact-val {
    font-weight: 500;
    opacity: 0.7;
    color: white;
}
.contact-val:hover {
    opacity: 1;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 7%;
    text-underline-offset: 16.5%;
}

.contact-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}

.social-link {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    font-size: 2rem;
}

.social-link:hover {
    opacity: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.5fr 3.5fr 5fr;
    gap: 1.65rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo {
    display: block;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 6rem;
    width: auto;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

.footer-social-link {
    font-size: 2.5rem;
    color: #009ca6;
}

.footer-social-link:hover {
    opacity: 0.8;
}

.footer-title {
    color: #0a545b;
    margin-bottom: 1.8rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.footer-nav-list a {
    font-size: 1.25rem;
    font-weight: 500;
}

.footer-nav-list a:hover {
    color: #0a545b;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 7%;
    text-underline-offset: 16.5%;
}

.footer-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.85rem;
}

.footer-input {
    flex-grow: 1;
    border-radius: 0.75rem;
    background: rgba(3, 124, 130, 0.2);
    height: 3.65rem;
    padding: 0.625rem 1.25rem;
    color: rgba(1, 95, 104, 0.9);
    font-weight: 600;
}

.footer-input::placeholder {
    color: rgba(1, 95, 104, 0.5);
}

.footer-btn {
    background: #01969c;
    color: white;
    height: 3.65rem;
}

.footer-btn:hover {
    background: #0a545b;
}
.footer-btn::before {
    display: none;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    row-gap: 2rem;
}

.footer-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-info-name {
    color: #0a545b;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-info-val {
    font-weight: 500;
}
.footer-info-val:hover {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 7%;
    text-underline-offset: 16.5%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(10, 84, 91, 0.5);
}

.footer-bottom-link {
    color: rgba(10, 84, 91, 0.8);
    font-weight: 600;
    font-size: 1.25rem;
}

.footer-bottom-link:hover {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 7%;
    text-underline-offset: 16.5%;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(29, 27, 32, 0.58);
    z-index: 9999;
    display: none; 
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 65rem;
}

.modal-slider-wrap {
    border-radius: 1.25rem;
    overflow: hidden;
    background-color: #eaf3f4;
}

.modal-slider {
    margin: 0;
}

.modal-slide {
    height: 36rem;
    display: block !important;
    outline: none;
}

.modal-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-close {
    position: absolute;
    top: .5rem;
    right: 1rem;
    z-index: 1000;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.28s ease-in;
    width: 2.55rem;
    height: 2.55rem;
    background: #0A545B;
    border-radius: 50%;
    padding-bottom: .1rem;
}

.modal-close:hover {
    background: #01969D;
}

.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background-color: #0A545B;
    border: 1px solid #FFF;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.28s ease-in;
}
.modal-arrow:hover {
    background-color: #01969D;
}
.modal-arrow.prev {
    left: -5rem;
}
.modal-arrow.next {
    right: -5rem;
}
.page_content{
    margin: 4rem 0;
    border-radius: 20px;
    background: #E6F3F4;
    padding: 2rem;
}
