@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,600,700&display=swap');

/* variables */
:root{
  --blue: #0e0ee0;
  --yellow: #ffcc00;
  --darkBlue: #040494;
  --lightGrey: #f7f7fd;
  --grey: #e7e7fc;
  --darkGrey: #1D1D1B;
}

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

body{
  font-family: 'Josefin Sans', sans-serif;
  background-color: #000C1C;
}

h1,
.h1{

}

h2,
.h2{

}

h3,
.h3{
  color: black;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;

  margin-bottom: 8px;
}

p{
  color: white;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: .5px;
  line-height: calc(18px * 1.618);
}

a{
  color: var(--blue);
  transition: color .3s ease;
  text-decoration: none;
}

a:hover{
  color: var(--darkBlue);
  text-decoration: none;
}

ul,
li.widget{
  margin-bottom: 0;
  list-style: none;
}

input,
textarea{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
}

input[type="submit"]{
  background: none;
  cursor: pointer;
}

.container{
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
}

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

.p40{
  padding: 0 40px;
}

.btn{
  color: var(--blue);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;

  padding: 15px 32px;
}

.btn-primary{
  background: var(--grey);
  font-weight: bold;
}

.btn-secondary{
  border: 1px solid var(--blue);
  font-weight: normal;
}

/* HEADER */
header{
  width: 100%;
  position: absolute;
  z-index: 1;
  padding: 32px 40px;

  align-items: center;
}

header > div{
  width: 50%;
}

.custom-logo{
  width: auto;
  height: 40px;
}

.header-menu{
  display: flex;
  justify-content: flex-end;
}

.header-menu nav{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
  background: #fff;
  width: 50%;
  height: 100%;
  transform: translateY(-100vh);
  transition: all 1s ease-in-out;

  display: flex;
  align-items: center;
  font-size: 72px;
  font-weight: bold;
  text-transform: uppercase;
}

.header-menu nav li.menu-item{
  padding: 24px 0 24px 100px;
}

/* burger menu */
.menu-icon{
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 40px;
  width: 40px;
  cursor: pointer;
  transition: all .5s ease-in-out;
}

.icon-bar,
.icon-bar::before,
.icon-bar::after{
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 10px;
  transition: all .5s ease-in-out;
}

.icon-bar::before,
.icon-bar::after{
  content: "";
  position: absolute;
}

.icon-bar::before{
  transform: translate(-6px, -10px);
}

.icon-bar::after{
  transform: translate(-6px, 10px);
}

.menu-icon.open .icon-bar{
  transform: translateX(-50px);
  background: transparent;
}

.menu-icon.open .icon-bar::before{
  transform: rotate(45deg) translate(35px, -35px);
  background: #000C1C;
}

.menu-icon.open .icon-bar::after{
  transform: rotate(-45deg) translate(35px, 35px);
  background: #000C1C;
}




/* HOMEPAGE */
.content{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;

  color: white;
}

.left,
.right{
  width: 50%;
  height: 100%;
}

/* left */
.left{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.title{
  text-align: center;
  text-transform: uppercase;
}

.title h1{
  font-size: 40px;
  margin-bottom: 8px;
}

.title h2{
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 2.5px;
}

.social-icon img{
  width: 24px;
  height: 24px;
}

/* right */
.right{
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .75;
  transform: translateX(50vw);
  transition: all 1.3s ease-in-out;
}

.right::before {
    content: "";
    display: block;
    background: #000C1C;
    width: 100%;
    height: 100%;
    mix-blend-mode: hard-light;
}


/* CONTACT */
/*
.contact-form{
  min-height: 100vh;
  max-width: 900px;
  display: flex;
  align-items: center;
}

.contact-form > li{
  width: 100%;
}

h3.contact-form-title{
  color: var(--blue);
  letter-spacing: 1px;

  margin-bottom: 40px;
}


.group{
  position: relative;
  margin-bottom: 40px;
}
textarea{
  resize: none;
}
input:not([type="submit"]),
textarea{
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--darkGrey);
}
input:focus,
textarea:focus{
  outline: none;
}

label{
  color: var(--darkGrey);
  font-size: 18px;
  text-transform: uppercase;

  position: absolute;
  left: 5px;
  top: 10px;

  pointer-events: none;
  transition: all .2s ease;
}

input:focus ~ label,
input:valid ~ label,
textarea:focus ~ label{
  top: -15px;
  font-size: 14px;
  color: var(--darkBlue);
}

.contact-form p{
  text-align: center;
}
.contact-form p input[type="submit"]{
  padding: 18px 100px 15px;
}
*/


/* RESPONSIVE */
@media (max-width: 991px){
  /* header */
  header{
    padding: 24px;
  }

  .header-menu nav{
    width: 100%;

    font-size: 32px;
  }

  .header-menu nav li.menu-item{
    padding: 24px;
  }

  /* home content */
  .content.home{
    display: flex;
    flex-direction: column-reverse;
  }

  .content.home .right::after {
    content: "";
    display: block;
    width: 100%;
    height: 16%;
    background: linear-gradient(to top, #000C1C 48%, transparent);
    position: absolute;
    bottom: 0;
}

  .content.home .left,
  .content.home .right{
    width: 100vw;
    height: 50vh;
  }

  .content.home .left{
    flex-direction: column;
  }

  .content.home .right{
    transform: translate(0,-50vh);
  }

  .title h1{
    font-size: 24px;
  }

  .title h2{
    font-size: 12px;
    letter-spacing: 2px;
  }

  .social-medias{
    display: flex;
    margin-top: 48px;
  }

  .social-icon{
    margin: 0 20px;
  }
}

@media (min-width: 992px){
  .social-medias{
    position: absolute;
    left: 40px;
    bottom: 40px;
  }

  .social-icon:not(:last-child){
    margin-bottom: 48px;
  }
}
