/***** GLOBAL *****/

:root {
    --main-color: #161616;
    --main-text-color: #ffffff;

    --second-color: #ffffff;
    --second-text-color: #161616;

    --third-color: #f5f5f5;
    --third-text-color: #161616;
}

/* base */

* {
    box-sizing: border-box;
}

body {
    font-family: "Inter Tight", sans-serif;
    color: var(--second-text-color);
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
    font-family: "Inter Tight", sans-serif;
    margin: 0;
}

p {
    margin: 0;
}

a {
    color: inherit;
}

/* default section heading */

.heading-box {
    text-align: center;
}

.heading-box .heading {
    max-width: 1050px;
    margin: 0 auto 26px;
    font-size: 47px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

@media (max-width: 991px) {
    .heading-box .heading {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .heading-box .heading {
        font-size: 28px;
        line-height: 1.12;
        letter-spacing: -0.025em;
    }

    .heading-box .heading br {
        display: none;
    }
}

/* container */

.container {
    padding-left: 25px;
    padding-right: 25px;
}

/* buttons */

.t-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1em 2em;
    border-radius: 999px;
    border: none;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.t-btn.theme {
    background: var(--main-color);
    color: var(--main-text-color);
}

.t-btn.theme:hover {
    opacity: 0.85;
}

.t-btn.theme2 {
    background: var(--second-color);
    color: var(--second-text-color);
    border: 1px solid var(--main-color);
}

.t-btn.theme2:hover {
    opacity: 0.85;
}

.t-btn.theme3 {
    background: var(--third-color);
    color: var(--third-text-color);
}

.t-btn.theme3:hover {
    opacity: 0.85;
}

.t-btn.white {
    background: var(--second-color);
    color: var(--second-text-color);
}

.t-btn.white:hover {
    background: var(--main-color);
    color: var(--main-text-color);
}


/***** HEADER *****/

/* header */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: transparent;
    color: var(--second-text-color);
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.has-transparent-header .main-header {
    color: var(--main-text-color);
}

.main-header.scrolled {
    background: var(--second-color);
    color: var(--second-text-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.main-header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* logo */

.main-header .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.main-header .logo img {
    height: 44px;
    display: block;
}

.main-header .logo .logo-white {
    display: none;
}

.has-transparent-header .main-header:not(.scrolled) .logo-dark {
    display: none;
}

.has-transparent-header .main-header:not(.scrolled) .logo-white {
    display: block;
}

/* navigation */

.main-header .navigation {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--main-color);
    border-radius: 999px;
    padding: 10px 48px;
    transition: background 0.3s ease;
}

.main-header.scrolled .navigation {
    background: transparent;
}

.main-header .navigation ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-header .navigation .nav-link {
    text-decoration: none;
    font-size: 17px;
    font-weight: 200;
    color: var(--main-text-color);
    transition: color 0.3s ease;
}

.main-header.scrolled .navigation .nav-link {
    color: var(--second-text-color);
}

.main-header .lang-switcher {
    position: relative;
}

.main-header .navigation .lang-switcher {
    margin-left: 16px;
}

.main-header .lang-switcher .lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--second-color);
    color: var(--second-text-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.main-header.scrolled .navigation .lang-switcher .lang-toggle {
    background: var(--main-color);
    color: var(--main-text-color);
}

.main-header .lang-switcher .lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 44px;
    margin: 0;
    padding: 4px;
    list-style: none;
    background: var(--second-color);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 30;
}

.main-header .lang-switcher.open .lang-menu {
    display: block;
}

.main-header .lang-switcher .lang-menu a {
    display: block;
    padding: 6px 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: var(--second-text-color);
    text-decoration: none;
    border-radius: 4px;
}

.main-header .lang-switcher .lang-menu a:hover {
    background: var(--third-color);
}

@media (max-width: 991px) {
    .main-header .navigation {
        display: none;
    }
}

/* actions */

.main-header .actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-header .actions .t-btn-link {
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
    color: var(--second-text-color);
    transition: color 0.3s ease;
}

.has-transparent-header .main-header:not(.scrolled) .actions .t-btn-link {
    color: var(--main-text-color);
}

.main-header.scrolled .actions .t-btn-link {
    color: var(--second-text-color);
}

.main-header .actions .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--second-text-color);
    padding: 4px;
    transition: color 0.3s ease;
}

.has-transparent-header .main-header:not(.scrolled) .actions .hamburger {
    color: var(--main-text-color);
}

.main-header.scrolled .actions .hamburger {
    color: var(--second-text-color);
}

.main-header .actions .lang-switcher-mobile {
    display: none;
}

