
body {
    font-family: 'PT Sans', sans-serif;
    color: var(--font_2)
}

nav span .menu ul li {
    padding: 22px 15px;
}

header {
    display: block;
    position: relative;
    height: 500px;
    width: 100%;
    background: var(--black);
    padding-top: 60px;
    font-family: 'Roboto', sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

header .bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: 70% 50%;;
    background-repeat: no-repeat;
    opacity: .9;
}

header .title {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: max-content;
    width: 100%;
    margin: auto;
    color: white;
    text-shadow: 0 1px 3px var(--text_shadow);
    font-size: 1em;
    padding: 15px;
    max-width: 700px;
}

header .title h1 {
    font-size: 28px;
    font-weight: bold;
}

header .title h3 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 20px;
}

header .title ul li {
    font-size: 21px;
}

header .title ul li i {
    margin-right: 10px;
    color: var(--vert);
}

header .devis-btn {
    display: block;
    position: relative;
    width: 250px;
    text-align: center;
    margin-right: auto;
    height: max-content;
    background-color: var(--bleu);
    color: white;
    border-radius: 30px;
    box-shadow: 0 15px 30px var(--box_shadow);
    padding: 15px 30px;
    top: 35px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.44, 0, 0.22, 1);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

header .devis-btn:hover {
    transform: scale3d(0.95, 0.95, 0.95) translate3d(0, 5px, 0);
    box-shadow: 0 5px 10px var(--active_shadow);
}

.display {
    display: block;
    position: relative;
    padding: 40px 25px;
    max-width: 1200px;
    margin: auto;
    font-family: 'Roboto', sans-serif;
}

.display h2 {
    display: block;
    position: relative;
    text-align: center;
    font-size: 2em;
    font-weight: normal;
    margin-bottom: 50px;
}

.display h2:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 50px;
    height: 3px;
    background: var(--bleu);
    bottom: -20px;
}

#websites {
    display: block;
    position: relative;
    width: 100%;
    height: 1000px;
    padding-right: 33.33%;
    max-width: 1200px;
    cursor: pointer;
    box-shadow: 0 4px 7px var(--box_shadow);

}

#websites .site {
    float: left;
    position: relative;
    width: 50%;
    height: 33.33%;
    overflow: hidden;
    background: var(--grey_5);
}

#websites .site:nth-child(2n) {
    background: var(--grey_6);
}

#websites .site.wide-h {
    height: 66.66%;
    width: 33.33%;
    position: absolute;
    right: 0;
    top: 0;
    background: var(--grey);
}

#websites .site.wide-w {
    width: 66.66%;
    height: 33.33%;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--grey_2);
}

#websites .site .set{
    display:none
}

#websites .site .bg {
    background: var(--grey);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 0.3s ease-out;
}

#websites .site .bg:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: black;
    opacity: 0;
}

#websites .site:hover .bg {
    transform: scale(1.05);
}

#websites .site .desc {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    color: white;
    height: max-content;
    text-shadow: 0 1px 3px var(--text_shadow);

}

#websites .site h3 {
    display: block;
    font-size: 1.5em;
    margin: auto auto 4px;
    width: max-content;
    max-width: 90%;
    transform: translateY(30px);
    transition: 0.3s ease-in-out 0s;
    opacity: 0;
}

#websites .site h4 {
    font-weight: normal;
    font-size: .9em;
    max-width: 95%;
    margin: auto;
    transform: translateY(30px);
    transition: 0.3s ease-in-out 0s;
    opacity: 0;
}

#websites .site h5 {
    font-weight: normal;
    font-size: .8em;
    display: block;
    margin: auto auto 30px auto;
    max-width: 95%;
    transform: translateY(30px);
    transition: 0.3s ease-in-out 0s;
    opacity: 0;
}

#websites .site h5 i {
    margin-left: 3px
}

#websites .site hr {
    width: 0;
    height: 3px;
    display: block;
    background: white;
    position: relative;
    margin: 0 auto;
    transition: 0.3s ease-in-out 0s;
    opacity: 0;
}

#websites .site:hover .bg:before {
    opacity: .7;
}

#websites .site:hover h3,
#websites .site:hover h4,
#websites .site:hover h5 {
    opacity: 1;
    transform: translateY(0);
}

#websites .site:hover hr {
    width: 50px;
    opacity: 1;
}

.plans {
    display: block;
    position: relative;
}

