main .i2tecs-name {
    min-height: 20vh;
    background-color: #1E9C75;
    font-size: calc(3rem - 0.1vw);
    color: snow;
    font-family: 'Pacifico';
}

.hg-250 {
    height: 250px;
}

.hg-50 {
    height: 50px;
}

section .section-title {
    font-size: 2rem;
    width: fit-content;
    position: relative;
    overflow: hidden;
    color: #1E9C75;
}

section .section-title::after,
section .section-title::before {
    position: absolute;
    content: "";
    width: 40%;
    height: 2px;
    background-color: var(--corail-vif);
    bottom: 0;
    right: 20%;
}

section .section-title::before {
    left: 20%;
    bottom: 7px;
}

section:hover .section-title::before {
    animation: runTitleBefore 2.5s linear infinite;
}

section:hover .section-title::after {
    animation: runTitleAfter 3s linear infinite;
    animation-delay: 0.5s;
}

@keyframes runTitleBefore {

    0%,
    10%,
    70%,
    90%,
    100% {
        transform: translate(0);
    }

    20%,
    40% {
        transform: translate(-200%);
    }

    50%,
    60% {
        transform: translate(-200%);
    }
}

@keyframes runTitleAfter {

    0%,
    10%,
    70%,
    90%,
    100% {
        transform: translate(0);
    }

    20%,
    40% {
        transform: translate(200%);
    }

    50%,
    60% {
        transform: translate(200%);
    }
}

section {
    line-height: 1.8rem;
    padding: 2rem;
}

section .our-value {
    background-color: #30745e;
    height: 250px;
    width: 350px;
    cursor: pointer;
    margin-bottom: 5%;
}

section .our-value .inside-box {
    width: 310px;
    margin-left: 20px;
    height: 300px;
}

.our-value,
.our-value .value-image,
.our-value .text-content,
.our-value .text-content .text-to-slide {
    transition: all 0.3s linear !important;
}

.our-value .text-content {
    background-color: #114635;
    color: white;
    border-top: 0;
    overflow: hidden;
    height: 50px;
    position: relative;
}

/* Our Values style */
.our-value:hover .value-image,
.our-value:hover {
    height: 50px !important;
}

.our-value:hover .text-content {
    height: 250px !important;
}

.our-value:hover .text-content .text-to-slide {
    transform: translateX(0) !important;
    transition-delay: 0.3s !important;
}

/*Our methodology section  */

#our-methodology {
    width: 80%;
    border: 2px solid;
    margin-left: 10%;
    color: snow;
}

#our-methodology .method .method-title {
    cursor: pointer;
    width: 100%;
    height: 60px;
    border-bottom: 3px solid #fff;
}

#our-methodology .method .method-title .counter {
    background: #fff;
    color: #1E9C75;
    width: 0;
    height: 0;
    padding: 10px;
    border-radius: 50%;
}
#our-methodology .method .method-title div b{
}

.method-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

/* Why I2TECS */
.responsability {
    position: relative;
    cursor: pointer;
    border: 2px solid #1E9C75;
    transition: all 0.3s linear;
}

.responsability::after {
    width: 40px;
    height: 40px;
    position: absolute;
    content: "";
    z-index: -1;
    background: #1E9C75;
    right: 0;
    bottom: 0;
    transition: 0.3s linear;
}

.responsability .title{
    color: var(--corail-vif);
}
.responsability:hover .title{
    color: var(--fond-principal);

}

.responsability:hover::after {
    width: 100%;
    height: 100%;
}

/* Team section */
section .member {
    border-radius: 5px;
    min-height: 400px;
    border-bottom: 2px solid teal;
}

section .member .contacts {
    right: -10%;
    top: 30%;
}

section .member .content {
    bottom: 0;
    left: 0;
}