.main-header .actions .lang-switcher-mobile .lang-toggle {
    background: none;
    width: auto;
    height: auto;
    color: var(--second-text-color);
    font-size: 14px;
}

.has-transparent-header .main-header:not(.scrolled) .actions .lang-switcher-mobile .lang-toggle {
    color: var(--main-text-color);
}

.main-header.scrolled .actions .lang-switcher-mobile .lang-toggle {
    color: var(--second-text-color);
}

@media (max-width: 991px) {
    .main-header .actions .t-btn-link {
        display: none;
    }

    .main-header .actions .lang-switcher-mobile {
        display: inline-flex;
    }

    .main-header .actions .hamburger {
        display: inline-flex;
    }
}

/* offcanvas */

.main-header .offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--third-color);
}

.main-header .offcanvas .offcanvas-body ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-header .offcanvas .offcanvas-body .nav-link {
    text-decoration: none;
    font-size: 17px;
    font-weight: 200;
}


/***** HOME *****/

/* hero */

.home-page .hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--main-text-color);
    padding: 140px 0;
    text-align: center;
}

.home-page .hero-section .hero-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

@media (min-width: 992px) {
    .home-page .hero-section .hero-cover {
        background-attachment: fixed;
    }
}

.home-page .hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

.home-page .hero-section .container {
    position: relative;
    width: 100%;
    z-index: 1;
}

.home-page .hero-section .content {
    max-width: 900px;
    margin: 0 auto;
}

.home-page .hero-section .hero-divider {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 2px;
    height: 220px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
}

.home-page .hero-section .heading,
.home-page .hero-section .text,
.home-page .hero-section .content .t-btn {
    opacity: 0;
    animation: hero-fade-up 0.8s ease forwards;
}

.home-page .hero-section .heading {
    font-size: 76px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    animation-delay: 0.1s;
}

.home-page .hero-section .text {
    max-width: 620px;
    margin: 0 auto 32px;
    font-size: 19px;
    font-weight: 300;
    animation-delay: 0.3s;
}

.home-page .hero-section .content .t-btn {
    animation-delay: 0.5s;
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .home-page .hero-section {
        padding: 160px 0 100px;
    }

    .home-page .hero-section .heading {
        font-size: 42px;
    }

    .home-page .hero-section .text {
        font-size: 17px;
    }
}

/* benefits */

.home-page .benefits-section {
    padding: 80px 0;
}

.home-page .benefits-section .heading {
    font-size: 32px;
    margin-bottom: 40px;
}

.home-page .benefits-section .card {
    background: var(--third-color);
    color: var(--third-text-color);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
}

.home-page .benefits-section .icon svg {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
}

.home-page .benefits-section .title {
    font-size: 20px;
    margin-bottom: 8px;
}


/***** PAGE BANNER (zdieľané pre podstránky) *****/

.page .page-content {
    padding: 100px 0;
}

.page .page-banner {
    background: #FAF9F7;
    padding: 170px 0 100px;
    text-align: center;
}

.page .page-banner .title,
.page .page-banner .text,
.page .page-banner-2 .title,
.page .page-banner-2 .text {
    opacity: 0;
    animation: hero-fade-up 0.8s ease forwards;
}

.page .page-banner .title,
.page .page-banner-2 .title {
    font-size: 65px;
    font-weight: 600;
    margin-bottom: 16px;
    animation-delay: 0.1s;
}

.page .page-banner .text,
.page .page-banner-2 .text {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    animation-delay: 0.3s;
}

@media (max-width: 767px) {
    .page .page-banner {
        padding: 120px 0 60px;
    }

    .page .page-banner .title,
    .page .page-banner-2 .title {
        font-size: 42px;
    }

    .page .page-banner .text,
    .page .page-banner-2 .text {
        font-size: 17px;
    }
}


/***** PAGE BANNER 2 (zdieľané pre podstránky) *****/

.page .page-banner-2 {
    background: var(--second-color);
    padding-top: 130px;
}

.page .page-banner-2 .inner {
    position: relative;
    height: 100%;
    width: 100%;
}

.page .page-banner-2 .row {
    min-height: 560px;
}

.page .page-banner-2 .image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 41%;
}

.page .page-banner-2 .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .page .page-banner-2 {
        padding-top: 100px;
    }

    .page .page-banner-2 .row {
        min-height: 0;
    }

    .page .page-banner-2 .content {
        padding: 40px 0;
    }

    .page .page-banner-2 .image {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        margin-top: 24px;
    }
}


/***** STATS SECTION (zdieľané, globálne) *****/