.models {
    display: flex;
    position: relative;
    align-items: stretch;
    width: 100%;
    padding: 20px 0 40px;
}

.offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    cursor: pointer;
    padding: 0 15px;
    position: relative;

}

.icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    transform: scale(1);
    background: linear-gradient(to top, var(--bleu) 0%, var(--bleu) 80%, var(--bleu) 100%);
    box-shadow: 0 3px 4px var(--active_shadow);
    color: white;
    margin: 15px auto;
    display: block;
    transition: 0.3s cubic-bezier(0.87, -1, 0.19, 2);
}

.icon:hover {
    transform: scale(1.1);
}

.icon i {
    font-size: 40px;
    line-height: 100px;
}

.typo {
    margin-top: 10px;
    font-size: clamp(1.25em, 2em, 3.5vw);
    position: relative;
}

.typo:after {
    content: '';
    position: absolute;
    bottom: -25px;
    width: 50px;
    height: 3px;
    left: 0;
    right: 0;
    margin: auto;
    background: var(--bleu);
}

.resume {
    display: block;
    position: relative;
    font-size: clamp(18px, 2vw, 20px);
    margin: 50px 0 20px;
}

.more {
    display: block;
    position: relative;
    color: var(--bleu);
    font-size: 20px;
    white-space: nowrap;
    margin: auto;
}

.more i {
    line-height: 20px;
    vertical-align: middle;
}

.more:hover i {
    animation: piston_solid .8s ease-out infinite;
}

.cut {
    display: block;
    position: relative;
    width: 100%;
    height: 400px;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
}

.cut:before {
    content: "";
    position: absolute;
    background: black;
    opacity: .3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.comm {
    position: absolute;
    right: 10%;
    left: 50%;
    top: 55%;
    color: white;
    transform: translateY(-50%);
}

.stat {
    display: inline-block;
    font-size: 10em;
    font-weight: bold;
    position: absolute;
    top: -5rem;
    transform: translateX(-30.5%);
    z-index: -1;
    color: var(--bleu);
    opacity: .5;
}

.highlight {
    display: block;
    font-size: clamp(1.5em, 2vw, 2em);
    line-height: 1;
    margin-bottom: 40px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.6);
}

.text, .highlight {
    text-shadow: 0 1px 3px var(--text_shadow);
    position: relative;
}

.us {
    display: block;
    text-align: center;
    padding: 0 15px;
    font-family: 'Roboto', sans-serif;
}

.us h1 {
    display: block;
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 6px;
    padding: 0 25px;
}

.us h3 {
    font-weight: normal;
    font-size: 1.2em;
    letter-spacing: 0.025em;
    padding: 0 25px;
    color: var(--grey_4);
    margin-bottom: 20px;
}

.us hr {
    display: block;
    width: 50px;
    height: 3px;
    margin: auto auto 60px auto;
    background: var(--bleu)
}

.team {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.team .member {
    height: 300px;
    display: block;
    background-size: cover;
    background-position: center;
    border-radius: 5px 5px 0 0;
    max-width: 320px;
    flex: 1;
    position: relative;
    margin-bottom: 100px;
}

.team .info {
    content: "";
    display: block;
    position: absolute;
    bottom: -75px;
    left: 0;
    right: 0;
    background-color: var(--grey_5);
    padding: 20px 25px;
    height: 75px;
    text-align: left;
    border-radius: 0 0 5px 5px;
    color: var(--grey_font);
    font-size: 12px;
    font-weight: bold
}

.team .info strong {
    display: block;
    font-size: 15px;
    color: var(--font_3);

}

.digital {
    display: block;
    position: relative;
    padding: 60px 30px;
    font-family: 'Roboto', sans-serif;
    max-width: 1200px;
    margin: auto
}

.creative {
    display: block;
    position: relative;
    width: 60%;
    margin-left: auto;
    font-family: 'Roboto', sans-serif;
}

.creative h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2.5em;
    letter-spacing: -0.025em;
    line-height: 2rem;
    margin-bottom: 16px;
    position: relative;
}

.creative h1:before {
    content: "";
    display: block;
    height: 2.25rem;
    width: 4px;
    background-color: #458CFF;
    position: absolute;
    left: -25px;
    top: 0;
}

.creative span {
    color: var(--grey_font);
    line-height: 1.5;
    font-size: 18px;
    display: block;
}

