.extensions-deployment-holder {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.extensions-deployment-button-holder {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.extensions-deployment-button-wrapper {
    padding: 3px;
    border-radius: 18px;
    background: linear-gradient(135deg, #FFD800 30%, #FFD80000 70%);
    background: linear-gradient(135deg, #FFD80000 30%, #FFD800 70%);
    background-size: 400% 100%;
    background-position-x: 99%;
    background-position-x: 1%;

    transition: translate 0.4s, background-position 1s;
}

.extensions-deployment-button-wrapper:hover {
    cursor: pointer;

    transform: translateY(-2px);
}

.extensions-deployment-button-wrapper.active {
    background-position: 1%;
    background-position: 99%;
}

.extensions-deployment-button {
    display: flex;
    flex-direction: row;
    gap: 16px;
    min-width: 370px;
    padding: 20px;
    border-radius: 16px;
    align-items: center;
    background: linear-gradient(135deg, #012f6b 25%, #617ea4 50%, #ffffff 75%);
    background-size: 500% 100%;
    background-position-x: 99%;
    box-shadow: 0 10px 15px -3px #0000003d, 0 4px 6px -4px #0000003d;
    border: 1px solid transparent;
    transition: 0.4s;
}

.extensions-deployment-button-wrapper:hover .extensions-deployment-button {
    border: 1px solid #FFD800;
    box-shadow: 0 20px 25px -5px #0000003d, 0 8px 10px -6px #0000003d;
    background-position-x: 50%;
    transition: .4s;
}

.extensions-deployment-button-wrapper.active .extensions-deployment-button {
    background-position: 1%;
    background-size: 500% 100%;
    transition: .4s;
}


.extensions-deployment-button-icon-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    background-color: #d4e6f9;
    flex: none;
    box-shadow: 0 10px 15px -3px #0000003d, 0 4px 6px -4px #0000003d;
    transition: 0.4s;
}


.extensions-deployment-button-wrapper:hover .extensions-deployment-button-icon-holder {
    background-color: #ffd80026;
}

.extensions-deployment-button-wrapper.active .extensions-deployment-button-icon-holder {
    background-color: #FFD800;
}

.extensions-deployment-button-icon-holder i {
    display: block;
    color: #012f6b;
    font-size: 24px;
    height: fit-content;
    transition: 0.4s;
}

.extensions-deployment-button-wrapper:hover .extensions-deployment-button-icon-holder i {
    color: #ffd800;
}

.extensions-deployment-button-wrapper.active .extensions-deployment-button-icon-holder i {
    color: #ffffff;
}

.extensions-deployment-button-content-holder {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.extensions-deployment-button-title {
    color: #012f6b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0;
    transition: 0.4s;
}

.extensions-deployment-button-wrapper:hover .extensions-deployment-button-title {
    color: #ffffff;
}

.extensions-deployment-button-wrapper.active .extensions-deployment-button-title {
    color: #ffffff;
}

.extensions-deployment-button-description {
    color: #012f6b80;
    font-size: 14px;
    line-height: 1.42;
    margin-bottom: 0;
    transition: 0.4s;
}

.extensions-deployment-button-wrapper:hover .extensions-deployment-button-description {
    color: #d4e6f9cc;
}

.extensions-deployment-button-wrapper.active .extensions-deployment-button-description {
    color: #ffffff;
}

.extensions-deployment-button-arrow-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.extensions-deployment-button-arrow-holder i {
    font-size: 22px;
    color: #012f6b;
    transition: 0.4s;
}

.extensions-deployment-button-wrapper:hover .extensions-deployment-button-arrow-holder i {
    color: #FFD800;
    transform: scale(1.3) translateX(4px);
}

.extensions-deployment-button-wrapper.active .extensions-deployment-button-arrow-holder i {
    color: #FFD800;
    transform: scale(1.3) translateX(6px);
}

/**********************************************/
/**********************************************/
/**********************************************/
/**********************************************/


.extensions-deployment-card-holder {
    position: relative;
    height: 450px;
    width: 100%;
}

.extensions-deployment-card {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    z-index: 0;
    border-radius: 24px;
    overflow: hidden;

    box-shadow: 0 10px 15px -3px #0000003d, 0 4px 6px -4px #0000003d;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    background: linear-gradient(180deg, #FFD800 30%, #FFD80000 50%);
    background-size: 100% 400%;
    background-position-y: 99%;

    transition: 0.4s, 1s;
    transition-delay: 0s, 0.4s;
    transition-property: opacity, background-position-y;
}


.extensions-deployment-card.active {
    opacity: 1;
    z-index: 1;
    /* transform: translate(0px, 0px); */
    transition-timing-function: cubic-bezier(.2, 1, .4, 0);
    background-position-y: 1%;
}


.extensions-deployment-card:hover {
    box-shadow: 0 20px 25px -5px #0000003d, 0 8px 10px -6px #0000003d;
}

.extensions-deployment-card-background {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px) !important;
    border-radius: 21px !important;
    object-fit: cover;
    z-index: 1;

}

.extensions-deployment-card-content-holder {
    position: absolute;
    top: 3px;
    left: 3px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 8px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 21px;
    z-index: 2;
    background-image: linear-gradient(0deg, #012f6b 0%, #00316b66 80%, transparent 100%);
    padding: 32px;
    background-position-y: 60%;
    background-size: 100% 200%;
    transition: 0.4s;
}


.extensions-deployment-card:hover .extensions-deployment-card-content-holder {

    background-position-y: 40%;
}

.extensions-deployment-card-header-holder {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 12px;
    align-items: center;
}

.extensions-deployment-card-icon-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: #FFD800;
    flex: none;
    box-shadow: 0 10px 15px -3px #0000003d, 0 4px 6px -4px #0000003d;
    transition: 0.4s;
}


.extensions-deployment-card:hover .extensions-deployment-card-icon-holder {
    box-shadow: 0 20px 25px -5px #0000003d, 0 8px 10px -6px #0000003d;
}

.extensions-deployment-card-icon-holder i {
    color: #ffffff;
    font-size: 20px;
    margin: auto;
}

.extensions-deployment-card-title {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;

}

.extensions-deployment-card-description {
    color: #d4e6f9d9;
    font-size: 16px;
    line-height: 1.625;
}


@media only screen and (max-width: 900px) {
    .extensions-deployment-holder {
        flex-direction: column;
        gap: 16px;
    }

    .extensions-deployment-button-holder {
        flex-direction: row;
    }

    .extensions-deployment-button-wrapper {
        width: calc((100% - 24px) / 3);
    }

    .extensions-deployment-button {
        min-width: unset;
    }

    .extensions-deployment-button-description,
    .extensions-deployment-button-arrow-holder {
        display: none;
    }

}


@media only screen and (max-width: 760px) {
    .extensions-deployment-button {
        flex-direction: column;
        height: 100%;
    }

    .extensions-deployment-button-content-holder {
        text-align: center;
    }

    .extensions-deployment-button {
        background-size: 580% 100%;
    }
}


@media only screen and (max-width: 550px) {
    .extensions-deployment-holder {
        position: relative;
        gap: 0px;
    }

    .extensions-deployment-button-holder {
        position: absolute;
        top: 3px;
        left: 3px;
        width: calc(100% - 6px);
        gap: 0px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        background-color: #012f6bab;
        backdrop-filter: blur(3px);
        border-bottom: 1px solid #ffffff3d;
        z-index: 4;
    }

    .extensions-deployment-button-wrapper {
        width: calc((100% - 2px) / 3);
        border-radius: 0;
        padding: 0px;
        padding-top: 2px;
        background: transparent;
        border: 0;
        border-bottom: 2px solid #FFD80000;
    }

    .extensions-deployment-button {
        padding: 8px;
        border-radius: 0;
        background: transparent;
        gap: 8px;
    }

    .extensions-deployment-button-wrapper:first-child {
        border-top-left-radius: 18px;
    }

    .extensions-deployment-button-wrapper:last-child {
        border-top-right-radius: 18px;
    }

    .extensions-deployment-button-wrapper:first-child .extensions-deployment-button {
        border-top-left-radius: 16px;
    }

    .extensions-deployment-button-wrapper:last-child .extensions-deployment-button {
        border-top-right-radius: 16px;
    }

    .extensions-deployment-button-wrapper:hover {
        transform: translateY(0px);
        border-color: #ffd80026;
    }

    .extensions-deployment-button-wrapper.active {
        background-color: #ffd80026;
        border-color: #ffd800;
    }

    .extensions-deployment-button {
        box-shadow: unset;
        border: 0;
    }

    .extensions-deployment-button-wrapper:hover .extensions-deployment-button {
        border: 0;
    }

    .extensions-deployment-button-icon-holder {
        background-color: transparent;
        width: 36px;
        height: 36px;
    }

    .extensions-deployment-button-icon-holder i {
        font-size: 18px;
        color: #d4e6f9;
    }

    .extensions-deployment-button-title {
        color: #d4e6f9;
    }


    /***/

    .extensions-deployment-card,
    .extensions-deployment-card-background,
    .extensions-deployment-card-content-holder {
        border-radius: 12px !important;
    }

    .extensions-deployment-button-title {
        font-size: 14px;
    }



}