.header {
    background-image: url(../../../img/picpiccc1_11zon.webp);
    position: relative;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    margin-bottom: 150px;
}

.header .header-par1 {
    margin-top: 70px;
    margin-right: 30px;
}

.header .title {
    color: var(--yellow);
    margin-bottom: 20px;
}

.header p {
    -webkit-line-clamp: 5;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
    color: white;
}

.header i {
    background-color: white;
    color: black;
    font-size: 20px;
    border-radius: 5px;
    margin-left: 20px;
}

.header .absolute-imgs {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    transform: translateY(30%);
}

.header .absolute-imgs .img-1 {
    padding-right: 30px;
}

.header .absolute-imgs .img {
    animation: myAnim 10s ease-in-out 0s infinite normal forwards;
}

@keyframes myAnim {
    0%,
    100% {
        transform: translateY(0);
    }

    10%,
    30%,
    50%,
    70% {
        transform: translateY(-8px);
    }

    20%,
    40%,
    60% {
        transform: translateY(8px);
    }

    80% {
        transform: translateY(6.4px);
    }

    90% {
        transform: translateY(-6.4px);
    }
}

@media (min-width: 320px) and (max-width: 767px) {
    .header {
        height: 400px;
        margin-bottom: 50px;
    }

    .header .header-par1 {
        margin: 0px;
    }

    .header .absolute-imgs {
        transform: translateY(20%);
    }

    .header .absolute-imgs img {
        height: 135px;
    }

    .header .absolute-imgs .img-1 {
        padding-right: 10px;
    }
}

/*  */
.activites .titles {
    color: var(--primary);
    margin: 0 auto;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
}

.activites .desc {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
}

.activites .img img {
    height: 350px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

#vectorimg {
    width: 236px;
}

@media (max-width: 768px) {
    .activites .img img {
        height: auto;
    }
}

.activites .title {
    color: var(--primary);
}

.activites button {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    border-radius: 8px;
    transition: 0.5s;
}

.activites button:hover {
    background-color: #fff;
    color: var(--primary);
}

.activites button i {
    padding: 2px;
    transform: rotate(-35deg);
    font-size: large;
}

.activites_p1 {
    position: relative;
}

.activites_p1::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    background-color: var(--primary);
    top: 0;
    right: 0;
}

.activites_p1::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(30%, 0%);
    background-color: var(--primary);
}

.dis {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
    .activites_p1::after {
        display: none;
    }

    .activites_p1::before {
        display: none;
    }
}
