/* Hero Section start */

#hero {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    transform: translateY(-165px);
}

#hero .hero-title {
    color: rgb(var(--gray-950));
    font-weight: 500;
    line-height: 53px;
    font-size: 62px;
    padding-top: 20px;
    text-transform: uppercase;
}

.dark-mode #hero .hero-title {
    color: rgb(var(--white2));
}

#hero .services {
    margin-top: 20px;
}

#hero .services li {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    gap: 10px;
}

.dark-mode #hero .services li a {
    color: rgb(var(--white2));
}

#hero .services span {
    color: rgb(var(--base1));
    font-weight: 700;
}

#hero .services li a {
    color: rgb(var(--gray-950));
}

#hero .services li a:hover {
    text-decoration: underline;
}


#hero .monkey-banner {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 0rem;
}

#hero .monkey-banner-wrapper {
    top: 0px;
    right: 0px;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

#hero .monkey-banner-inner {
    position: relative;
    height: 500px;
    margin-left: 24px;
}

#hero .banner-img {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    max-width: 380px;
    padding-inline-end: 1.5rem;
}

#hero .laptop-flash {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    clip-path: polygon(350px 0, 100% 0, 100% 100%, 35px 100%, 8px 88%);
}

#hero .flash-1 {
    background: rgb(var(--base1));
    height: 100%;
}

#hero .flash-2 {
    background: white;
    height: 20px;
}

.dark-mode #hero .flash-2 {
    background: rgb(var(--dark-mode-body-bg));
}

/* Hero Section end */

#service-details {
    position: relative;
}

#service-details .details-item {
    border-top: 2px solid rgb(var(--base2));
    padding-top: 35px;
    display: flex;
    gap: 50px;
    padding-bottom: 170px;
    scroll-margin-block-start: 180px;
}

.dark-mode #service-details .details-item {
    color: rgb(var(--white2));
}

#service-details .details-item .title {
    width: 40%;
    flex-shrink: 0;
    font-size: 35px;
    line-height: 1;
}

#service-details .details-item .description {
    width: 60%;
    font-family: var(--font-secondary);
    font-size: 20px;
    line-height: 35px;
}

#service-details .details-item .description ul {
    list-style-type: disc;
}

#service-details .details-item .description ul li {
    margin-bottom: 20px;
}



#service-details .details-item .description p {
    margin-bottom: 20px;
}

#service-details .details-item .description a {
    color: rgb(var(--base1));
    text-decoration: underline;
}

#service-details #privacy-policy li,
#service-details #moving li {
    font-weight: bold;
}


@media (max-width: 639px) {

    #hero .hero-title {
        text-align: center;
    }

    #service-details .details-item {
        padding-top: 20px;
    }

    #service-details .details-item {
        flex-direction: column;
        gap: 0px;
        padding-bottom: 70px;
    }

    #service-details .details-item .title {
        width: 100%;
        padding-bottom: 20px;
        font-size: 22px;
    }

    #service-details .details-item .description {
        width: 100%;
        font-size: 18px;
        line-height: 1.6;
    }

    #service-details .details-item .description ul {
        padding-left: 20px;
    }


}


@media (min-width: 640px) and (max-width: 767px)  {
    #service-details .details-item {
        flex-direction: column;
        gap: 0px;
        padding-bottom: 120px;
    }

    #service-details .details-item .title {
        width: 100%;
        padding-bottom: 20px;
    }

    #service-details .details-item .description {
        width: 100%;
    }

    #service-details .details-item .description ul {
        padding-left: 20px;
    }

}


@media (min-width: 768px) and (max-width: 1023px)  {
    #service-details .details-item {
        flex-direction: column;
        gap: 0px;
        padding-bottom: 120px;
    }

    #service-details .details-item .title {
        width: 100%;
        padding-bottom: 20px;
    }

    #service-details .details-item .description {
        width: 100%;
    }
}


@media (min-width: 320px) {
    #hero .laptop-flash {
        clip-path: polygon(370px 0, 100% 0, 100% 100%, 40px 100%, 8px 86%);
    }
}

/*sm*/
@media (min-width: 640px) {

    #hero .monkey-banner-wrapper {
        max-width: 600px;
    }

    #hero .laptop-flash {
        clip-path: polygon(400px 0, 100% 0, 100% 100%, 40px 100%, 9px 85%);
    }


    #review {
        margin-top: 0;
    }

    #review .description br {
        display: unset;
    }

    #fastInternet .upgrade-internet, #fastInternet .business-internet {
        gap: 24px;
    }

    #fastInternet .banner {
        width: 85%;
    }

    #fastInternet .business-internet .banner {
        width: 45%;
    }

    #fastInternet h2 {
        font-size: 40px;
    }

    #fastInternet .slogan {
        font-size: 70px;
    }

    #fastInternet ul {
        font-size: 20px;
        padding-top: 20px;
    }

    #fastInternet .action a {
        font-size: 18px;
    }

}

