.logo-main-contant {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
}

.logo-img {
    max-width: 20vw;
    width: 100%;
    position: absolute;
    top: 10%;
    left: 4%;
    cursor: pointer;
}

.logo-text {
    position: absolute;
    bottom: 23%;
    left: 0;
    color: #000;
    max-width: 25vw;
    width: 100%;
    text-align: center;
}
.logo-text p {
    font-size: 1.5vw;
    line-height: 1.2em;
    /* letter-spacing: 0.03em; */
}

@media screen and (max-width: 990px) {
    .logo-main-contant {
        display: block;
        /* position: absolute; */
        text-align: center;
        /* margin: 0 auto; */
    }
    .logo-img {
        left: 50%;
        right: 50%;
        top: 25%;
        transform: translate(-50%, -50%);
        max-width: 40vw;
        width: 100%;
    }
    .logo-text {
        left: 50%;
        right: 30%;
        top: 60%;
        transform: translate(-50%, -50%);
        display: block;
        margin: 0 auto;
        max-width: 35vw;
        width: 100%;
    }
    .logo-text p {
        font-size: 2.5vh;
        font-weight: bold;
    }
    .scroll-to {
        display: none;
    }
}