@font-face {
  font-family: 'Futura Condensed PT Medium';
  font-style: normal;
  font-weight: normal;
  src: local('Futura Condensed PT Medium'), url('../fonts/futura-condensed-pt-medium-589e44ed1e3a5.woff') format('woff');
}

@font-face {
  font-family: 'Futura Condensed PT Medium Oblique';
  font-style: normal;
  font-weight: normal;
  src: local('Futura Condensed PT Medium Oblique'), url('../fonts/futura-condensed-pt-medium-oblique-589e4507d391c.woff') format('woff');
 }
 
@font-face {
  font-family: 'Futura PT Light';
  font-style: normal;
  font-weight: normal;
  src: local('Futura PT Light'), url('../fonts/futura-pt-light-589a6e187563a.woff') format('woff');
}

@font-face {
  font-family: 'Futura PT Light Oblique';
  font-style: normal;
  font-weight: normal;
  src: local('Futura PT Light Oblique'), url('../fonts/futura-pt-light-oblique-589e448ae90e2.woff') format('woff');
}

*,
*::before,
*::after{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

address{
  font-style: normal;
}

html{
  font-family: 'Futura PT Light', Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 18px;
  color: #696b6c;
  line-height: 1.15;
}

p{
  text-align: justify;
}

@media only screen and (min-width: 1025px){
  p{
    text-align: left;
  }
}

@media only screen and (min-width: 768px){
  html{
    font-size: 20px;
  }
}

@media only screen and (min-width: 1024px){
  html{
    font-size: 21px;
  }
}

@media only screen and (min-width: 1360px){
  html{
    font-size: 26px;
  }
}

html, body{
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  background-color: #fff;
}

body {
  display: flex;
  flex-direction: column;
}

ul, h1, h2, h3, h4, h5, h6{
  font-family: 'Futura Condensed PT Medium', Helvetica, Arial, sans-serif;
  font-weight: normal;
}

/* wrapper */
#wrapper{
  position: relative;
  width: 100%;
  height: auto;
  flex: 1 0 auto;
}
/* MENU */
#header-menu{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: auto;
  min-height: 5em;
  background-color: rgba(255, 255, 255, 0.85);
  transition: all 0.5s ease;
}

#header-menu.show{
  height: 100vh;
}

#logo {
  position: relative;
  display: block;
  width: auto;
  float: none;
}

.logo-img{
  display: block;
  border: 0 none;
  width: auto;
  height: 3em;
  margin: 1em;
  margin-right: 0;
}

nav {
  font-family: 'Futura Condensed PT Medium', Helvetica, Arial, sans-serif;
  font-weight: normal;
  position: relative;
  display: none;
  float: none;
  padding-top: 0;
  padding-right: 0;
  line-height: 1;
  letter-spacing: 0.1em;
}

nav.show {
  display: block;
}

nav ul {
  background-color: rgba(255, 255, 255, 0);
  list-style: none;
  margin: 0;
  padding-left: 0;
}

nav li {
  color: #3c5871;
  background-color: rgba(255, 255, 255, 0);
  display: block;
  float: none;
  padding: 1em;
  position: relative;
  text-decoration: none;
  transition: background-color 0.5s ease;
}
  
nav li a, nav li ul li:hover a, nav li ul li.active a {
  color: #3c5871;
  display: block;
}

nav li ul li a {
  color: #767676;
}

nav li:hover,
nav li:focus-within {
  background-color: rgba(255, 255, 255, 1);
  cursor: pointer;
}

nav li.active {
  background-color: rgba(255, 255, 255, 1);
}

nav li:focus-within a {
  outline: none;
}

nav ul li ul {
  background-color: transparent;
  visibility: visible;
  opacity: 1;
  min-width: 5em;
  position: relative;
  transition: opacity 0.5s ease;
  margin-top: 1em;
  left: 0;
  display: block;
}

nav ul li ul li {
  clear: both;
  width: 100%;
  padding: 0.5em 1em;
  margin-top: 1px;
  background-color: rgba(255, 255, 255, 0.6);
}

