#hero div>h1>a {
    color: inherit;
    background: linear-gradient(to top, transparent 10%, #E50815 10.01%, #E50815 30%, transparent 30.01%) no-repeat left bottom / 0 100%;
    background-size: 100% 100%;
}

#hero div>h1>a:hover {
    -webkit-animation: underline 1s both;
    animation: underline 1s both;
}

@-webkit-keyframes underline {
    0% {
        background-size: 100% 100%;
        background-position: bottom right;
    }

    50% {
        background-size: 0% 100%;
        background-position: bottom right;
    }

    50.01% {
        background-position: bottom left;
    }

    100% {
        background-size: 100% 100%;
        background-position: bottom left;
    }
}

@keyframes underline {
    0% {
        background-size: 100% 100%;
        background-position: bottom right;
    }

    50% {
        background-size: 0% 100%;
        background-position: bottom right;
    }

    50.01% {
        background-position: bottom left;
    }

    100% {
        background-size: 100% 100%;
        background-position: bottom left;
    }
}

#hero {
    height: 650px;
    background-color: #202020;
    position: relative;
}

.image_container {
    position: relative;
}

#rt {
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: 20px;
    right: 20px;
}

#hero .call-to-action {
    bottom: -50px;
    text-transform: uppercase;
}

#hero div {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}


#hero div>img:not(#rt) {
    -webkit-animation: zoom 5s infinite alternate ease-in-out;
    animation: zoom 5s infinite alternate ease-in-out;
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

#hero div>p,
#hero div>h1 {
    color: white;
    text-align: center;
    width: 60%;
    margin: 10px;
}

#hero strong {
    color: white;
}

#presentation {
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

#presentation div,
#reglementation_thermique div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#presentation>div:first-child {
    margin-top: 75px;
    margin-bottom: 75px;
}

#reglementation_thermique>div:first-child {
    margin-top: 115px;
}

#presentation div>h3,
#presentation div>p,
#reglementation_thermique div>h3,
#reglementation_thermique div>p {
    text-align: center;
    margin: 15px;
    width: 60%;
}

#presentation div.image_container,
#reglementation_thermique div.image_container {
    width: 100%;
    max-width: 1600px;
}

.icon_container {
    width: 5%;
}

#reglementation_thermique .icon_container {
    width: 7%;
    margin-bottom: 30px;
}

.icon_container img {
    width: 100%;
}

#product_card,
#information,
#category,
#reglementation_thermique {
    position: relative;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

#product_card>h2 {
    margin-top: 75px;
}

.card_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 1600px;
    margin-bottom: 100px;
}

.card {
    position: relative;
    width: 25%;
    transition-duration: 0.4s;
    margin-top: 50px;
    margin-bottom: 30px;
}

.card_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #E50815;
}

.card_path {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #202020;
    -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 0%);
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 0%);
    transition-duration: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card_path:hover {
    -webkit-clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
    clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
}

.card:hover {
    transform: scale(1.1);
}

.img_card_container {
    width: 80%;
    max-height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_card_container img {
    height: 100%;
    max-height: 75px;
}

.card_path>p {
    width: 70%;
    text-align: center;
    font-size: 14px;
    color: white;
}

.card_path h3 {
    color: white;
    margin-bottom: 15px;
    margin-top: 15px;
}

.card_path a {
    color: #E50815;
}

.card_path .call-to-action {
    bottom: 0;
    margin-top: 50px;
    margin-left: 0;
}

#slider {
    position: relative;
    background-color: #E50815;
    height: 100px;
    overflow: hidden;
}

#slider h3 {
    color: white;
    font-size: 36px;
}

.content_slider {
    float: left;
    display: flex;
    position: absolute;
}

#slider strong {
    color: white;
}

#slider>div {
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    width: 100%;
}

@-webkit-keyframes slider {
    0% {
        right: -100%;
    }

    100% {
        right: 150%;
    }
}

@keyframes slider {
    0% {
        right: -50%;
    }

    100% {
        right: 150%;
    }
}

#category {
    width: 100%;
    max-width: 1600px;
}

.category_container {
    position: relative;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.category_container .catergory_card {
    position: relative;
    width: 30%;
    height: 215px;
    background: #fff;
    margin: 30px 10px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 50px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
}

.category_container .catergory_card:hover {
    height: 300px;
}

.category_container .catergory_card .image_category_container {
    position: relative;
    width: 80%;
    height: 260px;
    top: -60px;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.category_container .catergory_card .image_category_container img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    -o-object-fit: cover;
    object-fit: cover;
}

.image_category_container h2 {
    position: absolute;
    width: 100%;
    margin-top: -40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    transition-duration: 0.5s;
}

.category_container .catergory_card:hover .image_category_container h2 {
    opacity: 0;
    margin-top: 0px;
}

.category_container .catergory_card .content {
    position: relative;
    margin-top: -140px;
    padding: 25px 15px;
    text-align: center;
    color: #111;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.category_container .catergory_card:hover .content {
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: 0.05s;
}


#information {
    justify-content: flex-start;
}

.information_container {
    background-color: white;
    position: relative;
    width: 60%;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    max-width: 1600px;
    margin-bottom: 100px;
    box-shadow: 0px -5px 25px 5px rgba(0, 0, 0, 0.15);
    top: 150px;
}

.information_card {
    position: relative;
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.image_information_container {
    width: 80%;
    max-height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image_information_container img {
    height: 100%;
    max-height: 100px;
}

.information_card>p {
    text-align: justify;
    width: 80%;
    font-size: 14px;
    color: black;
}

.information_card h3 {
    color: black;
    margin-bottom: 15px;
    margin-top: 15px;
}

.information_line {
    background-color: #E50815;
    height: 3px;
    width: 120px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Title animation */

/* Title effect */

.title-hover-effect-name,
.title-hover-effect-label {
    position: relative;
    display: inline-block;
}

.title-hover-effect-label {
    margin: 0 0 0 0.5em;
}

h2 {
    color: #272727;
}

.title-hover-effect {
    margin: 0 0 1em;
}

.title-hover-effect-name {
    padding: 0 0.35em;
    line-height: 1.4;
    transition: color 0.5s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.title-hover-effect-name::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    opacity: 0.3;
    transform: scale3d(0, 1, 1);
    transform-origin: 0% 50%;
    transition: transform 0.5s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.title-hover-effect-label {
    letter-spacing: 0.05em;
    transform: translate3d(-0.5em, 0, 0);
    transition: transform 0.5s, color 0.5s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    font-size: 20px;
}

.title-hover-effect-label::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 25%;
    height: 1px;
    left: 0.05em;
    top: 1.25em;
    opacity: 0.3;
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 50%;
    transition: transform 0.5s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.title-hover-effect .title-hover-effect-name::before,
.title-hover-effect .title-hover-effect-label::before {
    background: red;
}

#product_card:hover .title-hover-effect-name::before,
#product_card:focus .title-hover-effect-name::before,
#product_card:hover .title-hover-effect-label::before,
#product_card:focus .title-hover-effect-label::before {
    transform: scale3d(1, 1, 1);
}

#product_card:hover .title-hover-effect-label,
#product_card:focus .title-hover-effect-label {
    transform: translate3d(0, 0, 0);
}

#product_card:hover .title-hover-effect-label::before,
#product_card:focus .title-hover-effect-label::before {
    transition-timing-function: ease;
    transform-origin: 0% 50%;
}