/* Import  css */
@import url(./fonts.css);
@import url(./partials/variables.css);
@import url(./partials/global.css);

body {
    overflow-x: hidden;
}

.bas-page {
    margin-bottom: 80px;
}

/* Début barre nav */

.header_area .main-menu .navbar .navbar-brand {
    padding: 0 2rem 0 3rem;
}

.header_area .main-menu .nav-item .nav-link {
    padding: 0 2rem;
    font-family: "Roboto";
    text-transform: uppercase;
    font-weight: 500;
    color: black;
}

.header_area .main-menu .navbar-nav .active a {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header_area .main-menu .navbar-nav a:hover {
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

ul {
    list-style: none;
    text-align: center;
}

ul li {
    display: inline-block;
    position: relative;
}

ul li a {
    display: block;
    text-decoration: none;
}

ul li ul.dropdown-menu li {
    display: block;
    margin: 2px 0px;
}

ul li ul.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--gradient-color);
    border-radius: 0px 0px 4px 4px;
    z-index: 999;
}

ul li:hover ul.dropdown-menu {
    display: block;
}

/* Fin barre nav */

.mentions {
        display: flex;
        height: 100px;
        bottom: 0;
        padding-left: 35%;
        FONT-SIZE: 1.3rem;
        align-items: center;
        gap: 53px;
        margin-top: 3%;
    }

/* Début presentation */

.left-block-home {
    margin-left: -50px;
}

.site-main .site-banner .site-title h3 {
    padding-top: 5%;
    /*Espacer le coter haut*/
    font-weight: 500;
}

.site-main .site-banner .site-title h1 {
    font-size: 2rem;
    margin: 0;
    padding: 0;
    width: 100%;
    white-space: nowrap;
}

.site-main .site-banner .site-title h4 {
    font-size: 1.5rem;
    padding-top: 5px;
    /*Espacer le coter haut*/
}

.linkedin-logo {
    width: 50px;
    height: 50px;
}

.col-lg-6 .col-md-12 .image-right {
    padding-top: 35%;
    /*Espacer le coter haut*/
    width: 60%;
}

.BK-logo {
    padding-top: 5%;
    width: 56%;
    height: auto;
    position: relative;
    left: 32%;
}

.BK-GB-logo {
    width: 700px;
    margin-right: 10px;
    padding-left: 50%;
    margin-top: -210px;
}

/* Fin presentation */

/* Début experience */

.title-experience {
    font-size: 2, 5rem;
    font-weight: 500;
    margin-left: 30%;
    padding-top: 5%;
    /*Espacer le coter haut*/
    font-family: "Roboto";
    color: var(--title-color);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 35px auto;
    margin-left: -30px;
    margin-top: 85px;

}

.container-competence {
    padding: 10px 50px;
    position: relative;
    width: 60%;
    animation: movedown 1s linear forwards;
    opacity: 0;
}

@keyframes movedown {
    0% {
        transform: translateY(-30px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.container-competence:nth-child(1) {
    animation-delay: 0s;
}

.container-competence:nth-child(2) {
    animation-delay: 1s;
}

.container-competence:nth-child(3) {
    animation-delay: 2s;
}

.container-competence:nth-child(4) {
    animation-delay: 3s;
}

.container-competence:nth-child(5) {
    animation-delay: 4s;
}

.container-competence:nth-child(6) {
    animation-delay: 5s;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.left-container {
    left: 0;
}

.right-container {
    left: 60%;
}

.container-competence img {
    position: absolute;
    width: 49px;
    border-radius: 50%;
    right: -20px;
    top: 32px;
}

.right-container img {
    left: -20px;
}

.text-box {
    position: relative;
    padding: 20px 30px;
    background: var(--gradient-color);
    border-radius: 10px;
    font-size: 15px;
    box-shadow: var(--box-shadows);
    color: antiquewhite;
    font-family: "Roboto";
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background: var(--gradient-color);
    left: 60%;
    top: 0;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 6s linear forwards;
}

@keyframes moveline {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

.text-box h2 {
    font-weight: 600;
}

.text-box small {
    display: inline-block;
    margin-bottom: 15px;
}

.left-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: -1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #D91604;
    right: -15px;
}

.right-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #FF8731;
    left: -15px;
}

/* Fin experience */

/* Début Compétences */

.title-competence {
    font-size: 2.5rem;
    font-weight: 500;
    margin-left: 40%;
    padding-top: 30px;
    font-family: "Roboto";
    color: var(--title-color);
}

.competence {
    display: flex;
    justify-content: center;
    margin-top: 55px;
    padding: 0 20px;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    width: 100%;
}

.skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-2px);
}

.skill-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--title-color);
}

