html,
body {
  background-color: #ffffff;
  display: flex;
  flex-flow: row;
  width: 100%;
  height: 100%;
  font-family: HelverticaNeue;
  font-weight: light;
}
html {
  box-sizing: border-box;
  overflow: hidden;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  font-family: 'HelveticaNeue-Light';
  font-size: 20px;
}

h3 {
  font-family: 'HelveticaNeue-Medium';
  font-size: 20px;
  text-transform: uppercase;
}
p {
  font-family: 'HelveticaNeue-Light';
  font-size: 20px;
  white-space: normal;
}

.container {
  position: relative;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
}

/* Main Page */
.main {
  height: 100%;
  position: relative;
  transition-property: transform;
}

/* Header  */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 28px 35px;
}
#header-filler {
  width: 209px;
}

#h-logo {
  width: 245px;
}
#ordre-logo {
  width: 87px;
}
#barreau-logo {
  width: 118px;
}

/* Menu */
aside {
  width: 0px;
  overflow: hidden;
}

/* Sidebar */

.sidebar {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  height: 100%;
  width: 275px;
  background: #1d2127;
  border-right: 3px solid #0f1114;
  overflow: hidden;
  -webkit-transform: translate3d(-275px, 0, 0);
  transform: translate3d(-275px, 0, 0);
  transition-property: transform;
}
.hamburger {
  display: block;
  position: fixed;
  left: 25px;
  top: 35px;
  cursor: pointer;
  z-index: 10;
  background-color: #000000;
  border: 2px solid #000000;
  padding: 10px 7px;
  width: 64px;
  height: 64px;
  transition-property: background-color, border-color;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
}
.bar {
  display: block;
  position: relative;
  background-color: #ffffff;
  width: 80%;
  height: 6px;
  margin: 0 auto;
  transition-property: transform, opacity, background-color, width;
}

.bar:first-child {
  top: 0;
}

.bar:nth-child(2) {
  opacity: 1;
}

.bar:last-child {
  bottom: 0;
}

.sidebar,
.sidebar a {
  color: #abb4be;
}

.nav {
  margin-top: 100px;
}

.nav-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-title {
  display: block;
  padding: 10px 50px;
  text-transform: uppercase;
  font-weight: 600;
  color: #465162;
}

