
* {
  padding: 0;
  margin: 0;
}

html, body {
  border: 0;
  font-size: 18px;
  line-height: 23px;
  font-family: 'Roboto', sans-serif, arial, Helvetica;
  font-weight: 400;
  color: #193c4c;
  background-color: #f2eee9;
  height: 100%;
}

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

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

.striked {
  text-decoration: line-through;
}

.txtred {
  color: #cc0d0d;
}


/* Components - Button */

.cc-btn, .cc-btn:visited {
  display: inline-block;
  background-color: #df0715;
  background-image: linear-gradient(to bottom, #f55 -34%, #c70707 98%);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.167;
  letter-spacing: 0.2px;
  text-align: center;
  padding: 17px 39px;
  border: 0 none;
  border-radius: 12px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 15px 25px 0 rgba(182, 34, 34, 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;
}


/* Header */

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

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

header .primary {
  opacity: 1;
  position: relative;
	transition: all 200ms ease;
  background-color: #fff;
  z-index: 1;
}

header .primary .container {
  height: 60px;
}

header .secondary {
  opacity: 0;
  position: relative;
  display: flex;
	background-color: #f2eee9;
	transition: all 200ms ease;
}

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

header .logo a {
  display: block;
  padding-bottom: 4px;
}

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

header .langs {
  white-space: nowrap;
}

header .langs > * {
  color: #003d73;
  font-size: 16px;
  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: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex: 1 1 auto;
  text-align: center;
}

header .secondary .hlight .txtred {
  font-weight: 700;
}

header .secondary .cta {
  opacity: 0;
  display: none;
  min-height: 60px;
  transition: opacity 0.5s 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 {
  height: 60px;
  max-height: 60px;
  background-color: #fff;
  box-shadow: 0 10px 20px 0 rgba(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 {
  margin-top: -100%;
  box-shadow: 0 6px 10px 0 rgba(182, 34, 34, 0.34);
  transition: margin .2s ease, box-shadow .15s linear;
}

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

header.sticky .secondary .cta.show .cc-btn {
  margin-top: 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.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;
  }
  
  header.sticky .secondary .hlight.show {
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  
}

@media screen and (max-width: 1023px) {
  
  header .secondary .cta .cc-btn {
    text-transform: capitalize;
  }
  
  header .secondary .cta .cc-btn span {
    display: none;
  }
  
}

@media screen and (min-width: 769px) {
  
  header {
    position: absolute;
  }
  
  header .container {
    padding: 0 40px;
  }
  
  header .logo a {
    padding-bottom: 6px;
  }
  
  header .logo img {
    width: 196px;
  }
  
  header .langs > * {
    font-size: 18px;
  }
  
  header .primary {
    background-color: transparent;
  }
  
  header .primary .container {
    height: 70px;
  }
  
  header .primary.active + .secondary {
    height: 35px;
    max-height: 35px;
  }
  
  header .secondary {
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(219, 219, 219, .3);
  }
  
  header .secondary .hlight {
    font-size: 16px;
  }
  
  header .secondary .cta {
    min-height: 50px;
  }
  
  header.sticky {
    top: -70px;
  }
  
  header.sticky .primary {
    box-shadow: none;
    opacity: 1;
    max-height: 75px;
    overflow: visible;
  }
  
  header.sticky .secondary .cta.show .cc-btn {
    margin-top: 6px;
  }
  
}

@media screen and (min-width: 993px) {
  
  header .container {
    margin: 0 auto;
    max-width: 1200px;
  }
  
  header .primary .container {
    height: 100px;
  }
  
  header .primary .logo img {
    width: 250px;
  }
  
  header .primary.active + .secondary {
    height: 50px;
    max-height: 50px;
  }
  
  header:not(.sticky) .secondary .hlight {
    font-size: 18px;
  }
  
  header.sticky {
    top: 0;
  }
  
  header.sticky .primary {
    max-height: 100px;
  }
  
  header.sticky .secondary {
    position: fixed;
    top: -85px;
    left: 0;
    right: 0;
    transform: translateY(85px);
  }
  
  header.sticky .secondary .hlight {
    display: block;
  }
  
  header.hidden .secondary {
    transform: translateY(0);
  }
  
}

@media screen and (min-width: 1281px) {
  
  header .container {
    padding: 0;
  }
  
}


/* Main */

h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.info .items {
  margin-top: 32px;
}

.info .item {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
}

.info .item .icon {
  flex: 0 0 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -3px 16px 0 0;
}

.info .item .title,
.info .item strong {
  font-weight: 700;
}

.info .item .title {
  margin-bottom: 2px;
}

.cta-wrapper {
  padding: 16px 0 18px;
  background-color: #fff;
}

.cta-wrapper .cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-wrapper .cta > div {
  font-size: 12px;
  font-weight: 500;
}

.cta-wrapper .cta .txtred {
  font-size: 16px;
  font-weight: 700;
}

.cta-wrapper .cta .cc-btn {
  font-size: 18px;
  padding: 12px 20px;
  margin-top: 10px;
}

.cta-wrapper .cta .cc-btn:hover {
  box-shadow: none;
}

section .info {
  padding-left: 24px;
  padding-right: 24px;
}

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

section#hero {
  color: #193c4c;
  padding-top: 90px;
  background-image: url(img/hero-x2-mb.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  min-height: 100vh;
}

section#hero .container {
  padding-top: 50px;
  padding-bottom: 390px;
  overflow: hidden;
}

section#hero .info {
  position: relative;
  max-width: 520px;
  z-index: 1;
}

section#hero .info h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0 36px;
}

section#hero .info h2 {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 28px;
}

section#hero .info h2 br {
  display: none;
}

