.glidy--btn svg {
    width: 1em;
    height: 1em;
}

/* Button Style Default */
.glidy--btn.default a {
    gap: 5px;
    display: inline-flex;
    transition: all 0.3s;
    color: #222;
}

.glidy--btn.default a {
    border: 1px solid;
    padding: 8px 15px;
}

.glidy--btn.default a:hover {
    color: #ED8914;
    fill: #ED8914;
}


/* Button Style One and Two */
.glidy-btn-group {
    display: flex;
    width: fit-content
}

.glidy-btn-group .btn-text {
    padding: 21px 40px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    background-color: #0A1A3D;
    text-transform: capitalize;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    gap: 30px;
    white-space: nowrap;
    border-radius: 30px;
    text-decoration: none
}

.glidy-btn-group .btn-icon {
    color: #fff;
    fill: #fff;
    border-radius: 50px;
    background-color: #0A1A3D;
    border: 1px solid #fff0;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s
}

.glidy-btn-group>*:nth-child(2) {
    transform: scale3d(1, 1, 1)
}

.glidy-btn-group:hover>*:nth-child(2) {
    transform: scale3d(1, 1, 1)
}

.style-1 .glidy-btn-group>*:nth-child(1) {
    transform: scale3d(.5, .5, 1);
    margin-right: calc(var(--icon-width, 60px) * -1);
    opacity: 0
}

.style-1 .glidy-btn-group>*:nth-child(3) {
    transform: scale3d(1, 1, 1);
    margin-left: 0;
    opacity: 1
}

.style-1 .glidy-btn-group:hover>*:nth-child(1) {
    transform: scale3d(1, 1, 1);
    margin-right: 0;
    opacity: 1
}

.style-1 .glidy-btn-group:hover>*:nth-child(3) {
    transform: scale3d(.5, .5, 1);
    margin-left: calc(var(--icon-width, 60px) * -1);
    opacity: 0
}

.style-2 .glidy-btn-group>*:nth-child(1) {
    transform: scale3d(1, 1, 1);
    margin-right: 0;
    opacity: 1
}

.style-2 .glidy-btn-group>*:nth-child(3) {
    transform: scale3d(.5, .5, 1);
    margin-left: calc(var(--icon-width, 60px) * -1);
    opacity: 0
}

.style-2 .glidy-btn-group:hover>*:nth-child(1) {
    transform: scale3d(.5, .5, 1);
    margin-right: calc(var(--icon-width, 60px) * -1);
    opacity: 0
}

.style-2 .glidy-btn-group:hover>*:nth-child(3) {
    transform: scale3d(1, 1, 1);
    margin-left: 0;
    opacity: 1
}


/* Button Three CSS */
.glidy-btn-circle {
    border-radius: 50%;
    width: 160px;
    height: 160px;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid #ddd;
    color: #000;
    fill: #000;
    font-size: 18px;
}

.glidy-btn-circle:hover {
    color: #fff;
    fill: #fff;
}

.glidy-btn-circle .hover-effect {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #000;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    pointer-events: none;
    z-index: 0;
}

.glidy-btn-circle .hover-effect.active {
    width: 500px;
    height: 500px;
}

.glidy-btn-circle .btn-text,
.glidy-btn-circle .btn-icon {
    z-index: 1;
    position: relative;
}

.glidy-btn-border {
    gap: 5px;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.glidy-btn-border::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: #222;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.glidy-btn-border:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.glidy-btn-border:not(:hover)::after {
    transform: scaleX(0);
    transform-origin: right;
}