@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');
body,html{
    margin:0;
    padding:0;
    font-family: 'Inter', sans-serif;
    font-weight:400;
    background: #fff;

}
h1,h2,h3,h4,h5,h6{
    font-weight:500;
    line-height: 1.1em;
}
#logo-header{
    display:flex;
    justify-content: center;
    align-items:center;
    background-color: #fff;
    padding: 32px 0px;
}
#logo-header img{
    /* max-height: 70px; */
    width:auto;
}
*,*::after,*::before{
    box-sizing: border-box;
}

/* img{
    display:block;
    max-width:100%;
    height:auto;
} */
.headerbanner{
    height:25vw;
    min-height:240px;
    max-height:400px;
    background-image:url('./../img/assets/DESK-hero.png');
    background-size:cover ;
    background-position: center;
}
#gooptin-form .btn-primary[type="submit"]{
    margin-bottom: 40px;
}
.gender-chck{
    width:240px;
    border-radius:50px;
    height:40px;
    margin:auto;
    margin-top: 0px;
    
    box-shadow: 0px 0px 1px 0 #828282;
}
.gender-chck>div{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:10px;
    height: 100%;
    position: relative;
}
.gender-chck>input:checked~div::before{
    content:'';
    display:block;
    position:absolute;
    background-color: #28b7c8;
    width:50%;
    height:100%;
    top:0;
    left:0;
    bottom:0;
    border-radius:50px;
    transition:transform ease-in-out .3s
}
#gooptin-form .sub-quest{
    min-height:190px
}
.gender-chck>input:nth-child(2):checked~div::before{
    transform:translateX(100%)
}
.gender-chck label{
    text-align: center!important;
    padding-bottom:0!important;
    display:flex!important;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index:2
}
.gender-chck>input:nth-child(1):checked~div label:first-child {
    color:#fff!important
}
.gender-chck>input:nth-child(2):checked~div label:nth-child(2) {
    color:#fff!important
}
.gender-chck input{
    position:absolute;
    left:-300vw;
}
#gooptin-form .sub-quest> label{
    text-align:center;
    font-weight:500
}
#gooptin-form .sub-quest.type-radio .radios-quest{
    display:flex;
    flex-wrap:wrap;
    gap:20px;flex-direction: row;
}
#gooptin-form .sub-quest.type-radio .radios-quest>.radio{
    width:auto;
    min-width:120px;
    background-color:#25a4b5;
    color:#fff;
    display:inline-block

}
#gooptin-form .sub-quest.type-radio .radio>label:not(.form-error) span{
    padding-left:0;
    color:#fff;
    text-align:center
}
#gooptin-form .sub-quest.type-radio .radio>label:not(.form-error) span::before{
    display:none
}
.headerbanner+#quests-container{
    margin-top: -140px;
    margin-bottom: 100px;
}
.headerbanner+#thanks-section{
    margin-top: -110px;
}
#home-header{
    background-image:url('../img/usecure-banner.jpg');
    background-size:cover ;
    background-position: center;
    display:flex;
    flex-direction:column;
    /* height:100vh; */
    justify-content: center;
    align-items:center;
    min-height:360px;
    padding:0 10px;
    text-align:center

}
#home-header h1,
#home-header p{
    color:#fff;
    text-align:center
}
#home-header>div{
    max-width:430px;
    margin:0 auto
}