.skill-level {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.skill-level.good {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.skill-level.bad {
    background-color: #ffebee;
    color: #FF8731;
}

/* Responsive styles for skills */
@media (max-width: 768px) {
    .skills-container {
        max-width: 100%;
    }

    .skill-item {
        padding: 12px 20px;
    }

    .skill-name {
        font-size: 1rem;
    }

    .skill-level {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .skill-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .skill-level {
        width: fit-content;
    }
}

/* Fin Compétences */

/* Début Certifications */

/* Début Certifications */

.title-certif {
    font-size: 2.5rem;
    font-weight: 500;
    margin-left: 40%;
    padding-top: 30px;
    font-family: "Roboto";
    color: var(--title-color);
}

.container-certif {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    padding-bottom: 5%;
}

.cnil-logo {
    width: 280px;
    height: 175px;
}


/* Fin Certifications */

/***************************************************************************** Page ENTREPRISE *****************************************************************************/

/* Début Presentation entreprise */

.container-entreprise {
    display: flex;
    flex-direction: column;
    padding-top: 5%;
    padding-left: 4%;
    gap: 200px;
}

.entreprise-pres {
    height: 200px;
    width: 500px;
}

.para-top {
    font-size: 1.5rem;
    font-weight: 500;
    ;
    padding-top: 5%;
    font-family: "Roboto";
    color: var(--title-color);
}

.entreprise-logo {
    height: 300px;
    width: 300px;
}

.GB-logo-entreprise {
    width: 600px;
    margin-right: 10px;
    padding-left: 75%;
    margin-top: -225px;
}

.mission {
    font-size: 2, 5rem;
    font-weight: 500;
    margin-left: 36%;
    padding-top: 5%;
    font-family: "Roboto";
    color: var(--title-color);
}

.container {
    display: flex;
}

/* Fin Presentation entreprise */

/* Début Mission entreprise */

.mission-ent {
    display: flex;
    flex-direction: row;
    gap: 120px;
    margin-top: 5%;
}

/* Fin Mission entreprise */

/* Début Equipe entreprise */

.organigramme {
width: 50%;
margin-left: 50%;
}
.title-ressource {
    margin-left: 29%;
}

.serveur {
    width: 1300px;
    margin-top: 2%;
}

.actifs {
    margin-top: 5%;
    margin-left: 30%;
}

/***************************************************************************** Page Projets *****************************************************************************/

/* Début Titre Projets */

.button-img-projet {
    width: 300px;
    height: 174px;
    transition: transform 0.2s;
}

.button-img-projet :hover {
    transform: scale(1.10);
}

.projet-pres {
    font-family: "Roboto";
    color: var(--title-color);
}

.title-projet {
    font-size: 2, 5rem;
    font-weight: 500;
    padding-left: 40%;
    padding-top: 5%;
}

.para-projet {
    font-size: 2.0rem;
    font-weight: 500;
    padding-left: 15%;
    padding-top: 2%;
}

.para-top-projet {
    font-size: 1.5rem;
    font-weight: 500;
    padding-top: 5%;
    font-family: "Roboto";
    color: var(--title-color);
}

/* Fin Titre Projets */

/* Début Boutton Projets */

.button-projet {
    display: flex;
    flex-direction: row;
    gap: 50px;
    margin-left: 155px;
    margin-top: 65px;
    margin-bottom: 5%;
}

#img-btn {
    height: 180px;
    width: 306px;
    padding-block: 0px;
    padding-inline: 0px;
    border-width: 3px;
    transition: transform 0.2s;
}

#img-btn:hover {
    transform: scale(1.10);
}

.size-btn-ent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.size-btn-ent:hover {
    transform: scale(1.10);
}

/* Fin Boutton Projets */

/* Pop-Up projet */


/* Fin Pop-Up projet */

.popup {
    position: absolute;
    top: -150%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.25);
    width: 1000px;
    height: 500px;
    padding: 20px 30px;
    background: #FBF8F7;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: top 0ms ease-in-out 200ms,
        opacity 200ms ease-in-out 0ms,
        transform 200ms ease-in-out 0ms;
}

