
#welcome {
    position: relative;
}
#welcome {
    width: auto;
    height: 100svh;
}
#welcome {
    background: rgb(0,0,0);
    background-image:
        linear-gradient(
            0deg,
            rgba(0,0,0,0.85) 0%,
            rgba(0,0,0,0.70) 60%,
            rgba(0,0,0,0.35) 100%
        ),
        url("https://vertige-lingerie.com/wp-content/uploads/2024/05/DSCF1358-scaled.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#welcome {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
#welcome .inner {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    gap: 5em;
}
@media screen and (max-width: 1024px) {
    #welcome .inner {
        margin-bottom: 30px;
    }
    #welcome .inner {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
    }
    #welcome .inner {
        box-sizing: border-box;
        padding: 2em;
    }
}
#welcome .inner .intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media screen and (max-width: 1024px) {
    #welcome .inner .intro {
        align-items: center;
        gap: 25px;
    }
}
#welcome .inner .intro h2 {
    font-family: 'aesthetic-font';
    font-size: 6em;
    font-weight: 900;
    letter-spacing: -1px;
}
@media screen and (max-width: 1024px) {
    #welcome .inner .intro h2 {
        display: none;
    }
}
#welcome .inner .intro img {
    display: none;
}
@media screen and (max-width: 1024px) {
    #welcome .inner .intro img {
        display: block;
    }
    #welcome .inner .intro img {
        width: 70%;
        height: auto;
    }
}
#welcome .inner .intro h4 {
    font-family: 'content-font';
    font-size: 18px;
    font-weight: 400;
}
@media screen and (max-width: 1024px) {
    #welcome .inner div:first-child h4 {
        display: none;
    }
}
#welcome .inner .intro h2,
#welcome .inner .intro h4 {
    color: #fff;  
}

/**** Button ****/
#welcome .inner .intro button {
    cursor: pointer;
}
#welcome .inner .intro button {
    width: fit-content;
}
#welcome .inner .intro button {
    margin-top: 20px;
}
@media screen and (max-width: 1024px) {
    #welcome .inner .intro button {
        margin-top: 0;
    }
}
#welcome .inner .intro button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
@media screen and (max-width: 1024px) {
    #welcome .inner .intro button {
        gap: 10px;
    }
}
#welcome .inner .intro button {
    box-sizing: border-box;
    padding: 10px 30px;
}
@media screen and (max-width: 1024px) {
    #welcome .inner .intro button {
        padding: 10px 20px;
    }
}
#welcome .inner .intro button {
    background-color: var(--color__2);
    border-radius: 50px;
    border: none;
    box-shadow: 0 0 10px #00000030;
}
@media screen and (max-width: 1024px) {
    #welcome .inner .intro button {
        background-color: #111;
    }
}
#welcome .inner .intro button {
    font-family: 'content-font';
    font-size: 16px;
    color: #fff;
}
#welcome .inner .intro button:hover {
    scale: 1.05;
    transition: .3s ease-in-out;
}
#welcome .inner .intro button svg {
    width: 24px;
}
#welcome .inner .intro button svg {
    fill: #fff;
}
@media screen and (max-width: 1024px) {
    #welcome .inner .intro button svg {
        width: 22px;
    }
}

/**** Form on mobile ****/
@media screen and (max-width: 1024px) {
    #welcome .inner .form {
        display: none;
    }
}

/**** Swipe down ****/
.swipedown {
    position: absolute;
    bottom: 3em;
}
.swipedown a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
@media screen and (min-width: 1024px) {
    .swipedown a:hover {
        transform: translateY(-10px);
        transition: .3s ease-in-out;
    }
}
.swipedown a span {
    font-family: 'aesthetic-font';
    font-size: 20px;
    color: #fff;
}
.swipedown a .arrow {
    width: 26px;
    height: 60px;
}
.swipedown a .arrow svg {
    width: 100%;
    height: 100%;
}
.swipedown a .arrow svg {
    overflow: visible;
}
.swipedown a .arrow path {
    fill: none;
    stroke: #fff;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawArrow 1.6s ease-in-out infinite;
}

@keyframes drawArrow {
    0%{
        stroke-dashoffset: 100;
        opacity: 0;
        transform: translateY(-6px);
    }
    20%{
        opacity: 1;
    }
    60%{
        stroke-dashoffset: 0;
        opacity: 1;
        transform: translateY(0);
    }
    100%{
        stroke-dashoffset: 0;
        opacity: .15;
        transform: translateY(8px);
    }
}