
/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

@font-face {
  font-family: "CornerDisplay";
  src: url("fonts/CornerDisplayBETA03-Regular.woff2") format('woff2');
}

@font-face {
  font-family: "CornerDisplay";
  src: url("fonts/CornerDisplayBETA03-Bold.woff2") format('woff2');
  font-weight: bold;
}


/* 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: CornerDisplay, sans-serif, arial, Helvetica;
  color: #000;
  background-color: #fff;
  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;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 16px 0 24px;
}

h2 {
  font-size: 40px;
  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: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  padding: 8px 24px 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #df0715;
  min-height: 56px;
  border: 0 none;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  transition: background-color .15s linear;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

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

.cc-btn:hover {
  color: #fff;
  background-color: #c10612;
}


/* Header */

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 100;
  transition: transform 0.3s ease;
}

header .primary {
  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 .logo a {
  display: block;
  padding: 24px 24px 26px;
}

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

header .langs {
  font-family: Roboto, sans-serif, arial, Helvetica;
  padding-right: 24px;
  white-space: nowrap;
}

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

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

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

header .secondary .hlight {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  flex: 1 0 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 16px 12px 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: 16px;
  line-height: 1.2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px 4px;
  text-transform: uppercase;
  min-height: 36px;
}

header.hide {
  position: fixed;
  transform: translateY(-65px);
  transition: none;
}

header.sticky {
  position: fixed;
  transform: translateY(-65px);
}

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.hide {
    transform: translateY(-100px);
  }
  
  header .logo {
    flex: 0 0 auto;
  }
  
  header .primary .logo img {
    width: 251px;
  }
  
  header .primary .logo a {
    padding: 34px 0 40px 40px;
  }
  
  header .langs {
    padding-right: 40px;
  }
  
  header .primary {
    max-height: none;
  }
  
  header .secondary .container {
    justify-content: center;
  }
  
  header .secondary .hlight {
    font-size: 20px;
    flex: 0 0 auto;
    padding-right: 24px;
  }
  
  header .secondary .hlight br {
    display: none;
  }
  
  header .secondary .cta {
    padding-right: 40px;
  }
  
  header .secondary .cta .cc-btn {
    font-size: 20px;
    letter-spacing: 0.6px;
    padding: 8px 32px 4px;
    min-height: 56px;
  }
  
  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: 993px) {
  
  header .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header .primary .logo a {
    padding: 34px 0 40px 40px;
  }
  
  header .secondary .cta .cc-btn {
    padding-left: 44px;
    padding-right: 44px;
  }  
  
}

@media screen and (min-width: 1281px) {
  
  header .logo img {
    width: 202px;
  }
  
}


/* Main */

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

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


/* Popup */

#cc_popup {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow-x: hidden;
  overflow-y: scroll;
  outline: 0;
  align-items: flex-start;
  justify-content: center;
  z-index: 101;
}

#cc_popup .dialog {
  flex: 1 1 auto;
}

#cc_popup .content {
  text-align: center;
  font-family: Roboto, sans-serif, arial, Helvetica;
  padding: 64px 24px;
  position: relative;
}

#cc_popup .close {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  z-index: 1;
}

#cc_popup h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
  text-transform: uppercase;
  line-height: 1.29;
  margin-bottom: 10px;
}

#cc_popup .desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.25;
  max-width: 600px;
  margin: 0 auto 30px;
}

#cc_popup label {
  display: block;
  max-width: 400px;
  margin: 0 auto 16px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#cc_popup label input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

#cc_popup .rbtn {
  display: block;
  padding: 11px;
  border: solid 2px #e4e9ee;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 60px 0 rgba(197, 205, 213, 0.4);
  transition: all .2s linear;
}

#cc_popup .rbtn > span {
  display: block;
  opacity: 0.5;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.37;
  text-transform: uppercase;
  letter-spacing: 0.41px;
  transition: opacity .2s linear;
}

#cc_popup label input:checked ~ .rbtn {
  border-color: #822850;
  box-shadow: none;
}

#cc_popup label input:checked ~ .rbtn > span {
  opacity: 1;
}

#cc_popup .cta {
  margin-top: 60px;
}

#cc_popup .cta .cc-btn {
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
}

#cc_popup .customer {
  margin-bottom: 60px;
}

#cc_popup .card h2 {
  margin-bottom: 30px;
}

#cc_popup .card .rbtn {
  padding: 13px;
  text-align: left;
  position: relative;
}

#cc_popup .card .img {
  width: 70px;
  position: absolute;
  top: 14px;
  left: 14px;
}

#cc_popup .card .rbtn > span {
  padding-left: 90px;
}

#cc_popup .card .info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 12px;
  line-height: 1.29;
}

#cc_popup .card .info .offer {
  font-weight: 700;
  margin-right: 15px;
}

#cc_popup .card .info .price {
  font-weight: 300;
}

