html, body {
    overscroll-behavior: none;
}

.home-page {
    height: 100vh;
    overflow: hidden;
}

body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.hero{
    width: 100%;
    height: 100vh;

    display: flex;
}

.hero_back {
    max-width: 60%;
    height: 100%;
    position: relative;
}

.hero_image {
    height: 100%;
    width: 100%;

    object-fit: cover;
    object-position: right;
    user-select: none;

    border-radius: 20%;
}

.hero_jet {
    position: absolute;
    width: 150%;
    max-width: 1500px;
    min-width: 1000px;

    right: -10%;
    bottom: 10%;

    object-fit: cover;
    object-position: right;
    user-select: none;
}

.hero_body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.hero_content_H1 *{
    font-family: Manasco;
    font-size: 5vw;

}

.hero_content_H1 span:nth-child(1) {
    color: #8DB1D9;
}

.hero_content_H1 span:nth-child(2) {
    color: #B59C98;
}

.hero_content_H1 span:nth-child(3) {
    color: #91657E;
}

.hero_content_below *{
    font-family: "Poiret One", sans-serif;
    font-size: 2em;
    color: #a5a5a5;

    margin-top: 1em;

}


/* Главный Header */


.main-header{
    width: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    padding: 1em;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

.main-header-logo{
    transform: translateX(-50%);
}

@media (min-width: 1300px) {
    .main-header-logo{
        transform: translateX(0);
    }
}

.main-header-logo img{
    height: 50px;
    width: auto;
}

.main-header a{
    font-family: "Poiret One", sans-serif;
    font-size: 1.1em;
    font-weight: 800;

    padding: 0.7em 1em;
    text-decoration: none;
    color: #8DB1D9;
    transition-duration: 0.2s;

    border: 1px solid #8DB1D9;
    border-radius: 30px;

    z-index: 100;
}

.main-header a:hover {
    background: #8DB1D9;
    color: #fff;
}

/* Полноэкранный мобильный дизайн */
@media (max-width: 768px) {
    body {
        background: white;
        margin: 0;
        padding: 0;
        overflow-x: hidden;

        height: auto;
        min-height: 100vh;
    }

    .hero {
        flex-direction: column;
        height: 100vh;
        position: relative;
        width: 100%;
    }

    .hero_back {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
    }

    .hero_image {
        display: none;
    }

    .hero_jet {
        position: absolute;
        width: 60%;
        max-width: 200px;
        height: auto;
        top: 15%;
        left: 10%;
        transform: translateX(-50%);
        z-index: 1;
        opacity: 0.3;
    }

    .hero_body {
        position: relative;
        z-index: 2;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 80px 20px 20px;
        background: transparent;
    }

    .hero_content {
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 300px;
    }

    .hero_content_H1 {
        margin-bottom: 20px;
    }

    .hero_content_H1 * {
        font-size: 40px;
        line-height: 1.1;
        color: #2c3e50;
        text-shadow: none;
    }

    .hero_content_H1 span:nth-child(1) {
        color: #8DB1D9;
    }

    .hero_content_H1 span:nth-child(2) {
        color: #8DB1D9;
    }

    .hero_content_H1 span:nth-child(3) {
        color: #91657E;
    }

    .hero_content_below *{
        position: absolute;
        left: 0;
        bottom: 0;

        font-size: 1.5em;
        color: #666;
        text-shadow: none;
        margin-top: 1em;
    }

    .hero_content_below span:nth-child(1){
        transform: rotate(90deg) translateX(-70%) translateY(50%);
        color: #B59C98;
    }

    .hero_content_below span:nth-child(2){
        transform: translateX(5%) translateY(-10%);
    }

    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        background: white;
        padding: 5px 5px;
        justify-content: space-between;
    }

    .main-header-logo {
        transform: none;
    }

    .main-header-logo img{
        height: 2rem;
        transform: none;
    }

    .logo-text {
        font-size: 1rem;
        color: #2c3e50;
        text-shadow: none;
    }

    .main-header a {
        border: none;
        color: #8DB1D9;
        backdrop-filter: none;
    }

    .main-header a::before {
        content: "● ";
    }

    .main-header a:hover {
        color: #7fa8c7;
    }
}

@media (max-height: 730px) {
    .hero_content{
        min-height: 50px;
        justify-content: start;
    }

    .hero_jet{
        bottom: 1%;
    }
}
