
* {
  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: #0f3d62;
  background-color: #fff;
  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: #ff2f2f;
  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 1px 16px 0 rgba(182, 34, 34, 0.34);
  transition: all .15s linear;
  user-select: none;
}

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

.cc-btn:hover {
  color: #fff;
  background-color: #df0715;
  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: #0f3d62;
  z-index: 1;
}

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

header .secondary {
  opacity: 0;
  position: relative;
  display: flex;
	background-color: #f2f2f2;
	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: #fff;
  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 {
  color: #0f3d62;
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
  flex: 1 1 auto;
  text-align: center;
}

header .secondary .hlight span {
  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 1px 10px 0 rgba(182, 34, 34, 0.34);
  transition: all .15s linear, margin .2s ease;
}

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: 38px;
    max-height: 38px;
  }
  
  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 */

main {
  overflow: hidden;
}

.hero {
  background-image: linear-gradient(129deg, #0f3d62 0%, #08263e 100%);
}

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

section#cc_s1 {
  color: #fefcf4;
  background-image: url(img/hero-bg.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 820px;
  min-height: 100vh;
}

section#cc_s1 .container {
  padding: 132px 0 320px;
  overflow: hidden;
}

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

section#cc_s1 .info h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  margin: 16px 0 24px;
}

section#cc_s1 .info h3 {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.23;
}

section#cc_s1 .info .desc {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 28px;
  max-width: 400px;
  opacity: 0.9;
}

section#cc_s2 {
  color: #fff;
  padding: 24px 0 64px;
}

section#cc_s2 .item:first-child {
  border-top: solid 1px rgba(255, 255, 255, 0.2);
}

section#cc_s2 .item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section#cc_s2 .item .icon {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 40px;
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#cc_s2 .item h4 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
}

section#cc_s3,
section#cc_s4 {
  background-image: linear-gradient(to bottom, #fff 0%, #f2f2f2 100%);
  padding: 40px 0 52px;
}

section#cc_s3 .info h2,
section#cc_s4 .info h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  margin: 24px 0;
}

section#cc_s3 .info .desc,
section#cc_s4 .info .desc {
  font-weight: 300;
  line-height: 1.3;
}

section#cc_s3 .desc p:not(:first-child) {
  margin-top: 24px;
}

section#cc_s3 .img img,
section#cc_s4 .img img {
  width: 500px;
  margin: 0 auto;
}

section#cc_s4 {
  padding-bottom: 120px;
}

section#cc_s4 .info h2 {
  font-weight: 500;
  margin-top: 0;
}

section#cc_s4 .cta {
  margin: 32px 0;
}

section#cc_s5 {
  padding-bottom: 150px;
  background-color: #f2f2f2;
}

section#cc_s5 .container {
  color: #fff;
  background-color: #0f3d62;
  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;
  line-height: 1.1;
}

section#cc_s5 .desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  margin: 16px auto 24px;
}

section#cc_s5 .cta a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  padding: 8px 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 132px;
  min-height: 28px;
  border-radius: 10px;
  border: solid 2px #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 {
    font-size: 20px;
    line-height: 1.29;
    padding-left: 40px;
    padding-right: 40px;
    max-width: unset;
  }
  
  section#cc_s1 {
    padding-top: 108px;
    background-size: 992px;
  }
  
  section#cc_s1 .container {
    padding-top: 85px;
    padding-bottom: 130px;
  }
  
  section#cc_s1 .info h1 {
    font-size: 52px;
    margin-top: 18px;
  }
  
  section#cc_s1 .info .desc {
    font-size: 24px;
  }
  
  section#cc_s2 {
    padding-top: 8px;
  }
  
  section#cc_s2 .info {
    display: flex;
  }
  
  section#cc_s2 .item {
    flex: 1 1 0%;
    padding: 0 24px;
    border-top: solid 1px rgba(255, 255, 255, 0.2);
  }
  
  section#cc_s2 .item .icon {
    margin-top: 50px;
  }
  
  section#cc_s2 .item h4 {
    margin-top: 24px;
  }
  
  section#cc_s3, section#cc_s4 {
    padding: 80px 0;
  }
  
  section#cc_s3 .info h2, 
  section#cc_s4 .info h2 {
    font-size: 44px;
    margin-top: 0;
  }
  
  section#cc_s3 .container,
  section#cc_s4 .container {
    display: flex;
    flex-flow: row-reverse;
    align-items: center;
  }
  
  section#cc_s3 .info,
  section#cc_s4 .info {
    flex: 1 1 60%;
  }
  
  section#cc_s3 .img,
  section#cc_s4 .img {
    flex: 0 0 40%;
  }
  
}