#home-header h1{
    font-size: 20px;
    text-transform: uppercase;
    font-weight:500
}
#home-header .btn{
    margin-top: 40px;
    font-size: 16px;
    text-transform: initial;
}
@media(min-width:840px){
    #home-header>div{
        max-width:580px;
    }
    #home-header h1{
        font-size: 32px;
    }
}
#home-section{
    margin-bottom: 100px;
}
#home-section h2{
    color:#28b7c9;
    text-align:center;
    text-transform: initial;
    margin-top:40px;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
}
#home-section .home-cols{
    display:grid;
    max-width:440px;
    margin:auto;;
    padding:0 10px;
    text-align:center;
    margin-top: 40px;
}
#home-section .home-cols>div{
    margin-bottom: 40px;
    color:#28b7c8
}
#home-section .home-cols>div p{
    max-width:200px;
    margin:auto;
    margin-top:20px
}
#home-section .home-cols img{
    margin:auto
}
@media(min-width:960px){
    #home-section .home-cols{
        max-width:1240px;
        display:flex;
        flex-wrap:wrap;
        justify-content: center;
        gap:100px
    }
}
#home-section .home-cols img{
    max-width:90px
}
#home-section .home-cols h3{
    font-size: 20px;
    font-weight: 600;
}
.container{
    width:100%;
    max-width: 1240px;
    margin:auto
}

#quests-container,
#thanks-section{
    /* min-height:100vh; */
    flex-direction:column;
    display:flex;
    align-items:center;
    justify-content: center;
}
#thanks-section>div{
    max-width:640px;
    background-color:rgb(255, 255, 255);
    text-align:center;
    padding:20px;
    -webkit-box-shadow: 0px 1px 9px #c9c9c9;
    box-shadow: 0px 1px 9px #c9c9c9;
}
#quests-container>#gooptin-form{
    width:calc(100% - 20px);
    max-width:600px;
    padding:0;
    background-color:transparent;
}


.btn.btn-primary{
	padding: 1em 1.6em;
    font-size: 18px;
	color: #fff;
    background-color: #28b7c9!important;
    border-color: #28b7c9!important;
    text-transform: uppercase;
	box-shadow:none!important;
    text-decoration:none;
    display:inline-block;
    font-weight: 500;;
    transition:background-color ease-in-out .3s
}
.btn.btn-primary:hover{
    background-color: #25a4b5!important;
    border-color: #25a4b5!important;
}
@media(min-width:540px){
	.btn.btn-primary{
		font-size:24px;
	}
}
button{
    border:none
}
.form-row-2{
    display: grid;
    grid-template-columns:1fr 1fr;
    gap:10px
}
#container-quest h1{
	font-weight:bold;
	color:#28b7c9;
	text-align:center;
	margin-top:30px;
}
#container-quest h3{
	font-weight:bold;
}
#container-quest h3 span{
	color:#28b7c9
}
#container-quest h3 +p{
	font-size:10px;
	margin-top:20px;
}
#container-quest .row:first-child >.col-12:nth-child(3),
#container-quest .row:first-child >.col-12:nth-child(2){
	margin-top:20px;
	margin-bottom:40px
}
@media(min-width:1600px){
	#container-quest .row:first-child >.col-12:nth-child(1){
		margin-top:-80px
	}
}
#gooptin-form .sub-quest {
	background-color: #fff;
	-webkit-box-shadow: 0px 1px 9px #c9c9c9;
    box-shadow: 0px 1px 9px #c9c9c9;
}

.checkbox-optin label:not(.error) {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
	text-align: left !important
}

.checkbox-optin .checkmark {
	display: inline-block;
	height: 20px;
	width: 20px;
	border: solid 1px #989898;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 6px;
}

.checkbox-optin input:checked+label .checkmark::before {
	content: "✓";
}

.checkbox-optin a {
	color: #1b77c2 !important
}

/*QUESTIONS*/
#gooptin-form .checkbox-wrapper .checkbox label:hover,
#gooptin-form .checkbox-wrapper input:checked+label
 {
	border-color: #28b7c9 !important
}
#quest-304 input[value="alarme"]+span{
    text-transform: uppercase;
    font-size: 22px;
}

