
/* Fonts */

@font-face {
  font-family: 'ccicon';
  src:  url('fonts/ccicon.eot?bas3hi');
  src:  url('fonts/ccicon.eot?bas3hi#iefix') format('embedded-opentype'),
    url('fonts/ccicon.woff2?bas3hi') format('woff2'),
    url('fonts/ccicon.ttf?bas3hi') format('truetype'),
    url('fonts/ccicon.woff?bas3hi') format('woff'),
    url('fonts/ccicon.svg?bas3hi#ccicon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="ccicon-"], [class*=" ccicon-"] {
  font-family: 'ccicon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ccicon-mouse:before {
  content: "\e900";
}
.ccicon-arrow:before {
  content: "\e901";
}
.ccicon-dot:before {
  content: "\e902";
}
.ccicon-square:before {
  content: "\e903";
}


/* Generic rules */

:focus {
  outline: none;
}

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

html, body {
  border: 0;
  height: 100%;
}

body {
  font-size: 16px;
  line-height: 24px;
  font-family: Roboto, sans-serif, arial, Helvetica;
  color: #fff;
  background-color: #2f697c;
  display: flex;
  flex-direction: column;
  transition: background-color .2s ease;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

h1 {
  font-size: 40px;
  line-height: 1.12;
  word-wrap: break-word;
}

a, a:hover, a:active, a:focus, a:visited {
  color: #fff;
  text-decoration: none;
  outline: none;
}

ul {
  list-style: none;
}


/* Button */

.cc-btn, .cc-btn:visited {
  display: inline-block;
  background-color: #df0715;
  background-image: linear-gradient(to bottom, #ff5555 -34%, #c70707 98%);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
  text-align: center;
  padding: 14px 28px;
  border: 0 none;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 15px 30px 0 rgba(136, 25, 25, 0.34);
  transition: box-shadow .15s linear;
  user-select: none;
}

.cc-btn:active, .cc-btn:focus {
  color: #fff;
}

.cc-btn:hover {
  color: #fff;
  background-color: #c10612;
  background-image: linear-gradient(to bottom, #d74848 -34%, #b20909 98%);
  box-shadow: none;
}

@media screen and (min-width: 769px) {
  
  .cc-btn, .cc-btn:visited {
    font-size: 24px;
    padding: 17px 39px;
    border-radius: 12px;
  }
    
}


/* Header */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.3s ease;
  z-index: 100;
}

header .primary {
  opacity: 1;
  max-height: 60px;
  position: relative;
  background-image: linear-gradient(to right, #3A3F20 0%, #88794D 100%);
	transition: all 200ms ease;
  z-index: 1;
}

header .secondary {
  opacity: 0;
  max-height: 0;
  position: relative;
  display: flex;
  color: #000;
	background-color: #fefcf4;
  overflow: hidden;
	transition: all 200ms ease;
}

header .primary.active + .secondary {
  max-height: 44px;
  opacity: 1;
  z-index: 1;
}

header .container {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

header .logo a {
  display: block;
  padding: 20px 24px 24px;
}

header .logo img {
  display: block;
  width: 165px;
  max-width: 100%;
}

header .langs {
  padding-right: 24px;
  white-space: nowrap;
}

header .langs a,
header .langs a:hover,
header .langs span {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  margin-left: 12px;
}

header .langs > *:first-child {
  margin-left: 0;
}

header .langs span {
  font-weight: 700;
}

header .secondary .logo {
  display: none;
}

header .secondary .hlight {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.52px;
  flex: 1 1 auto;
  text-align: center;
  padding: 6px 24px;
}

header .secondary .cta {
  opacity: 0;
  display: none;
  min-height: 60px;
  padding-right: 24px;
  transition: opacity 0.25s ease;
}

header .secondary .cta .cc-btn {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 6px;
  white-space: nowrap;
}

header.sticky {
  top: -60px;
}

header.sticky .primary.active + .secondary {
  opacity: 1;
  height: 75px;
  max-height: 75px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
}

header.sticky .secondary .logo {
  display: block;
}

header.sticky .secondary .hlight {
  display: none;
}

header.sticky .secondary .cta {
  display: block;
  position: relative;
  z-index: 2;
}

header.sticky .secondary .cta.show {
  display: block;
  opacity: 1;
}

header.sticky .secondary .cta .cc-btn {
  transform: translateY(-60px);
  box-shadow: 0 6px 10px 0 rgba(182, 34, 34, 0.34);
  transition: transform .3s ease, box-shadow .15s linear;
}

header.sticky .secondary .cta .cc-btn:hover {
  box-shadow: none;
}

header.sticky .secondary .cta.show .cc-btn {
  transform: translateY(12px);
}

@media screen and (max-width: 768px) {
  
  header .logo img {
    max-width: 86%;
  }
  
  header .secondary .cta .cc-btn {
    font-weight: 500;
    box-shadow: none;
  }
  
  header .secondary .cta .cc-btn span {
    display: none;
  }
  
  header.sticky .secondary .hlight {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 40%;
    white-space: normal;
    line-height: 1.3;
    align-items: center;
    opacity: 0;
    z-index: 1;
  }
  
}

@media screen and (min-width: 769px) {
  
  header .logo {
    flex: 0 0 auto;
  }
  
  header .primary .logo a {
    padding: 37px 0 43px 40px;
  }
  
  header .secondary .logo a {
    padding: 13px 0 17px 40px;
  }
  
  header .logo img {
    width: 196px;
  }
  
  header .langs {
    padding-right: 40px;
  }
  
  header .primary {
    max-height: none;
  }
  
  header.sticky .primary.active + .secondary {
    height: 100px;
    max-height: 100px;
  }
  
  header .secondary .hlight {
    font-size: 16px;
    padding: 8px 32px;
  }
  
  header.sticky {
    top: -75px;
  }
  
  header.sticky .primary {
    box-shadow: none;
    opacity: 1;
    max-height: 75px;
    overflow: visible;
  }
  
  header.sticky .secondary {
    max-height: 56px;
  }
  
  header .secondary .cta {
    padding-right: 40px;
    min-height: 50px;
  }
  
  header.sticky .secondary .cta.show .cc-btn {
    transform: translateY(7px);
  }
  
}

@media screen and (min-width: 993px) {
  
  header .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header .primary .logo a {
    padding: 34px 0 40px 40px;
  }
  
  header .primary .logo img {
    width: 257px;
  }
  
  header .primary.active + .secondary {
    height: 50px;
    max-height: 50px;
  }
  
  header.hidden {
    top: -150px;
  }
  
  header .secondary .hlight {
    font-size: 18px;
  }
  
}

@media screen and (min-width: 1201px) {
  
  header .secondary .logo {
    display: block;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  
  header .secondary .hlight {
    letter-spacing: normal;
  }
  
  header.sticky .secondary .logo {
    opacity: 1;
  }
  
  header.sticky .secondary .hlight {
    display: block;
  }
  
  header .secondary .cta,
  header.sticky .secondary .cta,
  header.sticky .secondary .cta.show {
    min-width: 276px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  header.sticky .secondary .cta.show .cc-btn {
    transform: translateY(0);
  }
  
}


/* Main */

main {
  flex: 1 0 auto;
  overflow: hidden;
  position: relative;
}

main img {
  max-width: 100%;
  display: block;
}

#cc_sidenav {
  position: fixed;
  right: -3px;
  bottom: 50%;
  margin-bottom: -55px;
  display: flex;
  flex-direction: column;
  z-index: 10;
}

#cc_sidenav a {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}

#cc_sidenav .ccicon {
  color: #fff;
  font-size: 32px;
  display: block;
  height: 32px;
  opacity: 0.5;
  transition: opacity .2s linear;
}

#cc_sidenav .active .ccicon {
  opacity: 1;
}

@media screen and (min-width: 769px) {
  
  #cc_sidenav {
    right: -4px;
  }
  
  #cc_sidenav .ccicon {
    font-size: 48px;
    height: 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  #cc_sidenav {
    right: -8px;
  }
  
  #cc_sidenav .ccicon {
    font-size: 56px;
    height: 46px;
  }
  
}

@media screen and (min-width: 1325px) {
  
  #cc_sidenav {
    right: 8px;
  }
  
}


