:root {
    --light-color: #EBECF0;
    --light-blue-bg: #D0DCEF;
    --blue-box: #A8B9D9;
    --dark-blue: #203864;
    --blue-link: #0080FF;
    --dark-grey: #3D3D3D;
    --title-grey: #808080;
    --vh: 100vh;
}

@font-face {
    font-family: 'Segoe UI Regular';
    src: url('assets/fonts/Segoe_UI/Segoe_UI.eot');
    src: local('Segoe UI'), local('Segoe_UI'), url('assets/fonts/Segoe_UI/Segoe_UI.eot?#iefix') format('embedded-opentype'), url('assets/fonts/Segoe_UI/Segoe_UI.woff2') format('woff2'), url('assets/fonts/Segoe_UI/Segoe_UI.woff') format('woff'), url('assets/fonts/Segoe_UI/Segoe_UI.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI Semibold';
    src: url('assets/fonts/Segoe_UI-Semibold/Segoe_UI-Semibold.eot');
    src: local('Segoe UI Semibold'), local('Segoe_UI-Semibold'), url('assets/fonts/Segoe_UI-Semibold/Segoe_UI-Semibold.eot?#iefix') format('embedded-opentype'), url('assets/fonts/Segoe_UI-Semibold/Segoe_UI-Semibold.woff2') format('woff2'), url('assets/fonts/Segoe_UI-Semibold/Segoe_UI-Semibold.woff') format('woff'), url('assets/fonts/Segoe_UI-Semibold/Segoe_UI-Semibold.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI Bold';
    src: url('assets/fonts/Segoe_UI-Bold/Segoe_UI-Bold.eot');
    src: local('Segoe UI Bold'), local('Segoe_UI-Bold'), url('assets/fonts/Segoe_UI-Bold/Segoe_UI-Bold.eot?#iefix') format('embedded-opentype'), url('assets/fonts/Segoe_UI-Bold/Segoe_UI-Bold.woff2') format('woff2'), url('assets/fonts/Segoe_UI-Bold/Segoe_UI-Bold.woff') format('woff'), url('assets/fonts/Segoe_UI-Bold/Segoe_UI-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI Italic';
    src: url('assets/fonts/Segoe_UI-Italic/Segoe_UI-Italic.eot');
    src: local('Segoe UI Italic'), local('Segoe_UI-Italic'), url('assets/fonts/Segoe_UI-Italic/Segoe_UI-Italic.eot?#iefix') format('embedded-opentype'), url('assets/fonts/Segoe_UI-Italic/Segoe_UI-Italic.woff2') format('woff2'), url('assets/fonts/Segoe_UI-Italic/Segoe_UI-Italic.woff') format('woff'), url('assets/fonts/Segoe_UI-Italic/Segoe_UI-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Segoe UI Bold Italic';
    src: url('assets/fonts/Segoe_UI-BoldItalic/Segoe_UI-BoldItalic.eot');
    src: local('Segoe UI Bold Italic'), local('Segoe_UI-BoldItalic'), url('assets/fonts/Segoe_UI-BoldItalic/Segoe_UI-BoldItalic.eot?#iefix') format('embedded-opentype'), url('assets/fonts/Segoe_UI-BoldItalic/Segoe_UI-BoldItalic.woff2') format('woff2'), url('assets/fonts/Segoe_UI-BoldItalic/Segoe_UI-BoldItalic.woff') format('woff'), url('assets/fonts/Segoe_UI-BoldItalic/Segoe_UI-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Sitka Small Bold';
    src: url('assets/fonts/Sitka_Small_Bold/Sitka_Small_Bold.eot');
    src: local('Sitka Small Bold'), local('Sitka_Small_Bold'), url('assets/fonts/Sitka_Small_Bold/Sitka_Small_Bold.eot?#iefix') format('embedded-opentype'), url('assets/fonts/Sitka_Small_Bold/Sitka_Small_Bold.woff2') format('woff2'), url('assets/fonts/Sitka_Small_Bold/Sitka_Small_Bold.woff') format('woff'), url('assets/fonts/Sitka_Small_Bold/Sitka_Small_Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: bold;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    margin: 0;
    font-size: 16px;
    background-color: var(--light-color);
    overflow-x: hidden;
    width: 100%;
}

body {
    min-width: 320px;
    width: 100%;
    min-height: 100vh;
    max-height: calc(var(--vh, 1vh) * 100);
    font-family: 'Segoe UI Regular', sans-serif;
    overflow-x: hidden;
}

p {
    line-height: 1.4;
}

a {
    text-decoration: none;
}

.section-one {
    max-height: 100vh;
    max-height: calc(var(--vh, 1vh) * 100);
    min-height: 500px;
}

header {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 6.25rem;
    display: flex;
    justify-content: space-between;
    padding: 1em 2.5em;
}

header div a {
    display: flex;
}

header div a p {
    font-family: 'Segoe UI Semibold';
}

.fa-envelope {
    color: var(--dark-grey);
    font-size: 1.75rem;
    margin-left: 10px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 11rem;
}

.hero-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    background-image: url("assets/pc-background.jpg");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 140%;
    background-size: 1900px;
    background-size: 107rem;
    background-position: 13% 34%;
    position: relative;
}

.no-js .hero-container {
    background-image: url("assets/pc-background.jpg");
}

.no-webp .hero-container {
    background-image: url("assets/pc-background.jpg");
}

.webp .hero-container {
    background-image: url("assets/pc-background.webp");
}

.title-bloc {
    width: 90%;
    max-width: 32rem;
    padding-left: 7em;
    align-items: center;
    position: absolute;
    top: 14.6875rem;
}

.main-title h1 {
    font-size: 3.4375rem;
    color: var(--dark-blue);
    font-family: 'Sitka Small Bold';
}

.main-title h1:nth-child(2) {
    font-size: 2.5rem;
    color: var(--title-grey);
    text-transform: uppercase;
}

.main-title p,
header p {
    color: var(--dark-grey);
    font-size: 1.25rem;
}

.main-title p {
    line-height: 1.7;
    margin-top: 1em;
}

section {
    background-color: var(--light-color);
}

.section-two {
    padding: 1em 2.5em;
    position: relative;
}

.rectangle-background {
    height: 1000px;
    height: 62.5rem;
    /* width: 1500px; */
    width: 120vw;
    background-color: var(--light-blue-bg);
    transform: rotate(15deg);
    position: absolute;
    z-index: 0;
    left: 2.5rem;
    top: 5.8125rem;
    backface-visibility: hidden;
}

.section-two-container,
.section-three h1,
.partenaires {
    position: relative;
    z-index: 1;
}

.section-two h1,
.section-three h1 {
    color: white;
    padding: 1.5em .5em;
    font-size: 4.375rem;
    font-weight: normal;
}

.section-three h1 {
    text-align: end;
    padding-right: 1.5em;
}

.section-two h1 span,
.section-three h1 span {
    color: var(--dark-blue);
}

.products {
    max-width: 59.5rem;
    margin: auto;
    justify-content: center;
}

.products h1 {
    margin-top: 8%;
    margin-bottom: 2%;
    font-size: 1.5rem;
}

.product-boxes {
    display: flex;
    justify-content: space-between;
    margin: auto;
}

.product-box {
    width: 25.3125rem;
    height: 25.125rem;
    background-color: var(--blue-box);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 22px 22px 15px rgba(77, 77, 77, 0.2);
}

.product-box div {
    display: flex;
    align-items: center;
    margin-top: 1.125rem;
}

.product-box img {
    width: 3.9375rem;
    margin-right: 1em;
}

.product-box img.pp-logo {
    width: 5.9375rem;
    margin-right: 0.5em;
}

.product-box p {
    font-size: 1.125rem;
    color: white;
    line-height: 1.7;
}

.product-box a {
    font-size: 1.125rem;
    text-align: end;
    color: var(--blue-link);
    text-decoration: underline;
}

.product-boxes h3 {
    font-family: 'Segoe UI Bold';
    font-size: 2rem;
    color: var(--dark-blue);
    line-height: 1.3;
}

.partenaires {
    background-color: rgba(46, 46, 46, 0.7);
    height: 15.375rem;
    width: 100%;
}

.distributeurs {
    width: 95%;
    margin: auto;
    display: flex;
    padding-top: 5%;
    justify-content: center;
    height: 15.375rem;
}

.distributeurs div {
    height: 4.375rem;
    padding: 0.5em 1.5em;
    flex: 1;
}

.distributeurs img {
    object-fit: contain;
    width: 100%;
    height: 100%
}

.rectangle-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 2.5em;
    width: 23rem;
    height: 5.125rem;
    position: absolute;
    left: calc(50% - 11.5rem);
    bottom: -1.625rem;
    background-color: var(--blue-box);
    border-radius: 5px;
    box-shadow: 7px 7px 6px rgba(0, 0, 0, 0.2);
}

.rectangle-icons i {
    color: #606162;
    font-size: 2.375rem;
}

.rectangle-icons i.fa-apple {
    font-size: 2.625rem;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-color);
    color: var(--dark-grey);
    position: relative;
    height: 21.75rem;
}

footer h5,
footer h6 {
    font-size: 1.125rem;
}

footer h5 {
    font-family: 'Segoe UI Semibold';
}

footer h6 {
    margin-top: 2em;
    margin-bottom: 0.75em;
    font-weight: normal;
}

footer a {
    color: var(--dark-grey);
}

footer p {
    font-size: 1rem;
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 3em;
}

.footer-container-left {
    width: 50%;
}

footer .footer-container-left p:nth-of-type(3) {
    font-size: 0.875rem;
}

footer .footer-container-left p:nth-of-type(4),
footer .footer-container-left p:nth-of-type(5),
footer .footer-container-left p:nth-of-type(6),
footer .footer-container-left a p {
    font-size: 0.625rem;
}

.footer-container-right {
    flex: 1;
    text-align: end;
}

.logo-facebook {
    width: 3.75rem;
}