html {
    scroll-behavior: smooth;
}

body {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 300;
    color: #003038;
    overflow-x: hidden;
    width: 100vw;
}

main {
    background-color: #f7f7f7;
    overflow-x: hidden;
    width: 100vw;
}

ul,
li {
    list-style: none;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #fff;
}

 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

 ::placeholder {
    color: #fff;
}

h2 {
    font-size: 2.5rem;
}

.fromWYSIWYG p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.fromWYSIWYG strong {
    font-weight: 700;
}

.fromWYSIWYG h1 {
    font-size: 1.4rem;
    margin: 1.2rem 0;
}

.fromWYSIWYG h2 {
    font-size: 1.2rem;
    margin: 1.2rem 0;
}

.fromWYSIWYG h3 {
    font-size: 1.1rem;
    margin: 1.2rem 0;
    padding-left: 90px;
    position: relative;
}

.fromWYSIWYG h3:after {
    content: '.';
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    width: 70px;
    height: 1px;
    background-color: #007d6d;
    font-size: 0;
}

.fromWYSIWYG ul,
.fromWYSIWYG ol {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.fromWYSIWYG ul li {
    list-style: disc inside;
}

.fromWYSIWYG li ul li {
    list-style: circle inside;
    padding-left: 1rem;
}

.fromWYSIWYG ol li {
    list-style: decimal inside;
}

.fromWYSIWYG li ol li {
    list-style: lower-alpha inside;
    padding-left: 1rem;
}

.fromWYSIWYG a {
    color: #007c6c;
    text-decoration: underline;
}

.fromWYSIWYG img {
    max-width: 100%;
    margin: 1rem 0;
}

.fromWYSIWYG iframe {
    max-width: 100%;
    margin: 1rem 0;
}

.scrollBottom {
    background: url(../img/scrollBot.svg) no-repeat center center / 25px;
    font-size: 0;
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    bottom: 20px;
    left: 10%;
    cursor: pointer;
    transition: all 0.2s;
}

.scrollBottom:hover {
    transform: translateY(10px);
}

a {
    text-decoration: none;
}

.btn {
    border: 1px solid #fff;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 1rem 2rem;
    transition: all 0.2s ease-in;
}

.btn.selected,
.btn:hover {
    background-color: #007c6c;
    border: 1px solid #007c6c;
}

#contact .btn,
#team .btn {
    margin-bottom: 1rem;
    margin-right: 1rem;
    text-align: center;
    background-color: transparent;
    color: white;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid white;
}

#contact .btn {
    color: #007c6c;
    border: 1px solid #007c6c;
}

#contact .btn.selected,
#team .btn.selected {
    color: white;
    border: 1px solid white;
    border: 1px solid #007c6c;
    background-color: #007c6c;
}

.table {
    display: table;
    width: 100%;
    height: 100%;
}

.cell {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
}

#contact .cell {
    vertical-align: initial;
}

.wrapper {
    max-width: 1100px;
    padding: 0 5%;
    margin: 0 auto;
}

.bgGreen {
    background-color: #003139;
    color: #fff;
}

.bgGrey {
    background-color: #f7f7f7;
    padding: 80px 0;
}


/* ---- HOMEPAGE ---- */

.appLink {
    background-color: #007c6c;
    color: #fff;
    position: absolute;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    top: -50px;
    padding: 2rem;
    padding-right: calc(2rem + 100px);
    transform: translateX(100px);
    transition: transform 0.5s, background-color 0.5s, right 0.6s ease 1s;
    white-space: nowrap;
}

.in-view .appLink {
    right: 0;
}

.appLink:hover {
    transform: translateX(0);
    background-color: #204950;
}

.appLink h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 100;
}

.appLink p {
    color: #74b7ae;
    font-size: 1rem;
}

.appLink img {
    height: 40px;
    margin-left: .5rem;
    transition: .3s;
}

.appLink a:hover img {
    transform: translateY(5px);
}

#hp-podcast {
    position: relative;
    padding-top: 300px;
    padding-bottom: 220px;
}

#hp-services {
    position: relative;
    padding-bottom: 100px;
    padding-top: 300px;
}

.smallBanner {
    background-position: center center;
    background-size: cover;
}

.smallBanner.rightFullSmallBanner {
    width: calc( 1100px + (100vw - 1100px - 10%)/2);
    top: -130px;
    height: 350px;
    right: -300px;
    position: absolute;
    transition: all 0.5s ease-in-out 0.6s;
    opacity: 0;
}

.in-view .smallBanner.rightFullSmallBanner {
    right: 0;
    opacity: 1;
}

.smallBanner.leftFullSmallBanner {
    width: calc( 1100px + (100vw - 1100px - 10%)/2);
    top: -130px;
    height: 350px;
    left: -300px;
    position: absolute;
    transition: all 0.5s ease-in-out 0.3s;
    opacity: 0;
}