.popup.active {
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
        opacity 200ms ease-in-out 0ms,
        transform 200ms ease-in-out 0ms;

}

.popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--gradient-color);
    text-align: center;
    line-height: 23px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 30px;
}

.close-btn:hover {
    background: red;
}

.popup .form h2 {
    text-align: center;
    color: var(--title-color);
    margin: 10px 0 20px;
    font-size: 30px;
    font-family: "Roboto";

}

.contenair-pop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.element-pop-left {
    position: absolute;
    display: flex;
    flex-direction: column;
    margin-top: -125px;
    gap: 8px;
    width: 160px;
    color: var(--text-color);
    font-family: "Roboto";
}

.text-pop-left {
    font-size: 24px;
    margin-left: 15px;

}

.element-pop-mid {
    display: flex;
    flex-direction: column;
    width: 550px;
    margin-top: -10px;
    margin-left: 195px;
    color: var(--text-color);
    font-family: "Roboto";

}

.descript-pop {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-color);
    font-family: "Roboto";
}

.link-contexte {
    display: flex;
    margin-left: 230px;
    margin-right: 230px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    color: var(--text-color);
    font-family: "Roboto";
    transition: transform 0.2s;
}

.link-contexte:hover {
    transform: scale(1.05);
}

.title-projet-pop {
    font-size: 24px;
    color: rgb(255, 255, 255);
    margin: 10px 0 20px;
    text-align: center;
    font-family: "Roboto";
    color: var(--text-color);
}

.link-projet {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.policy-link-projet {
    font-weight: 700;
    color: var(--text-color);
    cursor: pointer;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s;
}

.policy-link-projet:hover {
    transform: scale(1.25);
}

.element-pop-right {
    display: flex;
    flex-direction: column;
    margin-top: -85px;
    gap: 8px;
    width: 144px;
    color: var(--text-color);
    font-family: "Roboto";
}

ul.list-pop {
    display: flex;
    flex-direction: column;
    list-style-type: disc;
    padding: 0;
    margin: 0;
    font-size: 24px;
}

ul.list-pop li {
    margin-bottom: 10px;
}

/***************************************************************************** Veille *****************************************************************************/

/* Début Presentation Veille */

.veille-pres {
    font-family: "Roboto";
    color: var(--title-color);
    padding-top: 5%;
}

.title-veille {
    font-size: 2, 5rem;
    font-weight: 500;
    padding-left: 24%;
}

.explique-veille {
    font-size: 2.0rem;
    font-weight: 500;
    padding-left: 25%;
    padding-top: 2%;
}

.para-veille {
    font-size: 1.5rem;
    font-weight: 500;
    padding-left: 20%;
    padding-top: 2%;
    text-align: justify;
}

.hr2 {
    margin-top: 40px;
}

/* Fin Presentation Veille */

/* Début Element Veille */

.veille-element {
    padding-top: 3%;
    color: var(--text-color);
}

.contenair-veille {
    display: flex;
    flex-direction: row;
    padding-left: 5%;
    gap: 50px;
    margin-bottom: 50px;
}

.anim-veille {
    transition: transform 0.2s;
}

.anim-veille:hover {
    transform: scale(1.05);
}

.title-element {
    font-size: 1.6rem;
    text-align: center;
}

.img-veille {
    width: 100%;
    height: auto;
}

.imgveille2 {
    width: 100%;
    height: 42%;
}


.para-element {
    font-size: 1.2rem;
    text-align: center;
}

.para-element-note {
    font-size: 2.7rem;
    text-align: center;
    color: #e7e718;
}

.button-lien {
    display: flex;
    justify-content: center;
    font-weight: 700;
    color: var(--text-color);
    cursor: pointer;
    align-items: center;
}

.veille-article {
    width: 375px;
    height: 500px;
}

.test {
    background-color: yellow;
}

.element-two {
    padding-top: 5%;

}

/*****************************************************Bilan*****************************************************************/
.element-pop-mid-bilan
{
    display: flex;
    flex-direction: column;
    margin-top: -10px;
    color: var(--text-color);
    font-family: "Roboto";
}

.para-bilan {
        font-size: 2.0rem;
        font-weight: 500;
        padding-left: 15%;
        padding-top: 2%;
}

.section-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--title-color);
    text-align: center;
    margin: 50px 0 30px;
    font-family: "Roboto";
}

