/* Begin: Button Style */

.themeBtn,
.themeBtn-blue {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    color: var(--white);
    border: 0;
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.themeBtn:hover,
.themeBtn:focus {
    color: var(--white);
    background-size: 150% 150%;
    animation: gradient 1s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.themeBtn-blue {
    background: var(--primary);
}

.themeBtn-blue:hover,
.themeBtn-blue:focus {
    background: var(--secondry);
    color: var(--white);
}


/* END: Button Style */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.listStyle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 2rem;
}

.listStyle li {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.listStyle li img {
    position: relative;
    top: 4px;
    display: none;
}

.listStyle li::before {
    content: '';
    background: url(../images/components/check.webp);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}

.linkStyle {
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 600;
}

.linkStyle i {
    color: var(--primary);
    font-size: 1rem;
    position: relative;
    left: 3px;
    transition: ease all 0.5s;
}

.linkStyle:hover {
    color: var(--primary);
}

.linkStyle:hover i {
    left: 1rem;
}