
/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');


/* 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%;
  font-family: Roboto, sans-serif, arial, Helvetica;
}

body {
  font-size: 16px;
  line-height: 24px;
  color: #08090b;
  background-color: #eeeff3;
  display: flex;
  flex-direction: column;
  transition: background-color .2s ease;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  word-wrap: break-word;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 12px 0 18px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
}

a, a:hover, a:active, a:focus, a:visited {
  color: #075da7;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}


/* Button */

.cc-btn, .cc-btn:visited {
  color: #fffdf9;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  padding: 8px 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e40613;
  min-height: 56px;
  border: 0 none;
  border-radius: 8px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  outline: none;
  transition: all .15s linear;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cc-btn:active, .cc-btn:focus {
  color: #fffdf9;
}

.cc-btn:hover {
  color: #fffdf9;
  background-color: #d30511;
}


/* Header */

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}

header .primary {
  color: #eceff0;
  opacity: 1;
  max-height: 90px;
  position: relative;
	transition: all 0.2s ease;
  z-index: 1;
}

header .secondary {
  opacity: 0;
  max-height: 0;
  position: relative;
  display: flex;
	background-color: #fff;
	transition: all 0.2s ease;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.16);
}

header .container {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

header .primary .logo a {
  display: block;
  padding: 24px 24px 26px;
}

header .primary .logo a:last-child {
  display: none;
}

header .primary .logo img {
  display: block;
  width: 141px;
  max-width: 100%;
}

header .langs {
  padding-right: 24px;
  white-space: nowrap;
}

header .langs a,
header .langs a:hover,
header .langs span {
  color: #f1f2f4;
  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 {
  color: #291c12;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  flex: 1 0 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 24px;
}

header .secondary .cta {
  padding: 9px 24px 9px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 0 1 auto;
}

header .secondary .cta .cc-btn {
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 16px;
  text-transform: uppercase;
  min-height: 36px;
  min-width: 130px;
}

header.hide {
  position: fixed;
  transform: translateY(-65px);
  transition: none;
}

header.sticky {
  position: fixed;
  transform: translateY(-65px);
}

header.sticky .primary .logo a:first-child {
  display: none;
}

header.sticky .primary .logo a:last-child {
  display: block;
}

header.sticky .secondary {
  max-height: 70px;
  opacity: 1;
}

header.sticky .secondary .cta .cc-btn:hover {
  box-shadow: none;
}


@media screen and (max-width: 768px) {
  
  header .secondary .cta .cc-btn span {
    display: none;
  }
  
}

@media screen and (min-width: 769px) {
  
  header .primary .logo a {
    padding-left: 40px;
  }
  
  header .langs {
    padding-right: 40px;
  }
  
  header .langs a, header .langs a:hover, header .langs span {
    color: #141512;
  }
  
  header .secondary .hlight {
    font-size: 20px;
    flex: 1 0 0%;
  }
  
  header .secondary .hlight br {
    display: none;
  }
  
  header .secondary .cta .cc-btn {
    font-size: 14px;
    letter-spacing: 0.6px;
    padding: 4px 24px;
    min-height: 38px;
  }
  
}

@media screen and (min-width: 993px) {
  
  header.hide {
    transform: translateY(-100px);
  }
  
  header .langs {
    padding-right: 40px;
  }
  
  header .primary {
    max-height: none;
  }
  
  header .primary .logo {
    flex: 0 0 auto;
  }
  
  header .primary .logo a {
    padding: 34px 0 40px 40px;
  }
  
  header .primary .logo img {
    width: 251px;
  }
  
  header .secondary .logo {
    flex: 0 0 auto;
    display: block;
    padding-left: 40px;
  }
  
  header .secondary .logo img {
    width: 164px;
    display: block;
  }
  
  header .secondary .hlight {
    justify-content: center;
    text-align: center;
  }
  
  header .secondary .cta {
    padding-right: 40px;
  }
  
  header.sticky {
    transform: translateY(-75px);
  }
  
  header.sticky .primary {
    box-shadow: none;
    opacity: 1;
    max-height: 75px;
    overflow: visible;
  }
  
  header.sticky .secondary {
    max-height: 80px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  header .container {
    max-width: 1280px;
    margin: 0 auto;
  }
  
}


/* Main */

main {
  flex: 1 0 auto;
  overflow: hidden;
  position: relative;
}

main img {
  max-width: 100%;
  display: block;
}


/* Sections */

section .info {
  text-align: center;
  padding: 0 24px;
}

section .info .desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  max-width: 456px;
  margin: 0 auto;
}

section .info .cta {
  margin-top: 32px;
}

section .info .cta .cc-btn {
  min-width: 220px;
}

section#cc_s1 {
  background-image: url(img/hero-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  margin-bottom: 148px;
}

section#cc_s1 .container {
  padding-top: 64px;
}

section#cc_s1 .info {
  color: #eceff0;
  text-align: left;
  padding-top: 44px;
  padding-bottom: 52px;
}