section#hero .info h2 span {
  display: block;
  background-size: 156px;
}

section#hero .info h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.23;
}

section#hero .cta {
  padding-bottom: 50px;
}

section#hero .cta .offer {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.8;
  margin-top: 10px;
  opacity: 0.9;
}

section#hero .img {
  display: none;
}

section#benefits .img-wrapper {
  overflow: hidden;
}

section#benefits .img-wrapper .img {
  margin: 0 -42px 0 24px;
}

section#benefits .img-wrapper img {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

section#benefits .info {
  padding-top: 48px;
  padding-bottom: 28px;
}

section#flexi .container {
  background-color: #9d381f;
  color: #fff;
}

section#flexi .info {
  padding-top: 60px;
  padding-bottom: 48px;
}

section#flexi .img {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  height: 500px;
}

section#flexi .img img {
  width: 170%;
  max-width: unset;
}

section#earn {
  background-color: #196d87;
  color: #eaf9ff;
}

section#earn .info {
  padding-top: 60px;
  padding-bottom: 18px;
}

section#earn .items {
  opacity: 0.95;
}

section#earn .item > span {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

section#earn .note {
  font-size: 14px;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 32px;
}

section#earn .img {
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-items: center;
  align-items: center;
}

section#earn .img img {
  width: 100%;
}

section#hlights .container {
  padding: 48px 24px 16px;
}

section#hlights .item {
  padding-left: 32px;
  margin-bottom: 32px;
  background-image: url(img/icons/icon-check.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left top;
}

section#hlights .item .title {
  font-weight: 700;
  line-height: 1.38;
  margin-bottom: 2px;
}

@media screen and (min-width: 769px) {
  
  section .info {
    font-size: 20px;
    line-height: 1.29;
    padding-left: 40px;
    padding-right: 40px;
    max-width: unset;
  }
  
  section h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  
  section .items {
    font-size: 18px;
    line-height: 1.3;
  }
  
  section#hero {
    color: #fff;
    padding-top: 105px;
    background-image: url(img/hero-x2.jpg);
    min-height: 0;
  }
  
  section#hero .container {
    padding-top: 85px;
    padding-bottom: 130px;
  }
  
  section#hero .info h1 {
    font-size: 52px;
    margin-top: 18px;
  }
  
  section#hero .info h2 {
    font-size: 24px;
    font-weight: 400;
  }
  
  section#hero .info h3 {
    font-size: 22px;
    text-shadow: 0 0 4px rgba(151, 151, 151, .3);
  }
  
  section#hero .info h2 span {
    margin-bottom: 32px;
    background-size: 194px;
  }
  
  section#hero .cta .offer {
    font-size: 16px;
    font-weight: 500;
    margin-top: 16px;
    opacity: 1;
  }
  
  section#hero .img {
    margin: -210px -245px 0 0;
  }
  
  section#benefits .info {
    padding-top: 72px;
    padding-bottom: 40px;
  }
  
  section#benefits .img-wrapper img {
    max-width: 568px;
  }
  
  section#flexi .info {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  
  section#earn .info {
    padding-top: 72px;
    padding-bottom: 40px;
  }
  
  section#hlights .container {
    padding: 70px 40px 32px;
  }
  
  section#hlights .items {
    max-width: unset;
  }
  
  .cta-wrapper .cta {
    padding: 12px 0;
  }
  
  .cta-wrapper .cta > div {
    font-size: 16px;
  }
  
  .cta-wrapper .cta .cc-btn {
    font-size: 22px;
    padding: 16px 36px;
  }

}

