body {
  font-family: 'Titillium Web', sans-serif;
  color: rgb(102,102,102);
}

.blue-section{
    width: 100%;
    overflow: hidden;	
}


.large-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 400px) {
  .large-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.text-fade {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 3s, transform 3s;
}

.js-fade {
  opacity: 0;
  transform: translateY(20%);
}

.come-from-left {
  opacity: 1;
  transform: translateX(0);
  transition: transform 3s, opacity 3s;
}

.js-left {
  opacity: 0;
  transform: translateX(-20%);
}

.come-from-right {
  opacity: 1;
  transform: translateX(0);
  transition: transform 3s, opacity 3s;
}

.js-right {
  opacity: 0;
  transform: translateX(20%);
}

/*-----------------------------------------------------------------
Header
 ------------------------------------------------------------------*/

header {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.25);
  position: fixed;
  z-index: 15;
  font-family: 'Fira Sans', sans-serif;
  background-color: #fff;
  width: 100%;
  top: 0;
}
header.scrolled img {
  width: 200px;
  padding: 10px 0 15px;
}
header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header img {
  padding: 20px 0 25px;
  width: 322px;
  transition: width 0.3s;
}
@media screen and (max-width: 1200px) {
  header img {
    width: 200px;
  }
}
@media screen and (max-width: 800px) {
  header img {
    padding: 10px 0 15px;
  }
}

header .menu {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  text-transform: uppercase;
  padding-left: 0;
}
@media screen and (max-width: 800px) {
  header .menu {
    display: none;
  }
}
header .menu.hamburger-style {
  position: absolute;
  top: 81px;
  right: 0;
  background-color: #fff;
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
}