section#cc_s1 .info .desc {
  margin-left: 0;
}

section#cc_s1 h1 {
  color: #f1f2f4;
}

section#cc_s1 h3 {
  color: #f1f2f4;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
}

section#cc_s1 .img {
  max-width: 561px;
  padding: 0 24px;
}

section#cc_s1 .img img {
  transform: translateY(196px);
  margin-top: -196px;
}

section#cc_s2 {
  padding: 80px 24px;
}

section#cc_s2 .info {
  padding: 0;
}

section#cc_s2 h2 {
  margin-bottom: 16px;
}

section#cc_s2 .img {
  display: flex;
  justify-content: center;
}

section#cc_s2 .img .holder {
  flex: 0 0 70%;
  margin-top: 24px;
  min-width: 243px;
}

section#cc_s2 .img .note {
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  line-height: 1.39;
  margin-top: 52px;
}

section#cc_s3 {
  padding: 0 24px;
}

section#cc_s3 h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 32px;
}

section#cc_s3 .container {
  border-radius: 20px;
  overflow: hidden;
  max-width: 550px;
  margin: 0 auto;
}

section#cc_s3 .img {
  background-image: url(img/friends.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 270px;
}

section#cc_s3 .info {
  color: #000;
  font-weight: 300;
  text-align: left;
  background-color: #fff;
  padding: 32px 24px;
}

section#cc_s3 h3 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

section#cc_s4 {
  margin: 24px 0;
}

section#cc_s4 .items {
  padding: 0 24px;
}

section#cc_s4 .items > div {
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  max-width: 550px;
  margin: 0 auto 24px;
}

section#cc_s4 .items .icon {
  padding: 24px 0 0 24px;
}

section#cc_s4 .items .icon img {
  height: 48px;
}

section#cc_s4 .items .info {
  text-align: left;
  padding: 12px 24px 24px;
}

section#cc_s4 .items .img + .info {
  padding: 32px 24px;
}

section#cc_s4 .items .info h3 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

section#cc_s4 .items .info > div {
  color: #291c12;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.3;
}

section#cc_s5 {
  margin: 120px 0 100px;
}

section#cc_s5 h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 32px;
}

section#cc_s5 h2 {
  line-height: 1.2;
  margin-bottom: 16px;
}

section#cc_s5 .img {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

section#cc_s5 .img img {
  width: 320px;
  margin-top: -32px;
  transform: translateY(32px);
}


@media screen and (min-width: 769px) {
  
  section .info {
    padding: 0 40px;
  }
  
  section .info .desc {
    font-size: 20px;
  }
  
  section .info .cta .cc-btn {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  section#cc_s1 {
    margin-bottom: 120px;
    background-image: url(img/hero-bg-lg.jpg);
  }
  
  section#cc_s1 .container {
    padding-top: 99px;
  }
  
  section#cc_s1 .info {
    padding-bottom: 80px;
  }
  
  section#cc_s1 h1 {
    margin: 18px 0 24px;
    max-width: 60%;
  }
  
  section#cc_s1 h3 {
    font-size: 16px;
  }
  
  section#cc_s1 .img {
    padding: 0 40px;
  }
  
  section#cc_s1 .img img {
    transform: translateY(120px);
    margin-top: -120px;
  }
  
  section#cc_s2 .info {
    padding-top: 64px;
  }
  
  section#cc_s2 h2 {
    font-size: 52px;
    margin-bottom: 24px;
  }
  
  section#cc_s2 .img .holder {
    margin-top: 64px;
    margin-bottom: -160px;
    max-width: 550px;
  }
  
  section#cc_s3 {
    margin-top: 170px;
  }
  
  section#cc_s3 .info .desc {
    margin-left: 0;
  }
  
  section#cc_s3 .info {
    padding: 32px;
  }
  
  section#cc_s3 h2 {
    font-size: 52px;
    line-height: 1;
    max-width: 630px;
    margin: 0 auto 40px;
  }
  
  section#cc_s3 h3 {
    font-size: 32px;
  }
  
  section#cc_s4 .items .icon {
    padding: 32px 0 0 32px;
  }
  
  section#cc_s4 .items .info {
    padding: 16px 32px 32px;
  }
  
  section#cc_s4 .items .info > div {
    font-size: 20px;
  }
  
  section#cc_s4 .items .img + .info {
    padding: 32px;
  }
  
  section#cc_s5 h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  
  section#cc_s5 .info .desc {
    font-size: 20px;
    max-width: 640px;
  }
  
  section#cc_s5 .img img {
    width: 481px;
  }

}

