/* Échec de l'agrandissement. Renvoi du contenu non agrandi.
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(35,28): run-time error CSS1039: Token not allowed after unary operator: '-nvidia-light-grey'
(37,28): run-time error CSS1039: Token not allowed after unary operator: '-cpro_blanc'
(76,21): run-time error CSS1039: Token not allowed after unary operator: '-cpro_size-32'
(77,17): run-time error CSS1039: Token not allowed after unary operator: '-cpro_blanc'
(78,23): run-time error CSS1039: Token not allowed after unary operator: '-cpro_weight-700'
(82,17): run-time error CSS1039: Token not allowed after unary operator: '-nvidia-green'
(88,17): run-time error CSS1039: Token not allowed after unary operator: '-nvidia-title-grey'
(95,21): run-time error CSS1039: Token not allowed after unary operator: '-cpro_size-px-16'
(103,17): run-time error CSS1039: Token not allowed after unary operator: '-cpro_blanc'
(104,21): run-time error CSS1039: Token not allowed after unary operator: '-cpro_size-24'
(105,23): run-time error CSS1039: Token not allowed after unary operator: '-cpro_weight-700'
(106,28): run-time error CSS1039: Token not allowed after unary operator: '-nvidia-green'
(115,28): run-time error CSS1039: Token not allowed after unary operator: '-cpro_blanc'
(125,28): run-time error CSS1039: Token not allowed after unary operator: '-nvidia-dark-grey'
(137,28): run-time error CSS1039: Token not allowed after unary operator: '-nvidia-light-grey'
(152,28): run-time error CSS1039: Token not allowed after unary operator: '-nvidia-green'
(189,28): run-time error CSS1039: Token not allowed after unary operator: '-cpro_blanc'
(206,21): run-time error CSS1039: Token not allowed after unary operator: '-cpro_size-13'
(291,25): run-time error CSS1039: Token not allowed after unary operator: '-cpro_size-20'
(328,28): run-time error CSS1039: Token not allowed after unary operator: '-nvidia-light-grey--secondary'
(339,28): run-time error CSS1039: Token not allowed after unary operator: '-nvidia-green'
(351,21): run-time error CSS1039: Token not allowed after unary operator: '-cpro_size-32'
(352,23): run-time error CSS1039: Token not allowed after unary operator: '-cpro_weight-700'
(357,28): run-time error CSS1039: Token not allowed after unary operator: '-nvidia-green'
(360,21): run-time error CSS1039: Token not allowed after unary operator: '-cpro_size-14'
(361,23): run-time error CSS1039: Token not allowed after unary operator: '-cpro_weight-600'
(371,28): run-time error CSS1039: Token not allowed after unary operator: '-cpro_blanc'
(380,25): run-time error CSS1039: Token not allowed after unary operator: '-cpro_size-28'
(384,25): run-time error CSS1039: Token not allowed after unary operator: '-cpro_size-18'
 */
:root {
    /* vert */
    --nvidia-green: #5EBB00;
    /* noir */
    --nvidia-middle-black: #111;
    /* gris */
    --nvidia-dark-grey: #2C2B3A;
    --nvidia-middle-grey: #666;
    --nvidia-light-grey: #eee;
    --nvidia-light-grey--secondary: #cacaca;
    --nvidia-title-grey: #444;
}

* {
    box-sizing: border-box;
}

.cpro_hbspt__btn--devis {
    cursor: pointer;
}

/* templates pour toutes les landings calc gpu */
.calcgpu_template__header {
    max-height: 400px;
    height: 100vh;
}
.calcgpu_template__header-block {
    height: 380px;
}
/* les blocs */
.calcgpu_template__viewport {
    width: 100%;
}
.calcgpu_template__viewport--grey {
    background-color: var(--nvidia-light-grey);
}.calcgpu_template__viewport--white {
    background-color: var(--cpro_blanc);
}
.calcgpu_template__block {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}
.block--centered {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
    padding: 30px 0 40px;
}
.calcgpu_template__vignette-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.calcgpu_template__vignette {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    row-gap: 20px;
}
.calcgpu_template__text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
}
/* les textes */
.calcgpu_template__title {
    width: 100%;
    font-size: var(--cpro_size-32);
    color: var(--cpro_blanc);
    font-weight: var(--cpro_weight-700);
    text-align: center;
}
.title--green {
    color: var(--nvidia-green);
}
.title--black {
    color: #000;
}
.title--grey {
    color: var(--nvidia-title-grey);
}
.title--left-aligned {
    text-align: left;
}
.calcgpu_template__text {
    color: #000;
    font-size: var(--cpro_size-px-16);
    line-height: 1.2;
    text-decoration: none;
}
/* les cta */
.calcgpu_template__header-cta {
    position: relative;
    padding: 20px;
    color: var(--cpro_blanc);
    font-size: var(--cpro_size-24);
    font-weight: var(--cpro_weight-700);
    background-color: var(--nvidia-green);
}
.calcgpu_template__header-cta::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    height: 3px;
    width: 0;
    background-color: var(--cpro_blanc);
    transition: .3s;
}
.calcgpu_template__header-cta:hover::after {
    width: 350px;
    left: 20px;
}
.calcgpu_template__footer {
    width: 100%;
    padding: 30px 0 40px;
    background-color: var(--nvidia-dark-grey);
}
.calcgpu_template__footer-block {
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* les blocs staticques en commun */

/* mini menu */
.calcgpu_template__menu-fullwidth {
    background-color: var(--nvidia-light-grey);
}

.calcgpu_template__menu {
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-bottom: solid 2px #000000;
}
.calcgpu_template__menu-item::after {
    content: '';
    position: absolute;
    width: 0;
    left: 50%;
    background-color: var(--nvidia-green);
    bottom: -3px;
    height: 4px;
    transition: .3s;
}
.calcgpu_template__menu-item:hover::after {
    width: 100%;
    left: 0;
}
.calcgpu_template__menu--black {
    background-color: #000;
}
.calcgpu_template__menu--grey {
    background-color: #4B4B4C;
    color: white;
}
/*.calcgpu_tempalte__menu-title {
    width: fit-content;
    color: #000;
}*/
.calcgpu_template__menu-item {
    position: relative;
    font-size: 25px;
    font-weight: 600;
    padding: 10px;
}
/* footer */
.calcgpu_template__footer__case,
.calcgpu_template__header-cta {
    text-decoration: none;
}
.calcgpu_template__footer__case {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 250px;
    background-color: var(--cpro_blanc);
}
.calcgpu_template__footer__img-container {
    max-width: 250px;
    width: 100%;
    height: 150px;
    overflow: hidden;
}
.calcgpu_template__footer__case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.calcgpu_template__footer__case-cta {
    position: relative;
    color: #000;
    font-size: var(--cpro_size-13);
    padding: 25px 0;
}
.calcgpu_template__footer__case-cta::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50%;
    height: 2px;
    width: 0;
    background-color: #000;
    transition: .3s;
}
.calcgpu_template__footer__case:hover
.calcgpu_template__footer__case-cta::after {
    width: 100%;
    left: 0;
}