.creative .button {
    display: block;
    position: relative;
    background: var(--bleu);
    box-shadow: 0 3px 4px var(--box_shadow);
    text-shadow: 0 1px 3px var(--text_shadow);
    color: white;
    transition: all 0.1s ease;
    width: 200px;
    height: 50px;
    margin-top: 16px;
    border-radius: 25px;
    line-height: 48px;
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
    cursor: pointer;
    transform: scale(1);
}

.creative button:active {
    box-shadow: 0 2px 3px var(--box_shadow);
    transform: scale(0.95);
}

.dial {
    display: block;
    position: absolute;
    width: 33%;
    height: max-content;
    min-height: 450px;
    min-width:390px;
    max-width:400px;
    padding: 25px;
    background: var(--bleu);
    box-shadow: 0 10px 20px var(--box_shadow);
    left: 0;
    top: 60px;
    border-radius: 5px;
    z-index: 1;
}

.dial h1 {
    display: block;
    color: white;
    font-size: 1.85rem;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
    text-align: center;
}

.dial h4 {
    display: block;
    color: white;
    letter-spacing: -0.025em;
    text-align: center;
    font-weight: normal;
    margin-bottom: 25px;
}

.dial .field {
    display: block;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 0;
    border-radius: 3px;
    background: white;
    opacity: 1;
    font-weight: bold;
}

.ctc-grill {
    width: 100%;

}

.ctc-grill td {
    padding: 20px 0 0 15px;
    cursor: pointer;
}

.ctc-grill .dot {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.ctc-grill label {
    display: inline-block;
    color: white;
    cursor: pointer;
    position: relative;

}

.ctc-grill label:before {
    color: white;
    content: '';
    display: inline-block;
    position: relative;
    width: 15px;
    height: 15px;
    top: 1px;
    border: 3px solid white;
    background-color: transparent;
    border-radius: 50%;
    margin-right: 10px;
    z-index: 1;

}

.ctc-grill label:after {
    color: white;
    content: '';
    display: inline-block;
    position: absolute;
    width: 15px;
    height: 15px;
    top: 1px;
    left: 0;
    border: 3px solid white;
    background-color: white;
    border-radius: 50%;
    z-index: 1;
    opacity: 1;
    transition: 0.4s ease-out;
    transform: scale(0);

}

.ctc-grill input[type="checkbox"]:checked + label:before {
    border: 4px solid white;
    background-color: white;
}

.ctc-grill input[type="checkbox"]:checked + label:after {
    transform: scale(6);
    background-color: white;
    opacity: 0
}

.dial button {
    display: block;
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    border-radius: 35px;
    background: transparent;
    text-align: center;
    height: 70px;
    border: 3px solid white;
    font-size: 24px;
    color: white;
    cursor: pointer
}

.dial button:hover {
    background: white;
    color: var(--bleu);
}



.ban {
    display: block;
    height: 320px;
    width: 100%;
    position: relative;
    background-position: center;
    background-attachment: fixed;
}

.ban:after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background: var(--bleu);
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0 1px 2px var(--box_shadow);
    z-index: 2;
}

.filigrane {
    display: block;
    position: absolute;
    top: 32px;
    right: 0;
    width: max-content;
    height: max-content;
    font-size: 14px;
    transform: rotate(90deg);
}

.filigrane .cap_1:before {
    content: "";
    display: block;
    height: 2px;
    width: 25px;
    background-color: var(--grey_6);
    position: relative;
    left: -35px;
    top: 12px;
}

.filigrane .cap_1 {
    margin-right: 2px

}

.filigrane .cap_2 {
    color: white
}

.ide {
    display: block;
    position: relative;
    background: var(--grey_light);
    min-height: 200px;
    padding: 30px 0 10px;
    font-family: 'Roboto', sans-serif;
}

.ide h1 {
    display: block;
    text-transform: uppercase;
    font-size: 24px;
    text-align: center;
    margin-bottom: 8px;
}

.ide h3 {
    display: block;
    text-align: center;
    font-weight: normal;
    max-width: 640px;
    padding: 0 25px;
    font-size: 16px;
    margin: auto;
    color: var(--font_3)
}

.ide hr {
    display: block;
    height: 3px;
    width: 100px;
    margin: 30px auto;
    background: var(--bleu)
}

.tools {
    display: flex;
    justify-content: center;
    max-width: 680px;
    margin: auto;
}

.tools span {
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100px;
    flex: 1;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    opacity: .4;
}

.tools span:hover {
    opacity: .6;
}

