.elementor-element .icon .custom-widget-icon::before {
    content: '';
    display: inline-block;
    background-image: url('../images/icon.png');
    /* Path to your custom image */
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    /* Adjust size as needed */
    height: 20px;
    display: block;
}

.custom-widget-icon {
    background-image: url('../images/icon.png');
    /* Path to your custom image */
    width: 20px;
    /* Adjust size as needed */
    height: 20px;
    display: block;
}

.custom-widget-icon::before {
    content: '';
    display: inline-block;
    background-image: url('../images/icon.png');
    /* Path to your custom image */
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    /* Adjust size as needed */
    height: 20px;
    display: block;
}

.site-btn {
    font-weight: 700;
    font-size: 18px;
    background: var(--theme-default);
    border-radius: 25px;
    padding: 15px 25px;
    color: #fff;
}


.sidebar-one {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: visibility 0.5s ease 0.5s,
        -webkit-transform 0.5s ease 0.5s;
    transition: visibility 0.5s ease 0.5s, -webkit-transform 0.5s ease 0.5s;
    transition: transform 0.5s ease 0.5s, visibility 0.5s ease 0.5s;
    transition: transform 0.5s ease 0.5s, visibility 0.5s ease 0.5s,
        -webkit-transform 0.5s ease 0.5s;
}

.sidebar-one.active {
    opacity: 1;
    z-index: 99999;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 0.5s ease 0ms, -webkit-transform 0.5s ease 0ms;
    transition: visibility 0.5s ease 0ms, -webkit-transform 0.5s ease 0ms;
    transition: transform 0.5s ease 0ms, visibility 0.5s ease 0ms;
    transition: transform 0.5s ease 0ms, visibility 0.5s ease 0ms,
        -webkit-transform 0.5s ease 0ms;
}

.sidebar-one__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--theme-black2, #141414);
    opacity: 0.8;
    padding: 45px;
}

