/*
** BASE
*/
main {
    padding-top: 90px;
    padding-left: 2.5%;
    padding-right: 2.5%;
}


/*
** HERO
*/
.apple-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.apple-hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -6vh;
}
.apple-hero-label {
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1C3761;
}
.apple-hero-title {
    margin: 0;
    font-size: clamp(70px, 10vw, 150px);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.07em;
    font-style: italic;
}
.apple-hero-title span {
    color: #E00A14;
    font-family: "Futura_Bold";
    font-style: normal;
}
.apple-hero-description {
    max-width: 420px;
    margin-top: 38px;
    font-size: 16px;
    line-height: 1.6;
    color: #747875;
}
.button_hero {
    font-family: "Montserrat_medium";
    background-color: #1C3761;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 25px;
    margin-top: 35px;
    cursor: pointer;
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.button_hero:hover {
    opacity: 1;
    transform: scale(1.03);
}
.button_hero img {
    height: 20px;
    margin-left: 10px;
}
.apple-hero-orbit {
    position: absolute;
    left: 50%;
    bottom: -30vh;
    width: 75vw;
    height: 75vw;
    max-width: 1100px;
    max-height: 1100px;
    transform: translateX(-50%);
    pointer-events: none;
}
.orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(22,76,82,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.orbit-1 {
    width: 100%;
    height: 100%;
}
.orbit-2 {
    width: 68%;
    height: 68%;
}
.orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #164c52;
    box-shadow: 0 30px 80px rgba(22,76,82,0.2);
}
.orbit-center span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
}
.apple-hero-title, .apple-hero-description, .apple-hero-link, .apple-hero-label {
    animation: appleFade 1s cubic-bezier(0.16,1,0.3,1) both;
}
.apple-hero-description {
    animation-delay: 0.1s;
}
.apple-hero-link {
    animation-delay: 0.2s;
}
.apple-hero-orbit {
    animation: orbitIn 1.4s 0.15s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes appleFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes orbitIn {
    from {
        opacity: 0;
        transform: translate(-50%, 100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
}


/*
** SECTEUR D'ACTIVITÉ
*/
.secteur {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 7% 170px 7%;
}
.secteur__container {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 7%;
}
.secteur__map {
    flex: 1 1 50%;
    min-width: 0;
    min-height: 500px;
    overflow: hidden;
    border-radius: 22px;
}
.secteur__map {
    flex: 1 1 50%;
    min-width: 0;
    min-height: 500px;
    overflow: hidden;
    border-radius: 22px;
}
#map {
    width: 100%;
    height: 100%;
    min-height: 500px;
}
.secteur__content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -20px;
}
.secteur__content h2 {
     font-size:clamp(2rem,3vw,3.3rem);
    line-height:1.1;
    font-weight:700;
    margin-bottom:20px;
}
.secteur__content h2 span {
    font-size:clamp(2.5rem,3.5vw,3.8rem);
    color:#115C90;
    font-family: "Futura_Bold";
}
.secteur__content p {
    max-width: 500px;
    margin-bottom: 30px;
    line-height:1.7;
}
.secteur__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0 0 35px;
    padding: 0;
    list-style: none;
}
.secteur__list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #303030;
}
.secteur__list li img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(20%) saturate(1326%) hue-rotate(178deg) brightness(92%) contrast(91%);
    height: 20px;
    margin-left: 10px;
    margin-top: -2px;
}
.secteur__list li a:hover{
    opacity: .6;
}
.secteur__button {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat_medium";
    padding: 16px 24px;
    border-radius: 50px;
    background-color: #1C3761;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    transition:
        transform .3s cubic-bezier(.22, 1, .36, 1),
        box-shadow .3s cubic-bezier(.22, 1, .36, 1);

    will-change: transform;
    width: 250px;
}
.secteur__button:hover {
    transform: scale(1.025);
}
.secteur__button img {
    height: 20px;
    margin-left: 10px;
    margin-top: -2px;
}
.secteur_button_2 {
    background-color: #115C90;
    margin-top: 10px;
}


