.sfpckgsdsp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    margin-top: 40px;
}

.sfpckcrds {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ccc;
    transition-duration: .25s;
    border-radius: 5px;
    transition: .5s ease;
}

.sfpckcrds:hover {
    border: 1px solid #000080;
}

.sfpctpp {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 5px 5px 0px 0px;
}

.sfpctpp::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 50%));
    z-index: 1;
}

.sfpctpp img {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
}

.sfpctpp h4 {
    position: absolute;
    padding: 0px 20px;
    bottom: 10%;
    color: #FFF;
    font-size: 20px;
    z-index: 2;
}

.sfpctbtm p {
    display: block;
    padding: 20px 20px 10px;
}

.sfpctbtm p span {
    font-size: 15px;
    font-weight: bolder;
    color: #000;
}

.sfpctbtm ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    border-top: 1px dotted #00000064;
    position: relative;
}

.sfpctbtm ul li {
    list-style: none;
    padding: 10px 0px 16px;
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 400;
    letter-spacing: .6px;
    width: 33.3%;
}

.sfpctbtm ul li:first-child {
    padding-left: 20px;
    padding-right: 10px;
    text-align: left;
    border-right: 1px dotted #00000064;
}

.sfpctbtm ul li:last-child {
    padding-right: 20px;
    letter-spacing: normal;
    text-align: right;
}

.sfpctbtm ul li a {
    padding: 8px 10px;
    background: var(--btn-primary-bg);
    text-decoration: none;
    color: var(--btn-primary-text);
    font-weight: 400;
    border-radius: 5px;
    letter-spacing: .6px;
}

.sfpctbtm ul li span {
    font-size: 15px;
    color: #000;
    letter-spacing: normal;
    display: block;
    width: 100%;
}

.sfpctbtm ul li a:hover {
    background: var(--btn-hover-bg);
    text-decoration: none;
}

.sfpctbtm p {
    font-size: 14px;
    color: #7d7b7a;
    min-height: 50px;
}

/* safari hm */
.sfrcards-dip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 10%;
    background: var(--color-white);
}

.sfr-card {
    height: 350px;
    position: relative;
    box-shadow: 0px 0px 2px var(--color-accent);
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
}

.sfr-card h3 {
    position: absolute;
    bottom: calc(5% + 50px);
    margin-left: 20px;
    padding: 0px 20px 0px 6px;
    border-radius: 5px 0px 0px 5px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white);
    border-left: 10px solid var(--color-warm);
    line-height: 20px;
}

.sfr-card img {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 100%;
    z-index: -1;
}

.sfr-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #0000008a 0%, transparent 50%);
    z-index: -1;
}

.sfr-card ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 40px);
    position: absolute;
    bottom: 5%;
    padding: 0px 20px;
}

.sfr-card ul li:first-child {
    display: flex;
    flex-direction: column;
    align-items: left;
    line-height: 19px;
    font-weight: 500;
    color: var(--color-white);
}

.sfr-card ul li {
    list-style: none;
}

.sfr-card ul li a {
    padding: 8px 10px;
    background: var(--btn-primary-bg);
    text-decoration: none;
    color: var(--btn-primary-text);
    font-weight: 400;
    font-size: 14px;
    border-radius: 5px;
    letter-spacing: .6px;
}

.sfr-card ul li a:hover {
    background: var(--btn-hover-bg);
    text-decoration: none;
}

.sfr-card ul li span:first-child {
    color: var(--color-warm);
    font-size: 14px;
    font-weight: 500;
}

.sfr-card ul li span:last-child {
    font-size: 20px;
    font-weight: 500;
}