.hamb-btn {
  z-index: 999;
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  margin: 0.5em;
  padding: 1em;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .35s;
  transition-property: opacity;
  border: 0;
  background-color: transparent;
  outline: none;
}

.hamb-btn-box {
  position: relative;
  display: inline-block;
  width: 47px;
  height: 33px;
}

.hamb-btn-inner {
  top: 0;
  display: block;
}

.hamb-btn-inner, .hamb-btn-inner::after, .hamb-btn-inner::before {
  position: absolute;
  width: 47px;
  height: 6px;
  transition-timing-function: ease;
  transition-duration: 0.35s;
  transition-property: transform;
  border-radius: 2px;
  background-color: #3c5871;
}

.hamb-btn-inner::after, .hamb-btn-inner::before {
  display: block;
  content: "";
}

.hamb-btn-inner::before {
  top: 13px;
  transition-property: transform,opacity;
}

.hamb-btn-inner::after {
  top: 27px;
}

.hamb-btn.active .hamb-btn-inner {
  transform: translate3d(0,13px,0) rotate(45deg);
}

.hamb-btn.active .hamb-btn-inner::before {
  transform: rotate(-45deg) translate3d(40px,-7px,0);
  opacity: 0;
}

.hamb-btn.active .hamb-btn-inner::after {
  transform: translate3d(0,-27px,0) rotate(-90deg);
}

@media only screen and (orientation: landscape) {
  #header-menu{
    min-height: 4em;
  }
  
  .logo-img{
    margin: 0.5em 1em;
  }
  
  nav li{
    display: inline-block;
  }
  
  nav ul li ul{
    position: absolute;
  }
  
  .hamb-btn{
    margin: 0;
  }
}

@media only screen and (min-width: 1024px) {
  #header-menu{
    position: absolute;
    height: auto;
    min-height: 5em;
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  #logo {
    position: relative;
    display: block;
    width: auto;
    float: left;
  }
  
  .logo-img{
    margin: 1em;
  }
  
  nav {
    display: block;
    float: right;
    padding-top: 1em;
    padding-right: 1em;
  }
  
  nav li {
    display: block;
    float: left;
    padding: 1em;
  }
  
  nav li:hover,
  nav li:focus-within {
    background-color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
  }

  nav li.active {
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  nav ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    min-width: 5em;
    transition: opacity 0.5s ease;
    margin-top: 1em;
    left: 0;
    display: block;
  }
  
  nav ul li:hover > ul,
  nav ul li:focus-within > ul,
  nav ul li ul:hover,
  nav ul li ul:focus {
    visibility: visible;
    opacity: 1;
    display: block;
  }
  
  .hamb-btn {
    display: none;
  }
}