/* Sections */

section {
  position: relative;
}

section:first-child {
  padding-top: 87px;
}

section .container {
  padding-top: 16px;
}

section .info {
  padding: 0 24px;
}

section .info h1 {
  margin: 12px 0 36px;
}

section .info h1:first-child {
  margin-top: 40px;
}

section .items {
  font-size: 18px;
  font-weight: 300;
  margin: 0 24px;
  z-index: 1;
}

section .items .row,
section .items .item:not(:first-child) {
  margin-top: 24px;
}

section .items .item.empty {
  display: none;
}

section .items h3 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

section .items .item > div {
  line-height: 1.29;
}

section .items .item a {
  color: #fff;
  text-decoration: underline;
}

section .items .cta {
  margin: 50px 0 65px;
}

section .cta .note {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.33;
  font-style: italic;
  margin: 24px 0 44px;
}

section .container > .cta {
  margin: 0;
  padding: 0 24px 24px;
}

section .container > .cta .note {
  margin-bottom: 0;
}

section .img {
  max-width: 500px;
  margin: 0 auto;
}

section#cc_s1 .img,
section#cc_s3 .img {
  padding: 64px 0 40px;
  margin-right: 0;
}

section#cc_s1 {
  background-image: linear-gradient(to right, #3A3F20 0%, #88794D 100%);
}