.stats-section {
    background: #FAF9F7;
    padding: 145px 0;
    text-align: center;
}

.stats-section .text {
    max-width: 760px;
    margin: 0 auto 100px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(22, 22, 22, 0.5);
}

.stats-list {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    min-width: 0;
    padding: 0 30px;
    border-left: 1px solid rgba(22, 22, 22, 0.15);
    text-align: left;
}

.stat-item .number {
    display: block;
    font-size: 52px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 12px;
}

.stat-item .label {
    display: block;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .stats-section {
        padding: 90px 0;
    }

    .stats-section .text {
        margin-bottom: 64px;
    }

    .stat-item {
        padding: 0 20px;
    }

    .stat-item .number {
        font-size: 44px;
    }

    .stat-item .label {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-section .text {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .stats-list {
        flex-wrap: wrap;
        row-gap: 32px;
    }

    .stat-item {
        flex: 1 1 50%;
        max-width: 50%;
        padding: 0 16px;
    }

    .stat-item .number {
        font-size: 38px;
        margin-bottom: 8px;
    }

    .stat-item .label {
        font-size: 15px;
    }
}


/***** C2A (zdieľané pre podstránky) *****/

.c2a {
    margin-top: 50px;
}

.c2a .content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 56px 64px;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: var(--main-text-color);
}

@media (min-width: 992px) {
    .c2a .content {
        background-attachment: fixed;
    }
}

.c2a .content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.c2a .content .heading {
    position: relative;
    z-index: 1;
    max-width: 600px;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.25;
}

.c2a .content .t-btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .c2a .content {
        padding: 32px;
    }

    .c2a .content .heading {
        font-size: 24px;
    }

    .c2a .content .heading br {
        display: none;
    }
}


/***** REFERENCE ITEM (zdieľané, globálne) *****/

.references-section {
    padding: 40px 0 100px;
}

.ref-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 56px;
    column-gap: 50px;
}

.ref-col {
    flex: 1 1 calc(50% - 25px);
}

.ref-item {
    display: flex;
    gap: 24px;
    text-decoration: none;
    color: inherit;
}

.ref-item .image {
    position: relative;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.ref-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ref-item:hover .image img {
    transform: scale(1.05);
}

.ref-item .badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.ref-item .badge-public {
    background: #ffffff;
    color: #161616;
}

.ref-item .badge-private {
    background: #161616;
    color: #ffffff;
}

.ref-item .title {
    font-size: 24px;
    font-weight: 700;
    color: var(--second-text-color);
    margin-bottom: 10px;
}

.ref-item .text {
    font-size: 18px;
    font-weight: 300;
    color: rgba(22, 22, 22, 0.55);
    margin-bottom: 16px;
}

.ref-item .link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--second-text-color);
    border-bottom: 2px solid var(--second-text-color);
    padding-bottom: 2px;
}

.ref-col.full .ref-item {
    flex-direction: column;
}

.ref-col.full .ref-item .image {
    width: 100%;
    aspect-ratio: 16 / 10;
}

.ref-col.half .ref-item {
    align-items: center;
}

.ref-col.half.image-right .ref-item {
    flex-direction: row-reverse;
}

.ref-col.half .ref-item .image {
    width: 50%;
    aspect-ratio: 3 / 4;
}

.ref-col.half .ref-item .body {
    flex: 1;
    padding-top: 4px;
}

.reference-text-lists {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 50px;
    margin-top: 110px;
    padding-top: 64px;
    border-top: 1px solid rgba(22, 22, 22, 0.14);
}

.reference-text-list .title {
    margin: 0 0 20px;
    font-size: 30px;
    font-weight: 500;
}

.reference-text-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.reference-text-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(22, 22, 22, 0.1);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.35;
}

@media (max-width: 767px) {
    .ref-list {
        row-gap: 40px;
    }

    .ref-col {
        flex: 1 1 100%;
    }

    .ref-col.half .ref-item,
    .ref-col.half.image-right .ref-item {
        flex-direction: column;
    }

    .ref-col.half .ref-item .image {
        width: 100%;
        aspect-ratio: 16 / 10;
    }

    .reference-text-lists {
        grid-template-columns: 1fr;
        gap: 42px;
        margin-top: 72px;
        padding-top: 48px;
    }

    .reference-text-list .title {
        font-size: 26px;
    }
}


/***** MEMBER ITEM (zdieľané, globálne) *****/

.members-section {
    padding: 0 0 40px;
}

.members-section .heading {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

.member-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.member-item {
    flex: 1 1 calc(25% - 24px);
    max-width: calc(25% - 24px);
}

.member-item .image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    margin-bottom: 16px;
}

