*
{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    list-style: none;
}

html
{
    font-size: 70%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

#toastBox
{
    position: absolute;
    bottom: 10px;
    right: 0;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
}

.toast
{
    width: 300px;
    height: 60px;
    background: white;
    font-weight: 500;
    margin: 15px 0;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    position: relative;
}

.toast img
{
    margin: 0 10px;
    width: 15px;
}

.toast::after
{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: green;
    animation: anim 5s linear forwards;
}

@keyframes anim
{
    100%
    {
        width: 0;
    }

}

.service
{
    padding: 5rem 5%;
    background: #e2f0f1;
}

.service .service__grid h1
{
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 3rem;
    color: var(--text-dark);
}

.service .service__grid .list__container
{
    display: grid;
    gap: 1.5rem;
    justify-content: center;
    padding: 2rem 5%;
    grid-template-columns: repeat(2,1fr);
}

.service .service__grid .list__container .list
{
    border: 1px solid lightgray;
    padding: 5rem 2rem;
    border-radius: 0.5rem;

}

.service .service__grid .list__container .list h2
{
    font-size: 2.2rem;
    padding: 1rem 0;
}

.service .service__grid .list__container .list p
{
    font-size: 1.3rem;
    padding: 2rem 0;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-transform: none;
}