.in-view .smallBanner.leftFullSmallBanner {
    left: 0;
    opacity: 1;
}

#hp-topBanner .smallBanner {
    z-index: 2;
    top: auto;
    bottom: -200px;
}

#recrut-intro .smallBanner {
    z-index: 2;
    top: auto;
    bottom: -240px;
}

#hp-services h2 {
    margin-bottom: 2rem;
}

#hp-services .text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 4rem;
}

.submitSelect {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(0, 119, 105);
    width: 44px;
    height: 44px;
    display: inline-block;
    background: url(../img/next.svg) no-repeat center center / 20px;
    font-size: 0;
    vertical-align: middle;
}

#navHover {
    background-color: #003139;
    width: 100%;
    height: 100vh;
    text-align: center;
    position: fixed;
    left: -100vw;
    top: 0;
    transition: all 0.2s ease-in-out;
    z-index: 99;
}

#navHover.active {
    left: 0;
}

#navHover nav a {
    color: white;
    font-size: 22px;
    margin: 30px 0;
    display: block;
}

#navHover nav a:hover,
#navHover nav li.active a {
    font-weight: bold;
}

#hp-lawyers {
    padding: 100px 0;
}

#hp-news {
    padding: 100px 0;
    position: relative;
}

#hp-events {
    position: relative;
    padding: 350px 0 4rem;
}

#hp-academy {
    padding: 100px 0 12rem;
    margin-bottom: 12rem;
    position: relative;
}

#hp-academy .boxNewsletter {
    position: absolute;
    width: 55%;
    bottom: -120px;
}

#hp-academy h3 {
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 20px;
    font-weight: 100;
}

#hp-academy h4 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

#hp-academy .academyLegals {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #204950;
    margin-top: 70px;
    font-size: 11px;
    opacity: 0.6;
}

#hp-academy .row {
    margin-top: 60px;
}

#hp-lawyers {
    background-color: #fff;
}

#hp-lawyers .withPict .hoverBanner {
    position: absolute;
    width: 50%;
    height: 350px;
    left: -300px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.5s ease-in-out 0.3s;
    opacity: 0;
}

#hp-lawyers.in-view .withPict .hoverBanner {
    left: 0;
    opacity: 1;
}

#hp-lawyers .withPict .links {
    width: 50%;
    margin-left: 50%;
    padding-left: 100px;
    padding-top: 50px;
    height: 150px;
}

#hp-lawyers .withPict .links .cta {
    margin-bottom: 25px;
}

#hp-offices .officesAbout {
    padding: 200px 0 100px 0;
}

#hp-offices .officesLinks .office img {
    display: block;
    width: 100%;
}

#hp-offices .officesLinks .office {
    position: relative;
    overflow: hidden;
}

#hp-offices .officesLinks .office .hover {
    position: absolute;
    bottom: -150px;
    background-color: #148678;
    color: #fff;
    width: 100%;
    padding: 50px;
    z-index: 4;
    transition: all 0.2s;
    text-align: center;
}

#hp-offices .officesLinks .office .hover span {
    padding-right: 30px;
    background: url(../img/next.svg) no-repeat right center / 15px;
}

#hp-offices .officesLinks .office:hover .hover {
    bottom: 0px;
}

#hp-offices .officesLinks .office .text {
    position: absolute;
    bottom: 30px;
    left: 100px;
    color: #fff;
    z-index: 3
}

#hp-offices .officesLinks .office .text strong {
    display: block;
    margin-bottom: 5px
}

#hp-offices .officesLinks .office:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '.';
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5) 90%);
}

#hp-offices .officesLinks.row {
    margin: 0;
}

#hp-offices .officesLinks.row .col {
    margin: 0;
}

.play {
    position: absolute;
    max-width: 5rem;
    left: calc(50% - 2.5rem);
    top: calc(50% - 2.5rem);
}

.boxNewsletter {
    background-color: #007c6c;
    padding: 50px;
}

.boxNewsletter h5 {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.boxNewsletter p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
}

.boxNewsletter .wrapInput input[type="email"] {
    font-size: 15px;
    line-height: 38px;
    background-color: #148678;
    color: #fff;
    padding: 0 10px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    border: 1px solid #fff;
    min-width: 60%;
}

.boxNewsletter .wrapInput input[type="submit"] {
    background: transparent url(../img/next.svg) no-repeat center center / 20px;
    border: 1px solid #fff;
    height: 38px;
    width: 38px;
    font-size: 0;
    display: inline-block;
    vertical-align: middle;
}

.wrap-pageTitle {
    margin-bottom: 60px;
}

.wrap-pageTitle h1 {
    font-size: 2.5rem;
}

#hp-topBanner {
    padding-bottom: 200px;
    padding-top: 3rem;
    position: relative;
}