.bilan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.bilan-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.bilan-card:hover {
    transform: translateY(-5px);
}

.bilan-icon {
    font-size: 2.5rem;
    color: var(--gradient-color);
    margin-bottom: 15px;
}

.bilan-card-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 15px;
    font-family: "Roboto";
}

.bilan-card-content {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    font-family: "Roboto";
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin: 30px 0 20px;
    }

    .bilan-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .bilan-card {
        padding: 20px;
    }
}

/*****************************************************Mentions Légales******************************************************/
.title-mention {
    margin-left: 34%;
    padding-top: 5%;
}

.desc-mention {
    color: #7e4c4c;
    font-size: 1.1rem;
    width: 75%;
    MARGIN-LEFT: 17%;
    margin-top: 2%;
    font-family: "Roboto";
}

/* Fin Element Veille */

@media (max-width: 768px) {

    .site-main .site-banner .site-title h3 {
        padding-left: 16%;
        font-size: 16px;
    }

    .site-main .site-banner .site-title h1 {
        padding-left: 15%;
        font-size: 16px;
    }

    .site-main .site-banner .site-title h4 {
        font-size: 14px;
        padding-left: 15%;
    }

    .site-buttons {
        justify-content: center;
    }

    .button.primary-button {
        padding: 0.2rem 1rem;
        PADDING-LEFT: 39px;
    }

    .button.secondary-button {
        padding: 1rem 1.5rem;
    }

    .title-experience {
        font-size: 1.5rem;
        margin-left: 0;
        padding-top: 5%;
    }

    .timeline {
        margin-top: 40px;
    }

    .timeline::after {
        left: 55%;
    }

    .text-box {
        padding: 10px 20px;
    }

    .timeline .container-competence {
        width: 69%;
        text-align: center;
        margin-left: -34px;
    }

    .timeline .container-competence img {
        opacity: 0;
    }

    .left-container {
        margin-left: 54px;
    }

    .right-container {
        margin-left: 54px;
        padding-right: 97px;
    }

    .title-competence {
        font-size: 1.5rem;
        margin-left: 129px;
    }

    .competence .nom {
        font-size: 1rem;
    }

    .progress-container {
        width: 100%;
        padding-top: 25px;
    }

    .title-certif {
        font-size: 1.5rem;
        margin-left: 129px;
    }

    .competence .nom span,
    .competence .progress-container .bar {
        display: block;
        width: 100%;
        text-align: center;
    }

    .container-certif {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .container-certif a {
        margin-bottom: 10px;
    }

    /* Début Presentation entreprise (Mobile) */
    .entreprise-pres {
        width: 100%;
        margin-left: 0;
        margin-bottom: 33px;
    }

    .para-top {
        font-size: 0.8rem;
        text-align: center;
        margin-right: 210px;
    }

    .entreprise-logo {
        width: 300px;
        height: 0px;
    }

    .GB-logo-entreprise {
        width: 341px;
        margin-right: 10px;
        padding-left: 67%;
        margin-top: -408px;
    }

    .BK-logo-entreprise {
        width: 120px;
        margin-top: -133px;
        margin-left: 200px;
    }

    .mission {
        font-size: 1.5rem;
        margin-left: 67px;
    }

    .mission-ent {
        display: flex;
        flex-direction: column;
        gap: 0px;
        margin-top: 5%;
    }

    .title-text {
        font-size: 1.4rem;
    }

    .serveur {
        width: 386px;
    }

    .actifs {
        margin-left: 6%;
    }

    .organigramme {
        margin-left: 19%;
    }

    /* Fin Presentation entreprise (Mobile) */
    /* Début Mission placement POP-UP (Mobile) */
    .para-projet {
        font-size: 1.3rem;
        padding-left: 17px;
    }

    .button-projet {
        flex-direction: column;
        margin-left: 66px;
    }

    .para-top-projet {
        font-size: 1.5rem;
        margin-right: 12px;
    }

    /* Fin Mission placement POP-UP (Mobile) */
    /* Placement POP-UP (Mobile) */
    .popup {
        left: 50%;
        width: 354px;
        height: 758px;
    }

    .popup.active {
        top: 82%;
    }

    .popup .form h2 {
        font-size: 18px;
    }

    .contenair-pop {
        display: block;
    }

    .element-pop-left {
        margin-top: 335px;
    }

    .element-pop-mid {
        margin-top: -4px;
        margin-left: -130px;
    }

    .element-pop-right {
        margin-top: 20px;
        margin-left: 167px;
    }

    .descript-pop {
        width: 350px;
        margin-left: 100px;
        font-size: 0.9rem;
    }

    .link-contexte {
        font-size: 18px;
    }

    .title-projet-pop {
        font-size: 18px;
    }

    .link-projet {
        width: 336px;
        margin-left: 113px;
    }

    .policy-link-projet {
        font-size: 12px;
    }

    ul.list-pop {
        font-size: 18px;
    }

    .text-pop-left {
        font-size: 18px;
    }

    /* Début Element Veille (Mobile) */
    .title-veille {
        font-size: 1.5rem;
        padding-left: 6%;
    }

    .explique-veille {
        font-size: 1.4rem;
        padding-left: 8%;
        padding-top: 2%;
    }

    .para-veille {
        font-size: 1.1rem;
        padding-left: 3%;
        padding-right: 6%;
    }

    .contenair-veille {
        display: flex;
        flex-direction: column;
        gap: 55px;
    }
}

@media screen and (min-device-width: 1920px) and (max-device-width: 1920px) and (min-device-height: 1080px) and (max-device-height: 1080px) {
    .left-block-home {
        margin-left: -150px;
    }

    .BK-logo {
        margin-left: 200px;
        width: 50%;
    }

    .title-experience {
        margin-left: 33%;
    }

    .timeline {
        margin-left: 200px;
    }

    .organigramme {
        margin-left: -46%;
        margin-top: 165px;
    }

    .title-competence {
        margin-left: 42%;
    }

    .title-certif {
        margin-left: 43%;
    }

    /* Début Presentation entreprise (Desktop) */
    .entreprise-pres {
        width: 745px;
    }

    .entreprise-logo {
        margin-left: 180px;
    }

    .GB-logo-entreprise {
        margin-left: 118px;
    }

    .mission {
        margin-left: 39%;
    }

    .mission-ent {
        margin-left: 215px;
    }

    .title-ressource {
        margin-left: 35%;
    }

    .serveur {
        margin-left: 18%;
    }

    .actifs {
        margin-left: 36%;
    }

    /* Début Presentation entreprise Projet (Desktop) */
    .title-projet {
        margin-left: 3%;
    }

    .button-projet {
        margin-left: 200px;
        gap: 15%;
    }

    .para-top-projet {
        font-size: 1.4rem;
    }

    .para-projet {
        padding-left: 22%;
    }

    /* Début Présentation Veille*/
    .title-veille {
        padding-left: 32%;
    }

    .explique-veille {
        padding-left: 30%;
    }

    .para-veille {
        padding-left: 27%;
    }

    .veille-element {
        padding-left: 7%;
    }

    .contenair-veille {
        gap: 160px;
    }

    .title-element {
        font-size: 1.4rem;
    }

    .para-bilan {
        padding-left: 20%;
}
}

@media screen and (min-device-width: 1920px) and (max-device-width: 1920px) and (min-device-height: 1200px) and (max-device-height: 1200px) {
    .timeline {
        margin-left: 200px;
    }
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FBF8F7;
    padding: 20px 0;
    width: 100%;
    margin-top: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    font-family: "Roboto";
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gradient-color);
}

.copyright {
    text-align: center;
    font-family: "Roboto";
    color: var(--text-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-link,
    .copyright {
        font-size: 0.9rem;
    }
}