﻿body {
    background-color: var(--bs-body-bg);
}
/* =14px */
h1 {
    font-size: 2.4rem;
}

/* =24px */
.container__item {
    margin: 0 auto 40px;
}

.landing-page-container {
    width: 100%;
    min-height: 100%;
    height: 70rem;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    color: var(--bs-tertiary-color);
}

.content__wrapper {
    max-width: 1200px;
    width: 90%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.header {
    width: 100%;
    height: 2rem;
    padding: 4.5rem 0;
    display: block;
}


.header__item {
    display: inline-block;
    float: left;
}

.menu-icon__line {
    width: 1.5rem;
    height: 0.2rem;
    background-color: #0C383E;
    display: block;
}

    .menu-icon__line:before, .menu-icon__line:after {
        content: "";
        width: 1.5rem;
        height: 0.2rem;
        background-color: #0C383E;
        display: inline-block;
        position: relative;
    }

    .menu-icon__line:before {
        left: 0.5rem;
        top: -0.6rem;
    }

    .menu-icon__line:after {
        top: -1.8rem;
    }

.heading {
    width: 100%;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.7rem;
    margin: 0 auto;
    text-align: center;
}

.social-container {
    width: 7.25rem;
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
    float: right;
}

    

.coords {
    font-size: 1rem;
    display: inline-block;
    transform: rotate(-90deg) translateY(50%);
    float: left;
    position: relative;
    top: 40%;
    letter-spacing: 0.2rem;
    left: -11.5rem;
    margin: 0;
}

.ellipses-container {
    width: 50rem;
    height: 50rem;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    top: 10.5rem;
}

    .ellipses-container .greeting {
        position: absolute;
        top: 20.6rem;
        left: 13rem;
        right: 0;
        margin: 0 auto;
        text-transform: uppercase;
        letter-spacing: 4rem;
        font-size: 2.2rem;
        font-weight: 400;
        opacity: 0.5;
    }

        .ellipses-container .greeting:after {
            content: "";
            width: 0.3rem;
            height: 0.3rem;
            border-radius: 50%;
            display: inline-block;
            background-color: var(--bs-tertiary-color);
            position: relative;
            top: -0.65rem;
            left: -5.05rem;
        }

.ellipses {
    border-radius: 50%;
    position: absolute;
    top: 0;
    border-style: solid;
}

[data-bs-theme=dark] .ellipses__outer--thin {
    border-color: rgba(122, 126, 130, 0.1);
}

.ellipses__outer--thin {
    width: 100%;
    height: 100%;
    border-width: 1px;
    border-color: rgba(9, 56, 62, 0.1);
    -webkit-animation: ellipsesOrbit 15s ease-in-out infinite;
    animation: ellipsesOrbit 15s ease-in-out infinite;
}

    .ellipses__outer--thin:after {
        content: "";
        background-image: url("https://cdn-icons-png.flaticon.com/512/188/188987.png");
        background-repeat: no-repeat;
        background-position: center;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        opacity: 0.15;
    }

.ellipses__outer--thick {
    width: 100%;
    height: 100%;
    border-color: var(--bs-tertiary-color) transparent;
    border-width: 2px;
    transform: rotate(-45deg);
    -webkit-animation: ellipsesRotate 15s ease-in-out infinite;
    animation: ellipsesRotate 15s ease-in-out infinite;
}

.ellipses__orbit {
    width: 2.5rem;
    height: 2.5rem;
    border-width: 2px;
    border-color: var(--bs-tertiary-color);
    top: 5rem;
    right: 7rem;
}

    .ellipses__orbit:before {
        content: "";
        width: 0.7rem;
        height: 0.7rem;
        border-radius: 50%;
        display: inline-block;
        background-color: var(--bs-tertiary-color);
        margin: 0 auto;
        left: 0;
        right: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

.scroller {
    width: 7.5rem;
    display: inline-block;
    float: right;
    position: relative;
    top: -15%;
    transform: translateY(50%);
    overflow: hidden;
}

    .scroller .page-title {
        font-family: "Playfair Display", serif;
        letter-spacing: 0.5rem;
        display: inline-block;
        float: left;
        margin-top: 1rem;
    }

    .scroller .timeline {
        width: 1.5rem;
        height: 9rem;
        display: inline-block;
        float: right;
    }

        .scroller .timeline .timeline__unit {
            width: 100%;
            height: 0.1rem;
            display: block;
            background-color: #0C383E;
            margin: 0 0 2rem;
            opacity: 0.2;
        }

            .scroller .timeline .timeline__unit.timeline__unit--active {
                opacity: 1;
            }

                .scroller .timeline .timeline__unit.timeline__unit--active:after {
                    opacity: 0.2;
                }

            .scroller .timeline .timeline__unit:after {
                content: "";
                width: 70%;
                height: 0.1rem;
                display: block;
                position: relative;
                float: right;
                background-color: #0C383E;
                top: 1rem;
            }

@-webkit-keyframes ellipsesRotate {
    0% {
        transform: rotate(-45deg);
    }

    100% {
        transform: rotate(-405deg);
    }
}

@keyframes ellipsesRotate {
    0% {
        transform: rotate(-45deg);
    }

    100% {
        transform: rotate(-405deg);
    }
}

@-webkit-keyframes ellipsesOrbit {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes ellipsesOrbit {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}