#hp-topBanner h1 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    opacity: 0;
    transition: all 0.3s ease-in;
}

#hp-topBanner.in-view h1 {
    opacity: 1;
}

#hp-topBanner.in-view .intro {
    opacity: 1;
}

#hp-topBanner .wrapTitle {
    max-width: 800px;
}

#hp-topBanner h1 i {
    font-style: normal;
    font-weight: 100;
}

#hp-topBanner .intro {
    opacity: 0;
    transition: all 0.3s ease-in 0.2s;
    margin-bottom: 2rem;
    padding-left: 90px;
    position: relative;
    line-height: 1.5;
    font-size: 1.3rem;
}

#hp-topBanner .intro:before {
    content: '.';
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
    width: 70px;
    height: 1px;
    background-color: #007d6d;
    font-size: 0;
}

#hp-topBanner .logos {
    padding-left: 90px;
    opacity: 0;
    transition: all 0.3s ease-in 0.4s;
}

#hp-topBanner.in-view .logos {
    opacity: 1;
}

#hp-topBanner .logos li {
    display: inline-block;
    vertical-align: middle;
}

#hp-topBanner .logos li a {
    display: block;
    margin-bottom: 1.5rem;
}

#hp-topBanner .logos li:first-of-type a {
    height: 35px;
    margin-right: 4rem;
}

#hp-topBanner .logos li:nth-child(2) a {
    height: 40px;
    margin-right: 4rem;
}

#hp-topBanner .logos li:nth-child(3) a {
    height: 65px;
}

#hp-topBanner .logos li a img {
    display: block;
    height: 100%;
}


/* NEWS */

.page-news {
    padding: 100px 0;
}

.wrap-news article {
    margin: 100px 0;
    position: relative;
    cursor: pointer;
}

.wrap-news article.highlighted::before {
    position: absolute;
    content: '';
    left: -100vw;
    width: calc(100vw + 100%);
    top: 0;
    bottom: 0;
    transition: .4s;
    background-color: #316a71;
    z-index: 0;
}

.wrap-news article::before {
    content: '';
    width: 0;
    transition: width 0.4s ease-in-out;
    left: -100vw;
    top: 0;
    bottom: 0;
    position: absolute;
}

.wrap-news article:hover::before {
    width: calc(100vw + 100%);
    background-color: #148678;
}

.wrap-news article .picture {
    position: relative;
    max-width: 400px;
    margin-right: 0;
}

.wrap-news article .picture img {
    object-fit: cover;
    height: 100%;
}

.wrap-news article .content {
    padding-right: 80px;
    position: relative;
    margin-left: 0;
    align-self: center;
}

.wrap-news article .content small {
    font-size: .8rem;
    font-weight: 100;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    display: block;
    text-transform: uppercase;
}

.wrap-news article.highlighted h5,
.wrap-news article .content h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 100;
    line-height: 1.3;
}

.wrap-news article.highlighted h5 {
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}

.wrap-news article .content p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 100;
    margin-bottom: 1.2rem;
}

.articleIntro p {
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: bold;
}

.articleDwd {
    padding-top: 50px;
}

.articleDwd a {
    text-transform: uppercase;
    min-width: 300px;
}

.picture img {
    display: block;
    width: 100%;
}

.tag {
    padding: 5px 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 4px;
    display: inline-block;
}

.picture .tag {
    position: absolute;
    right: 0;
    top: -10px;
}

.introPage {
    padding-left: 90px;
    position: relative;
    margin-bottom: 30px;
    opacity: 0;
    transition: all 0.2s ease-in 0.2s;
}

.wrapTitle {
    position: relative;
    opacity: 0;
    transition: all 0.2s ease-in 0.4s;
}

.in-view .introPage {
    opacity: 1;
}

.introPgae.shortIntro {
    max-width: 80%;
}

.noLine {
    padding-left: 0px;
}

.introPage {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 4rem;
}

.introPage p strong {
    color: #007c6c;
}

.introPage:before {
    content: '.';
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
    width: 70px;
    height: 1px;
    background-color: #007d6d;
    font-size: 0;
}

.noLine:before {
    width: 0;
}

.bgGreen .introPage:before {
    background-color: #fff;
}

.interLinks li {
    background-color: #f7f7f7;
    width: 100%;
    display: block;
    font-size: 1.3rem;
    color: #003038;
    margin-bottom: 20px;
    padding: 30px;
    position: relative;
}

.interLinks li a {
    font-size: 1.3rem;
    color: #003038;
}

.interLinks li a:after {
    content: '+';
    font-weight: 800;
    height: 2rem;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 2rem;
    top: calc(50% - 1rem);
    border: 1px solid #e5ebeb;
}

.page-international .inter-links {
    background-color: #fff;
    position: relative;
    padding-top: 300px;
    padding-bottom: 4rem;
}