@media screen and (min-width: 769px) {
  
  #cc_popup .content {
    padding: 112px 24px;
  }
  
  #cc_popup .dialog {
    padding: 0 24px;
  }
  
  #cc_popup .content {
    position: static;
  }

  #cc_popup .close {
    top: 24px;
    right: 24px;
  }
  
}

@media screen and (min-width: 993px) {
  
  #cc_popup {
    background-color: #fff;
  }
  
  #cc_popup .dialog {
    padding: 0 30px;
  }
  
  #cc_popup .close {
    top: 64px;
    right: 64px;
    width: 42px;
  }
  
  #cc_popup h2 {
    font-size: 30px;
    line-height: 1.17;
    margin-bottom: 12px;
  }
  
  #cc_popup .desc {
    font-size: 18px;
    line-height: 1.39;
    max-width: 700px;
    margin-bottom: 35px;
  }
  
  #cc_popup label {
    max-width: 590px;
    margin: 0 auto;
  }
  
  #cc_popup .rbtn {
    padding: 25px;
    border-width: 4px;
    border-radius: 8px;
    background-color: #fff;
  }
  
  #cc_popup .rbtn > span {
    font-size: 22px;
    letter-spacing: 0.5px;
  }
  
  #cc_popup .customer {
    margin-bottom: 70px;
  }
  
  #cc_popup .customer .items {
    max-width: 735px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  
  #cc_popup .customer label {
    flex: 1 0 50%;
  }
  
  #cc_popup .customer label:first-child {
    margin-right: 13px;
  }
  
  #cc_popup .customer label:last-child {
    margin-left: 13px;
  }
  
  #cc_popup .card .rbtn {
    padding: 24px 16px 24px 24px;
    min-height: 154px;
  }
  
  #cc_popup .card label:first-child {
    margin-bottom: 24px;
  }
  
  #cc_popup .card .img {
    width: 154px;
    top: 24px;
    left: 24px;
  }
  
  #cc_popup .card .rbtn > span {
    padding-left: 176px;
  }
  
  #cc_popup .card .rbtn > span br {
    display: none;
  }
  
  #cc_popup .card .info {
    padding-left: 176px;
    flex-direction: column;
  }
  
  #cc_popup .card .info .price {
    order: 1;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
  }
  
  #cc_popup .card .info .offer {
    order: 2;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.63;
    margin: 0;
  }
  
  #cc_popup .cta {
    margin-top: 76px;
  }
  
}


/* Sections */

section .info {
  text-align: center;
  padding: 0 24px;
}

section .info .desc {
  font-size: 20px;
  font-weight: 300;
  font-family: Roboto, sans-serif, arial, Helvetica;
  line-height: 1.3;
}

section#cc_s1 {
  min-height: 100vh;
  background-image: url(img/cc-flying-cards.png);
  background-repeat: no-repeat;
  background-size: 770px;
  background-position: center bottom;
}

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

section#cc_s1 .info {
  padding-bottom: 240px;
}

section#cc_s1 .info .desc {
  color: #291c12;
}

section#cc_s1 h3 {
  color: #291c12;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
}

section#cc_s1 .cta {
  margin-top: 40px;
}

section#cc_s2 {
  margin-top: 72px;
}

section#cc_s2 .container {
  background-color: #fff;
}

section#cc_s2 .info {
  color: #000;
  /*padding-top: 72px;
  */
  
}

section#cc_s2 .info h2 {
  text-transform: uppercase;
  margin-bottom: 16px;
}

section#cc_s2 .info .desc {
  color: #000;
}

section#cc_s2 .img {
  display: flex;
}

section#cc_s2 .img img {
  max-width: unset;
  width: 902px;
  margin-left: -50px;
  margin-top: -106px;
  transform: translateY(92px);
}

section#cc_s3 {
  margin-top: 190px;
}

section#cc_s3 .container {
  padding-top: 78px;
  background-color: rgba(7, 93, 167, 0.15);
}

section#cc_s3 h2 {
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

section#cc_s3 .img {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

section#cc_s3 .img img {
  width: 320px;
  margin-top: -32px;
  transform: translateY(32px);
}

section#cc_s4 {
  margin: 124px 0;
}

section#cc_s4 .items {
  padding: 0 24px;
}

section#cc_s4 .items > div {
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto 40px;
}

section#cc_s4 .items .info {
  text-align: left;
  padding: 20px 24px;
}

section#cc_s4 .items .info h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

section#cc_s4 .items .info > div {
  color: #291c12;
  line-height: 1.3;
  font-family: Roboto, sans-serif, arial, Helvetica;
}

section#cc_s5 {
  margin-bottom: 110px;
}

section#cc_s5 .container {
  color: #fff;
  background-color: #2e4291;
  position: relative;
}

section#cc_s5 .info {
  text-align: center;
  padding-top: 52px;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}

