
* {
  padding: 0;
  margin: 0;
}

html, body {
  border: 0;
  font-size: 22px;
  line-height: 26px;
  font-family: 'Roboto', sans-serif, arial, Helvetica;
  font-weight: 300;
  line-height: 1.2;
  color: #243f52;
  background-color: #e0f1fc;
  height: 100%;
}

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

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

.txtred {
  color: #b71919;
}


/* Components - 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 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;
}

@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-color: #3775ae;
  background-image: radial-gradient(ellipse at 50% 200%, #c3dae8, #3775ae 96%);
	transition: all 200ms ease;
  z-index: 1;
}

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

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

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

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

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

header .langs {
  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: 400;
  white-space: nowrap;
  flex: 1 1 auto;
  text-align: center;
}

header .secondary .hlight .striked {
  opacity: 0.7;
}

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 {
  opacity: 1;
  height: 60px;
  max-height: 60px;
  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 {
  margin-top: -100%;
  box-shadow: 0 6px 10px 0 rgba(182, 34, 34, 0.34);
  transition: margin .5s 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 .logo {
    flex: 0 0 auto;
  }
  
  header .logo img {
    width: 196px;
  }
  
  header .primary {
    max-height: none;
  }
  
  header .primary.active + .secondary {
    height: 35px;
    max-height: 35px;
  }
  
  header.sticky .primary.active + .secondary {
    height: 50px;
    max-height: 50px;
  }
  
  header .secondary .hlight {
    font-size: 16px;
    font-weight: 500;
  }
  
  header.sticky {
    top: -64px;
  }
  
  header.sticky .primary {
    box-shadow: none;
    opacity: 1;
    max-height: 75px;
    overflow: visible;
  }
  
  header.sticky .secondary {
    max-height: 56px;
  }
  
  header .secondary .cta {
    min-height: 50px;
  }
  
  header.sticky .secondary .cta.show .cc-btn {
    margin-top: 7px;
  }
  
}

@media screen and (min-width: 900px) {
  
  header .container {
    width: 80%;
    padding: 0 10%;
  }
  
  header.sticky {
    top: -75px;
  }
  
  header .primary .logo a {
    padding: 34px 0 40px;
  }
  
  header .primary .logo img {
    width: 257px;
  }
  
  header .primary.active + .secondary {
    height: 50px;
    max-height: 50px;
  }
  
  header .secondary .logo {
    display: block;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  
  header.hidden {
    top: -150px;
  }
  
  header.sticky .secondary .logo {
    opacity: 1;
  }
  
  header.sticky .secondary .hlight {
    display: block;
  }
  
  header .secondary .cta,
  header.sticky .secondary .cta,
  header.sticky .secondary .cta.show {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  header.sticky .secondary .cta.show .cc-btn {
    margin-top: 0;
  }
  
}

@media screen and (min-width: 1024px) {
  
  header .secondary .hlight {
    font-size: 18px;
  }
  
}


/* Main */

ul {
  margin: 0;
  padding: 0;
}

ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
  list-style-image: none;
}

h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
}

h1 span {
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
}

h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 40px;
}

h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.content-wrapper {
  width: 86%;
  padding: 50px 7%;
  display: inline-block;
}

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

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

section .info h1 {
  font-size: 38px;
  line-height: 1.12;
  margin: 12px 0 36px;
}

section .info h3 {
  color: #fff;
  font-size: 16px;
  line-height: 1.12;
}

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

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

section#hero {
  background-color: #3775ae;
  background-image: radial-gradient(circle, #c3dae8 0%, #3775ae 100%);
}

section#hero .container {
  padding-bottom: 0;
}

.text-wrapper {
  padding: 0 0 40px 0;
  text-align: left;
  display: inline-block;
  width: 100%;
}

.image-wrapper {
  text-align: center;
  display: inline-block;
  width: 100%;
}

.text-wrapper ul li {
  margin: 0 0 32px 0;
  float: left;
  text-align: left;
}

.text-wrapper ul li i {
  float: left;
  width: 50px;
  height: 50px;
  background: transparent url(../images/cashback-icon-1.svg) no-repeat left top;
  background-size: 32px;
  margin-top: -4px;
}

.text-wrapper ul li span.title {
  font-weight: 500;
}

.text-wrapper ul li span:not(.title) {
  display: block;
  padding-left: 50px;
}

.text-wrapper ul li i.features-icon ~ span:not(.title) {
  padding-left: 32px;
}

.text-wrapper ul li span.title ~ span {
  margin-top: 4px;
}

.text-wrapper ul li i.cashback-icon-2 {
  background: transparent url(../images/cashback-icon-2.svg) no-repeat left top;
  margin-top: 0;
}

.text-wrapper ul li i.cashback-icon-3 {
  background: transparent url(../images/cashback-icon-3.svg) no-repeat left top;
  margin-top: 0;
}

.text-wrapper ul li i.usp-icon-1 {
  background: transparent url(../images/usp-icon-1.svg) no-repeat left top;
  margin-top: 0;
}

.text-wrapper ul li i.usp-icon-2 {
  background: transparent url(../images/usp-icon-2.svg) no-repeat left top;
  margin-top: 0;
}

.text-wrapper ul li i.usp-icon-3 {
  background: transparent url(../images/usp-icon-3.svg) no-repeat left top;
  margin-top: 0;
}

.text-wrapper ul li i.features-icon {
  background: transparent url(../images/ok.svg) no-repeat left top;
  margin-top: 3px;
  width: 32px;
  height: 60px;
}