/* HEADER */
.section-header{
  position: relative;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.section-header::after{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 0;
  padding-bottom: 5.92%;
  background: transparent url(../img/header-mask.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}

.header-img{
  position: relative;
  left: -50%;
  top: 0;
  display: block;
  border: 0 none;
  width: 200%;
  height: auto;
}

.header-img-text{
  position: absolute;
  left: 9%;
  top: 70%;
  background-color: #fff;
  color: #3f678d;
  font-family: 'Futura Condensed PT Medium', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  width: 10em;
  padding: 0.6em;
}

body.profiling-page .header-img-text{
  width: 11em;
  left: 9%;
  right: auto;
  top: 42%;
}

body.analyse-page .header-img-text{
  width: 16em;
  left: 2%;
  right: auto;
  top: 38%;
}

body.strategy-page .header-img-text{
  width: 12em;
  right: 9%;
  left: auto;
  top: 56%;
}

body.coaching-page .header-img-text{
  width: 13em;
  left: 9%;
  right: auto;
  top: 38%;
}

body.references-page .header-img-text{
  width: 16em;
  max-width: 360px;
  left: 13%;
  right: auto;
  top: auto;
  bottom: 18.75%;
}

@media only screen and (orientation: landscape) {
  .header-img{
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
  }
  
  .header-img-text{
    font-size: 1rem;
    letter-spacing: 0.25em;
    width: 10em;
    left: 69%;
    top: 38%;
  }
  
  body.profiling-page .header-img-text{
    width: 11em;
    left: 9%;
    top: 42%;
  }
  
  body.analyse-page .header-img-text{
    width: 16em;
    left: 9%;
    top: 38%;
  }
  
  body.strategy-page .header-img-text{
    width: 12em;
    right: 9%;
    left: auto;
    top: 36%;
  }
  
  body.coaching-page .header-img-text{
    width: 13em;
    left: 9%;
    right: auto;
    top: 38%;
  }
  
  body.references-page .header-img-text{
    width: 16em;
    left: 13%;
    right: auto;
    top: auto;
    bottom: 18.75%;
  }
}

@media only screen and (min-width: 320px) {
  body.analyse-page .header-img-text{
    left: 9%;
  }
}

@media only screen and (min-width: 768px) {
  .header-img{
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
  }
  
  .header-img-text{
    font-size: 1rem;
    letter-spacing: 0.25em;
    width: 10em;
    left: 69%;
    top: 38%;
  }
  
  body.profiling-page .header-img-text{
    width: 11em;
    left: 9%;
    top: 42%;
  }
  
  body.analyse-page .header-img-text{
    width: 16em;
    left: 9%;
    top: 38%;
  }
  
  body.strategy-page .header-img-text{
    width: 12em;
    right: 9%;
    left: auto;
    top: 36%;
  }
  
  body.coaching-page .header-img-text{
    width: 13em;
    left: 9%;
    right: auto;
    top: 38%;
  }
  
  body.references-page .header-img-text{
    width: 16em;
    left: 13%;
    right: auto;
    top: auto;
    bottom: 18.75%;
  }
}

@media only screen and (min-width: 1670px) {
  .header-img{
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
  }
  
  body.profiling-page .header-img-text{
    width: 11em;
    left: auto;
    right: 61%;
    top: 42%;
  }
  
  body.analyse-page .header-img-text{
    width: 16em;
    left: auto;
    right: 56%;
    top: 38%;
  }
  
  body.strategy-page .header-img-text{
    width: 12em;
    right: auto;
    left: 61%;
    top: 36%;
  }
  
  body.coaching-page .header-img-text{
    width: 13em;
    left: auto;
    right: 56%;
    top: 38%;
  }
  
  body.references-page .header-img-text{
    width: 16em;
    left: auto;
    right: 59%;
    top: auto;
    bottom: 18.75%;
  }
}

/* CONTENT */
.section-content{
  width: 90%;
  height: auto;
  max-width: 1430px;
  margin: 0 auto;
  padding: 3.69em 0 3.69em 0;
  text-align: left;
}

.section-content h2{
  color: #3f678d;
  font-size: 1em;
  letter-spacing: 0.1em;
  padding: 0 0 1.5em 0;
}

.section-content h3{
  font-size: 1em;
  letter-spacing: 0.1em;
  padding: 1em 0 1em 0;
}

.section-content p{
  padding-bottom: 1em;
}

.section-content p strong{
  font-family: 'Futura Condensed PT Medium', Helvetica, Arial, sans-serif;
  letter-spacing: 0.1em;
  font-weight: normal;
  font-style: normal;
}

.address-links span{
  color: #3f678d;
  display: inline-block;
  width: 5em;
}

.address-links a{
  color: inherit;
}

.contact-adrs-img{
  display: block;
  width: 250px;
  height: auto;
  margin: 1em 0 2em 0;
  padding: 0;
  text-align: left;
}

@media only screen and (min-width: 320px) {
  .contact-adrs-img{
    width: 16em;
    max-width: 300px;
  }
}

@media only screen and (min-width: 768px) {
  .contact-adrs-img{
    width: 16em;
    max-width: 418px;
  }
}

.home-icons{
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 3em 0 0 0;
  text-align: center;
  color: #3c5871;
  font-family: 'Futura Condensed PT Medium', Helvetica, Arial, sans-serif;
  font-weight: normal;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 1024px) {
  .home-icons{
    justify-content: space-between;
  }
}

@media only screen and (min-width: 1494px) {
  .home-icons{
    justify-content: space-between;
  }
}

.home-icon{
  display: flex;
  flex-direction: column;
  position: relative;
  width: 336px;
  height: 284px;
  width: 13em;
  height: 11em;
  overflow: hidden;
  padding: 0;
  margin: 0;
  margin-bottom: 3em;
  color: #3c5871;
  text-decoration: none;
}

.home-icon::before, .home-icon::after{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 14%;
  height: 100%;
  z-index: 1;
}

.home-icon::before{
  left: 0;
  background: transparent url(../img/mask-left.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}

.home-icon::after{
  right: -1px;
  background: transparent url(../img/mask-right.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}

.icon-header{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  height: 25%;
  margin: 0;
  padding: 0;
  text-align: center;
  background: transparent url(../img/home-icon-header-bg.jpg) 0 0 no-repeat;
  background-size: 100% 100%;
}

.icon-header span{
  display: block;
  position: relative;
  left: 3%;
  width: 90%;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1;
}

.icon-img{
  display: block;
  position: relative;
  width: 100%;
  height: 75%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.icon-img img{
  display: block;
  position: relative;
  width: auto;
  height: 100%;
  margin: 0;
  padding: 0;
}

.references{
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.references::after{
  content: '';
  display: table;
  clear: both;
}

.reference-item{
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  position: relative;
  max-width: 305px;
  height: auto;
  margin: 0 34px 34px 0;
  padding: 0;
  border: 1px solid #808080;
  float: left;
}

.section-content p a {
  font-family: 'Futura Condensed PT Medium', Helvetica, Arial, sans-serif;
  font-weight: normal;
  letter-spacing: 0.1em;
  color: #3c5871;
  transition: opacity 0.5s ease;
  text-decoration: none;
  opacity: 1;
}
  
.section-content p a, .section-content p a:link, .section-content p a:visited {
  opacity: 1;
}

.section-content p a:hover {
  opacity: 0.6;
}

.section-content p a:active {
  opacity: 1;
}

/* FOOTER */
.section-footer{
  display: flex;
  flex-shrink: 0;
  align-items: center;
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  background: #b3aca5 url(../img/footer-bg.jpg) 0 0 no-repeat;
  background-size: 100% 100%;
  color: #fff;
  font-family: 'Futura Condensed PT Medium', Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
}

.section-inner{
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  height: auto;
  max-width: 1430px;
  margin: 0 auto;
  padding: 1em 0 1em 0;
  text-align: left;
}

.footer-adrs-img{
  display: block;
  width: 7.1em;
  height: auto;
  max-width: 185px;
  margin: 1em 0 1em 0;
  padding: 0;
  text-align: left;
}

#footer-nav {
  font-family: 'Futura Condensed PT Medium', Helvetica, Arial, sans-serif;
  font-weight: normal;
  position: relative;
  display: block;
  width: 100%;
  padding: 1em 0;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}

#footer-nav ul {
  background-color: transparent;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

#footer-nav li {
  color: #3c5871;
  background-color: transparent;
  display: inline-block;
  padding: 1em;
  position: relative;
}

#footer-nav li a {
  color: #3c5871;
  transition: color 0.5s ease;
  text-decoration: none;
}
  
#footer-nav li a, #footer-nav li a:link, #footer-nav li a:visited {
  color: #3c5871;
}

#footer-nav li a:hover {
  color: #fff;
}

#footer-nav li.active a, #footer-nav li a:active {
  color: #fff;
}

@media only screen and (min-width: 540px) {
  .section-footer{
    display: flex;
    flex-shrink: 0;
    align-items: center;
    min-height: 270px;
    padding: 0;
  }
  
  .section-inner{
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1em 0 1em 0;
  }

  .footer-adrs-img{
    display: block;
    margin: 1em 0 1em 0;
  }

  #footer-nav {
    position: relative;
    display: inline-block;
    width: 70%;
    padding: 1em 0 1em 1em;
    line-height: 1;
    text-align: right;
  }
}