.sidebar-one__content .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar-one__content {
    width: 90%;
    background-color: var(--theme-white, #fff);
    border-radius: 45px;
    z-index: 10;
    position: relative;
    position: absolute;
    top: 5%;
    left: 5%;
    height: 90%;
    overflow-y: auto;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    display: flex;
    gap: 25px;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: opacity 0.5s ease 0ms, visibility 0.5s ease 0ms,
        -webkit-transform 0.5s ease 0ms;
    transition: opacity 0.5s ease 0ms, visibility 0.5s ease 0ms,
        -webkit-transform 0.5s ease 0ms;
    transition: opacity 0.5s ease 0ms, visibility 0.5s ease 0ms,
        transform 0.5s ease 0ms;
    transition: opacity 0.5s ease 0ms, visibility 0.5s ease 0ms,
        transform 0.5s ease 0ms, -webkit-transform 0.5s ease 0ms;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sidebar-one__content .overlay-sidebar {
    width: 40%;
    border-radius: 25px;
    overflow: hidden;
}

.sidebar-one__content .overlay-content {
    width: 60%;
    padding: 0px 0px 0px 30px;
}

.sidebar-one__content .sidebar-overlay-menu ul,
.sidebar-one__content .sidebar-overlay-menu ul li {
    list-style: none;
    margin: 0;
    padding: 0px;
}

.sidebar-one__content .sidebar-overlay-menu ul.main-menu-list>li>a {
    font-size: 18px;
    font-weight: 600;
    display: block;
    position: relative;
    padding: 8px 10px 8px 30px;
    background: #e5e5e5;
    border-radius: 15px;
    margin-bottom: 10px;
}

.sidebar-one__content .sidebar-overlay-menu ul li>a:after {
    font-family: "Font Awesome 7 Free";
    content: "\f105";
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    left: 15px;
    color: var(--theme-default);
    top: 12px;
}

.sidebar-one__content .sidebar-overlay-menu ul li a:hover {
    text-decoration: none;
}

.sidebar-one__content .sidebar-overlay-menu ul li ul.sub-menu {
    margin-bottom: 15px;
}

.sidebar-one__content .sidebar-overlay-menu ul li ul.sub-menu li a {
    font-size: 16px;
    font-weight: 500;
    border: none;
    margin: 0;
    padding: 0 0 0 40px;
}

.sidebar-one__content .sidebar-overlay-menu ul li ul.sub-menu li a:after {
    content: "";
}


.sidebar-one__content::-webkit-scrollbar {
    display: none;
}

.sidebar-one.active .sidebar-one__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity 0.5s ease 0.5s, visibility 0.5s ease 0.5s,
        -webkit-transform 0.5s ease 0.5s;
    transition: opacity 0.5s ease 0.5s, visibility 0.5s ease 0.5s,
        -webkit-transform 0.5s ease 0.5s;
    transition: opacity 0.5s ease 0.5s, visibility 0.5s ease 0.5s,
        transform 0.5s ease 0.5s;
    transition: opacity 0.5s ease 0.5s, visibility 0.5s ease 0.5s,
        transform 0.5s ease 0.5s, -webkit-transform 0.5s ease 0.5s;
}

.sidebar-one__close {
    position: relative;
    font-size: 52px;
    color: var(--theme-default);
    cursor: pointer;
    transition: all 0.4s ease;
}

.sidebar-one__close svg {
    width: 0.8em;
    height: 0.8em;
    fill: currentColor;
}

.sidebar-one__close:hover {
    color: var(--theme-secondary);
}

.sidebar-one__logo img {
    max-height: 80px;
    width: auto;
    margin: auto;
}

.sidebar-one__title {
    position: relative;
    font-family: var(--theme-font, "Montserrat", sans-serif);
    font-size: 25px;
    color: var(--theme-base, #fff);
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.sidebar-one__title:before,
.sidebar-one__title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    background-color: var(--theme-base, #00cde5);
    width: 20px;
    height: 2px;
}

.sidebar-one__title:after {
    width: 50px;
    left: 25px;
}

.sidebar-one__about__text {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--theme-base, #f6f6f8);
}


.sidebar-one__contact {
    font-size: 18px;
}

.sidebar-one__info__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-one__info__list li {
    display: flex;
    font-size: 15px;
    color: var(--theme-black4, #a0a0c0);
    font-weight: 500;
    line-height: 1.75;
}

.sidebar-one__info__list li+li {
    margin-top: 20px;
}

.sidebar-one__info__list li .sidebar-one__info__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    position: relative;
    font-size: 14px;
    color: var(--theme-white, #fff);
    margin-right: 12px;
    background-color: var(--theme-base, #00cde5);
    overflow: hidden;
}

.sidebar-one__info__list li .sidebar-one__info__icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.sidebar-one__info__list li:hover .sidebar-one__info__icon>* {
    animation: slideTop 0.5s;
}

.sidebar-one__info__list li address {
    color: inherit;
    text-transform: capitalize;
    margin: 0;
}

.sidebar-one__info__list li a {
    position: relative;
    top: 1px;
    color: inherit;
}

.sidebar-one__info__list li a:hover {
    color: var(--theme-base, #00cde5);
}

.sidebar-one__social a .social-links-two__icon {
    color: var(--theme-base, #00cde5);
}

.sidebar-one__social {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.sidebar-one__social a {
    background: #fff;
    color: var(--theme-default);
    border: 2px solid var(--theme-default);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 100%;
    margin-right: 15px;
}

.sidebar-one__social a:hover {
    background: var(--theme-secondary);
    border: 2px solid var(--theme-secondary);
}

.sidebar-one__social svg {
    max-width: 65%;
}

@media (max-width:992px) {
    .sidebar-one__content .overlay-sidebar {
        display: none;
    }

    .sidebar-one__content .overlay-content {
        width: 100%;
        padding: 0px 0px 0px 0px;
    }
}



/* SCROLL TO TOP */

.progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: 0 0 7px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap:after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 7 Free";
    font-weight: 600;
    text-align: center;
    font-size: 24px;
    line-height: 56px;
    color: var(--theme-default);
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    s
}

.progress-wrap:hover:after {
    opacity: 1;
}


.progress-wrap svg path {
    fill: #fff;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--theme-default);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.scrollToTop {
    background-color: #fff;
    border: 1px solid #f2f2f2;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: var(--theme-default);
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.15s ease;
}

.scrollToTop:after {
    content: "";
    border: 2px solid #2007b2;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(-135deg);
}

.scrollToTop.showBtn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scrollToTop #progress-bar {
    --scrollAmount: 0px;
}

.scrollToTop #progress-bar svg {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 50px;
    max-height: 50px;
    transform: rotate(90deg);
}

.scrollToTop #progress-bar svg path {
    stroke-width: 0.2em;
    stroke-dasharray: 154;
    stroke-dashoffset: calc(-154px + var(--scrollAmount));
    animation-fill-mode: forwards;
}