.inter-intro {
    padding-bottom: 200px;
}

.page-article {
    padding: 50px 0 100px 0;
    background-color: #fff;
}

.articleTitle {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.articleTitle .meta .date {
    margin: 0 20px;
    font-size: 14px;
    text-transform: uppercase;
}

.articleBanner img {
    display: block;
    max-width: 500px;
    max-height: 400px;
    float: left;
    margin-right: 2rem;
    margin-bottom: 2rem;
}

.articleBanner {
    margin-bottom: 40px;
    margin-top: 30px;
}

.articleTitle h1 {
    margin-top: 1rem;
    font-size: 2rem;
    color: #007c6c;
}

.topPage {
    margin-bottom: 50px;
}

.topPage .col:nth-child(2) {
    text-align: right;
}

header {
    overflow: hidden;
    background-color: #f7f7f7;
    z-index: 10;
    position: relative;
}

#navHover .logo {
    width: 150px;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
}

header .logo {
    width: 180px;
    display: block;
    float: left;
    margin: 25px;
}

header .logo img,
#navHover .logo img {
    display: block;
    width: 100%;
}

.bubbleLink {
    cursor: pointer;
}

.navSide {
    position: fixed;
    background-color: #fff;
    right: 0;
    z-index: 999;
    top: 0;
}

.navSide .openClose {
    float: left;
}

.navSide .openClose a {
    display: block;
    width: 84px;
    height: 84px;
    position: relative;
    font-size: 0;
}

.navSide .openClose:hover a:before {
    width: 30px;
    background-color: #148678;
}

.navSide .openClose:hover a:after {
    width: 20px;
    background-color: #148678;
}

.navactive .navSide .openClose a:before {
    transform: rotate(45deg);
    margin-top: 3Px;
    width: 30px;
}

.navactive .navSide .openClose a:after {
    transform: rotate(-45deg);
    margin-top: -3Px;
    width: 30px;
}

.navSide .openClose a:before {
    content: '-';
    position: absolute;
    width: 30px;
    height: 2px;
    top: calc( 50% - 3px);
    left: calc( 50% - 15px);
    background-color: #003139;
    transition: all 0.2s ease-in-out;
}

.navSide .openClose a:after {
    content: '-';
    position: absolute;
    width: 30px;
    height: 2px;
    top: calc( 50% + 3px);
    left: calc( 50% - 15px);
    background-color: #003139;
    transition: all 0.2s ease-in-out;
}