p.note {
  display: inline-block;
  font-size: 14px;
  font-style: italic;
}

.image-wrapper img {
  width: 100%;
  max-width: 100%;
}

#cashback .image-wrapper img {
  max-width: 364px;
}

#last-p .image-wrapper img {
  max-width: 636px;
}

#usp .image-wrapper img {
  max-width: 483px;
}

#usp {
  background: #5285B4;
  color: #fff;
}

#last-p {
  padding-bottom: 0;
}

.cta-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.cta-wrapper .cta {
  padding: 8px 0;
  width: 86%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-wrapper .cta > span {
  font-size: 14px;
  font-weight: 500;
}

.cta-wrapper .cta span.striked {
  opacity: 0.7;
}

.cta-wrapper .cta .cc-btn {
  padding: 10px 16px;
  margin-left: 30px;
  font-size: 14px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 6px 10px 0 rgb(182 34 34 / 34%);
}

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

.sigillo-desktop{
	display: none;
}
.sigillo-mobile{
	display: block;
}

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

@media (min-width: 375px) {

  h1 {
    font-size:42px;
  }

  h1 span {
    font-size: 30px;
    font-weight: 300;
    line-height: 50px;
  }
  
}

@media (min-width: 768px) {

  h1 {
    font-size:42px;
  }
  
  h1 span {
    font-size: 30px;
    font-weight: 300;
    line-height: 50px;
  }
  
  section:first-child {
    padding-top: 100px;
  }
  
  section .container {
    padding-top: 64px;
  }
  
  section .info h1 {
    font-size: 60px;
    margin: 16px 0 64px;
  }
  
  section .info h3 {
    font-size: 22px;
  }
  
  .cta-wrapper .cta {
    padding: 12px 0;
  }
  
  .cta-wrapper .cta > span {
    font-size: 16px;
  }
  
  .cta-wrapper .cta .cc-btn {
    font-size: 16px;
    padding: 10px 24px;
  }

}

@media (min-width: 800px) {
  
  h1 {
    font-size: 50px;
  }
      
  h1 span {
    font-size: 42px;
    font-weight: 300;
    line-height: 60px;
  }

}

@media (min-width: 900px) {
    
  h1 {
    font-size: 50px;
    line-height: 1;
  }
  
  h1 span {
    font-size: 42px;
    font-weight: 300;
    line-height: 60px;
  }

  .content-wrapper {
    width: 80%;
    padding: 80px 10% 40px;
  }
  
  section:first-child {
    padding-top: 150px;
  }
  
  #cashback,
  #usp {
    display: flex;
  }

  #cashback .text-wrapper {
    flex: 1 1 auto;
  }

  #cashback .image-wrapper,
  #usp .image-wrapper {
    display: flex;
    align-items: center;
  }

  #cashback .image-wrapper {
    justify-content: flex-end;
    padding-bottom: 40px;
    padding-left: 5%;
  }
  
  #usp .image-wrapper {
    justify-content: flex-start;
  }

  #usp .text-wrapper {
    order: 1;
    flex: 1 1 auto;
  }

  #last-p.content-wrapper {
    width: 80%;
    padding: 100px 10% 0;
    text-align: center;
  }

  #last-p .text-wrapper {
    text-align: center;
  }

  #last-p .image-wrapper {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
  }

}

@media (min-width: 1024px) {

  section .container {
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  
  section .info {
    margin: 0 24px 130px 0;
    max-width: 600px;
  }
  
  section .img {
    display: flex;
    align-items: flex-end;
    margin: 0;
  }

  #last-p .text-wrapper ul li {
    width: 45%;
    margin-bottom: 32px;
  }

  #last-p .text-wrapper ul li:nth-child(2n+1) {
    margin-right: 10%;
  }
  
  .cta-wrapper .cta {
    padding: 14px 0;
  }
  
  .cta-wrapper .cta > span {
    font-size: 22px;
  }
  
  .cta-wrapper .cta .cc-btn {
    font-size: 24px;
    padding: 17px 39px;
    margin-left: 45px;
    border-radius: 12px;
  }
  
  .sigillo-desktop{
  	display: block;
  }
  .sigillo-mobile{
  	display: none;
  }
    
}

@media (min-width: 1200px) {

  section .info h1 {
    font-size: 80px;
  }

}


/* Side navigation */

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

#cc_sidenav a {
  margin-bottom: 20px;
  -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 i {
  display: block;
  height: 11px;
  width: 11px;
  background-color: #fff;
  border-radius: 6px;
  opacity: 0.5;
  transition: opacity .2s linear;
}

#cc_sidenav .active i {
  opacity: 1;
}

@media screen and (min-width: 993px) {
  
  #cc_sidenav {
    right: 25px;
  }
  
  #cc_sidenav a {
    margin-bottom: 25px;
  }
  
  #cc_sidenav i {
    height: 19px;
    width: 19px;
    border-radius: 10px;
  }
  
}


/* Footer */

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

footer .container {
  padding: 24px;
}

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

footer .menu a:not(:first-child) {
  padding-left: 6px;
  border-left: 1px solid #5285b4;
}

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

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

@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;
    margin: 0 auto;
  }

  footer .menu {
    float: left;
  }

  footer .copyright {
    text-align: right;
    font-size: 13px;
    padding-top: 0;
  }
}
  
@media screen and (max-width: 767px) {  
 img.sigillo-de {

url:(../images/Sigillo-Mobile-DE.png);

}

img.sigillo-it {

url:(../images/Sigillo-Mobile-IT.png);
}

}  