#quest-304 input[value="no"]+span{
    font-size:16px!important
}
#gooptin-form #quest-304 .radios-quest{
	display:block;
}
#gooptin-form #quest-304 .radios-quest .radio{
	margin:auto;
}
#gooptin-form #quest-304 .radios-quest .radio.r0{
	max-width:300px;
	width:100%;
}
#gooptin-form #quest-304 .radios-quest .radio.r1 label{
	padding: 0;
    background-color: transparent;
    border: none;
}
#gooptin-form #quest-304 .radios-quest .radio.r1 label span{
	font-size: 14px!important;
}
html.thanks footer {
	/* position: fixed;
	bottom: 0;
	left: 0;
	right: 0;*/
} 

#first-quest {
	display: block
}

#first-quest a {
	display: inline-block;
	background-color: #28b7c9;
	padding: 10px 15px;
	min-width: 125px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 20px;
	-webkit-transform: scale(1);
	        -ms-transform: scale(1);
	    transform: scale(1);
	-webkit-transition: background-color ease-in-out .3s;
	-o-transition: background-color ease-in-out .3s;
	transition: background-color ease-in-out .3s
}

#first-quest a:hover {
	background-color: #28b7c9;
	-webkit-transition: background-color ease-in-out .3s;
	-o-transition: background-color ease-in-out .3s;
	transition: background-color ease-in-out .3s
}

#first-quest h3 {
	font-size: 20px;
	margin-bottom: 80px;
}

/*END QUESTIONS*/
@media (min-width: 540px) {


	#gooptin-form #quest-1.sub-quest {
		padding: 0 80px 10px 80px;
	}
}

@media (min-width: 768px) {


	#first-quest h3 {
		margin-top: 40px;
		margin-bottom: 60px;
	}
}

