#laptopModel {
    height: 100%;
    width: 100%;
}

.hero-container {
    position: absolute;
    z-index: 2;
}

.laptop-container-wrapper {
    display: flex;
    align-items: center;
    height: 90vh;
    max-height: 780px;
}

.laptop-container {
    margin: 0 0 0 32%;
    width: 68%;
    height: 100%;
    pointer-events: none;
}

.what-is {
    width: 54%;
}

.verticle-line {
    position: absolute;
    border-left: 4px solid transparent;
    border-image: linear-gradient(0deg,
            var(--fg-pink) 0%,
            rgba(255, 255, 255, 1) 100%) 1;
    left: 50%;
    height: 100%;
    margin: -1rem 0 0 0;
    z-index: 8;
    pointer-events: none;
}

.line-start-circle {
    position: absolute;
    min-width: 20px;
    min-height: 20px;
    background-color: #fff;
    margin-left: -12px;
    border-radius: 50%;
    z-index: 10;
    pointer-events: none;
}

.line-end-circle {
    z-index: 10;
    bottom: 0;
    position: absolute;
    min-width: 20px;
    min-height: 20px;
    background-color: var(--fg-pink);
    margin-left: -12px;
    border-radius: 50%;
    pointer-events: none;
}

.attach-line-left {
    position: absolute;
    border-bottom: 2px solid #facbe0;
    border-left: 2px solid #facbe0;
    height: 3.6rem;
    border-bottom-left-radius: 85%;
    width: 3.6rem;
    margin: -3rem 0 0 -3rem;
    pointer-events: none;
}

.left-mini-circle {
    z-index: 10;
    right: 0;
    bottom: 0;
    position: absolute;
    min-width: 10px;
    min-height: 10px;
    margin: 0 -0.5rem -0.35rem 0;
    border: 2px solid;
    border-color: #facbe0;
    border-radius: 50%;
    pointer-events: none;
    background-color: var(--background-darkest);
}

.attach-line-right {
    position: absolute;
    border-bottom: 2px solid #f163a2;
    border-right: 2px solid #f163a2;
    height: 3.6rem;
    border-bottom-right-radius: 85%;
    width: 3.6rem;
    pointer-events: none;
    top: -3rem;
    right: -3.2rem;
}

.right-mini-circle {
    z-index: 10;
    bottom: 0;
    position: absolute;
    min-width: 10px;
    min-height: 10px;
    margin: 0 0 -0.35rem -0.5rem;
    border: 2px solid;
    border-color: #f163a2;
    border-radius: 50%;
    pointer-events: none;
    background-color: var(--background-darkest);
}

.transition-card {
    transition: box-shadow 0.15s, transform 0.14s;
}

.transition-card:hover {
    box-shadow: 0px 20px 62px -32px rgba(232, 3, 104, 0.45),
        0px 5px 60px -60px rgba(0, 0, 0, 0.3);
}

.image-hover-bg {
    background: linear-gradient(170deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 20%,
            rgba(20, 20, 20, 0.8) 50%,
            rgba(0, 0, 0, 1) 70%,
            rgba(0, 0, 0, 1) 100%);
}

.image-hover-wrapper {
    width: 50%;
}

.image-hover {
    position: relative;
    height: 100%;
    width: 100%;
    display: grid;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    counter-increment: section;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.double__img {
    grid-area: 1 / 1 / -1 / -1;
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-bg {
    background-image: url("images/hero-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


/* Tablet */
@media screen and (max-width: 991px) {
    .laptop-container-wrapper {
        flex-direction: column;
        height: auto;
    }

    .laptop-container {
        margin: 0 0 -4rem 0;
        width: 100%;
    }

    .hero-container {
        position: relative;
    }

}

@media screen and (max-width: 767px) {

    .verticle-line,
    .attach-line-left,
    .attach-line-right {
        display: none;
    }

    .what-is {
        width: auto;
    }
}

@media screen and (max-width: 575px) {
    .laptop-container {
        height: 60vh;
    }

    .dropleft .dropdown-menu {
        top: 90% !important;
        right: 90% !important;
    }
}

@media screen and (max-width: 380px) {
    .laptop-container {
        height: 50vh;
    }
}