section#cc_s5 h2 {
  font-size: 32px;
}

section#cc_s5 .desc {
  font-size: 16px;
  margin: 16px auto 24px;
}

section#cc_s5 .cta a {
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  padding: 12px 32px 8px;
  display: inline-block;
  min-width: 260px;
  min-height: 48px;
  border-radius: 10px;
  border: solid 3px #fff;
}

section#cc_s5 .img:first-child img {
  transform: translateY(-68px);
  margin: 0 auto -68px;
}

section#cc_s5 .img:last-child img {
  transform: translateY(72px);
  margin: -72px auto 0;
}


@media screen and (min-width: 769px) {
  
  section .info {
    padding: 0 40px;
  }
  
  section .info h1,
  section .info h2 {
    font-size: 72px;
    line-height: 1;
  }
  
  section .info .desc {
    max-width: 600px;
    margin: 0 auto;
  }
  
  section#cc_s1 {
    background-size: 100%;
  }
  
  section#cc_s1 .container {
    padding-top: 160px;
  }
  
  section#cc_s1 .info h1 {
    line-height: 1;
    max-width: 850px;
    margin: 32px auto 24px;
  }
  
  section#cc_s1 .cta .cc-btn {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  section#cc_s2 .info h2 {
    margin-bottom: 24px;
  }
  
  section#cc_s2 .img {
    display: flex;
    justify-content: center;
  }

  section#cc_s2 .img img {
    margin-left: 0;
  }
  
  section#cc_s3 {
    margin-top: 220px;
  }
  
  section#cc_s3 .img img {
    width: 403px;
  }
  
  section#cc_s4 .items .info {
    padding: 30px 32px;
  }

}

@media screen and (min-width: 993px) {
  
  section#cc_s3 {
    padding: 0 40px;
  }
  
  section#cc_s3 .container {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
  }
  
  section#cc_s3 .info {
    text-align: left;
    padding: 58px 64px;
    flex: 0 1 620px;
  }
  
  section#cc_s3 .info .desc {
    max-width: unset;
  }
  
  section#cc_s3 .img {
    flex: 0 0 403px;
    margin: 0;
  }
  
  section#cc_s3 .img img {
    margin: -32px 0 -44px 0;
    transform: none;
  }
  
  section#cc_s4 {
    margin-top: 140px;
  }
  
  section#cc_s4 .items {
    display: flex;
    justify-content: space-between;
  }
  
  section#cc_s4 .items > div {
    flex: 0 1 338px;
    margin: 0 16px;
  }
  
  section#cc_s4 .items .info {
    padding: 20px 24px;
  }
  
  section#cc_s5 {
    padding: 0 40px;
    margin-bottom: 110px;
  }
  
  section#cc_s5 .container {
    padding: 0;
    display: flex;
    align-items: center;
    border-radius: 20px;
  }
  
  section#cc_s5 .info {
    padding: 48px 0;
  }
  
  section#cc_s5 .img {
    flex: 0 0 30%;
  }
  
  section#cc_s5 .img:first-child {
    padding: 0 16px 8px;
  }
  
  section#cc_s5 .img:last-child {
    padding-right: 6px;
  }
  
  section#cc_s5 .img:first-child img,
  section#cc_s5 .img:last-child img {
    margin: 0;
    transform: none;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section .info h2 {
    font-size: 72px;
  }
  
  section#cc_s1 {
    background-size: 1600px;
  }
  
  section#cc_s1 .container {
    padding-top: 185px;
  }
  
  section#cc_s1 .info {
    padding-bottom: 600px;
  }
  
  section#cc_s2 .container {
    border-radius: 20px;
  }
  
  section#cc_s3 .info {
    padding: 72px 98px;
    flex: 0 1 688px;
  }
  
  section#cc_s4 .items {
    padding: 0;
    margin: 0 -8px;
  }
  
  section#cc_s5 .container {
    display: block;
  }
 
 section#cc_s5 .info {
    margin: 0 auto;
    width: 640px;
  }
  
  section#cc_s5 .img:first-child {
    padding: 0;
    width: 346px;
    position: absolute;
    left: -64px;
    top: 50%;
    transform: translateY(-52%);
  }
  
  section#cc_s5 .img:last-child {
    padding: 0;
    width: 365px;
    position: absolute;
    right: -64px;
    top: 50%;
    transform: translateY(-50%);
  }
  
}


/* Footer */

footer {
  color: #291c12;
  font-size: 14px;
  font-weight: 400;
  font-family: Roboto, sans-serif, arial, Helvetica;
  line-height: 1.4;
}

footer .container {
  text-align: center;
  padding: 24px;
}

footer .menu a {
  color: #291c12;
  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 .container {
    padding: 24px 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  footer .container {
    text-align: left;
    max-width: 1200px;
    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;
}
