:root {
    --primaryColor: #2E3D62;
    --lightPrimaryColor: #686b6e;
    --secondaryColor: #5D50C5;
    --lightSecondaryColor: #F0EEFD;
    --activeLinkColor: #1B7F8B;
    --lightGrayBg: #E3E6EB;
    --transparentDropDown: #2e3d62da;
    --transparentColor: rgba(0, 0, 0, 0.548);
    --shadow: rgba(189, 188, 188, 0.514);
    --svgColor: #f8fafd;
    /* --------------------------------- */
    --whatsappColor: #25D366;
    --white: #ffff;
    --blue: #1877F2;
    --gray: #f8f8f8;
}

#scrollBtn {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    padding: 0px;
    margin: 0px;
    box-shadow: 4px 4px 8px var(--shadow);
    cursor: pointer;
    z-index: 99;

    transition: background 0.3s ease;
}

#scrollBtn:hover .arrow {
    color: var(--white);

}

#scrollBtn:hover {
    background: var(--primaryColor);
}

.btn-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin: 0%;
    padding: 0%;
    align-content: center;
    text-align: center;
}


.arrow {
    font-size: 20px;
    color: var(--secondaryColor);
    font-weight: bold;
}


.progress-ring {
    /* transform: rotate(-90deg) translateX(85px) translateY(65px); */
    position: absolute;
    top: 0px;
    left: 0px;

    padding: 0px;
    margin: 0px;
}

.progress-ring__circle {
    stroke-dasharray: 163;

    stroke-dashoffset: 163;
    transition: stroke-dashoffset 0.2s linear;
}