@import url('/css/accordion.css');

.nav-highlight {
    background: none;
    padding: 0 0px;
    border-radius: 0px;
    margin: 0 !important;
}

#hero {
    padding-top: 100px;
    padding-bottom: 100px;
}

#hero .hero-title {
    line-height: 95px;
    font-size: 120px;
    color: rgb(var(--gray-950));
    font-weight: 500;
    padding-top: 15px;
    text-transform: uppercase;
}

.dark-mode #hero .hero-title {
    color: rgb(var(--white2));
}

#hero .benefits {
    color: rgb(var(--gray-950));
    font-size: 30px;
    line-height: 32px;
    padding-top: 1.5rem;
    padding-bottom: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-family: var(--font-secondary);
    letter-spacing: -0.8px;
}

.dark-mode #hero .benefits {
    color: rgb(var(--white2));
}

#hero .benefits > :not([hidden]) ~ :not([hidden]) {
    border-right-width: 2px;
    border-left-width: 2px;
    border-color: rgb(var(--gray-950));
    border-left-style: solid;
}

.dark-mode #hero .benefits > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(var(--white2));
}

#hero .benefits span {
    padding-left: 0.9rem;
    letter-spacing: 10 !important;
    display: inline-block;
}

#hero .benefits span:first-child {
    padding-left: 0 !important;
}


#hero .wrapper {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

#hero .left {
    grid-column: span 4;
    padding-top: 80px;
}

#hero .right {
    grid-column: span 3;
}

#hero .right img {
    width: 90%;
}

#hero .left .buttons {
    display: flex;
    gap: 20px;
    padding-top: 25px;
}

#hero .left .buttons a {
    font-family: var(--font-secondary);
    color: white;
    background-color: rgb(var(--dark2));
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    display: inline-block;
    transition: .4s;
    line-height: 1;
}

.dark-mode #hero .left .buttons a {
    background-color: black;
}

#hero .left .buttons a:hover {
    background-color: rgb(var(--base1));
}


#serviceDetails {
    position: relative;
}

#serviceDetails .details-item {
    border-top: 2px solid rgb(var(--base2));
    padding-top: 35px;
    display: flex;
    gap: 50px;
    padding-bottom: 100px;
}

#serviceDetails .details-item .title {
    width: 40%;
    flex-shrink: 0;
    font-size: 35px;
    line-height: 1;
}

.dark-mode #serviceDetails .details-item .title {
    color: rgb(var(--white2));
}

#serviceDetails .details-item .description {
    width: 60%;
    font-family: var(--font-secondary);
    font-size: 20px;
    line-height: 35px;
}

.dark-mode #serviceDetails .details-item .description {
    color: rgb(var(--white2));
}

#serviceDetails .details-item .description ul {
    list-style-type: disc;
    padding-left: 20px;
}

#serviceDetails .details-item .description li {
    margin-bottom: 20px;
}

#serviceDetails .details-item .description ol {
    list-style-type: decimal;
    padding-left: 20px;
}



#serviceDetails .details-item .description p {
    margin-bottom: 20px;
}

#serviceDetails .details-item .description a {
    color: rgb(var(--base1));
    text-decoration: underline;
}

#faq {
    padding: 100px 0 200px 0;
    position: relative;
}

#faq h2 {
    font-size: 120px;
    line-height: 1;
}

#faq .wrapper {
    max-width: 1000px;
    margin: 0 auto;
}