@media (min-width: 1200px) {


	#gooptin-form h2 {
		display: none;
	}
	

	#gooptin-form .sub-quest {
		border-radius: 5px;
		-webkit-box-shadow: 0px 1px 3px #c9c9c9;
		        box-shadow: 0px 1px 3px #c9c9c9;
	}
}


  .title-h2{
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
  }
  .title-h2 b{
    color: #00AECD;
  }
  @media(min-width: 768px){
    .title-h2{
      font-size: 48px;
      line-height: 57.6px;
    }
  }
  p{
    font-size: 16px;
    line-height: 21px;
  }
  .btn.btn-prim{
    background: #33B7C7;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 16px 32px;
    font-size: 18px;
  }
  .btn-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 42px;
  }
  .btn-container p{
    margin: 0 !important;
  }

  .header{
    display: grid;    
  }
  .header-text-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    padding: 40px 35px 80px;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
  }
  .header .header-text-container .btn{
    width: 100%;
    text-align: center;
  }
  @media(min-width: 768px){
    .header .header-text-container .btn{
      width: initial;
    }
  }
  .header .header-text-container .header-text .header-subtitle{
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    margin-bottom: 48px;
  }
  .header-text-container .header-text h2{
    margin-top: 0px;
    margin-bottom: 32px;
  }
  .header-text p{
    margin: 20px 0px;
  }
  .header-cover{
    position: relative;
  }
  .header-cover img{
    width: 100%;
  }
  .header-cover .desk-header-cover{
    display: none;
  }
  @media(min-width: 768px){
    .header-cover .desk-header-cover{
      display: block;
    }
    .header-cover .mobile-header-cover{
      display: none;
    }
    /* .header-cover img{
      position: absolute;
      top: 0;
      left: 0;
      width: 50vw;
      aspect-ratio: calc(1135 / 874);
      margin-left: -9px;
    } */
  }
  @media(min-width: 768px) AND (max-width: 1024px){
    .btn.btn-prim .btn-container{
      padding: 16px 42px;
    }
  }

  .header-text-blocks{
    display: grid;
    padding: 0px 35px;
    margin-bottom: 16px;
  }
  .header-text-blocks h3{
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
  }
  .header-text-blocks p{
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
  }
  .header .header-content{
    background-image: url('./../img/assets/MOBILE-bg-haut.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
  }
  @media(min-width: 768px){
    .header-text-blocks{
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 1240px;
      margin: 0 auto;
      margin-bottom: 80px;
    }
    .header .header-content{
      background-image: url('./../img/assets/DESK-bg-haut.png');
    }
  } 


  .plan-section{
    background-image: url('./../img/assets/MOBILE-bg-bleu.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 35px 0px;
  }
  .plan-section .plan-section-container{
    max-width: 1240px;
    margin: 0 auto;
  }
  .plan-section .plan-section-container .plan-section-title h3{
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
  }
  .plan-section .plan-section-container .plan-section-title p{
    font-size: 18px;
    font-weight: 300;
    line-height: 180%;
    margin-bottom: 0px;
  }
  .plan-section .plan-section-container .plan-section-content{
    margin-top: 52px;
    display: grid;
    gap: 32px;
  }
  .plan-section .plan-section-container .plan-section-content .plan-section-card{
    border-radius: 25px;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    padding: 56px 30px;
  }
  .plan-section .plan-section-container .plan-section-content .plan-section-card:last-child{
    margin-bottom: -120px;
  }
  .plan-section .plan-section-container .plan-section-content .plan-section-card h4{
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
  }
  .plan-section .plan-section-container .plan-section-content .plan-section-card p{
    font-size: 18px;
    font-weight: 300;
    line-height: 180%;
  }

  @media(min-width: 768px){
    .plan-section{
      background-image: url('./../img/assets/DESK-bg-bleu.png');
    }
    .plan-section .plan-section-container .plan-section-content .plan-section-card:nth-child(3),
    .plan-section .plan-section-container .plan-section-content .plan-section-card:nth-child(4){
      margin-bottom: -120px;
    }
    .plan-section .plan-section-container .plan-section-content{
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
  }
  @media(min-width: 1024px){
    .plan-section .plan-section-container .plan-section-content{
      grid-template-columns: repeat(4, 1fr);
    }
    .plan-section .plan-section-container .plan-section-content .plan-section-card{
      margin-bottom: -120px;
    }
  }
  .topfooter-section{
    margin-top: 248px;
    padding: 0px 35px;
    background-image: url('./../img/assets/MOBILE-bg-bas.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: bottom;
  }
  .topfooter-section .topfooter-container{
    max-width: 1240px;
    margin: 0 auto;
  }
  .topfooter-section .topfooter-container .serein-section{
    display: grid;
  }
  .topfooter-section .topfooter-container .serein-section .serein-section-text{
    order: 2;
  }
  .topfooter-section .topfooter-container .serein-section .serein-section-text h3{
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
  }
  .topfooter-section .topfooter-container .serein-section .serein-section-text h3 b{
    color: #00AECD;
  }
  .topfooter-section .topfooter-container .serein-section .serein-section-text p{
    font-size: 18px;
    font-weight: 300;
    line-height: 180%;
    margin-bottom: 0px;
  }
  .topfooter-section .topfooter-container .serein-section .serein-section-text div{
    text-align: center;
    margin-top: 40px;
  }
  .topfooter-section .topfooter-container .serein-section .serein-section-cover{
    order: 1;
  }
  .topfooter-section .topfooter-container .serein-section .serein-section-cover img{
    width: 100%;
  }
  .topfooter-section .topfooter-container .quote-section h3{
    font-size: 32px;
    font-weight: 500;
    line-height: 130%;
    color: #00AECD;
    text-align: center;
    margin-top: 80px;
  }

  @media(min-width: 768px){
    .topfooter-section .topfooter-container .serein-section{
      grid-template-columns: repeat(2, 1fr);
      gap: 100px;
    }
    .topfooter-section .topfooter-container .serein-section .serein-section-text{
      order: 1;
    }
    .topfooter-section .topfooter-container .serein-section .serein-section-cover{
      order: 2;
    }
    .topfooter-section .topfooter-container .serein-section .serein-section-text div{
      text-align: left;
    }
    .topfooter-section .topfooter-container .quote-section h3{
      font-size: 48px;
      line-height: 130%;
      max-width: 1000px;
      text-align: center;
      margin: 120px auto;
    }
    .topfooter-section{
      background-image: url('./../img/assets/DESK-bg-bas.png');
      background-repeat: no-repeat;
      background-size: contain;
      background-position-y: bottom;
    }
  }

  .assurance-apport-section-container{
    background: #fff;
  }
  .assurance-apport-section-container .assurance-apport-section{
    max-width: 1240px;
    margin: 0 auto;
    padding: 32px 25px;
  }
  .assurance-apport-section-container .assurance-apport-section .assurance-apport-blocks{
    display: grid;
    margin-top: 45px;
    gap: 10px;
  }
  .assurance-apport-blocks .assurance-apport-block:not(:nth-child(1)){
    margin-top: 45px;
  }
  .assurance-apport-blocks .assurance-apport-block .assurance-apport-block-title{
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .assurance-apport-blocks .assurance-apport-block .assurance-apport-block-title img{
    width: 45px;
    height: 45px;
    object-fit: contain;
  }
  .assurance-apport-blocks .assurance-apport-block .assurance-apport-block-title h3{
    font-size: 32px;
    color: #33B7C7;
    font-weight: 700;
  }
  .assurance-apport-blocks .assurance-apport-block .assurance-apport-block-text{
    margin-top: 20px;
  }
  @media(min-width: 768px){
    .assurance-apport-section-container .assurance-apport-section .assurance-apport-blocks{
      grid-template-columns: repeat(3, 1fr);
    }
    .assurance-apport-section-container .assurance-apport-section{
      padding: 72px 25px;
    }
    .assurance-apport-blocks .assurance-apport-block:not(:nth-child(1)){
      margin-top: initial;
    }
  }
  .who-section{
    max-width: 1240px;
    margin: 0 auto;
    padding: 32px 25px;
    display: flex;
    flex-direction: column;
  }
  .who-section .who-section-text h2{
    margin-bottom: 25px;
  }
  .who-section .who-section-text p{
    margin-top: 15px;
  }
  .who-section .who-section-text img{
    width: 100%;
  }
  .who-section-cover img{
    display: none;
  }
  @media(min-width: 768px){
    .who-section{
      padding: 72px 25px;
    }
    .who-section .who-section-text p{
      max-width: 80%;
    }
    .who-section{
      flex-direction: row;
    }
    .who-section-cover img{
      display: block;
    }
    .who-section-text img{
      display: none;
    }
  }
  .why-section-container{
    background: #fff;
    padding: 32px 25px;
  }
  .why-section{
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .why-section-text p{
    margin-top: 24px;
  }
  .why-section-text img{
    width: 100%;
    margin-top: 24px;
  }
  .why-section-cover img{
    display: none;
  }
  @media(min-width: 768px){
    .why-section-container{
      padding: 70px 25px;
    }
    .why-section{
      flex-direction: row;
    }
    .why-section-cover img{
      display: block;
    }
    .why-section-text img{
      display: none;
    }
    .why-section-text p{
      max-width: 80%;
    }
  }
  
  footer{
    display: grid;
    width: 100%;
    padding: 40px 35px;
    background: #FFF;
    box-shadow: 0px -4px 36px 0px rgba(0, 0, 0, 0.10);
  }
  footer .footer-container{
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
  }
  footer .footer-brand p{
    display: none;
  }
  footer .footer-content{
    margin-top: 40px;
  }
  footer .footer-content .footer-signature{
    margin-top: 32px;
  }
  .footer-signature a{
    color: #00AECD;
  }
  @media(min-width: 768px){
    footer .footer-container{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    footer .footer-content{
      margin-top: 0px;
      display: flex;
      justify-content: flex-end;
    }
    footer .footer-content .footer-signature{
      display: none;
    }
    footer .footer-brand p{
      display: initial;
    }
    footer .footer-brand p a{
      color: #00AECD;
    }
   
    footer .footer-brand{
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
  }