:root {
    --color--pureblack: rgb(20, 20, 20);
    --color--black: #1E1E1E;
    --color--lightblack: #4D4D4D;
    --color--bg: #E6E6E6;
    --color--purewhite: #fff;
    --color--white: #DFE0E5;
    --color--white--transparent: rgb(223, 224, 229, 0.5);
    --color--white--transparent--footer: rgb(223 224 229 / 75%);
    --color--white--transparent--text__behind: rgba(255, 255, 255, 0.95);
    --color--whiteblue: #8FA1F7;
    --color--blue: #1D3DDE;
    --color--darkblue: #0F2491;

    --text--big: 2.5rem;
    --text--medium: 1.5rem;
    --text--normal: 1rem;
    --text--small: 0.8rem;
}


html {
    box-sizing: border-box;

}

*,
*:before,
*:after {
    box-sizing: inherit;
    font-size: 1rem;
    line-height: 1.6;
    z-index: 10;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;

    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: ethnocentric, sans-serif;
    font-size: var(--text--normal);
    line-height: 1.6;
    color: var(--color--white);
}

h2 {
    font-size: var(--text--big);
}

h3 {
    font-size: var(--text--medium);

}

h4 {
    font-weight: lighter;
    font-size: var(--text--small);
}

p {
    font-family: forma-djr-micro, sans-serif;
    font-style: normal;
    line-height: 1.6;
    color: var(--color--white);
}

span {
    font-family: forma-djr-micro, sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.6;
    letter-spacing: 0.0199rem;
    color: var(--color--purewhite);
}

.span__black {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color--pureblack);
}

.behind__text {
    z-index: -1;
    position: absolute;
    color: var(--color--white--transparent);
    font-family: ethnocentric, sans-serif;
    font-size: 32rem;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.0199rem;
    opacity: 0.1;
    transform: translate(10rem, -20rem);
}

.behind__text--two {
    transform: translate(-10rem, -20rem);
}

.behind__text--tree {
    color: var(--color--white--transparent--text__behind);
}

.behind__text--four {
    color: var(--color--white--transparent--text__behind);
}

.behind__text--five {
    color: var(--color--white--transparent--footer);
    transform: translate(0rem, -16rem);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
}

body {
    z-index: -5;
    margin: 0;
    padding: 0;
    color: var(--color--black);
    background-color: var(--color--bg);
}