@media (max-width: 639px) {
    #hero {
        padding-top: 30px;
        padding-bottom: 70px;
    }

    #hero .left {
        padding-top: 0;
    }

    #hero .hero-title {
        line-height: 53px;
        font-size: 62px;
        padding-top: 15px;
        text-align: center;
    }

    #hero .benefits {
        font-size: 17px;
        line-height: 18px;
        padding-top: 15px;
        padding-bottom: 15px;
        gap: 0.6rem;
        justify-content: center;
    }

    #hero .benefits > :not([hidden]) ~ :not([hidden]) {
        border-right-width: 1px;
        border-left-width: 1px;
    }

    #hero .benefits span {
        padding-left: 0.6rem;
    }

    #hero .benefits span:first-child {
        padding-left: 0 !important;
    }

    #hero .wrapper {
        display: block;
    }

    #hero .wrapper .right img {
        width: 80%;
    }

    #hero .wrapper .right {
        display: flex;
        justify-content: center;
        padding-top: 30px;
    }

    #hero .left .buttons {
        justify-content: center;
        gap: 10px;
        padding-top: 10px;
    }

    #hero .left .buttons a {
        font-size: 16px;
        line-height: 1;
        border-radius: 8px;
        padding: 15px 20px;
    }


    #serviceDetails .details-item {
        padding-top: 20px;
    }

    #serviceDetails .details-item {
        flex-direction: column;
        gap: 0px;
        padding-bottom: 70px;
    }

    #serviceDetails .details-item .title {
        width: 100%;
        padding-bottom: 20px;
        font-size: 22px;
    }

    #serviceDetails .details-item .description {
        width: 100%;
        font-size: 18px;
        line-height: 1.6;
    }

    #serviceDetails .details-item .description ul {
        padding-left: 20px;
    }



    #faq {
        padding: 50px 0 150px 0;
    }

    #faq .container {
        padding: 0;
    }

    #faq h2 {
        font-size: 50px;
        text-align: center;
    }


}


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

    #hero {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    #hero .left {
        padding-top: 0;
    }

    #hero .hero-title {
        line-height: 73px;
        font-size: 80px;
        padding-top: 15px;
        text-align: center;
    }

    #hero .benefits {
        font-size: 22px;
        line-height: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
        gap: 0.8rem;
        justify-content: center;
    }

    #hero .benefits > :not([hidden]) ~ :not([hidden]) {
        border-right-width: 1px;
        border-left-width: 1px;
    }

    #hero .benefits span {
        padding-left: 0.8rem;
    }

    #hero .benefits span:first-child {
        padding-left: 0 !important;
    }

    #hero .wrapper {
        display: block;
    }

    #hero .wrapper .right img {
        width: 60%;
    }

    #hero .wrapper .right {
        display: flex;
        justify-content: center;
        padding-top: 30px;
    }

    #hero .left .buttons {
        justify-content: center;
        gap: 15px;
    }

    #hero .left .buttons a {
        padding: 15px 30px;
        font-size: 20px;
        border-radius: 7px;
    }


    #serviceDetails .details-item {
        flex-direction: column;
        gap: 0px;
        padding-bottom: 120px;
    }

    #serviceDetails .details-item .title {
        width: 100%;
        padding-bottom: 20px;
    }

    #serviceDetails .details-item .description {
        width: 100%;
    }

    #serviceDetails .details-item .description ul {
        padding-left: 20px;
    }

    #faq h2 {
        font-size: 70px;
        text-align: center;
    }

}


@media (min-width: 768px) and (max-width: 1023px)  {

    #hero {
        padding-top: 30px;
        padding-bottom: 100px;
    }

    #hero .left {
        padding-top: 40px;
    }


    #hero .hero-title {
        line-height: 53px;
        font-size: 62px;
        padding-top: 15px;
    }

    #hero .benefits {
        font-size: 18px;
        line-height: 18px;
        padding-top: 15px;
        padding-bottom: 15px;
        gap: 0.8rem;
    }

    #hero .benefits > :not([hidden]) ~ :not([hidden]) {
        border-right-width: 1px;
        border-left-width: 1px;
    }

    #hero .benefits span {
        padding-left: 0.8rem;
    }

    #hero .benefits span:first-child {
        padding-left: 0 !important;
    }

    #hero .left .buttons {
        justify-content: left;
        gap: 10px;
        padding-top: 10px;
    }

    #hero .left .buttons a {
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 7px;
        text-align: center;
    }

    #serviceDetails .details-item {
        flex-direction: column;
        gap: 0px;
        padding-bottom: 120px;
    }

    #serviceDetails .details-item .title {
        width: 100%;
        padding-bottom: 20px;
    }

    #serviceDetails .details-item .description {
        width: 100%;
    }

    #faq h2 {
        font-size: 90px;
    }
}

@media (min-width: 1024px) and (max-width: 1300px) {

    #hero {
        padding-top: 70px;
        padding-bottom: 100px;
    }

    #hero .left {
        padding-top: 50px;
    }


    #hero .hero-title {
        line-height: 70px;
        font-size: 80px;
        padding-top: 15px;
    }

    #hero .benefits {
        font-size: 22px;
        line-height: 20px;
        gap: 0.8rem;
    }

    #hero .benefits span {
        padding-left: 0.8rem;
    }

    #faq h2 {
        font-size: 100px;
    }
}