@media screen and (min-width: 993px) {
  
  .info .item {
    margin-bottom: 32px;
  }
  
  section .container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
  }
  
  section h2 {
    font-size: 34px;
    line-height: 1.18;
    margin-bottom: 44px;
  }
  
  section .items {
    font-size: 22px;
    line-height: 1.27;
  }
  
  section .item {
    margin-bottom: 40px;
  }
    
  section#hero {
    padding-top: 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
  }
  
  section#hero .container {
    padding: 130px 40px 0;
    overflow: visible;
    flex: 1 1 0%;
  }
  
  section#hero .info {
    text-align: left;
    padding: 0;
    background-image: none;
  }
  
  section#hero .info h1 {
    font-size: 70px;
    font-weight: 500;
    line-height: 1.1;
    max-width: 600px;
    margin: 30px 0 36px;
  }
  
  section#hero .info h1 span {
    display: block;
  }
  
  section#hero .info h2 {
    font-size: 34px;
    line-height: 1.18;
    margin-bottom: 44px;
  }
  
  section#hero .info h2 br {
    display: inline;
  }
  
  section#hero .info h2 span {
    display: inline-block;
    margin-bottom: 0;
    background-size: auto;
  }
  
  section#hero .cta {
    padding-bottom: 70px;
  }
  
  section#hero .cta .offer {
    font-size: 22px;
    margin-top: 22px;
  }
  
  section#hero .img {
    margin: 0;
  }
  
  section#hero .img img {
    display: none;
  }
  
  section#benefits {
    position: relative;
  }
  
  section#benefits .container {
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
  }
  
  section#benefits .info {
    padding: 124px 40px 86px 0;
    margin: 0;
    flex: 0 1 520px;
  }
  
  section#benefits .img-wrapper {
    flex: 0 1 568px;
  }
  
  section#benefits .img-wrapper .img {
    margin: 144px 0 0 0;
  }
  
  section#flexi .container {
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
  }
  
  section#flexi .info {
    font-size: 22px;
    font-weight: 300;
    flex: 1 0 564px;
    padding: 72px 32px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  section#flexi .info > * {
    max-width: 630px;
  }
  
  section#flexi .img {
    flex: 0 1 434px;
    padding: 0;
    display: flex;
    align-items: center;
    height: auto;
    background-image: url(img/flexipay.jpg);
    background-size: cover;
    background-position: center;
  }
  
  section#flexi .img img {
    display: none;
  }
  
  section#flexi h2 {
    margin-bottom: 12px;
  }
  
  section#earn {
    margin-top: 100px;
  }
  
  section#earn .container {
    display: flex;
    padding: 0;
    max-width: unset;
  }
  
  section#earn .info {
    order: 2;
    flex: 0 1 570px;
    padding: 100px 40px 68px 64px;
  }
  
  section#earn .img {
    order: 1;
    flex: 0 1 50%;
    background-image: url(img/earn.jpg);
    background-size: cover;
    background-position: center top;
    max-height: unset;
  }
  
  section#earn .img img {
    display: none;
  }
  
  section#hlights .container {
    padding: 100px 40px 64px;
  }
  
  section#hlights .items .group {
    display: flex;
    padding: 0 16px;
  }
  
  section#hlights .item {
    flex: 0 1 50%;
  }
  
  section#hlights .item:first-child {
    padding-right: 64px;
  }
  
  section#hlights .item .title {
    margin-top: -3px;
  }
  
  .cta-wrapper {
    padding: 16px 0;
  }
  
  .cta-wrapper .cta {
    padding: 0 40px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  
  .cta-wrapper .cta .cc-btn {
    font-size: 24px;
    padding: 17px 39px;
    margin: 0 0 0 32px;
  }
  
  .cta-wrapper .cta > div,
  .cta-wrapper .cta .txtred {
    font-size: 20px;
  }

}

@media screen and (min-width: 1450px) {
  
  section#hero {
    background-position: center;
  }
  
  section#earn {
    margin-top: 120px;
  }
  
  section#earn .info {
    padding: 140px 40px 80px 92px;
  }
  
  .cta-wrapper .cta > div,
  .cta-wrapper .cta .txtred {
    font-size: 22px;
  }
  
}


/* Side navigation */

#cc_sidenav {
  position: fixed;
  right: 3px;
  bottom: 50%;
  margin-bottom: -55px;
  display: flex;
  flex-direction: column;
  z-index: 10;
  opacity: 0;
  transition: opacity .2s linear;
}

#cc_sidenav.show {
  opacity: 1;
}

#cc_sidenav a {
  width: 24px;
  height: 30px;
  position: relative;
  opacity: 0.5;
  transition: opacity .2s linear;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#cc_sidenav .active {
  opacity: 1;
}

#cc_sidenav a:after {
  content: "";
  position: absolute;
  top: 11px;
  left: 7px;
  height: 11px;
  width: 11px;
  background-color: #193c4c;
  border-radius: 6px;
}

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

  #cc_sidenav a {
    height: 40px;
  }

  #cc_sidenav a:after {
    top: 13px;
    left: 3px;
    height: 18px;
    width: 18px;
    border-radius: 9px;
  }
  
}

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


/* Footer */

footer {
  color: #5285b4;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.39;
  text-align: center;
}

footer .container {
  padding: 48px 24px 24px;
}

footer .menu a {
  color: #4a90e2;
  display: inline-block;
}

footer .menu a:not(:first-child) {
  padding-left: 7px;
}

footer .menu a:not(:last-child) {
  margin-right: 7px;
}

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

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

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

  footer .menu {
    float: left;
  }

  footer .copyright {
    text-align: right;
    font-size: 13px;
    padding-top: 0;
  }
  
}