@media screen and (min-width: 993px) {
  
  section .container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
  }
  
  section .info {
    padding-left: 0;
    padding-right: 0;
  }
  
  section#cc_s1 {
    padding-top: 150px;
    background-size: 1280px;
  }
  
  section#cc_s1 .container {
    padding: 90px 40px 0;
    overflow: visible;
    flex: 1 1 0%;
  }
  
  section#cc_s1 .info {
    text-align: left;
    padding: 0;
    background-image: none;
  }
  
  section#cc_s1 .info h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    margin: 28px 0 32px;
  }
  
  section#cc_s1 .info h3 {
    font-size: 20px;
  }
  
  section#cc_s1 .info .desc {
    font-size: 24px;
    line-height: 1.21;
    margin-bottom: 36px;
    max-width: 480px;
  }
  
  section#cc_s2 .item h4 {
    font-size: 22px;
  }
  
  section#cc_s3 .container > div,
  section#cc_s4 .container > div {
    flex: 0 0 50%;
  }
  
  section#cc_s3 .info h2, 
  section#cc_s4 .info h2 {
    font-size: 54px;
  }
  
  section#cc_s3 .desc,
  section#cc_s4 .desc {
    font-size: 22px;
    max-width: 500px;
  }
  
  section#cc_s3 .img img, 
  section#cc_s4 .img img {
    width: auto;
  }
  
  section#cc_s5 {
    padding: 0 40px 150px;
  }
  
  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#cc_s1 {
    min-height: 0;
    background-position: center;
    background-size: cover;
  }
  
  section#cc_s1 .container {
    padding-bottom: 210px;
  }
  
  section#cc_s1 .info {
    max-width: 640px;
  }
  
  section#cc_s3 .container .info,
  section#cc_s4 .container .info {
    flex-basis: 45%;
  }
  
  section#cc_s3 .container .img,
  section#cc_s4 .container .img {
    flex-basis: 55%;
  }

  section#cc_s3 .info h2, 
  section#cc_s4 .info h2 {
    font-size: 64px;
  }
  
  section#cc_s3 .desc,
  section#cc_s4 .desc {
    font-size: 24px;
  }
  
  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%);
  }
  
}


/* 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;
  padding: 52px 24px 64px;
  position: relative;
}

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

#cc_popup label {
  display: block;
  max-width: 500px;
  margin: 0 auto;
  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 {
  text-align: center;
  display: block;
  border: solid 5px #f3f3f3;
  border-radius: 24px;
  background-color: #fff;
  transition: all .2s linear;
}

#cc_popup label input:checked ~ .rbtn {
  color: #fff;
  background-color: #0f3d62;
}

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

#cc_popup .cta button:disabled {
  background-color: #ff2f2f;
  box-shadow: none;
  opacity: 0.3;
  cursor: not-allowed;
}

#cc_popup .card {
  margin-top: 56px;
}

#cc_popup .card label:first-child {
  margin-bottom: 64px;
}

#cc_popup .card .img {
  margin: -52px auto 0;
  width: 192px;
}

#cc_popup .card .rbtn {
  padding: 12px 12px 24px;
  position: relative;
}

#cc_popup .card .rbtn > span {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  margin: 16px 0 12px;
}

#cc_popup .card .info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#cc_popup .card .info .offer {
  font-weight: 500;
}

#cc_popup .card .info .price {
  font-size: 14px;
}

#cc_popup .customer {
  margin-top: 40px;
}

#cc_popup .customer .rbtn {
  padding: 10px;
  margin-top: 16px;
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#cc_popup .customer .rbtn > span {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

@media screen and (min-width: 769px) {
  
  #cc_popup .dialog {
    padding: 0 24px;
  }
  
  #cc_popup .content {
    padding: 90px 0;
    position: static;
  }
  
  #cc_popup .card label:first-child {
    margin-bottom: 108px;
  }
  
  #cc_popup .card .rbtn > span {
    font-size: 30px;
    margin: 24px 0 16px;
  }
  
  #cc_popup .card .info .offer {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  #cc_popup .card .img {
    margin: -80px auto 0;
    width: 294px;
  }
  
  #cc_popup .customer {
    margin-top: 52px;
  }
  
  #cc_popup .customer .rbtn {
    min-height: 58px;
    margin-top: 24px;
  }
  
  #cc_popup .customer .rbtn > span {
    font-size: 20px;
  }
  
  #cc_popup .cta {
    margin-top: 52px;
  }
  
}

@media screen and (min-width: 993px) {
  
  #cc_popup {
    align-items: center;
    padding-top: 24px;
  }
  
  #cc_popup .dialog {
    padding: 0 30px;
  }
  
  #cc_popup .close {
    top: 52px;
    right: 64px;
    width: 32px;
  }
  
  #cc_popup .card .items {
    display: flex;
    justify-content: center;
  }
  
  #cc_popup .card label {
    flex: 1 1 0%;
    display: flex;
    max-width: 620px;
  }
  
  #cc_popup .card label:first-child {
    margin: 0 16px 0 0;
  }
  
  #cc_popup .card label:last-child {
    margin-right: 0;
    margin-left: 16px;
  }
  
  #cc_popup .card .rbtn {
    padding: 40px 32px 52px;
    flex: 1 1 auto;
  }
  
  #cc_popup .card .rbtn > span {
    font-size: 36px;
    line-height: 1.1;
    margin-top: 52px;
  }
  
  #cc_popup .card label:last-child .rbtn > span {
    margin-top: 36px;
  }
  
  #cc_popup .card .rbtn > span br {
    display: none;
  }
  
  #cc_popup .card .img {
    height: 155px;
    margin-top: -108px;
  }
  
  #cc_popup .card label:last-child .img {
    margin-top: -92px;
  }
  
  #cc_popup .customer {
    margin-top: 56px;
    margin-bottom: 56px;
  }
  
  #cc_popup .customer .items {
    display: flex;
    justify-content: center;
  }
  
  #cc_popup .customer label {
    flex: 0 1 380px;
  }
  
  #cc_popup .customer label:first-child {
    margin-right: 16px;
  }
  
  #cc_popup .customer label:last-child {
    margin-left: 16px;
  }
  
  #cc_popup .customer .rbtn {
    margin-top: 0;
  }
  
}


/* 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.4;
  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: #0f3d62;
  border-radius: 6px;
  box-shadow: 0 0 2px #fff;
}

@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: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.39;
  text-align: center;
  background-color: #0f3d62;
}

footer .container {
  padding: 24px;
}

footer .menu a {
  color: #fff;
  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 {
  font-size: 12px;
  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;
  }
  
}
