:root {
    --equilodium-blue: #00436e;
}

html, body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 400;
    color: var(--equilodium-blue);
    background: #000;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
}

.home__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.home__content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
}

.home__panel {
    position: absolute;
    top: clamp(20px, 4vh, 45px);
    left: clamp(20px, 4.5vw, 75px);
    width: clamp(330px, 32vw, 500px);
}

.home__logo {
    display: block;
    width: clamp(190px, 18vw, 300px);
}

.home__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.home__box {
    width: 100%;
    margin-top: clamp(50px, 6vh, 75px);
    padding: clamp(18px, 1.5vw, 24px) clamp(20px, 1.8vw, 28px);
    background: rgba(255, 255, 255, 0.82);
    color: var(--equilodium-blue);
}

.home__title {
    margin: 0 0 18px;
    color: var(--equilodium-blue);
    font-size: clamp(19px, 1.35vw, 23px);
    font-weight: 700;
    line-height: 1.15;
}

.home__text {
    color: var(--equilodium-blue);
    font-size: clamp(17px, 1.05vw, 19px);
    font-weight: 400;
    line-height: 1.25;
}

.home__text p {
    margin: 0 0 15px;
}

.home__text p:last-child {
    margin-bottom: 0;
}

.home__text h1,
.home__text h2,
.home__text h3,
.home__text h4,
.home__text h5,
.home__text h6 {
    color: var(--equilodium-blue);
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.home__text strong,
.home__text b {
    font-weight: 700;
}

.home__text a {
    color: var(--equilodium-blue);
    text-decoration: none;
}

.home__text a[href^="tel:"],
.home__text a[href^="mailto:"] {
    color: var(--equilodium-blue);
    text-decoration: none;
    border-bottom: 1px solid var(--equilodium-blue);
    padding-bottom: 1px;
}

.home__text a[href^="tel:"]:hover,
.home__text a[href^="tel:"]:focus,
.home__text a[href^="mailto:"]:hover,
.home__text a[href^="mailto:"]:focus {
    border-bottom: 1px solid transparent;
}

@media (max-width: 991.98px) {
    .home__background {
        object-position: 57% center;
    }

    .home__panel {
        top: 25px;
        left: 30px;
        width: min(440px, calc(100vw - 60px));
    }

    .home__logo {
        width: 230px;
    }

    .home__box {
        margin-top: 50px;
    }
}

@media (max-width: 575.98px) {
    .home {
        min-height: 100svh;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .home__content {
        min-height: 100svh;
        padding: 18px 18px 35px !important;
    }

    .home__background {
        object-position: 60% center;
    }

    .home__panel {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
    }

    .home__logo {
        width: 185px;
    }

    .home__box {
        margin-top: 40px;
        padding: 18px 20px;
        background: rgba(255, 255, 255, 0.86);
    }

    .home__title {
        margin-bottom: 15px;
        font-size: 20px;
    }

    .home__text {
        font-size: 17px;
    }
}