.navSide .lang {
    float: left;
    width: 84px;
    height: 84px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.navSide .lang a {
    color: #003038;
    font-weight: 500;
    transition: .3s;
    line-height: 0;
    background-color: white;
    transition: .3s;
}

.navSide .lang a.active {
    line-height: 84px;
    order: -1;
}

.navSide .lang a:not(.active) {
    padding: 0;
    color: transparent;
}

.navSide .lang.hover a.active {
    color: #148678;
}

.navSide .lang.hover a:not(.active) {
    padding: 2.5rem 0;
    color: #003038;
}

.hiddenLink {
    display: none;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -1%;
    margin-left: -1%;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    margin: 0 1%;
}

.socialsShare li {
    border: 1px solid #003038;
    display: inline-block;
    vertical-align: top;
}

.socialsShare li a {
    display: block;
    width: 35px;
    height: 35px;
    font-size: 0;
    cursor: pointer
}

a.back {
    display: block;
    width: 35px;
    height: 35px;
    font-size: 0;
    border: 1px solid #003038;
    background: url(../img/prev.svg) no-repeat center center / 20px;
}

.shareEmail {
    background: url(../img/ico-mail.svg) no-repeat center center / 20px;
}

.shareLn {
    background: url(../img/ico-ln.svg) no-repeat center center/ 20px;
}

.linkLn {
    background: url(../img/ico-ln.svg) no-repeat center center/ 20px;
    width: 50px;
    height: 50px;
    font-size: 0;
    border: 1px solid #003038;
    display: inline-block;
    margin-top: 2rem;
    vertical-align: top;
    transition: .3s;
}

.print {
    background: url(../img/ico-print.svg) no-repeat center center/ 20px;
}

.shareFb {
    background: url(../img/ico-fb.svg) no-repeat center center/ 20px;
}

.shareTw {
    background: url(../img/ico-tw.svg) no-repeat center center/ 20px;
}


/* TEAM */

.teamSection {
    margin-bottom: 3rem;
    overflow: hidden;
}

.teamSection h3 {
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 100;
    padding-bottom: .8rem;
    margin-bottom: 2rem;
}

.teamSection .profil {
    border-radius: 50%;
    overflow: hidden;
    max-width: 80px;
    align-self: center;
    margin-right: 20px;
}

.teamSection .name {
    align-self: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    transition: color .3s;
}

.teamSection .profil img {
    display: block;
    width: 100%;
}

.toggle {
    display: inline-block;
    height: 32px;
    width: 32px;
    padding: 8px;
    border: 1px solid #008070;
    margin-bottom: 2.5rem;
    transform: none;
    transition: transform .3S;
    cursor: pointer;
}

.toggle:hover {
    transform: translateY(3px);
}

.toggle svg {
    transform: none;
    transition: .1s;
}

.hiddenContent {
    max-height: 0px;
    opacity: 0;
    transition: .3s;
}

.toggle.open svg {
    transform: rotate(180deg);
}

.toggle.open+div.hiddenContent {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 2.5rem;
}

.page-team {
    padding-top: 100px;
}

.page-events {
    padding-top: 100px;
    padding-bottom: 100px;
}

.page-events .introPage {
    margin-bottom: 100px;
}

.page-team .introPage {
    margin-bottom: 100px;
}

.page-team aside {
    max-width: 30%;
}

.page-team aside a {
    min-width: 200px;
    text-align: center;
    margin-bottom: 10px;
}

.teamSection .member {
    min-width: 50%;
    display: flex;
    margin-bottom: 30px;
}

.teamSection .member:hover .name {
    color: #148678;
}

.page-team .wrapArticles {
    padding-bottom: 100px;
}

.page-events .event .event-about {
    border-left: 7px solid #003139;
}

.event .event-about .who {
    font-size: 1rem;
    line-height: 1.6;
}

.event .event-about .who a {
    color: #007c6c;
    transition: .3s;
}

.event .event-about .who a:hover {
    color: #204950;
}


/* PROFIL */

.profil-curriculum {
    padding: 40px 0
}

.profil-curriculum .title {
    margin-bottom: 50px;
}

.profil-curriculum .title h4 {
    font-size: 2.2rem;
}

.profil-curriculum .title h5 {
    font-size: 1.6rem;
    color: #007c6c;
}

.profil-curriculum .col:nth-child(2) {
    padding-left: 50px;
    max-width: 45%;
}

.profil-news-events {
    padding: 100px 0;
    margin-bottom: 100Px;
}

.profil-publications {
    padding: 0px 0 100px 0
}

.profilInfos i {
    width: 30px;
    display: inline-block;
    margin-right: 30px;
    flex-shrink: 0;
}

.profil-events .event .event-about {
    border-left: 7px solid #003139
}

ul.ticked li {
    padding-left: 20px;
    margin-bottom: .5rem;
    background: url(../img/tick.png) no-repeat left top / 13px;
}

.profilInfos .line div {
    padding-top: 5px;
}

.profilInfos .line:last-of-type {
    border: none;
}

.profilInfos .line div {
    font-size: 15px;
}

.profilInfos .line h6 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.profilInfos .line a {
    color: #003038;
    text-decoration: underline;
}

.profil-curriculum .profilPict {
    margin-bottom: 20px;
}

.profil-curriculum .profilPict img {
    display: block;
    max-width: 100%;
}

.profilInfos .line {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #003038;
}

.profilInfos i img {
    display: block;
    width: 75%;
}

.pageContentCols aside h6 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 100;
}

h1 small,
h2 small {
    font-size: 12px;
    color: #007c6c;
    letter-spacing: 5px;
    display: block;
    text-transform: uppercase;
}

.wrap-select {
    text-align: right;
    margin-top: 30px;
    display: block;
}

.wrapTitle h2 {
    margin-bottom: 50px;
}

.wrapTitle,
.wrap-pageTitle:not('#news') {
    position: relative;
    opacity: 0;
    transition: all 0.2s ease-in 0.2s;
}

.in-view .wrapTitle,
.in-view .wrap-pageTitle {
    opacity: 1;
}

.wrapTitle .cta {
    position: absolute;
    right: 0;
    top: 0;
}