section#cc_s1 .container {
  padding-top: 48px;
}

section#cc_s1 h1 {
  margin-bottom: 12px;
}

section#cc_s1 h2 {
  margin-bottom: 24px;
}

section#cc_s2 {
  background-image: linear-gradient(to right, #b08c46 0%, #eed294 100%);
}

section#cc_s2 .img {
  max-width: 260px;
  padding-bottom: 80px;
}

section#cc_s3 {
  background-image: linear-gradient(to right, #4b7d64 0%, #1e3530 100%);
}

section#cc_s3 ul li {
  padding-left: 32px;
  position: relative;
}

section#cc_s3 ul li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 12px;
}

section#cc_s4 .items {
  margin-bottom: 40px;
}

section#cc_s4 .items h3 {
  font-size: 20px;
}

section#cc_s4 .item {
  padding: 20px;
  border-radius: 6px;
  background-color: #79b3c6;
}

section#cc_s4 .item h3 {
  margin-top: 0;
}

section#cc_s4 .img {
  max-width: 100%;
}

section#cc_s4 .img img {
  margin: 0 0 auto auto;
}

section#cc_s4 .note {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  padding: 0 24px;
  margin-bottom: 32px;
  max-width: 550px;
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  
  section#cc_s1 .cc-btn {
    font-size: 22px;
    padding: 16px 32px;
    border-radius: 12px;
  }
  
}