.body__home {
    background-image: url(../assets/bg-image/bg-image-home@1080.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.body__contact {
    background-image: url(../assets/bg-image/bg-image-contact@1080.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--color--black);
}

.body__tips1 {
    background-image: url(../assets/bg-image/bg-image-tips1@1080.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.body__tips2 {
    z-index: -5;
    background-image: url(../assets/bg-image/bg-image-tips2@1080.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

body::-webkit-scrollbar {
    display: none;
}

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

nav {
    display: flex;
    justify-content: center;
    width: 50%;
}

.logo {
    padding: 1rem;
    width: 20%;
}

.logo:hover {
    cursor: pointer;
}

.login {
    width: 20%;
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}

.menu__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin: auto 5rem;
    width: 100%;
}

.menu__item {
    padding: 1rem 2rem;
    font-family: forma-djr-micro, sans-serif;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.menu__item--active {
    border-bottom: solid 2px var(--color--white);
}

.menu__item:hover a {
    color: var(--color--white--transparent);
    cursor: pointer;
}

.menu__item:hover {
    border-color: var(--color--white--transparent);
    cursor: pointer;
}


a {
    text-decoration: none;
    color: var(--color--white);
}

.article__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.article__header--tips {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
    padding-top: 5rem;
    margin-top: 4rem;
    margin-bottom: 32rem;
}

.article__header__text {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    margin-top: 10rem;
}

.article__header__text>h1 {
    font-size: 4rem;
    margin-top: -1rem;
}

.article__header__text>p {
    font-family: ethnocentric, sans-serif;
    font-weight: lighter;
    font-size: var(--text--small);
}

.article__header__text--tips {
    margin-top: 0;
    text-align: left;
}


.article__header__text>div p {
    max-width: 28rem;
}

.article__header__button {
    margin-top: 10rem;
    margin-bottom: 5rem;
}

.button {
    display: block;
    padding: 1rem 2rem;
    margin-top: 2rem;
    border-radius: 50rem;
    border: none;
    background-color: var(--color--blue);
    color: var(--color--white);
    font-family: forma-djr-micro, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease-in-out;
    max-width: fit-content;
}

.button:hover {
    /* background-color: var(--color--darkblue);
    color: var(--color--whiteblue); */
    background-color: var(--color--black);
    color: var(--color--white);
    cursor: pointer;
    scale: 1.1;
}

.button--login {
    padding: 1rem 1.5rem;
    margin: auto .5rem;
}

.button--login:hover {
    background-color: var(--color--white);
    color: var(--color--black);
    cursor: pointer;
}

.button--ghost {
    display: inline-block;
    padding: 1rem 1.5rem;
    margin: auto .5rem;
    border: 1px solid var(--color--white);
    border-radius: 50rem;
    background-color: transparent;
    color: var(--color--white);
}

.button--ghost:hover {
    background-color: var(--color--white);
    color: var(--color--black);
    cursor: pointer;
}

.article__3piece {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 10rem;
}

.article__3pieces>h2 {
    display: flex;
    justify-content: center;
    font-size: var(--text--big);
    font-weight: normal;
}

.article__3piece--item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    max-width: 30%;
    min-width: 25%;
    padding: 2rem;
    background-color: var(--color--black);
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}

.article__3piece--item>h3 {
    margin-bottom: 1rem;
    text-align: center;
    height: 3rem;
}

.article__3piece--item>p {
    margin-bottom: 1rem;
}

.article__3piece--item--contactpage {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

.article__3piece--item--contactpage>h3 {
    margin: 0rem;
    margin-top: 1rem;
    padding: 1rem;
    height: fit-content;
}

.article {
    padding: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10rem;
}

.article--bald {
    margin-top: 5rem;
    padding-top: 20rem;
    margin-bottom: 10rem;
}

.article--steal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0rem;
    padding-bottom: 0rem;
}

.article__img {
    max-width: 50%;
    min-width: 40%;
    height: auto;
    display: flex;
    justify-content: center;

}

.article__img--spacerocket {
    align-self: center;
}

.article__reverse {
    padding: 2rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 10rem;
}

.article__reverse--excrement {
    margin-bottom: 8rem;
}

.article__reverse--about {
    margin-bottom: 0rem;
    padding-bottom: 10rem;
}

.article--text {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-self: center;
    padding-bottom: 1.5rem;
}

.article--text__white>p {
    color: black;
}

.article--text__white>h2 {
    color: black;
}

.article--text>p {
    max-width: 28rem;
}

.article--text--contact>h1 {
    font-size: 4rem;
    margin-top: -1rem;

}


.article--steps {
    padding-bottom: 10rem;
    margin: auto;
}

.article--contact {
    margin-top: 10rem;
}

footer {
    background-color: var(--color--black);
}

.footer {
    padding-top: 2rem;
    color: var(--color--white--transparent--footer);
    font-family: forma-djr-micro, sans-serif;
    font-weight: lighter;
    display: flex;
    justify-content: space-between;
    line-height: 1.4;
}

.footer a {
    color: var(--color--white--transparent--footer);
    text-decoration: underline;
}

.footer a:hover {
    color: var(--color--white);
}

.footer__2piece {
    display: flex;
    justify-content: space-between;
    width: 45%;
}

.footer__piece {
    margin: 2rem;
}

.footer__piece>h3 {
    padding-bottom: 1rem;
    color: var(--color--white--transparent--footer);
    font-size: var(--text--small);
    font-weight: 300;
    letter-spacing: 0.05rem;

}

.footer__piece>h3:hover {
    color: var(--color--white);

}

.socialmediaicon {
    width: 2rem;
    height: auto;
    margin: .2rem;
    transition: all 0.2s ease-in-out;
}

.cls-02 {
    fill: var(--color--white--transparent--footer);

}

.socialmediaicon:hover {
    scale: 1.2;
}

.img__icon {
    width: 2rem;
    height: auto;
    margin: .2rem;
    transition: all 0.2s ease-in-out;
}

.img__icon:hover {
    scale: 1.2;
}

.footer__copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin-top: 1rem;
}

.footer__copyright p {
    color: var(--color--white--transparent--footer);
    font-size: 1rem;
}


/* login  */

.login__background {
    background-image: url(../assets/bg-image/bg-image-stars@1080.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login__block {
    background-color: var(--color--black);
    border-radius: 2rem;
    padding: 2rem;
    display: inline-block;
    width: 30%;
    height: max-content;
}

.heading__loginpage {
    display: flex;
    justify-content: center;
}

.login__question {
    display: flex;
    justify-content: center;
    padding: 1rem;
    background-color: var(--color--lightblack);
    border-radius: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.login__question p {
    color: var(--color--white--transparent);
}

.button__loginpage {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color--blue);
    color: var(--color--white);
    font-family: forma-djr-micro, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-radius: 1rem;
    margin-bottom: 0rem;
    padding: 1.2rem;
    margin-top: 1.5rem;
}

.button__loginpage:hover {
    background-color: var(--color--white);
    color: var(--color--black);
    cursor: pointer;
    scale: 1;
}