.select {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.select select {
    background-color: transparent;
    padding: 12px;
    max-width: 350px;
    border: none;
    font-size: 16px;
    border: 1px solid #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #fff;
}

.select.smallSelect select {
    width: 100px;
    min-width: 150px;
}

.search-wrap {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

input[type=text],
textarea,
select {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
}

input[type=text]:focus,
textarea:focus,
select:focus {
    outline: none !important;
    border: 1px solid #148678;
}

.search-wrap input {
    background-color: transparent;
    padding: 12px;
    padding-right: 50px;
    width: 250px;
    border: none;
    font-size: 16px;
    border: 1px solid #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #fff;
    height: 43px;
    align-self: auto;
    vertical-align: top;
}

.search-wrap::before {
    content: ">";
    font-size: 0;
    background: url(../img/ico-search.svg) no-repeat center center / 18px;
    border-left: 1px solid #fff;
    position: absolute;
    top: 0;
    right: 0;
    width: 43px;
    height: 100%;
    text-align: center;
    color: #fff;
    pointer-events: none;
}

.select select option {
    text-transform: uppercase;
}

.select::before {
    content: ">";
    font-size: 0;
    background: url(../img/select.svg) no-repeat center center / 15px;
    border-left: 1px solid #fff;
    position: absolute;
    top: 0;
    right: 0;
    width: 43px;
    height: 100%;
    text-align: center;
    color: #fff;
    pointer-events: none;
}

.select:hover::before {
    color: #fff;
}

.select select option {
    padding: 30px;
    color: #fff;
}

.select select option:first-child {
    color: green;
}

.event {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow: hidden;
    align-items: flex-start;
}

.event .event-date {
    background-color: #fff;
    color: #003038;
    width: 300px;
    flex-shrink: 0;
    padding: 2.5rem;
    aspect-ratio: 1;
}


.event .event-date .day {
    font-size: 3.2rem;
    color: #008070;
    display: block;
    text-transform: uppercase;
}

.event .event-date .hours {
    font-size: 1rem;
    font-weight: bold;
    display: block;
    border-bottom: 1px solid #d3dbdd;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.event .event-date address {
    font-size: 1rem;
    font-style: normal;
}

.event .event-about {
    background-color: #fff;
    color: #003038;
    padding: 2.5rem;
    font-size: 1rem;
    height: auto;
    /* padding-bottom: 0; */
}

.event .event-about h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.event .event-about .who {
    margin-bottom: 1rem;
}

.page-international h1 {
    font-size: 2.5rem;
    color: #003038;
}

.page-international .wrap-pageTitle {
    padding-top: 100px;
    position: relative;
}

.page-international .wrap-pageTitle .logoInter {
    position: absolute;
    right: 0;
    top: 100px;
}

.page-international .wrap-pageTitle .logoInter img {
    width: 250px;
}

.services-intro {
    padding: 100px 0;
}

.services-lists {
    padding: 100px 0;
}

.serviceAbout img {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.serviceAbout .fromWYSIWYG {
    margin-bottom: 70px;
}

.service {
    margin-bottom: 50px;
}

.service h2 {
    border-bottom: 1px solid #003038;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 27px;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.serviceOpenClose .elt:not(:last-of-type) {
    border-bottom: 1px solid #003038;
}

.serviceOpenClose .elt.opened .eltCont {
    height: auto;
}

.serviceOpenClose .elt .eltCont {
    height: 0;
    overflow: hidden;
}

.serviceOpenClose {
    margin-top: -15px!important;
}

.serviceContent .row {
    margin-right: -2%;
    margin-left: -2%;
}

.serviceContent .col {
    margin: 0 2%;
}

.eltTitle {
    padding: 20px 0;
    position: relative;
    cursor: pointer;
    padding-right: 2.5rem;
}

#page-profil .eltTitle {
    max-width: 150px;
}

.eltTitle:hover {
    color: #148678;
}

.eltTitle:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../img/arrowOpenClose.svg) no-repeat right center / 15px;
    position: absolute;
    top: 20px;
    right: 0;
    transition: all 0.2s ease-in-out;
}

.no_content:before {
    display: none;
}

.no_content {
    pointer-events: none;
}

.team-flex {
    display: flex;
    flex-wrap: wrap;
}

.serviceOpenClose .elt.opened .eltTitle:before {
    transform: rotate(-180deg);
}

.cta,
.fromWYSIWYG a.cta {
    font-size: 16px;
    position: relative;
    color: #003038;
    border: 1px solid #003038;
    padding: 15px 70px 15px 15px;
    background: url(../img/next2.svg) no-repeat right 17px center / 20px;
    min-width: 200px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s ease-in;
}

.fromWYSIWYG .cta:hover,
.cta:hover {
    background: url(../img/next.svg) no-repeat right 17px center / 20px;
    background-color: #204950;
    color: white;
}

.ctaW {
    color: #fff;
    border: 1px solid #fff;
    background: url(../img/next.svg) no-repeat right 17px center / 20px;
}

.cta:before {
    content: '|';
    position: absolute;
    right: 50px;
    height: 100%;
    width: 1px;
    background-color: #003038;
    font-size: 0;
    display: block;
    top: 0;
}

.ctaW:before {
    background-color: #fff;
}

footer {
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 12px;
    color: #003038;
}

footer .wrapper {
    position: relative;
}

footer p a {
    color: #003038;
}

footer p a:hover {
    text-decoration: underline;
}

footer .socialsShare {
    position: absolute;
    right: 0;
    top: -10px;
}

footer .socialsShare li {
    display: inline-block;
}

.wrapCities {
    width: 100vw;
    min-height: 100vh;
    z-index: 2;
    background-color: #f7f7f7;
}