/*
** À PROPOS
*/
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 7% 170px 7%;
}
.about__container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
}
.about__title {
    margin: 0 0 20px;
    width: 100%;
    line-height: 1.1;
    font-size:clamp(2rem,3vw,3.3rem);
    font-weight: 700;
    text-align: center;
}
.about__title span {
    font-size:clamp(2.5rem,3.5vw,3.8rem);
    color:#E00A14;
    font-family: "Futura_Bold";
}
.about__text {
    max-width: 600px;
    margin: 0 0 20px;
    line-height: 1.7;
    font-size: 15px;
    text-align: center;
}
.about__text strong {
    font-family: "Montserrat_medium";
}


/*
** MEDIA QUERIES
*/
@media (max-width: 1100px) {
    .apple-hero-title {
        font-size: 15vw;
    }
    .apple-hero-orbit {
        bottom: -20vh;
        width: 100vw;
        height: 100vw;
    }
    .secteur {
        padding: 90px 5%;
    }
    .secteur__container {
        padding: 35px;
        gap: 40px;
    }
    .secteur__map {
        min-height: 450px;
    }
    .secteur__content {
        padding: 10px 0;
    }
}
@media (max-width: 800px) {
    .secteur {
        padding: 0 0 80px 0;
    }
    .secteur__container {
        gap: 40px;
        padding: 0;
        flex-direction: column;
    }
    .secteur__map {
        width: 100%;
        min-height: 350px;
        height: 350px;
        border-radius: 18px;
        order: 2;
    }
     .secteur__map {
        width: 100%;
        height: 350px;
        min-height: 350px;
    }
    #map {
        min-height: 350px;
    }
    .secteur__content {
        width: 100%;
        padding: 0;
        order: 1;
        margin-top: 0;
    }
    .secteur__content h2 {
        font-size: 2rem;
    }
    .secteur__content p {
        margin-bottom: 20px;
        max-width: 100%;
    }
    .secteur_button_tel {
        margin-bottom: 0 !important;
    }
    .about {
        padding: 0 0 80px 0;
    }
}
@media (max-width: 700px) {
    .apple-hero {
        min-height: 90svh;
        height: 90svh;
    }
    .apple-hero-content {
        margin-top: -10vh;
        padding: 0 24px;
    }
    .apple-hero-label {
        margin-bottom: 25px;
    }
    .apple-hero-title {
        font-style: normal;
    }
    .apple-hero-title span {
        font-style: normal;
    }
    .apple-hero-description {
        max-width: 330px;
        margin-top: 28px;
        font-size: 14px;
    }
    .apple-hero-orbit {
        bottom: -22vh;
        width: 120vw;
        height: 120vw;
    }
    .orbit-center {
        width: 110px;
        height: 110px;
    }
    .orbit-center span {
        width: 20px;
        height: 20px;
    }
}
@media (max-width: 500px) {
    .apple-hero-content {
        width: 100%;
        padding: 0;
    }
    .apple-hero-title {
        font-size: 17vw;
    }
    .button_hero {
        width: 100%;
    }
    .apple-hero-orbit {
        bottom: 15vh;
        width: 140vw;
        height: 140vw;
    }
    .secteur__map {
        height: 280px;
        min-height: 280px;
        width: 100%;
        border-radius: 16px;
    }
    .secteur__content h2 {
        max-width: 300px;
    }
    .secteur__button {
        width: 100%;
    }
    .secteur__list {
        margin-bottom: 20px;
    }
    .about__container {
        align-items: flex-start;
    }
    .about__text {
        max-width: 100%;
        text-align: start;
    }
    .about__title {
        text-align: start;
    }
}
@media (max-width: 375px) {
    .apple-hero-orbit {
        bottom: 10vh;
        width: 140vw;
        height: 140vw;
    }
}