.member-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-item .name {
    font-size: 18px;
    font-weight: 700;
    color: var(--second-text-color);
    margin-bottom: 4px;
}

.member-item .role {
    font-size: 14px;
    font-weight: 300;
    color: rgba(22, 22, 22, 0.55);
}

.member-item .contact {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(22, 22, 22, 0.45);
}

.members-section .group-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 56px 0 24px;
}

.members-section .group-title:first-of-type {
    margin-top: 0;
}

@media (max-width: 991px) {
    .member-item {
        flex: 1 1 calc(33.333% - 22px);
        max-width: calc(33.333% - 22px);
    }
}

@media (max-width: 767px) {
    .member-item {
        flex: 1 1 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }
}

@media (max-width: 480px) {
    .member-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/***** CAREER ITEM (zdieľané, globálne) *****/

.career-section {
    padding: 40px 0 100px;
}

.career-list {
    display: flex;
    flex-direction: column;
}

.career-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: #FAF9F7;
    border-radius: 20px;
    padding: 40px 48px;
    margin-bottom: 50px;
}

.career-item .main {
    flex: 1;
}

.career-item .title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}

.career-item .text {
    max-width: 640px;
    font-size: 17px;
    font-weight: 300;
    color: rgba(22, 22, 22, 0.6);
    margin-bottom: 24px;
}

.career-item .meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.career-item .meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 400;
}

.career-item .meta-row svg {
    width: 22px;
    height: 22px;
    color: var(--second-text-color);
}

.career-item .side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    flex-shrink: 0;
}

.career-item .salary {
    font-size: 17px;
    font-weight: 600;
    white-space: nowrap;
}

.career-item .side .t-btn {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .career-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
    }

    .career-item .side {
        align-items: flex-start;
        width: 100%;
    }
}


/***** REFERENCE DETAIL (zdieľané) *****/

.reference-detail-section {
    padding: 0 0 100px;
}

.reference-detail-section .cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 32px;
}

.reference-detail-section .text {
    max-width: 760px;
    font-size: 17px;
    font-weight: 300;
}

@media (max-width: 767px) {
    .reference-detail-section {
        padding: 0 0 60px;
    }
}


/***** FOOTER *****/

/* main */

.main-footer {
    background: var(--second-color);
    color: var(--second-text-color);
}

.main-footer .main {
    padding: 60px 0;
}

.main-footer .footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
}

.main-footer .footer-grid .col-1 {
    flex: 1 1 140px;
}

.main-footer .footer-grid .col-4 {
    flex: 4 1 260px;
}

@media (max-width: 767px) {
    .main-footer .footer-grid .col-1,
    .main-footer .footer-grid .col-4 {
        flex: 1 1 100%;
    }
}

.main-footer .main .logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 12px;
}

.main-footer .main .logo img {
    height: 44px;
    display: block;
}

.main-footer .main .logo + .text {
    font-size: 15px;
    font-weight: 300;
    color: rgba(22, 22, 22, 0.55);
    margin-top: 12px;
    margin-bottom: 12px;
}

.main-footer .main .socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.main-footer .main .socials a {
    font-size: 19px;
    font-weight: 600;
    color: var(--second-text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.main-footer .main .socials a:hover {
    opacity: 0.6;
    text-decoration: underline;
}

/* links */

.main-footer .footheading {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 14px;
}

.main-footer .links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.main-footer .links a {
    font-size: 16px;
    text-decoration: none;
    font-weight: 300;
    color: rgba(22, 22, 22, 0.55);
    transition: color 0.3s ease;
}

.main-footer .links a:hover {
    color: var(--second-text-color);
    text-decoration: underline;
}

/* contact */

.main-footer .contact .text {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(22, 22, 22, 0.55);
}

.main-footer .contact .person {
    margin-top: 20px;
}

.main-footer .contact .person .name {
    font-size: 16px;
    font-weight: 600;
    color: var(--second-text-color);
    margin-bottom: 8px;
}

.main-footer .contact .person .name small {
    font-size: 11px;
    font-weight: 300;
    color: rgba(22, 22, 22, 0.55);
    margin-left: 6px;
}

/* bottom */

.main-footer .bottom .container {
    border-top: 1px solid rgba(22, 22, 22, 0.12);
    padding: 16px 0;
}

.main-footer .bottom .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.main-footer .bottom .text {
    font-size: 14px;
    font-weight: 200;
    opacity: 0.7;
}

.main-footer .bottom .credit a {
    text-decoration: none;
}

.main-footer .bottom .credit a:hover {
    text-decoration: underline;
}