.nav-link {
  display: block;
  padding: 10px 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.nav-link:hover {
  background-color: #282d36;
  text-decoration: none;
}

.sidebar-separator {
  margin: 30px;
  height: 2px;
  background-color: #000;
  border-bottom: 1px solid #2b313a;
}
.main,
.sidebar,
.hamburger,
.bar {
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}

/* Show Sidebar */

.show-sidebar .main {
  -webkit-transform: translate3d(275px, 0, 0);
  transform: translate3d(275px, 0, 0);
}

.show-sidebar .sidebar {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.show-sidebar .bar {
  background-color: #ffffff;
}

.show-sidebar .bar:first-child {
  width: 120%;
  -webkit-transform: rotate(45deg) translate(7px, 11.5px);
  transform: rotate(45deg) translate(7px, 11.5px);
}

.show-sidebar .bar:nth-child(2) {
  opacity: 0;
}

.show-sidebar .bar:last-child {
  width: 120%;
  -webkit-transform: rotate(-45deg) translate(7px, -11.5px);
  transform: rotate(-45deg) translate(7px, -11.5px);
}

.menu-agreements-logo {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.menu-agreements-logo > #barreau-logo {
  /* border-radius: 50%; */
  margin: 30px;
  width: 87px;
  height: 87px;
  padding: 10px 5px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.menu-agreements-logo > img:first-child {
  background-color: #ffffff;
  padding: 10px;
  /* border-radius: 50%; */
  width: 87px;
}

/* Slideshow */
.slideshow {
  margin: 0 35px;
  box-sizing: border-box;
}
.slideshow > img {
  width: 100%;
}

/* Content */
.about-us {
  display: flex;
  margin: auto;
  flex-flow: row;
  flex-wrap: wrap-reverse;
  margin: -40px 10% 0 10%;
}
.about-us-description {
  background-color: #f5f5f5;
  width: 57%;
  min-width: 280px;
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 5% 10%;
}

.about-us-description > h3 {
  font-family: 'HelveticaNeue-Medium';
  font-size: 20px;
  margin-bottom: 38px;
  text-transform: uppercase;
}

.about-us-description > p {
  font-family: 'HelveticaNeue-Light';
  font-size: 20px;
  margin-top: 38px;
}

.about-us-picture {
  min-width: 320px;
  width: 43%;
  background-image: url('../images/interrior-office@2x.jpg');
  background-repeat: no-repeat;
}

.recouvrement-picture {
  min-width: 320px;
  width: 43%;
  background-image: url('../images/ptf.jpg');
  background-repeat: no-repeat;
}

.skills-container {
  margin: 100px 5%;
  display: flex;
  flex-flow: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.skills-container > .skill {
  width: 280px;
  margin: 10px;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.skills-container > .skill > p {
  margin-top: 45px;
  white-space: normal;
}

.domaines-background {
  background-image: url('../images/justice-picture@2x.jpg');
  background-size: cover;
  background-position: center;
  margin: 0 35px;
  display: flex;
}

.domaines-container {
  background-color: rgba(0, 0, 0, 0.7);
  flex: 1;
}

.domaines-square {
  margin: 3%;
  border: 1px solid #707070;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  color: #ffffff;
  padding: 10%;
}
.domaines-square > h3 {
  margin-bottom: 38px;
}

.two-side-text {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  min-width: 200px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 38px;
}
.two-side-text p {
  width: 45%;
  min-width: 250px;
  text-align: justify;
  white-space: normal;
}

.theme-banner {
  height: 420px;
  margin: 0 35px;
  background-image: url(../images/expertise-banner@2x.jpg);
  background-size: cover;
  box-sizing: border-box;
  display: flex;
  background-position: center;
}
.theme-banner.contact-banner {
  background-image: url(../images/contact-banner@2x.jpg);
}
.theme-banner.avocats-banner {
  background-image: url(../images/avocats-banner@2x.jpg);
}

.theme-container {
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.69);
  color: #ffffff;
  font-family: 'HelveticaNeue-Medium';
  font-size: 30px;
  text-transform: uppercase;
}
.theme-container > span {
  height: 1px;
  background-color: #ffffff;
  width: 130px;
  margin-top: 20px;
}

.banner-3col {
  background-color: #f5f5f5;
  margin: 30px 35px 60px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 5%;
}

.banner-3col > .left,
.banner-3col > .middle {
  height: 400px;
  margin: 5% 0;
}
.banner-3col > .left {
  margin-right: 10px;
  min-width: 180px;
}
.banner-3col > .left > p {
  border-left: 4px solid #afafaf;
  padding-left: 18px;
  margin-top: 50px;
  cursor: pointer;
}
.banner-3col > .left > .selected {
  font-family: 'HelveticaNeue-Medium';
  border-left: 4px solid #d9c162;
}

.banner-3col > .left-border {
  border-left: 1px solid #bababa;
  padding-left: 60px;
}
.banner-3col > .middle {
  min-width: 500px;
  flex: 1;
}
.banner-3col > .middle > p {
  white-space: pre-line;
}

.banner-3col > .middle > ul {
  list-style: none;
  padding-left: 4em;
}
.banner-3col > .middle > ul > li {
  line-height: 40px;
}
.banner-3col > .middle > ul > li::before {
  content: '\2022';
  color: #d9c162;
  display: inline-block;
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.banner-3col > .right-picture {
  margin-bottom: -35px;
  margin-top: 35px;
  margin-right: -35px;
}

.specialty-container {
  margin: 100px 5%;
  display: flex;
  flex-flow: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.specialty-container > a {
  display: flex;
  flex-flow: column;
  text-align: center;
  margin: 10px;
  text-decoration: none;
}
.specialty-container > a > h3 {
  margin-top: 23px;
}
.ptf-container {
  width: 100%;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}
.pink-ptf {
  width: 60%;
  margin-right: -10%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-family: 'HelveticaNeue-Light';
  font-size: 18px;
  min-width: 250px;
  background-image: url('../images/pink-ptf-banner@2x.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  box-sizing: border-box;
  height: 235px;
  z-index: 10;
}
.pink-ptf > p {
  color: #ffffff;
  font-size: 16px;
  margin: 0 25% 0 15%;
}
.grey-ptf {
  width: 60%;
  margin-left: -10%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  background-color: #e2e2e2;
  z-index: 9;
  padding-left: 15%;
  height: 235px;
}
.grey-ptf > a {
  display: flex;
  width: 243px;
  height: 32px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  font-family: 'HelveticaNeue-Bold';
  color: #ffffff;
  background-color: #da3e73;
  border-radius: 2px;
  margin-top: 17px;
}

footer {
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 62px 35px 0 35px;
}
.contact > p,
.contact > a,
.legals > a,
.legals > p {
  font-family: 'HelveticaNeue-Light';
  font-size: 18px;
  text-decoration: none;
  color: #000000;
  display: flex;
  align-items: center;
}

.contact > a {
  font-family: 'HelveticaNeue-Medium';
}

.contact > h3,
.contact > p:nth-child(3),
.contact > p:nth-child(5) {
  margin-bottom: 40px;
}

.legals {
  min-width: 280px;
  margin: 5%;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  justify-content: space-evenly;
  align-self: stretch;
  flex: 1;
}
footer > img {
  margin: 5%;
  align-self: center;
  width: 245px;
}

.contact {
  min-width: 280px;
  margin: 5%;
  flex: 1;
}

/* Contact page  */

.coord > h3 {
  margin: 30px 0 5% 20px;
}
.coord > p {
  margin: 0 10%;
  display: flex;
  align-items: center;
}
.coord > a {
  margin: 0 10%;
  word-break: break-word;
  text-decoration: none;
  display: flex;
  align-items: center;
}

#map {
  height: 362px;
  width: 80%;
  margin: 10%;
  box-sizing: border-box;
}

.col2 {
  display: flex;
  margin: 35px;
  flex-wrap: wrap;
  align-items: center;
}
.col2 > div:first-child {
  width: 50%;
  flex: 1;
  background-color: #e8e8e8;
  padding: 20px;
  margin-right: 10px;
  min-width: 320px;
}
.col2 > form:last-child {
  width: 50%;
  flex: 1;
  padding-left: 50px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  min-width: 320px;
}

input::placeholder,
textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: 'HelveticaNeue-ThinItalic';
  font-size: 18px;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-family: 'HelveticaNeue-ThinItalic';
  font-size: 18px;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  font-family: 'HelveticaNeue-ThinItalic';
  font-size: 18px;
}

.contact-form > h3 {
  margin-bottom: 30px;
}

.contact-form > input {
  background-color: #e8e8e8;
  border: 0px solid;
  width: 100%;
  margin: 10px 0;
  outline: none;
  -webkit-box-shadow: 0 0 0 0px #333 inset;
  box-shadow: inset 0 0 0 0px #333;
}
.contact-form > textarea {
  background-color: #e8e8e8;
  margin: 10px 0;
  width: 100%;
  outline: none;
  -webkit-box-shadow: 0 0 0 0px #333 inset;
  box-shadow: inset 0 0 0 0px #333;
}

.contact-form > div > button {
  align-self: flex-end;
  width: 390px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-family: 'HelveticaNeue-Medium';
  font-size: 23px;
  background-color: #dbc368;
  border: 0px solid;
  -webkit-box-shadow: 0 0 0 0px #333 inset;
  box-shadow: inset 0 0 0 0px #333;
}

/* GOOGLE MAP */

/* Lawyer list */

.lawyer-list {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 80px 7%;
}
.lawyer-bloc {
  margin: 10px;
  position: relative;
}
.lawyer-bloc > img {
  min-width: 300px;
  height: auto;
}
a.lawyer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  opacity: 0;
  text-decoration: none;
  cursor: pointer;
}
.lawyer-overlay:hover {
  opacity: 100;
}
.lawyer-overlay > h4,
.lawyer-overlay > p {
  color: #ffff;
  font-family: 'HelveticaNeue-Medium';
}
.lawyer-overlay > h4 {
  padding-top: 20%;
  font-size: 20px;
}
.lawyer-overlay > p {
  color: #c1c1c1;
  font-family: 'HelveticaNeue-Italic';
  font-size: 18px;
}

.lawyer-detail-container {
  margin: 30px 7%;
}

.lawyer-detail-container > a {
  text-decoration: none;
  font-family: 'HelveticaNeue-Medium';
  font-size: 20px;
}

.lawyer-detail {
  margin-top: 30px;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}
.lawyer-description-container {
  background-color: #e8e8e8;
  padding: 70px 7%;
  min-width: 300px;
  flex: 1;
}
.lawyer-detail > .portrait {
  min-width: 300px;
  height: 814px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
  max-width: 500px;
}
.lawyer-detail > .portrait.france {
  background-image: url('../images/france-portrait@2x.jpg');
}
.lawyer-detail > .portrait.emmanuel {
  background-image: url('../images/emmanuel-portrait@2x.jpg');
}
.lawyer-detail > .portrait.laurent {
  background-image: url('../images/laurent-portrait@2x.jpg');
}
.lawyer-detail > .portrait.damien {
  background-image: url('../images/damien-portrait@2x.jpg');
}
.lawyer-detail > .portrait.abdelkrim {
  background-image: url('../images/abdelkrim-portrait@2x.jpg');
}
.lawyer-detail > .portrait.serge {
  background-image: url('../images/serge-portrait@2x.jpg');
}
.lawyer-detail > .portrait.bernard {
  background-image: url('../images/bernard-portrait@2x.jpg');
}
.lawyer-detail > .portrait.jean-luc {
  background-image: url('../images/jean-luc-portrait@2x.jpg');
}

.lawyer-description {
  margin-top: 40px;
  text-align: justify;
}
.lawyer-description-container > h4 {
  font-family: 'HelveticaNeue-Medium';
  font-size: 20px;
}
.lawyer-description > p {
  font-family: 'HelveticaNeue-Medium';
  font-size: 20px;
  margin-bottom: 0;
}

.grey {
  color: #c1c1c1;
}
.italic {
  font-family: 'HelveticaNeue-Italic';
}

.f18 {
  font-size: 18px;
}

/* ------ */

.m-b-50 {
  margin-bottom: 50px;
}

.submit-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* ICONS */

.icon-map {
  background: url(../icons/map-pin.svg);
  width: 23px;
  height: 23px;
  background-size: 23px 23px;
  display: inline-block;
  margin-right: 10px;
}
.icon-phone {
  background: url(../icons/phone.svg);
  width: 23px;
  height: 23px;
  background-size: 23px 23px;
  display: inline-block;
  margin-right: 10px;
}
.icon-fax {
  background: url(../icons/printer.svg);
  width: 23px;
  height: 23px;
  background-size: 23px 23px;
  display: inline-block;
  margin-right: 10px;
}
.icon-mail {
  background: url(../icons/mail.svg);
  width: 23px;
  height: 23px;
  background-size: 23px 23px;
  display: inline-block;
  margin-right: 10px;
}
.icon-spacer {
  width: 23px;
  height: 23px;
  display: inline-block;
  margin-right: 10px;
}
