#landing-page {
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    color: white;
}
.lp-background {
    background: url(../../imgs/bgs/LP.jpg);
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -3;
}

.lp-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-1rem);
    height: 100%;
}
.lp-main h2 {
    font-size: 2.2rem;
    font-weight: 200;
    margin-bottom: 1rem;
    color: white;
}
.lp-main img:first-of-type {
    height: 12rem;
}
.lp-main h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 300;
}
.separator {
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white 20%, white 80%, rgba(255, 255, 255, 0));
    height: 2px;
    width: 500px;
    clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);

    margin: 0 3rem 1rem;
}
.lp-main img:last-of-type {
    height: 2.5rem;
    image-rendering:optimizeQuality;
}
.line-dots-1,
.line-dots-2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.line-dots-1 img,
.line-dots-2 img {
    height: 100%;
}
.line-dots-1 {
    z-index: -1;
    opacity: 1;
}
.line-dots-1 img:first-child { 
    transform-origin: center;
    transform: translate(-40%, -30%) rotate( -43deg) scaleX(-1);
}
.line-dots-1 img:last-child {
    transform-origin: center;
    transform: translate(35%, -100%) rotate(230deg) scaleX(-1);
}
.line-dots-2 {
    transform: scaleX(-1.3) scaleY(1.3) translateX(7%) translateY(5%);
    z-index: -2;
    opacity: .3;
}
.line-dots-2 img:first-child { 
    transform: translate(-40%, -30%) rotate( -43deg) scaleX(-1);
}
.line-dots-2 img:last-child {
    transform: translate(35%, -100%) rotate(230deg) scaleX(-1);
}
.down-arrows {
    position: absolute;
    bottom: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 3.3rem;
    animation: arrows-animate .65s alternate infinite;
}
.arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: white;
    clip-path: polygon(0 0%, 100% 0, 50% 100%);
}
.arrow:nth-child(1) {
    opacity: .4;
    transform: translateY(0);
}
.arrow:nth-child(2) {
    opacity: .6;
    transform: translateY(50%);
}
.arrow:nth-child(3) {
    opacity: .8;
    transform: translateY(100%);
}

@keyframes arrows-animate {
    from {
        transform: translate(-50%, 0);
    }
    to {
        transform: translate(-50%, -.5rem);
    }
}

@media screen and (max-width:768px) {
    .lp-main {
        padding: 0 2rem;
    }
    .separator {
        width: 120%;
    }
    .line-dots-1,
    .line-dots-2 {
        position: absolute;
        overflow: hidden;
        height: 50%;
    }
    .line-dots-2 {
        transform: scaleX(-1) scaleY(1) translateX(0) !important;
    }
}