.wrapCities .location {
    margin-bottom: 20px;
}

.wrapCities .location .address {
    align-self: center;
    font-style: normal;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.wrapCities .location .address .wrap {
    display: inline-block;
    text-align: left;
}

.wrapCities .location .address,
.wrapCities .location .address address,
.wrapCities .location .address a {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #003038;
    margin-bottom: 1.2rem;
}

.wrapCities .location .address a {
    text-decoration: underline;
    display: block;
    margin-bottom: 1.2rem;
    transition: .3s;
}

.wrapCities .location .address a:hover {
    color: #007c6c;
}

.wrapCities .location iframe {
    height: 40vh;
    width: 100%;
}

.wrapCities .tabs {
    margin-bottom: 20px;
    margin-top: 100px;
}

.transport {
    padding-top: 40px;
}

.transport div {
    margin-bottom: 20px;
}

.transport div.fromWYSIWYG {
    columns: 30ch 2;
}

.transport .col:first-of-type {
    max-width: 35%;
}

.transport div h5 {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

#recrut-about {
    position: relative;
    padding: 300px 0 100px 0;
}

#recrut-about .content {
    padding-left: 30%;
}

#recrut-about .line {
    margin-bottom: 50px;
}

#recrut-intro {
    position: relative;
}

#recrut-intro .wrap-pageTitle {
    padding-top: 100px;
}

#recrut-intro .introPage {
    padding-bottom: 150px;
}

#recrut-offers {
    background-color: #fff;
    padding: 100px 0;
}

#recrut-sliderTesti .profil {
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

#recrut-sliderTesti li {
    margin-bottom: 30px;
    opacity: 0.5;
    transition: all 0.3s;
    cursor: pointer;
}

#recrut-sliderTesti ul {
    max-width: 30%;
}

#recrut-sliderTesti li.active,
#recrut-sliderTesti li:hover {
    opacity: 1;
}

#recrut-sliderTesti .name {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 100px);
}

#recrut-sliderTesti .name strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

#recrut-sliderTesti .profil img {
    display: block;
    width: 100%;
}

#recrut-sliderTesti .testimonial {
    display: none;
}

#recrut-sliderTesti .testimonial.active {
    display: block;
}

#recrut-offers .event-date,
#recrut-offers .event-about {
    background-color: #f7f7f7;
}

#recrut-offers .event-date {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#recrut-offers .day {
    color: #003038;
    font-size: 1.2rem;
}

#recrut-offers .year {
    font-size: 3rem;
}


/* sotra tv */

.sotraacaIntro {
    padding: 100px 0;
}

.sotraacaIntro .col {
    align-self: center;
}

.sotraacaIntro .video img {
    display: block;
    width: 100%;
}

.sotraacaIntro .video {
    padding-left: 50px;
}

.sotraacaSubscribe {
    padding: 100px 0;
}

.sotraacaSubscribe .col {
    align-self: center;
}

.sotraacaSubscribe .col h2 {
    font-weight: 100;
    font-size: 25px;
    margin-bottom: 30px;
}

.sotraacaSubscribe .col:nth-child(2) {
    text-align: right;
}

.sotraacaSubscribe .col:nth-child(2) .cta {
    text-align: left;
}

.sotraacaVideos {
    padding: 100px 0;
}

.titleUnder {
    border-bottom: 1px solid #003038;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: normal;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.bgGreen .titleUnder {
    border-bottom: 1px solid #fff;
}

.videosList .video {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    min-width: 30%;
    margin: 0 1% 60px 1%;
}

.videosList .video img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.videosList .video h5 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 5px;
}

.videosList .video h6 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 100;
}

.publication ul li {
    padding-bottom: 2rem;
    border-bottom: 1px solid #abbcbf;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.publication ul li:last-of-type {
    border-bottom: none;
}

.page-news .boxNewsletter {
    background-color: #007c6c;
    padding: 50px;
    width: 50%;
    margin-left: 50%;
}

.recrutementForm {
    padding-top: 30px;
}

.recrutementForm label {
    display: block;
    font-weight: bold;
}

.recrutementForm .line {
    margin-bottom: 20px;
}

.recrutementForm input[type="text"],
.recrutementForm input[type="email"],
.recrutementForm textarea {
    background-color: #fff;
    padding: 12px;
    min-width: 250px;
    width: 100%;
    font-size: 16px;
    border: 1px solid #003038;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #003038;
}

.recrutementForm textarea {
    min-height: 200px;
}

.recrutementForm .col {
    width: 48%;
}