@media screen and (min-width: 993px) {
  
  section .info .desc {
    max-width: 600px;
  }
  
  section#cc_s1 {
    margin-bottom: 90px;
  }
  
  section#cc_s1 .info {
    padding-top: 64px;
  }
  
  section#cc_s2 {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  section#cc_s2 h2 {
    font-size: 72px;
  }
  
  section#cc_s2 .info .desc {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  
  section#cc_s2 .img .holder {
    margin-top: 60px;
    margin-bottom: 0;
    flex: 1 1 100%;
    max-width: unset;
  }
  
  section#cc_s2 .img img {
    margin: 0 auto;
  }
  
  section#cc_s3 {
    padding: 0 40px;
    margin-top: 80px;
  }
  
  section#cc_s3 .container {
    display: flex;
    min-height: 340px;
    max-width: 1328px;
  }
  
  section#cc_s3 .info {
    padding: 64px;
    flex: 1 1 0%;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  section#cc_s3 .img {
    flex: 0 1 42%;
    order: 2;
    height: auto;
  }
  
  section#cc_s3 h2 {
    font-size: 72px;
    max-width: 766px;
    margin: 0 auto 80px;
  }
  
  section#cc_s3 h3 {
    font-size: 48px;
    line-height: 1.1;
  }
  
  section#cc_s4 {
    margin-top: 64px;
  }
  
  section#cc_s4 .items {
    display: flex;
    justify-content: space-between;
  }
  
  section#cc_s4 .items > div {
    flex: 0 1 394px;
    margin: 0 16px;
  }
  
  section#cc_s5 {
    padding: 0 40px;
    margin: 140px 0;
  }
  
  section#cc_s5 .container {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
  }
  
  section#cc_s5 .info {
    text-align: left;
    padding: 58px 64px;
    flex: 0 1 620px;
  }
  
  section#cc_s5 .info .desc {
    max-width: unset;
  }
  
  section#cc_s5 .img {
    flex: 0 0 481px;
    margin: 0;
  }
  
  section#cc_s5 .img img {
    margin: -32px 0 -44px 0;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section .container {
    max-width: 1280px;
    margin: 0 auto;
  }
  
  section .info h2 {
    font-size: 72px;
  }
  
  section#cc_s1 .img {
    max-width: 693px;
  }
  
  section#cc_s4 .container {
    max-width: 1408px;
  }
  
  section#cc_s4 .items .info h3 {
    font-size: 32px;
  }
  
  section#cc_s5 .info {
    padding: 64px;
    flex: 0 1 688px;
  }
  
}


/* Footer */

footer {
  color: #08090b;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

footer .container {
  text-align: center;
  padding: 24px;
}

footer .menu a {
  color: #08090b;
  display: inline-block;
}

footer .menu a:not(:last-child) {
  margin-right: 20px;
}

footer .menu a:hover {
  text-decoration: underline;
}
 
footer .copyright {
  padding-top: 8px;
}

@media screen and (min-width: 769px) {
  
  footer {
    font-size: 14px;
  }
  
  footer .container {
    padding: 24px 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  footer .container {
    text-align: left;
    max-width: 1280px;
    margin: 0 auto;
  }

  footer .menu {
    float: left;
    position: relative;
    z-index: 1;
  }

  footer .copyright {
    text-align: right;
    padding-top: 0;
  }
  
}


/* IE11/Edge specific rules */

_:-ms-fullscreen, :root body { 
  min-height: 100vh;
}