header .menu li {
  padding: 0.5em 1em;
  margin-left: 1em;
  display: inline-block;
}
@media screen and (max-width: 980px) {
  header .menu li {
    padding: 0.5em 0.5em;
    margin-left: 0.5em;
  }
}
@media screen and (max-width: 800px) {
  header .menu li {
    display: block;
    margin-left: 0;
  }
}
header .menu li a {
  display: inline-block;
  text-align: center;
  font-size: 20px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  header .menu li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 980px) {
  header .menu li a {
    font-size: 16px;
  }
}
header .menu li:hover a {
  font-weight: bold;
}
header .menu li a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: -4px;
  background: #2098D1;
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
header .menu li:hover a:before {
  left: -10px;
  right: -10px;
}
header .menu a::after {
  display: block;
  content: attr(title);
  font-weight: bold;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

header.menu li:first-of-type {
  margin-left: 0;
}
.hamburger {
  display: none;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .hamburger {
    display: block;
  }
}
.hamburger:focus {
  outline: none;
}
.hamburger .hamburger-line {
  width: 32px;
  height: 4px;
  margin-top: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: rgb(46,49,47);
  transition: all 0.3s;
  position: relative;
}
.hamburger .hamburger-line:first-of-type {
  margin-top: 0;
}
.hamburger .hamburger-line:first-of-type {
  top: 0;
}
.hamburger.js-open .hamburger-line:first-of-type {
  transform: rotate(-45deg);
  top: 6px;
}
.hamburger.js-open .hamburger-line:nth-of-type(2) {
  background-color: transparent;
}
.hamburger .hamburger-line:nth-of-type(3) {
  bottom: 0;
}
.hamburger.js-open .hamburger-line:nth-of-type(3) {
  transform: rotate(45deg);
  bottom: 7px;
  transition: bottom 0.3s;
  margin-top: 0;
}

/*-----------------------------------------------------------------
Cover
 ------------------------------------------------------------------*/
.cover {
  height: 1013px;
  height: calc(100vh - 136px);
  overflow: hidden;
  background: url(../img/cover.jpg) center 136px no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 136px;
}
@media screen and (max-width: 1200px) {
  .cover {
    height: calc(100vh - 101px);
    background-position-y: 101px;
  }
}
@media screen and (max-width: 800px) {
  .cover {
    height: auto;
    background-size: 100%;
    background-position-y: 81px;
  }
}

.cover .what-we-do {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 14%;
}
@media screen and (max-width: 1400px) {
  .cover .what-we-do {
    width: 90%;
    left: 5%;
  }
}
@media screen and (max-width: 800px) {
  .cover .what-we-do {
    position: static;
    margin-top: 46%;
    width: 100%;
  }
}
.cover .content {
  padding: 0 5em 1em;
  background-color: rgba(255,255,255, 0.9);
  -webkit-box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.35);
  -moz-box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.35);
  box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.35);
}
@media screen and (max-width: 900px) {
  .cover .content {
    padding: 0 2em 1em;
  }
}
@media screen and (max-width: 800px) {
  .cover .content {
    padding: 0 20px 1em;
  }
}
.cover h1 {
  text-transform: uppercase;
  color: rgb(0,153,204);
  font-size: 45px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .cover h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 600px) {
  .cover h1 {
    font-size: 28px;
  }
}
.cover .content-list {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  justify-content: center;
  font-size: 25px;
  margin-top: 45px;
}
@media screen and (max-width: 1200px) {
  .cover .content-list {
    justify-content: space-between;
    font-size: 22px;
  }
}
@media screen and (max-width: 680px) {
  .cover .content-list {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 450px) {
  .cover .content-list {
    align-items: stretch;
  }
}
.cover .content-list li {
  margin-left: 140px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .cover .content-list li {
    margin-left: 30px;
  }
}
@media screen and (max-width: 680px) {
  .cover .content-list li {
    margin-left: 0;
    background-color: rgb(250,250,250);
    padding: 2em 3em;
    width: 250px;
    margin-top: 20px;
    border: 1px solid rgb(241,241,241);
  }
}
@media screen and (max-width: 450px) {
  .cover .content-list li {
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cover .content-list li:first-of-type {
  margin-left: 0;
}
@media screen and (max-width: 680px) {
  .cover .content-list li:first-of-type {
    margin-top: 0;
  }
}

/*-----------------------------------------------------------------
How it works
 ------------------------------------------------------------------*/
.how-it-works {
  max-width: 1920px;
  padding-top: 70px;
}
@media screen and (max-width: 1300px) {
  .how-it-works {
    padding-top: 40px;
  }
}
@media screen and (max-width: 800px) {
  .how-it-works {
    padding-top: 0;
  }
}
.how-it-works .description {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 1700px) {
  .how-it-works .description {
    justify-content: center;
  }
}
@media screen and (max-width: 1300px) {
  .how-it-works .description {
    flex-direction: column;
    align-items: center;
  }
}
.how-it-works .other {
  padding: 0 60px 20px 80px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .how-it-works .other {
    padding: 0 0 20px 50px;
  }
}
@media screen and (max-width: 1300px) {
  .how-it-works .other {
    order: 1;
    padding: 0 20px 20px;
  }
}
.how-it-works .other p {
  text-align: center;
  color: rgb(0,153,204);
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .how-it-works .other p {
    font-size: 25px;
  }
}
@media screen and (max-width: 600px) {
  .how-it-works .other p {
    font-size: 22px;
  }
}
.how-it-works .other a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  -webkit-box-shadow: -5px 5px 15px 0px rgba(0,0,0,0.35);
  -moz-box-shadow: -5px 5px 15px 0px rgba(0,0,0,0.35);
  box-shadow: -5px 5px 15px 0px rgba(0,0,0,0.35);
  position: relative;
  top: 0;
  left: 0;
  transition: all 0.3s;
}
.how-it-works .other a:hover {
  top: 5px;
  left: -5px;
  -webkit-box-shadow: -2px 2px 5px 0px rgba(0,0,0,0.35);
  -moz-box-shadow: -2px 2px 5px 0px rgba(0,0,0,0.35);
  box-shadow: -2px 2px 5px 0px rgba(0,0,0,0.35);
}
@media screen and (max-width: 1200px) {
  .how-it-works .other a {
    max-width: 280px;
  }
}
.how-it-works .other a img {
  display: block;
}
@media screen and (max-width: 1200px) {
  .how-it-works .other a img {
    max-width: 100%;
  }
}
.how-it-works .other:before {
  content: ' ';
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 0;
  height: 230px;
  border-left: 6px dotted rgb(0,153,204);
}
@media screen and (max-width: 1300px) {
  .how-it-works .other:before {
    display: none;
  }
}
@media screen and (max-width: 1300px) {
  .how-it-works .description-content {
    order: 2;
  }
}
@media screen and (max-width: 600px) {
  .how-it-works .description-content {
    background-color: rgb(250,250,250);
    border: 1px solid rgb(241,241,241);
    margin: 40px 20px 20px;
    padding-bottom: 20px;
  }
}
.how-it-works h2 {
  text-align: center;
  text-transform: uppercase;
  color: rgb(102,102,102);
  font-size: 40px;
  font-weight: bold;
  margin-right: 180px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1700px) {
  .how-it-works h2 {
    margin-right: 100px;
  }
}
@media screen and (max-width: 1500px) {
  .how-it-works h2 {
    margin-right: 60px;
  }
}
@media screen and (max-width: 1300px) {
  .how-it-works h2 {
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .how-it-works h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 800px) {
  .how-it-works h2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .how-it-works h2 {
    margin-bottom: 30px;
    margin-top: 40px;
    font-size: 25px;
  }
}
.how-it-works .points {
  display: flex;
  margin-right: 180px;
}
@media screen and (max-width: 1700px) {
  .how-it-works .points {
    margin-right: 100px;
  }
}
@media screen and (max-width: 1500px) {
  .how-it-works .points {
    margin-right: 60px;
  }
}
@media screen and (max-width: 1300px) {
  .how-it-works .points {
    margin-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .how-it-works .points {
    flex-wrap: wrap;
    padding: 0 20px;
    justify-content: center;
  }
}
.how-it-works .content-item {
  padding-right: 160px;
  text-align: center;
}
@media screen and (max-width: 1700px) {
  .how-it-works .content-item {
    padding-right: 100px;
  }
}
@media screen and (max-width: 1500px) {
  .how-it-works .content-item {
    padding-right: 60px;
  }
}
@media screen and (max-width: 800px) {
  .how-it-works .content-item {
    padding-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  .how-it-works .content-item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.how-it-works .content-item .image-wrapper {
  height: 183px;
}
.how-it-works .content-item p {
  font-size: 22px;
}
@media screen and (max-width: 1200px) {
  .how-it-works .content-item p {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .how-it-works .content-item p {
    font-size: 18px;
  }
}
.how-it-works .content-item span {
  text-transform: uppercase;
  font-weight: bold;
}
.how-it-works .content-item:last-of-type {
  padding-right: 0;
}
@media screen and (max-width: 600px) {
  .how-it-works .content-item:last-of-type {
    padding-right: 20px;
  }
}
.how-it-works .new-age {
  display: flex;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 70px;
}
@media screen and (max-width: 900px) {
  .how-it-works .new-age {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .how-it-works .new-age-guarantee {
    text-align: center;
  }
}
.how-it-works .new-age p {
  font-size: 40px;
  font-weight: 600;
  font-style: italic;
}
@media screen and (max-width: 1200px) {
  .how-it-works .new-age p {
    font-size: 30px;
  }
}
@media screen and (max-width: 700px) {
  .how-it-works .new-age p {
    font-size: 25px;
  }
}
.how-it-works .arrow {
  margin-left: 440px;
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  .how-it-works .arrow {
    margin-left: 300px;
  }
}
@media screen and (max-width: 900px) {
  .how-it-works .arrow {
    margin-left: 150px;
  }
}
@media screen and (max-width: 700px) {
  .how-it-works .arrow {
    margin-left: 0;
    margin-top: 20px;
  }
}
.how-it-works .arrow img {
  position: absolute;
  bottom: -5px;
  left: -120px;
}
@media screen and (max-width: 700px) {
  .how-it-works .arrow img {
    position: static;
  }
}

/*-----------------------------------------------------------------
  Blue section
 ------------------------------------------------------------------*/
.blue-section {
  background-color: rgb(0,153,204);
  max-width: 1920px;
  margin: 0 auto;
  color: #fff;
}
.blue-section .blue-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .blue-section .blue-line {
    flex-direction: column;
  }
}
.blue-section .blue-line p {
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 37px;
  font-weight: 600;
}
@media screen and (max-width: 1400px) {
  .blue-section .blue-line p {
    font-size: 30px;
  }
}
@media screen and (max-width: 900px) {
  .blue-section .blue-line p {
    order: 1;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .blue-section .blue-line p {
    font-size: 25px;
    margin: 2em 0;
  }
}
.blue-section .blue-line p span {
  color: rgb(255,153,51);
}
.blue-section .blue-line:first-of-type img {
  max-width: 1094px;
  width: 56.98%;
}
.blue-section .blue-line:nth-of-type(2) img {
  max-width: 1106px;
  width: 57.6%;
}
.blue-section .blue-line:nth-of-type(3) img {
  max-width: 948px;
  width: 49.36%;
}
@media screen and (max-width: 900px) {
  .blue-section .blue-line:first-of-type img,
  .blue-section .blue-line:nth-of-type(2) img,
  .blue-section .blue-line:nth-of-type(3) img {
    order: 2;
    width: 600px;
  }
}
@media screen and (max-width: 600px) {
  .blue-section .blue-line:first-of-type img,
  .blue-section .blue-line:nth-of-type(2) img,
  .blue-section .blue-line:nth-of-type(3) img {
    width: 100%;
  }
}

/*-----------------------------------------------------------------
 What if
 ------------------------------------------------------------------*/
.what-if {
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.what-if .headline {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .what-if .headline {
    margin-bottom: 40px;
  }
}
.what-if h2 {
  text-transform: uppercase;
  font-size: 40px;
}
@media screen and (max-width: 1200px) {
  .what-if h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .what-if h2 {
    font-size: 25px;
  }
}
.what-if .headline img {
  position: absolute;
  top: 30px;
  right: -155px;
}
@media screen and (max-width: 1000px) {
  .what-if .headline img {
    width: 65px;
    right: -72px;
  }
}
.what-if ul {
  list-style-type: none;
  text-align: left;
  padding-left: 0;
}
.what-if ul li {
  font-size: 30px;
  margin-bottom: 24px;
  color: rgb(48,48,48);
}
@media screen and (max-width: 1200px) {
  .what-if ul li {
    font-size: 25px;
  }
}
@media screen and (max-width: 600px) {
  .what-if ul li {
    font-size: 22px;
    text-align: center;
  }
}
.what-if ul li:before {
  content: url(../img/what-if-list-style.jpg);
  margin-right: 20px;
}
@media screen and (max-width: 1200px) {
  .what-if ul li:before {
    position: relative;
    top: 2px;
  }
}
@media screen and (max-width: 600px) {
  .what-if ul li:before {
    position: static;
    display: block;
    text-align: center;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .what-if ul li:first-of-type:before {
    display: none;
  }
}
.what-if .regular-income {
  text-align: left;
  margin: 30px 0 40px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .what-if .regular-income {
    margin: 30px 200px 40px 0;
  }
}
@media screen and (max-width: 1000px) {
  .what-if .regular-income {
    margin-right: 100px;
  }
}
@media screen and (max-width: 800px) {
  .what-if .regular-income {
    margin-right: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.what-if .regular-income p {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .what-if .regular-income p {
    font-size: 25px;
  }
}
@media screen and (max-width: 600px) {
  .what-if .regular-income p {
    font-size: 22px;
    color: rgb(0,153,204);
  }
}
.what-if .regular-income img {
  position: absolute;
  top: -40px;
  right: -200px;
}
@media screen and (max-width: 1000px) {
  .what-if .regular-income img {
    width: 81px;
    top: -10px;
    right: -100px;
  }
}
@media screen and (max-width: 800px) {
  .what-if .regular-income img {
    position: static;
  }
}

/*-----------------------------------------------------------------
 Reference
 ------------------------------------------------------------------*/
.reference {
  background-color: rgb(230,230,230);
  position: relative;
}
.reference .slide-next:before,
.reference .slide-prev:before {
  position: relative;
}
.reference .slide-next {
  position: absolute;
  top: 50%;
  right: 40px;
  z-index: 10;
  transform: translateY(-80%);
}
.reference .slide-prev {
  position: absolute;
  top: 50%;
  top: calc(50% - 3px);
  left: 50%;
  left: calc(50% + 40px);
  z-index: 10;
  transform: rotate(180deg) translateY(80%);
}
@media screen and (max-width: 1000px) {
  .reference .slide-next {
    right: 25px;
  }
  .reference .slide-prev {
    left: 25px;
  }
}
@media screen and (max-width: 600px) {
  .reference .slide-next {
    top: 30%;
  }
  .reference .slide-prev {
    top: 30%;
  }
}
@media screen and (max-width: 1200px) {
  .reference .slide-next img,
  .reference .slide-prev img {
    width: 44px;
  }
}
.reference .slide-next a,
.reference .slide-prev a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.reference .bx-wrapper {
  border: none;
  box-shadow: none;
  background: none;
  margin-bottom: 0;
}
.reference .slide-item .description {
  float: left;
  max-width: 50%;
  margin-top: 14.5%;
  transform: translateY(-50%);
  padding-left: 13.5%;
  padding-right: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 1500px) {
  .reference .slide-item .description {
    margin-top: 50px;
    transform: none;
  }
}
@media screen and (max-width: 1300px) {
  .reference .slide-item .description {
    padding-left: 5%;
    margin-top: 25px;
  }
}
@media screen and (max-width: 1000px) {
  .reference .slide-item .description {
    max-width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 800px) {
  .reference .slide-item .description {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.reference .slide-item .description h3 {
  font-size: 35px;
  color: rgb(0,102,153);
  margin-bottom: 0.4em;
}
@media screen and (max-width: 1200px) {
  .reference .slide-item .description h3 {
    font-size: 30px;
  }
}
.reference .slide-item .description p {
  font-size: 22px;
  font-style: italic;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .reference .slide-item .description p {
    font-size: 18px;
  }
}
.reference .slide-item img {
  float: right;
  max-width: 50%;
}
@media screen and (max-width: 1000px) {
  .reference .slide-item img {
    float: none;
    display: block;
    width: 80%;
    max-width: 80%;
    margin-left: 10%;
  }
}
@media screen and (max-width: 800px) {
  .reference .slide-item img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.reference #bxslider-pager {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  text-align: center;
}
.reference .pager {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgb(0,153,204);
  transition: background-color 0.3s;
  margin-right: 12px;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .reference .pager {
    width: 18px;
    height: 18px;
    border-width: 1px;
  }
}
.reference .pager:last-of-type {
  margin-right: 0;
}
.reference .pager:hover {
  background-color: rgb(0,153,204);
}
.reference .pager.active {
  background-color: rgb(0,153,204);
}

/*-----------------------------------------------------------------
 About us
 ------------------------------------------------------------------*/
.about-us {
  padding: 40px 20px 110px;
}
.about-us h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 40px;
  margin-bottom: 1.1em;
}
@media screen and (max-width: 1200px) {
  .about-us h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .about-us h2 {
    font-size: 25px;
  }
}
.about-us p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
  font-size: 22px;
  font-style: italic;
}
@media screen and (max-width: 1200px) {
  .about-us p {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .about-us p {
    font-size: 18px;
  }
}

/*-----------------------------------------------------------------
 Who we are
 ------------------------------------------------------------------*/
.who-we-are {
  display: flex;
  position: relative;
  background-color: rgb(230,230,230);
}
@media screen and (max-width: 960px) {
  .who-we-are {
    flex-direction: column;
  }
}
.who-we-are img {
  display: block;
  max-width: 100%;
}
.who-we-are h2 {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  text-transform: uppercase;
  background-color: rgba(255,255,255,0.9);
  padding: 0.5em 1.5em;
  font-size: 40px;
  margin: 0;
}
.who-we-are .owner,
.who-we-are .manager {
  position: relative;
}
.who-we-are .contact-info {
  display: flex;
  flex-direction: column;
  position: absolute;
  background-color: rgba(230,230,230,0.8);
  padding: 15px 30px;
  color: rgb(48,48,48);
  font-size: 22px;
  bottom: 0;
}
@media screen and (max-width: 1500px) {
  .who-we-are .contact-info {
    position: static;
  }
}
@media screen and (max-width: 1200px) {
  .who-we-are .contact-info {
    font-size: 20px;
  }
}
@media screen and (max-width: 960px) {
  .who-we-are .contact-info {
    position: absolute;
  }
}
@media screen and (max-width: 720px) {
  .who-we-are .contact-info {
    position: static;
  }
}
@media screen and (max-width: 600px) {
  .who-we-are .contact-info {
    font-size: 18px;
  }
}
.who-we-are .owner .contact-info {
  justify-content: flex-start;
  left: 0;
}
.who-we-are .manager .contact-info {
  justify-content: flex-end;
  right: 0;
}
@media screen and (max-width: 1500px) {
  .who-we-are .manager .contact-info {
    text-align: right;
  }
}
.who-we-are .contact-info .name {
  font-size: 26px;
  margin-top: 0;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 1200px) {
  .who-we-are .contact-info .name {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .who-we-are .contact-info .name {
    font-size: 20px;
  }
}
.who-we-are .contact-info .position {
  margin-top: 0;
  margin-bottom: 0.68em;
}
.who-we-are .contact-info .link {
  color: rgb(0,153,204);
  font-weight: bold;
  margin: 0.23em 0;
}
.who-we-are .contact-info .description {
  margin-top: 0.91em;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .who-we-are .contact-info .description br {
    display: none;
  }
}

/*-----------------------------------------------------------------
 Contact
 ------------------------------------------------------------------*/
.contact {
  height: 682px;
  background: url(../img/contact-background.jpg) left center no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .contact {
    height: 400px;
    background-size: cover;
  }
}
.contact h2 {
  margin-top: 0;
  text-transform: uppercase;
  padding-top: 70px;
  font-size: 40px;
  margin-bottom: 1.35em;
}
@media screen and (max-width: 1200px) {
  .contact h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 800px) {
  .contact h2 {
    padding-top: 30px;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 600px) {
  .contact h2 {
    font-size: 25px;
  }
}
.contact .contact-box {
  padding: 35px;
  background-color: rgba(230,230,230,0.8);
  font-size: 22px;
  color: rgb(48,48,48);
}
@media screen and (max-width: 1200px) {
  .contact .contact-box {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contact .contact-box {
    font-size: 18px;
  }
}
.contact .contact-box > p {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 27px;
}
.contact .contact-box .links {
  margin-bottom: 27px;
}
.contact .contact-box .links p {
  margin: 1px 0;
}
.contact .contact-box .address p {
  margin: 1px 0;
}

/*-----------------------------------------------------------------
 Footer
 ------------------------------------------------------------------*/
footer {
  padding: 15px 50px 15px 100px;
  background-color: rgb(230,230,230);
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  line-height: 1.3;
  color: rgb(48,48,48);
}
@media screen and (max-width: 1700px) {
  footer {
    font-size: 18px;
  }
}
@media screen and (max-width: 1500px) {
  footer {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 960px) {
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
footer img {
  display: block;
}
footer p {
  margin: 0;
}
footer .union {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 1500px) {
  footer .union {
    order: 2;
    margin-top: 20px;
  }
}
footer .union-description {
  margin-left: 15px;
}
footer .union-description p:first-of-type {
  text-transform: uppercase;
}
footer .prague {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-basis: 61%;
}
@media screen and (max-width: 1500px) {
  footer .prague {
    order: 1;
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  footer .prague img {
    width: 75.5px;
  }
  footer .union img {
    width: 99.5px;
  }
}
footer .prague-description {
  font-size: 20px;
  margin-left: 15px;
  line-height: 1.1;
}
@media screen and (max-width: 1700px) {
  footer .prague-description {
    font-size: 16px;
  }
}
@media screen and (max-width: 1500px) {
  footer .prague-description {
    margin-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  footer .prague-description {
    display: none;
  }
}
