.hero
{
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    place-content: end;
    place-items: left;
    padding: 50px;
    /* background-position: center center; */
}
.hero.dark span, .hero.dark a
{
    color: var(--primary);
}
.hero.dark h1
{
    color: #818181;
}
.hero.dark p
{
    color: #4a4a4a;
}
.hero.dark a::before
{
    background-color: var(--primary);
}
.hero span
{
    color: var(--secondary);
    font-family: hel-reg;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
}
.hero h1
{
    font-family: hel-bold;
    text-transform: uppercase;
    font-size: 2rem;
    color: var(--secondary);
    width: 40%;
    margin: 0 0 0;
}
.hero p
{
    font-family: hel-reg;
    color: var(--sec-text);
    width: 40%;
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0 0 10px;
}
.hero a
{
    text-decoration: none;
    color: var(--secondary);
    font-family: hel-reg;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}
.hero a::before
{
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: var(--secondary);
    transition: .3s;
}
.hero a:hover::before
{
    width: 20px;
    margin-right: 5px;
}


.client-details
{
    padding: 50px;
    background-color: var(--primary);
    display: flex;
    justify-content: right;
}
.cl-det-wrap
{
    width: 80%;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: right;
}
.client-det
{
    max-width: 400px;
}
.detboxhead
{
    font-family: hel-bold;
    font-size: 0.8rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}
.detboxp
{
    font-size: 0.8rem;
    color: var(--sec-text);
    margin: 0;
}
.design-ch
{
    padding: 50px;
}
.design-ch-cont
{
    display: flex;
    justify-content: right;
    padding: 10px;
}
.design-ch .design-poster
{
    border: 0.5px solid var(--sec-text);
    padding: 5px;
    border-radius: 15px;
}
.design-ch .design-poster img
{
    border-radius: 10px;
    width: 100%;
}
.splide__slide
{
    padding: 5px;
}
.sol .cl-det-wrap
{
    width: 100%;
    justify-content: left;
}
.sol
{
    padding: 10px 50px 50px;
}
.splide__pagination__page
{
    height: 5px !important;
    width: 20px !important;
    border-radius: 2px !important; 
    background-color: var(--sec-text) !important;
}
.splide__pagination__page.is-active
{
    background-color: var(--secondary) !important;
    transform: scale(1) !important;
}
.splide__arrow
{
    display: none !important;
}
@media (max-width: 1200px)
{
    .hero
    {
        background-position: center center;
    }
    .hero h1, .hero p
    {
        width: 60%;
    }
    .cl-det-wrap
    {
        width: 100% !important;
        justify-content: space-between;
    }
    .cl-det-wrap .client-det
    {
        max-width: 300px;
    }
}
@media (max-width: 900px)
{
    .hero h1, .hero p
    {
        width: 80%;
    }
    
}
@media (max-width: 500px)
{
    .hero
    {
        padding: 20px;
    }
    .hero h1, .hero p
    {
        width: 100%;
    }
    .client-details, .design-ch, .sol
    {
        padding: 20px;
    }
    .cl-det-wrap .client-det
    {
        max-width: 100%;
    }
    .design-ch .design-poster
    {
        padding: 2px;
    }
}