@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

body, html {
  font-family: 'Work Sans', sans-serif !important;
  box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  backface-visibility: hidden;
  scroll-behavior: smooth;
  overflow-X: hidden;
  font-size: 15px;
  line-height: 28px;
  color: #111;
}

::-webkit-scrollbar {
  width: 6px !important;
}

::-webkit-scrollbar-track {
  background: white !important;
}

::-webkit-scrollbar-thumb {
  background: #d69b2a !important;
}

.brand {
    position: absolute;
    top: 2.6vh;
    left: 5vw;
    width: 15vw;
    z-index: 1000;
}

.header {
  max-width: 100vw;
  width: 100vw;
  position: relative;
  background-size: cover;
  background-position: center center;
  font-size: 1rem;
  padding: 15vh 0;
  background-image: url("../assets/img/7844.jpg");
}

.header::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.7);
  content: '';
}

.header__head {
  position: relative;
  z-index: 50;
  color: #FFF;
  width: 50vw;
  margin: 0 auto;
  text-align: center;
}

.header__title {
  font-size: 3.3em;
  font-weight: 700;
  margin-bottom: 4vh;
  animation: fade 1500ms forwards;
  animation-delay: 200ms;
  opacity: 0;
}

.header__subtitle {
    font-size: 1.6em;
    line-height: 1.5em;
    font-weight: 500;
    margin-bottom: 4vh;
    animation: fade 1500ms forwards;
    animation-delay: 400ms;
    opacity: 0;
}

.header__nav {
  font-size: 1.2em;
  font-weight: 300;
  animation: fade 1500ms forwards;
  animation-delay: 600ms;
  opacity: 0;
}

.header__nav a {
  color: #FFF;
  text-decoration: none;
}

.header__nav a:not(:last-child) {
  margin-right: 0.5em;
}

.header__nav a:hover {
  color: #D29723;
}

.header__nav span {
  margin-right: 0.5em;
}

