/*payments icons box*/

.payment-cards {
    margin: 50px 0;
    display: flex;
    gap: 30px;
}
.payment-cards .card {
    position: relative;
    width: 250px;
    height: 350px;
    margin: 0 auto;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
}

.payment-cards .card .face {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.payment-cards .card .face.hidden {
    box-sizing: border-box;
    padding: 20px;
}

.payment-cards .card .face.hidden h2 {
    margin: 0;
    padding: 0;
}

.payment-cards .card .face .content {
    color: #000;
}

.payment-cards .card .face.front {
    display: grid;
    grid-template-rows: 175px 100px;
    grid-template-areas: "icon" "text";
    background: #111;
    text-align: center;
    transition: all 0.5s ease;
}

.payment-cards .card .face.front img {
    width: 50%;
    margin: 0 auto;
}

.payment-cards .card .face.front i {
    grid-area: icon;
}
.payment-cards .card .face.front h2 {
    grid-area: text;
}

.payment-cards .card:nth-child(1) .face.front {
    background: #000000;
}

.payment-cards .card:nth-child(2) .face.front {
    background: #000000;
}

.payment-cards .card:nth-child(3) .face.front {
    background: #000000;
}

.payment-cards .card:hover .face.front {
    width: 0px;
}

.payment-cards .card .face.front:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.face.front i {
    grid-area: icon;
    display: block;
    font-size: 80px;
    margin-top: 125px;
    color: #fff;
    font-weight: normal;
    transition: all 0.5s ease;
    text-shadow: 0 2px 5px (0, 0, 0, 0.2);
}

.payment-cards .card:hover .face.front i {
    font-size: 0;
}

.face.front h2 {
    grid-area: text;
    font-size: 18px;
    color: #fff;
    margin-top: 0px;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: all 0.5s ease;
    text-shadow: 0 2px 5px (0, 0, 0, 0.2);
}

.payment-cards .card:hover .face.front h2 {
    font-size: 0;
}

.enjoy-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 50px 0;
}
.enjoy-img,
.enjoy-content {
    width: 50%;
}
.enjoy-img img {
    border-radius: 10px;
}

.paymeny-interface {
    background: #ffffff2b;
    padding: 60px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid #ffffff78;
}

.paymeny-interface-imgs {
    display: flex;
    flex-direction: row;
}

.list-style-1 {
    margin-left: 20px;
}

.list-style-1 li {
    margin-bottom: 20px;
    list-style: disc;
}

.hd-style-1 {
    font-family: "Tenor Sans", sans-serif;
    font-size: 28px;
    font-weight: 200;
    letter-spacing: 3px;
}

.fleettomeet-section {
    width: 100%;
    height: auto;
    min-height: 600px;
    /* padding: 120px 0px; */
    background-image: url(../Images/fleet-to-meet-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    position: relative;
    padding: 60px 0;
}

.mb-2 {
    margin-bottom: 20px;
}

.ftmsec-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: start;
    align-items: left;
    text-align: left;
}

.ftmsec-inner p {
    font-size: 18px;
    font-weight: 500;
}

.btn-style-1 {
    position: relative;
    overflow: hidden;
    background: #c9a86a;
    color: #000;
    padding: 12px 30px;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    font-weight: 600;
    justify-content: center !important;
    justify-self: center !important;
    font-size: 15.5px;
    display: block;
    font-family: "Urbanist", sans-serif;
    transition: all 0.3s;
    width: 200px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .payment-cards {
        flex-wrap: wrap;
    }
    .payment-cards .card {
        padding: 0 20px;
        width: 100%;
        height: 300px;
    }
    .face.front h2 {
        grid-area: text;
        font-size: 1em;
    }

    .payment-cards .card .face.hidden h2 {
        font-size: 1em;
    }

    .payment-cards .card .face.hidden p {
        font-size: 14px;
    }

    .enjoy-wrap {
        flex-wrap: wrap;
    }

    .enjoy-img,
    .enjoy-content {
        width: 100%;
    }

    .paymeny-interface {
        padding: 20px 6px;
    }

    .paymeny-interface-imgs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .hd-style-1 {
        font-size: 18px;
    }
}