@media (max-width: 950px) {
    .scrollBottom {
        display: none;
    }
    .smallBanner {
        width: 100%!important;
        top: 0!important;
        left: 0!important;
        right: 0!important;
        position: relative!important;
    }
    #hp-offices .officesLinks.row {
        display: block;
    }
    #hp-academy .boxNewsletter {
        width: 100%;
        bottom: -192px;
    }
    #hp-events .smallBanner,
    #hp-podcast .smallBanner {
        margin-bottom: 50px;
    }
    #hp-services {
        padding-top: 50px;
    }
    #hp-podcast {
        padding-bottom: 100px;
        padding-top: 0;
    }
    #hp-events {
        padding-top: 0;
    }
    .page-international .wrap-pageTitle .logoInter {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
    .page-international .inter-links {
        padding-top: 0;
    }
    .interLinks {
        padding-top: 50px;
    }
    .inter-intro {
        padding-bottom: 50px;
    }
    .page-news .boxNewsletter {
        width: 100%;
        margin-left: 0;
    }
    #hp-lawyers .withPict .hoverBanner {
        position: relative;
        width: 100%;
    }
    #hp-lawyers .withPict .links {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-top: 50px;
        height: auto;
    }
    #hp-lawyers .withPict .links a {
        width: 100%;
    }
    */ #hp-services .smallBanner {
        margin-bottom: 50px;
    }
    .appLink {
        position: relative;
        transform: translateX(0);
        margin-top: 100px;
    }
    #recrut-about .content {
        padding-left: 0;
        padding-top: 50px;
    }
    #hp-offices .officesAbout {
        padding-top: 100px;
    }
    .page-team aside {
        max-width: 100%;
        padding-bottom: 2rem;
    }
    .pageContentCols aside div {
        display: inline-block;
        vertical-align: middle;
    }
    .wrapCities {
        position: absolute;
        width: 100vw;
        height: auto;
    }
    .wrapCities .location .address {
        text-align: left;
    }
    .location .map {
        margin-bottom: 30px;
    }
    .transport {
        display: block;
        padding-top: 20Px;
    }
    footer .socialsShare {
        right: 5%;
    }
    #recrut-about {
        padding-top: 0;
    }
    #recrut-intro .introPage {
        padding-bottom: 20px;
    }
    #hp-topBanner {
        padding-bottom: 0;
    }
}

@media (max-width: 800px) {
    .event {
        flex-wrap: wrap;
        gap: 0;
    }
    .row {
        display: block;
        margin: 0;
    }
    .col {
        margin: 0;
    }
    .topPage .col {
        display: inline-block;
        vertical-align: middle;
    }
    .transport .col:first-of-type {
        max-width: 100%;
    }
    #recrut-sliderTesti ul {
        max-width: 100%;
    }
    #recrut-sliderTesti ul li {
        padding-right: 20px;
        display: inline-block;
        width: 49%;
        text-align: center;
    }
    .wrap-news article .content {
        padding-right: 0;
    }
    .wrap-news article .picture {
        max-width: 100%;
    }
    .profil-curriculum .col:nth-child(2) {
        padding-left: 0;
        max-width: 100%;
        margin-top: 40px;
    }
    .profil-events .event .event-about,
    .offer .offer-about,
    .page-events .event .event-about {
        border-left: 0;
        width: 100%;
        height: auto;
    }
    .event .event-date {
        height: auto;
        width: 100%;
        padding-bottom: 0;
        aspect-ratio: initial;
    }
    .offer .offer-date {
        padding: 20px 50px;
        height: auto;
        width: 100%;
        max-width: 100%;
    }
    .wrapTitle .cta {
        position: relative;
        margin-bottom: 40px;
        margin-top: -60px;
    }
    .sotraacaIntro .video {
        padding: 0;
    }
    footer {
        text-align: left;
    }
    .wrap-select .search-wrap,
    .wrap-select .select {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }
    .wrap-select .search-wrap input {
        width: 100%;
    }
    .wrap-select .select select {
        width: 100%;
    }
    footer .socialsShare {
        right: 0;
        display: block;
        position: relative;
        top: 0;
        text-align: center;
        margin: 20px 0 0 0;
    }
    .articleBanner img {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .wrap-news article.highlighted::before {
        width: calc(100vw + 100% + 2rem);
        top: -1rem;
        bottom: -1rem;
    }
    .event .event-about,
    .event .event-date {
        padding: 1.5rem;
    }
}

#cookie-bar {
    background: #003139;
    height: auto;
    line-height: 24px;
    color: #eeeeee;
    text-align: center;
    padding: 20px 0;
    z-index: 2000;
    width: 100%;
    position: fixed;
    bottom: 0
}

#cookie-bar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

#cookie-bar.fixed.bottom {
    bottom: 0;
    top: auto;
}

#cookie-bar p {
    margin: 0;
    padding: 0;
}

#cookie-bar a {
    color: #ffffff;
    display: inline-block;
    border-radius: 3px;
    text-decoration: none;
    padding: 0 6px;
    margin-left: 20px;
    text-decoration: underline;
}