@import url('color.css');

* {
    padding: 0px;
    margin: 0px;
    list-style: none;
    list-style-type: none;
    text-decoration-style: none;
    text-decoration: none;
    font-family: sans-serif;
}

.carousel-item {
    height: 25rem;
}

html {
    box-shadow: inset 0px 0px 50px 15px var(--colorBorder);
}

@keyframes anim-header-image {
    0% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../../image/accphoto/m4.JPG');
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
        transition: 1s;
    }

    25% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../../image/accphoto/m2.JPG');
        transition: 1s;
    }

    50% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../../image/accphoto/m3.JPG');
        transition: 1s;
    }

    75% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../../image/accphoto/m5.JPG');
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
        transition: 1s;

    }

    100% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../../image/accphoto/m1.JPG');
        transition: 1s;
    }
}

.header {
    height: 500px;
    border-bottom: 1px solid var(--c-gray-200);
    box-shadow: bottom, 0px 0px 10px 10px var(--c-primary);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    animation: anim-header-image 10s alternate infinite;
}

@keyframes anim-titre {
    0% {
        opacity: 0;
        text-shadow: 4px 180px 5px var(--colorBorder);
        font-size: 95px;
    }

    100% {
        opacity: 1;
        text-shadow: 4px 5px 5px var(--colorBorder);
        font-size: 55px;
    }
}

.titre {
    height: 140px;
    font-size: 55px;
    text-shadow: 4px 5px 5px var(--colorBorder);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    text-align: center;
    animation: anim-titre .5s linear;
}

@keyframes anim-logos {
    0% {
        opacity: 0;
        left: -500px;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

.logos {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    width: 199px;
    height: 193px;
    background-image: url('../../image/miielogo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: fixed;
    filter: brightness(130%);
    position: relative;
    opacity: 0;
}

.logo-anim {
    opacity: 1;
    left: 0;
    animation: anim-logos 1s alternate;
}

@keyframes anim-letech {
    0% {
        opacity: 0;
        right: -500px;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        right: 0;
    }
}

.letechs {
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.letech {
    width: 100%;
    height: 20px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    text-shadow: -4px 3px 2px black;
    text-align: center;
    position: relative;
    opacity: 0;
    margin-block-start: 4rem;
}

.letech-anim {
    animation: anim-letech 1s alternate;
    opacity: 1;
    right: 0;
}

/***************************************/
/**************************************/

#tyson {
    border: 2px solid rgb(254, 170, 110);
    color: rgb(254, 170, 110)
}

#tyson:hover {
    border: 2px solid rgb(254, 170, 110);
    color: black;
    background: rgb(254, 170, 110)
}

#dura {
    padding: 9px 35px;
    border: 2px solid black;
    border-radius: 10px;
    background: white;
    color: black;
}

#dura:hover {
    padding: 9px 35px;
    border: 2px solid rgb(254, 170, 110);
    border-radius: 10px;
    background: rgb(254, 170, 110);
    color: black;
}

/*******************************************/
/*******************************************/