/*md*/
@media (min-width: 768px) {

    /* Hero CSS */
    #hero {
        display: block;
        transform: translateY(0);
    }

    #hero .hero-title {
        transform: translateY(-120px);
    }

    #hero .signup-btn a {
        transform: translateY(-98px);
    }

    #hero .monkey-banner-wrapper {
        transform: translateY(-165px);
    }

    #hero .hero-wrapper {
        padding-top: 30px;
        padding-bottom: 15vw;
    }

    #hero .hero-title {
        transform: translateY(0);
        line-height: 50px;
        font-size: 60px;
        text-align: left;

    }

    #hero .benefits {
        transform: translateY(0);
        justify-content: flex-start;
        padding-top: 1rem;
        padding-bottom: 0px;
        gap: 0.9rem;
    }

    #hero .benefits > :not([hidden]) ~ :not([hidden]) {
        border-right-width: 2px;
        border-left-width: 2px;
    }

    #hero .benefits span {
        padding-left: 0.9rem;
        letter-spacing: 10 !important;
        display: inline-block;
    }

    #hero .signup-btn {
        text-align: left;
    }

    #hero .signup-btn a {
        transform: translateY(0);
        margin-top: 1.25rem;
        font-size: 45px;
        line-height: 50px;
        border-radius: 0.5rem;
    }

    #hero .monkey-banner {
        padding-bottom: 0px;
    }

    #hero .monkey-banner-wrapper {
        position: absolute;
        max-width: none;
        width: 54%;
        height: 100%;
    }

    #hero .banner-img {
        max-width: none;
        width: 350px;
    }

    #hero .laptop-flash {
        clip-path: polygon(400px 0, 100% 0, 100% 100%, 40px 100%, 6px 87%);
    }

    #hero .flash-2 {
        height: 14px;
    }


    #fastInternet .upgrade-internet, #fastInternet .business-internet {
        gap: 48px;
    }

    #fastInternet .business-internet {
        padding-top: 200px;
    }

    #fastInternet .banner {
        width: 53%;
    }

    #fastInternet .business-internet .banner {
        width: 53%;
    }

    #fastInternet h2 {
        font-size: 40px;
    }

    #fastInternet .slogan {
        font-size: 70px;
    }

    #fastInternet ul {
        font-size: 20px;
        padding-top: 20px;
    }

    #fastInternet .business-internet ul {
        padding-top: 15px;
    }

    #fastInternet .action a {
        font-size: 22px;
    }

}

@media (min-width: 865px) {
    #hero .laptop-flash {
        clip-path: polygon(400px 0, 100% 0, 100% 100%, 40px 100%, 7px 87%);
    }

}

/*lg*/
@media (min-width: 1024px) {

    /* Hero CSS */
    #hero .hero-wrapper {
        padding-top: 50px;
    }

    #hero .hero-title {
        line-height: 65px;
        font-size: 80px;
    }

    #hero .benefits {
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 10px;
        padding-top: 20px;
    }

    #hero .banner-img {
        width: 450px;
    }

    #hero .laptop-flash {
        clip-path: polygon(500px 0, 100% 0, 100% 100%, 45px 100%, 10px 85.5%);
    }

    #hero .flash-2 {
        height: 25px;
    }

    #hero .monkey-banner-inner {
        height: 600px;
    }

    #review {
        padding-top: 60px;
    }

    #fastInternet h2 {
        font-size: 55px;
    }

    #fastInternet .slogan {
        font-size: 105px;
        line-height: 1;
    }

    #fastInternet ul {
        font-size: 25px;
    }
}

@media (min-width: 1077px) {
    #hero .laptop-flash {
        clip-path: polygon(500px 0, 100% 0, 100% 100%, 45px 100%, 10px 86%);
    }
}

@media (min-width: 1150px) {
    #hero .laptop-flash {
        clip-path: polygon(500px 0, 100% 0, 100% 100%, 45px 100%, 10px 87%);
    }
}

/*xl*/
@media (min-width: 1280px) {

    /* Hero CSS */
    #hero .hero-wrapper {
        padding-top: 150px;
    }

    #hero .monkey-banner-wrapper {
        width: 58%;
    }

    #hero .hero-title {
        line-height: 95px;
        font-size: 120px;
    }

    #hero .benefits {
        font-size: 30px;
        line-height: 32px;
        padding-top: 1.5rem;
        padding-bottom: 0.875rem;
    }

    #hero .signup-btn a {
        font-size: 55px;
        line-height: 60px;
    }

    #hero .banner-img {
        width: 600px;
    }

    #hero .laptop-flash {
        clip-path: polygon(680px 0, 100% 0, 100% 100%, 65px 100%, 9px 86%);
    }

    #hero .flash-2 {
        height: 32px;
    }

    #hero .monkey-banner-inner {
        height: 800px;
    }

    #fastInternet {
        padding-top: 125px;
    }

    #fastInternet ul {
        font-size: 20px;
        line-height: 25px;
    }

    #fastInternet ul li span {
        font-size: 28px;
        line-height: 30px;
    }
}

@media (min-width: 1320px) {

    #hero .laptop-flash {
        clip-path: polygon(680px 0, 100% 0, 100% 100%, 65px 100%, 9px 86%);
    }

    #hero .flash-2 {
        height: 33px;
    }
}

@media (min-width: 1475px) {

    #hero .laptop-flash {
        clip-path: polygon(680px 0, 100% 0, 100% 100%, 65px 100%, 9px 86%);
    }
}

/*2xl*/
@media (min-width: 1536px) {

    #hero .monkey-banner-wrapper {
        width: 54%;
    }

    /* Hero CSS */
    #hero .hero-wrapper {
        padding-top: 100px;
    }

    #hero .banner-img {
        width: 700px;
    }

    #hero .laptop-flash {
        clip-path: polygon(700px 0, 100% 0, 100% 100%, 80px 100%, 20px 82%);
    }

    #hero .flash-2 {
        height: 35px;
    }

}


