.container_yacht {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.container_yacht h1 {
    color: #DFBA76;
    font-size: 45px;
    font-weight: ;
    line-height: 55px;
    font-family: "Roboto";
}

.container_video {
    margin-top: 20px;
    margin-bottom: 20px;
}

.container h2 {
    border-bottom: 4px solid #DFBA76;
    width: 30%;
    font-family: "Roboto";
}

.container_partenier {
    background-color: #28364b;
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    border-top: 4px solid #DFBA76;
    border-bottom: 4px solid #DFBA76;
}

.image-container1 {
    position: relative;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.normal-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.hover-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.image-container:hover .normal-image {
    top: 100%;
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.image-container:hover .hover-image {
    opacity: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

body {
    font-family: 'Roboto', sans-serif !important;

}

.animation-class {
    animation: pulse 10s infinite;
    border-radius: 63% 37% 50% 50%/70% 68% 32% 30%;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.card {
    padding: 10px;
    width: 300px;
    height: 100%;
    margin: 20px;
    box-shadow: 0px 0px 10px #ccc;
    transition: transform 0.3s ease;

}

.card2 {
    padding: 10px;
    cursor: pointer;
    width: 300px;
    height: 200px;
    margin: 20px;
    box-shadow: 0px 0px 10px #ccc;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.post_date {
    margin-top: 20PX;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

post_date a {
    text-decoration: none;
}

.post_date i {
    color: #DFBA76;
}

.card2 .img {
    height: 100%;
}


.card p {
    font-size: 14px;
    color: #28364b;
}

.img {
    position: relative;
    border: 1px solid #DFBA76;
}

.card .img {
    width: 100%;
    height: 200px !important;
}

.img::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgb(0, 0, 0, 0.3);
}

.img h3 {
    position: relative;
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    padding: 10px;
    color: #fff;
}

.img h3::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 4px;
    width: 30%;
    background-color: #DFBA76;
}

.img h3::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 4px;
    width: 30%;
    background-color: #DFBA76;
}

.card p {
    padding: 5px;
}




.card_btn {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #DFBA76;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 50%;
}

.card_btn span {
    color: #fff;
}

.card:hover {
    transform: scale(1.1);
    box-shadow: 10px 10px 15px #ccc;
    z-index: 1;
}

.contaner_golden {
    background-color: #F1F0E8;
    padding: 40px;

}

.contaner_numbre {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.numbre_value {
    color: #cebd88;

    line-height: 1em;
    position: relative;
    font-size: 120px;
}



#myVideo {
    border: 5px solid #DFBA76;
}

/* Create custom play button */


/* Create custom progress bar */
#myVideo::-webkit-media-controls-progress-bar {
    background-color: blue;
    height: 10px;
}

/* Create custom time display */
#myVideo::-webkit-media-controls-time-display {
    color: white;
}

.image-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.normal-image {
    width: 100%;
    height: 100%;
}

.hover-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    transform: translateY(-100%);
}

.image-container:hover .hover-image {
    opacity: 1;
    transform: translateY(0);
}


.contanct_place {
    padding: 10px;
    border-left: 4px solid #DFBA76;
    width: 20%;
}

.contanct_place h3 {
    color: #fff;
}

.contact_element i {
    color: #cebd88;
}

.contact_element span {
    color: #fff;
}

@media screen and (max-width: 625px) {
    .container_yacht {
        flex-direction: column-reverse;
    }

    .container_yacht>h1 {
        margin-top: 10px;
    }

    .card-container,
    .contaner_numbre {
        flex-direction: column;
    }

    .container h2 {
        width: 100%;
    }
}