@keyframes fade {
  from {
    transform: translateY(150%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/***************************
*         LOCATION
**************************/
.location {
  max-width: 100vw;
  width: 100vw;
  height: 50vh;
  font-size: 1rem;
  display: flex;
}

.location__map {
    width: 54vw;
    height: 100%;
}

.location__offices {
    width: 46vw;
    height: 100%;
    display: flex;
}

.location__office {
    width: 42vw;
    height: 100%;
    background-position: center center;
    background-size: cover;
    position: relative;
    color: #FFF;
    padding-top: 6vh;
    cursor: pointer;
    transition: width 1000ms ease;
}

.france {
    background-image: url('../assets/img/14323.jpg');
    clip-path: polygon(0 0, 100% 0, calc(100% - 2vw) 100%, 0 100%);
    z-index: 50;
    margin-right: -2vw;
}

.ivory-coast {
    background-image: url('../assets/img/Abidjan-by-night.png');
}

.france::after {
    width: 2.5vw;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-color: #D29723;
    z-index: 500;
    clip-path: polygon(calc(100% - .5vw) 0, 100% 0, .5vw 100%, 0 100%);
}

.location__office__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(210, 151, 35, 0.7);
}

.location__office__head {
    font-size: 2.3em;
    text-transform: uppercase;
    font-weight: 500;
    width: max-content;
    margin: 0 auto;
    position: relative;
    z-index: 50;
    transition: transform 1000ms ease;
}

.location__office__body {
    width: 23vw;
    margin: 0 auto;
    position: relative;
    z-index: 50;
    text-align: center;
    overflow: hidden;
    /* transition: width 1000ms ease; */
}

.location__office__body p {
    white-space: nowrap;
}

.location__office__hr {
    width: 3vw;
    height: 2px;
    background-color: #fff;
    margin: 2vh auto;
}

.location__office__mail {
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 1.5vh;
}

.location__office__text {
    font-size: 1em;
    font-weight: 300;
    line-height: 1.6em;
    margin-bottom: 2vh;
}

.location__office__text strong {
    text-transform: uppercase;
    font-weight: 500;
}

.location__office__number {
    text-transform: uppercase;
    font-size: 1.2em;
    line-height: 1.6em;
    font-weight: 500;
}

.location__office--reduced {
    width: 6vw;
}

.location__office--reduced .location__office__overlay {
    background-color: rgba(0, 0, 0, .7);
}

.france.location__office--reduced .location__office__head {
    transform-origin: center left;
    transform: translate3d(35%, 0, 0) rotate(-.25turn) translate3d(-100%, 0, 0);
}

.ivory-coast.location__office--reduced .location__office__head {
    transform-origin: center left;
    transform: translate3d(25%, calc(44vh - 100%), 0) rotate(-.25turn);
}

.location__office--reduced .location__office__body {
    width: 0;
}

/***************************
*          CONTACT
**************************/
.contact {
  max-width: 100vw;
  width: 100vw;
  font-size: 1rem;
  background-color: #F6F6F6;
  padding-top: 16vh;
  padding-bottom: 10vh;
}

.contact__title {
    width: 71vw;
    text-align: left;
    font-size: 2.66em;
    font-weight: 500;
    color: #D29723;
    margin: 0 auto;
    margin-bottom: 4vh;

}

.contact__errors {
    width: 100%;
    background-color: rgba(210, 67, 35, .3);
    color: #D24323;
    font-size: 1.2em;
    line-height: 1.5em;
    margin: 0 auto;
    padding: 2vh 2vw;
    font-weight: 500;
    border-radius: .2em;
    margin-bottom: 2vh;
    position: relative;
    transition: opacity 1000ms ease;
}

.contact__errors__close {
    position: absolute;
    right: 1vw;
    top: 1vh;
    cursor: pointer;
    font-size: 1.5em;
}

.contact__errors--hide {
    display: none;
}

.contact__success {
    width: 100%;
    background-color: rgba(62, 210, 35, .3);
    color: #56AF45;
    font-size: 1.2em;
    line-height: 1.5em;
    margin: 0 auto;
    padding: 2vh 2vw;
    font-weight: 500;
    border-radius: .2em;
    margin-bottom: 2vh;
    position: relative;
    transition: opacity 1000ms ease;
}

.contact__success__close {
    position: absolute;
    right: 1vw;
    top: 1vh;
    cursor: pointer;
    font-size: 1.5em;
}

.contact__success--hide {
    display: none;
}

.contact__container {
    width: 71vw;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.contact__form {
    width: 56vw;
}

.contact__input-group {
    display: flex;
    justify-content: space-between;
}

.contact__input-group--footer {
    height: auto;
    display: flex;
    align-items: center;
}

.contact__input {
    width: 100%;
    border: 1px solid #DDD;
    padding: 1vh 1vw;
    font-family: 'Work Sans', sans-serif !important;
    color: #111;
    background-color: #FFF;
    font-size: 1.2em;
    margin-bottom: 2vh;
    border-radius: .2em;
}

.contact__input::placeholder {
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 300;
}

.contact__input--error {
    border: 1px solid tomato;
}

.contact__input:focus {
    outline: none;
    border: 1px solid #D29723;
}

.contact__input--half {
    width: 27.5vw;
}

.contact__message {
    height: 12.7vh;
    width: 100%;
    border: 1px solid #DDD;
    padding: 1vh 1vw;
    font-family: 'Work Sans', sans-serif !important;
    color: #111;
    background-color: #FFF;
    font-size: 1.2em;
    margin-bottom: 2vh;
    border-radius: .2em;
}

.contact__message::placeholder {
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 300;
}

.contact__message--error {
    border: 1px solid tomato;
}

.contact__message:focus {
    outline: none;
    border: 1px solid #D29723;
}

.contact__select {
    height: 100%;
    width: 27.5vw;
    background-color: #FFF;
    border: 1px solid #DDD;
    color: #111;
    border-radius: 0.2em;
    font-size: 1.2em;
    font-weight: 300;
    padding: 1.5vh 1vw;
    font-family: 'Work Sans', sans-serif !important;
}

.contact__select:focus {
    outline: none;
}

.contact__select option {
    color: #D29723;
    background-color:transparent !important;
}

.contact__submit {
    border: none;
    text-transform: uppercase;
    font-size: 1em;
    padding: 1.5vh 2vw;
    border-radius: 2em;
    color: #FFF;
    font-weight: 400;
    letter-spacing: .1em;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    background-color: transparent;
    color: #D29723;
    border: 1px solid #D29723;
    transition: 500ms ease-out;
    margin-top: 3vh;
}

.contact__submit:hover {
    background-color: #D29723;
    color: #FFF;
}

.contact__submit:focus {
    outline: none;
    transform: translateY(-10%);
    box-shadow: 0 20px 35px 2px rgba(0, 0, 0, 0.1);
}

.contact__captcha-group {
    width: 70%;
}

.contact__captcha__text {
    font-size: 1em;
    font-weight: 300;
}

.contact__social-networks {
    width: 6.5vw;
    height: 33vh;
    background-color: #d29723;
    padding: 4vh 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.contact__social-networks:hover {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}
  
@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }  
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.contact__social-networks__icon {
    width: 4vw;
    height: 4vw;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.contact__social-networks__icon img {
    width: 55%;
}

.contact__social-networks__hr {
    width: 3vw;
    height: 1px;
    background-color: #fff;
}

@media only screen and (max-width: 1366px) {
    .header {
      font-size: 0.71rem;
    }
    .location {
      font-size: 0.71rem;
    }
    .contact {
      font-size: 0.71rem;
    }
  }
  
  @media only screen and (max-width: 1280px) {
    .header {
      font-size: 0.66rem;
    }
    .location {
      font-size: 0.66rem;
    }
    .contact {
      font-size: 0.66rem;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    .header {
      font-size: 0.53rem;
    }
    .header__title,
    .header__subtitle,
    .header__nav {
      animation: none;
      opacity: 1;
    }
  
    .location {
      font-size: 0.53rem;
    }
    .contact {
      font-size: 0.53rem;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .brand {
      left: 10vw;
      width: 20vw;
    }
    .header {
      font-size: 1rem;
    }
    .header__head {
      width: 80vw;
    }
  
    .location {
      font-size: 1rem;
      flex-direction: column-reverse;
      height: auto
    }
    .location__map {
      width: 100%;
      height: 35vh;
    }
    .location__offices {
      width: 100%;
      height: 50vh;
    }
    .location__office {
      width: 55%;
      padding-top: 5vh;
    }
    .location__office--reduced {
      width: 55%;
    }
    .location__office__body {
      width: 100%;
      padding: 3vw;
    }
    .location__office--reduced .location__office__body {
      padding: 0;
    }
    .france.location__office--reduced .location__office__head {
      transform: translate3d(0, 0, 0) rotate(0) translate3d(0, 0, 0);
    }
    .ivory-coast.location__office--reduced .location__office__head {
      transform: translate3d(0, 0, 0) rotate(0);
    }
  
    .contact {
      font-size: 1rem;
      padding-top: 10vh;
    }
    .contact__container {
      justify-content: flex-start;
      flex-direction: column;
    }
    .contact__form {
      width: 100%;
      margin-bottom: 3vh;
    }
    .contact__input-group {
      display: block;
    }
    .contact__input--half {
      width: 100%;
    }
    .contact__select {
      width: 100%;
      margin-bottom: 2vh;
    }
    .contact__social-networks {
      width: 100%;
      height: auto;
      flex-direction: row;
      padding: 2vh 5vw;
      justify-content: space-around;
    }
    .contact__social-networks__icon {
      width: 6vw;
      height: 6vw;
    }
    .contact__social-networks__hr {
      width: 1px;
      height: 6vw;
    }
    .contact__submit {
      font-size: 1.2em;
    }
    
  }
  
  @media only screen and (max-width: 420px) {
    .header {
      font-size: 0.53rem;
    }
    .location {
      font-size: 0.53rem;
    }
    .location__offices {
      height: 45vh;
    }
    .contact {
      font-size: 0.53rem;
    }
    .contact__container {
      width: 80vw;
    }
  }