.calcgpu_template__footer__case:hover .calcgpu_template__footer__case-image {
    transform: scale(1.1);
}
/* responsive commun */
@media screen and (max-width: 1600px) {
    .calcgpu_template__block {
        width: calc(100% - 40px);
        row-gap: 20px;
    }

    .calcgpu_template__footer__img-container {
        max-width: 100%;
        max-height: initial;
        height: auto;
    }

    .calcgpu_template__footer__case {
        width: calc(30% - 20px);
    }
}

@media screen and (max-width: 1489px) {
    .calcgpu_template__menu-item {
        width: 30%;
        text-align: center;
    }
}

@media screen and (max-width: 1097px) {
    .calcgpu_template__menu-item {
        width: 50%;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .calcgpu_template__footer__case {
        width: calc(50% - 20px);
    }
    .calcgpu_template__menu-item {
        width: 50%;
    }

    .calcgpu_template__viewport {
        padding: 0 10px;
    }

    .calcgpu_template__header-cta:hover::after {
        max-width: 270px;
    }
}

@media screen and (max-width: 675px) {
    .calcgpu_template__menu-item {
        width: 100%;
    }
}

@media screen and (max-width: 425px) {
    .calcgpu_template__footer__case {
        width: calc(100% - 40px);
    }
}

@media screen and (max-width: 357px) {
    .calcgpu_template__menu-item {
        font-size: var(--cpro_size-20);
    }
}
/* styles de la home calc gpu */
.calcgpu_home__header {
    background-image: url('https://www.cybertek-pro.fr/images_produits/cybertekpro/landing/calcgpu-home/home-banner.jpg');
    padding: 10px 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.calcgpu_home__header-block {
    align-items: flex-end;
    justify-content: space-between;
    gap: 120px;
}
.calcgpu_home__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 80px;
    padding: 40px 0;
}
.calcgpu_home__content-block {
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 80px;
}
.calcgpu_home__content-block::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 1176px;
    height: 6px;
    background-color: var(--nvidia-light-grey--secondary);
    transform: translateX(-50%);
}
.calcgpu_home__content-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc((100% - 1176px) / 2);
    width: 100%;
    max-width: 470px;
    height: 6px;
    background-color: var(--nvidia-green);
}
.calcgpu_home__content-text {
    display:flex;
    flex-direction: column;
    row-gap: 40px;
    max-width: 765px;
}
.calcgpu_home__content-image {
    max-width: 100%;
}
.calcgpu_home__content-title {
    font-size: var(--cpro_size-32);
    font-weight: var(--cpro_weight-700);
}
.calcgpu_home__content-cta {
    position: relative;
    padding: 10px 20px;
    background-color: var(--nvidia-green);
    color: #fff;
    text-decoration: none;
    font-size: var(--cpro_size-14);
    font-weight: var(--cpro_weight-600);
    width: fit-content;
}
.calcgpu_home__content-cta::after {
    content:'';
    position: absolute;
    bottom: 4px;
    left: 50%;
    height: 3px;
    width: 0;
    background-color: var(--cpro_blanc);
    transition: .3s;
}
.calcgpu_home__content-cta:hover::after {
    left: 20px;
    width: calc(100% - 40px);
}
@media screen and (max-width: 1324px) /*and (min-width: 769px)*/ {
    .calcgpu_home__content-title {
        font-size: var(--cpro_size-28);
    }

    .calcgpu_home__content-p {
        font-size: var(--cpro_size-18);
    }

    .calcgpu_home__content-text {
        width: calc(60% - 20px);
    }

    .calcgpu_home__content-image {
        width: 40%;
    }
}
@media screen and (max-width: 1190px) {
    .calcgpu_home__content-block::before {
        width: 80%;
    }

    .calcgpu_home__content-block::after {
        width: 30%;
        left: 10%;
    }
}
@media screen and (max-width: 768px) {
    .calcgpu_home__content-block {
        flex-direction: column;
        justify-content: center;
    }

    .calcgpu_home__content-image,
    .calcgpu_home__content-text {
        width: 100%;
    }

    .calcgpu_template__header-cta {
        font-size: calc(16px + (100vw - 320px) / (1920 - 320) * (24 - 16));
    }
}
@media screen and (max-width: 623px) {
    .calcgpu_template__header {
        max-height: initial;
        height: auto;
    }
}