.agencies {
    position: relative;
    padding: 25px 0 25px 25px;
    font-family: 'Roboto', sans-serif;
    color: var(--font_3);
}

.agencies .titre {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 21px;
    position: relative;
    height: 40px;
    margin-bottom: 25px;
    white-space: nowrap;
}

.agencies .titre:after {
    content: "";
    display: block;
    position: absolute;
    height: 4px;
    background-color: #458CFF;
    left: 0;
    bottom: -35px;
    width: 75px;
}

.agencies .points {
    display: flex;
    justify-content: center;
}

.agencies .points:after {
    content: "contact";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
    text-transform: uppercase;
    color: black;
    opacity: .025;
    font-size: 150px;
    letter-spacing: -.05em;
    font-weight: bold;

}

.cart {
    flex: 1;
    position: relative;
}

.cart.left {
    max-width: 480px;
}

.cart.right:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1;
}

.lieux {
    display: block;
    position: relative;
    margin-bottom: 30px;
    padding-left: 100px;
    line-height: 1.4;
}

.lieux span {
    display: block;
}

.map {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .5;
    box-shadow: 0 12px 20px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.map:after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 25px;
    margin: auto;
    border-radius: 25px;
    background-color: var(--bleu);
    animation: pulse 0.8s ease-out infinite;
}


@media screen and (max-width: 1200px) {
    .dial {
        border-radius: 0 5px 5px 0
    }
}

@media screen and (max-width: 1028px) {

    header .title {
        padding: 15px 35px;
    }

    header .devis-btn {
        margin: auto
    }

    #websites .site .bg:before {
        opacity: .7;
    }

    #websites .site h3,
    #websites .site h4,
    #websites .site h5 {
        opacity: 1;
        transform: translateY(0);
    }

    #websites .site hr {
        width: 50px;
        opacity: 1;
    }

    .offer {
        width: 75%;
        margin: auto;
    }

    .icon {
        width: 75px;
        height: 75px;
    }

    .icon i {
        font-size: 26px;
        line-height: 75px;
    }

    .typo {
        font-size: 1.25em
    }

    .models {
        padding-bottom: 30px
    }

    .cut {
        height: 250px
    }

    .comm {
        left: 35%;
        right: 5%;
    }

    .stat {
        font-size: 5em;
        top: -2.5rem;
        z-index: 0;
    }

    .highlight {
        font-size: 1.5rem;
    }

    .creative {
        opacity: 0;
    }

    .digital {
        padding-top: 40px
    }

    .dial {
        width: 60%;
        margin: auto;
        left: 0;
        right: 0;
        border-radius: 5px;
    }

    .ban:after {
        display: none
    }

    .filigrane {
        display: none
    }

    .agencies {
        padding: 18px;
    }

    .agencies .titre:after {
        bottom: 0
    }

    .agencies .points:after {
        font-size: 100px;
        top: 50px
    }

    .lieux {
        padding-left: 0;
    }

    .cart.left {
        max-width: unset
    }

    .cart.right {
        display: none;
    }


}

@media only screen and (max-width: 768px) {

    #websites {
        padding-right: 0;
        height: max-content;
    }

    #websites .site,
    #websites .site.wide-h,
    #websites .site.wide-w {
        float: none;
        height: 250px;
        width: 100%;
        position: relative;
        top: inherit;
        bottom: inherit;
        right: inherit;
    }

    .models,
    .offer {
        display: block;
    }

    .offer {
        margin-bottom: 40px;
    }

    .models {
        padding: 0;
    }

}

@media only screen and (max-width: 680px) {

    .text {
        font-size: 14px;
        position: relative;
    }

    .comm {
        left: 50px;
        right: 0;
        padding: 0 25px;
        top: 0;
        height: max-content;
        bottom: 0;
        margin: auto;
        transform: unset;
    }

    .highlight {
        margin-bottom: 0;
    }

    .team {
        gap: 4px
    }

    .team .member {
        border-radius: 0;
        margin-bottom: 20px;
    }

    .team .info {
        display: none
    }

    .us hr {
        margin-bottom: 40px
    }

    .creative {
        display: none
    }

    .digital {
        padding: 0
    }

    .dial {
        width: 90%;
        min-width: unset;
    }

    .ban {
        margin-bottom: 220px;
    }

}

@media only screen and (max-width: 480px) {

    .agencies .titre {
        font-size: 18px;
    }

    .agencies .points::after {
        font-size: 80px
    }

}