.full-background-image-card-item {
    min-height: 706px;
    max-height: 706px;
    width: 496px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-right: 20px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.83) 70.12%);
    position:relative;
}

.full-background-image-card-btn {
    width: 125px;
    height: 25px;
    color: white;
    border-radius: 5px;
    border: none;
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
    margin-left: 30px;
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Inter-Regular', sans-serif !important;
}

#full-background-image-card-arrow-right {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.full-background-image-card-text {
    font-weight: 400;
    font-size: 18px;
    width: 70%;
    min-height: 48px;
    max-height: 48px;
    overflow: hidden;
    color: #FFFFFF;
    margin-left: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    font-family: 'Gilroy-Regular', sans-serif !important;
}

.full-background-image-card-title {
    width: 100%;
    min-height: 90px;
    max-height: 90px;
    font-size: 34px;
    font-weight: 500;
    overflow: hidden;
    color:#FFFFFF;
    margin-left: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 10px;
    font-family: 'Inter-Regular', sans-serif !important;
}

.full-background-image-card-image{
    position:absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.full-background-image-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.full-background-image-card-item:hover .full-background-image-card-inner{
    transform: rotateY(180deg);
}

/* Position the front and back side */
.full-background-image-card-front, .full-background-image-card-behind {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

.full-background-image-card-front{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.83) 70.12%);
}

/* Style the back side */
.full-background-image-card-behind {
    transform: rotateY(180deg);
}

.flip-card-back {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.83) 70.12%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card-back-link{
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-size: 34px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    flex: 1;
}

.flip-card-back-link:hover{
    background-color: rgba(149, 156, 109, 0.5);
}