@media screen and (min-width: 769px) {
  
  section:first-child {
    padding-top: 100px;
  }
  
  section .container {
    padding-top: 64px;
  }
  
  section .info {
    padding: 0 40px;
    z-index: 1;
  }
  
  section .info h1 {
    font-size: 60px;
  }
  
  section .info h3 {
    font-size: 22px;
  }
  
  section .items {
    font-size: 24px;
    margin: 0 40px;
  }
  
  section .items .row, 
  section .items .item:not(:first-child) {
    margin-top: 30px;
  }
  
  section .items h3 {
    font-size: 20px;
  }
  
  section .container > .cta {
    padding: 0 40px 24px;
  }
  
  section#cc_s1 .container {
    padding-top: 100px;
  }
  
  section#cc_s2 .item > div {
    max-width: 412px;
  }
  
  section#cc_s4 .note {
    padding: 0 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  section .container {
    padding: 90px 40px 0;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  section .info {
    padding: 0;
  }
  
  section .info h1 {
    font-size: 70px;
    line-height: 1;
    margin: 24px 0 40px;
  }
  
  section .info h3 {
    margin-top: 16px;
  }
  
  section .items {
    border-top: 0 none;
    max-width: 60%;
    margin: 0 0 210px;
  }
  
  section .cta {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  section .container > .cta {
    padding: 0;
  }
  
  section .cta a {
    white-space: nowrap;
    margin: 0 30px 16px 0;
  }
  
  section .cta .note {
    margin: 8px 0 0;
  }
  
  section:not(:first-child):not(:last-child) .cta {
    display: none;
  }
  
  section:not(#cc_s4) .img {
    display: none;
  }
  
  section#cc_s1::before,
  section#cc_s2 .container::before,
  section#cc_s3::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    z-index: 0;
  }
  
  section#cc_s1::before {
    background-image: url(img/martino.png);
    background-size: 50%;
    background-position: right bottom;
  }
  
  section#cc_s2 .container::before {
    background-image: url(img/cards.png);
    background-size: 206px;
    background-position: calc(100% - 40px) center;
  }
  
  section#cc_s3::before {
    background-image: url(img/turtle.png);
    background-size: 40%;
    background-position: right center;
  }
  
  section#cc_s1 .container {
    padding-bottom: 230px;
  }
  
  section#cc_s2 {
    position: relative;
    z-index: 1;
  }
  
  section#cc_s2 .container {
    position: relative;
  }
  
  section#cc_s2 .info,
  section#cc_s3 .info {
    max-width: 740px;
  }
  
  section#cc_s4 .items {
    font-size: 21px;
    max-width: none;
    margin-bottom: 40px;
    position: relative;
  }
  
  section#cc_s4 .row {
    display: flex;
  }
  
  section#cc_s4 .item {
    margin-top: 0;
    max-width: none;
    flex: 1 1 50%;
  }
  
  section#cc_s4 .row .item:first-child {
    margin-right: 15px;
  }
  
  section#cc_s4 .row .item:last-child {
    margin-left: 15px;
  }
  
  section#cc_s4 .note {
    padding: 0;
    margin-bottom: 40px;
  }
  
}

@media screen and (min-width: 1201px) {
  
  section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section .img {
    right: -100px;
    max-width: 70%;
  }
  
  section#cc_s1 h1 {
    font-size: 90px;
    margin-bottom: 24px;
  }

  section#cc_s1 h2 {
    margin-bottom: 24px;
  }
  
  section#cc_s1 .img {
    right: 0;
  }
  
}

@media screen and (min-width: 1351px) {
  
  section#cc_s1 {
    min-height: 800px;
  }
  
  section#cc_s1::before {
    background-size: 740px;
    bottom: -48px;
  }
  
  section#cc_s3::before {
    background-size: 635px;
  }
  
  section#cc_s4 .img img {
    max-width: 1350px;
  }
  
}


/* Footer */

footer {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  background-color: #2f697c;
}

footer .container {
  padding: 24px;
}

footer .menu a {
  margin-right: 20px;
  display: inline-block;
}

footer .menu a:hover {
  text-decoration: underline;
}
 
footer .copyright {
  font-size: 13px;
  padding-top: 16px;
}

@media screen and (min-width: 769px) {
  
  footer .container {
    padding: 36px 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  footer .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  footer .menu {
    float: left;
  }

  footer .copyright {
    text-align: right;
    padding-top: 0;
  }
  
}


/* IE11/Edge specific rules */

_:-ms-fullscreen, :root body { 
  min-height: 100vh;
}
