/* custom stylesheet */
@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Lato:400,500,700,900&display=swap');

/*--------------- GENERAL ---------------*/

body {
    font-family: "Lato", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

a:hover, a:visited, a:focus, a:active {
    text-decoration: none;
}

:focus {
    outline: none;
}

.loader {
    margin-left: auto;
    margin-right: auto;
    width: 50px;
    height: 50px;
    border: 7px solid #d6d6d6; /* Light grey */
    border-top: 7px solid #3498db; /* Blue */
    border-radius: 50%;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader2 {
    width: 50px;
    height: 50px;
}

.lSNext {
    background: url('../../img/icon-arrow-right.svg') no-repeat #FFF !important;
    background-size: 8px !important;
    background-position: center center !important;
    background: #FFF;
    z-index: 1000;
    right: 5px !important;
    padding: 16px;
    opacity: 1 !important;
    border-radius: 50px;
    -webkit-box-shadow: 3px 3px 17px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 3px 3px 17px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 17px 0px rgba(0, 0, 0, 0.2);
}

.lSPrev {
    background: url('../../img/icon-arrow-left.svg') #FFF no-repeat !important;
    background-size: 8px !important;
    background-position: center !important;
    background: #FFF;
    z-index: 1000;
    left: 5px !important;
    padding: 16px;
    border-radius: 50px;
    opacity: 1 !important;
    -webkit-box-shadow: 3px 3px 17px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 3px 3px 17px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 17px 0px rgba(0, 0, 0, 0.2);
}

.lSPager {
    display: none !important;
}

.cookiealert {
    background: #FFF;
    width: 100%;
    position: fixed;
    bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 999;
}

.cookiealert a {
    color: #777;
    text-decoration: underline;
}

.cookiealert button {
    border-radius: 0;
    margin-left: 10px;
    border: 1px #57B9F1 solid;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

.bg-grey {
    background: #EBEBEB;
}

.btn-primary {
    background: #57B9F1;
    border: 1px #57B9F1 solid;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
}

.btn-outline-primary {
    border: 1px #57B9F1 solid;
    color: #57B9F1;
    font-size: 16px;
    font-weight: 700;
}
.btn-outline-primary:hover {
    background-color: #57B9F1;
    border-color: #57B9F1;
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
    background-color: #57B9F1;
    border-color: #57B9F1;
}

.btn-turquoise {
    color: #fff;
    background-color: #2DD1AC;
    border-color: #2DD1AC;
    font-size: 16px;
    font-weight: 700;
}
.btn-turquoise:hover {
    color: #fff;
    background-color: #26b292;
    border-color: #24a789;
}
.btn-turquoise:not(:disabled):not(.disabled):active, .btn-turquoise:not(:disabled):not(.disabled).active, .show>.btn-turquoise.dropdown-toggle {
    color: #fff;
    background-color: #24a789;
    border-color: #229d81;
}
.btn-turquoise:focus, .btn-turquoise.focus {
    box-shadow: 0 0 0 0.2rem rgba(43,183,152,0.5);
}

form input.error, form textarea.error form {
    border-color: red !important;
}

form label.error, form p.error {
    color: red !important;
    font-style: italic;
}

form input.valid, form textarea.valid form {
    border-color: green !important;
}

form label.valid, form p.valid {
    color: green !important;
    font-style: italic;
}

/*--------------- Header ---------------*/
header {
    border-bottom: #7ec4e2 1px solid;
}

.nav .navbar-brand.logo img {
    max-width: 200px;
}

.nav .navbar-brand.logo {
    margin-right: 40px;
}

.nav-category {
    justify-content: space-between;
}

.nav-item a {
    font-size: 14px;
    position: relative;
    color: #000;
}

.nav-item a > span {
    padding-bottom: 5px;
    transition: .2s all;
    border-bottom: 1px transparent solid;
}

.nav-item a:hover > span {
    border-bottom: 1px #57B9F1 solid;
}

.nav-item a::after {
    content: '';
    display: block;
    position: absolute;
    top: 12px;
    right: 0;
    width: 1px;
    height: 14px;
    background: #7ec4e2;
}

.nav-item.phone-number {
    background: url('../../img/Icon_Phone.png') no-repeat;
    background-size: 10px;
    background-position: top 10px left;
    padding-left: 20px;
    margin-top: 15px;
    margin-left: 0px;
    transition: .2s all;
}

.nav-item.phone-number:hover {
    background-position: top 7px left;
}

.nav-item:nth-of-type(4) a::after, .nav-item.phone-number a::after {
    display: none;
}

.nav-item.phone-number a {
    display: block;
    font-weight: 700;
    color: #57B9F1;
    font-size: 18px;
    padding-top: 5px;
}

.nav-item.phone-number span {
    display: block;
    font-size: 12px;
    left: -20px;
    position: relative;
}

.nav-category:nth-of-type(2) .nav-item:last-of-type a::after {
    display: none;
}

/*--------------- Footer ---------------*/
.footer {
    background: #2D2D41;
    padding-top: 40px;
    color: #FFF;
}

.footer h4 {
    color: #FFF;
    font-size: 18px;
}

.footer-category-title {
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.footer-category-title::after {
    content: '';
    display: block;
    background: #57B9F1;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.footer-item a {
    color: #FFF;
    font-size: 13px;
}

.footer-item a::before {
    display: inline;
    padding-right: 2px;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
}

.footer-sub .col-informations::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #CCC;
    left: -50px;
}

.footer-sub .col-informations li {
    margin-top: 10px;
}

.footer-sub .col-informations a {
    display: block;
    font-size: 16px;
}

.footer-sub .col-informations a::before {
    display: none;
}

/*---------- General ----------*/
h1 {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
}

h2 {
    font-weight: 100;
}

h1 strong, h2 span {
    display: inline-table;
    overflow: hidden;
    position: relative;
    padding-bottom: 5px;
}

h1 strong::after, h2 span::after {
    content: '';
    display: block;
    position: absolute;
    background: #7ec4e2;
    width: 100%;
    height: 2px;
    bottom: 0;
}

.advantages {
    padding-top: 50px;
    padding-bottom: 50px;
}

.advantages h2 {
    text-align: center;
    font-weight: 700;
}

.advantages p.content {
    max-width: 700px;
    text-align: center;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 20px;
    display: block;
}

.advantages .card {
    margin-top: 30px;
    border: none;
}

.advantages .card:first-of-type .card-picture img {
    max-width: 65px;
    left: 6.5px;
}

.advantages .card:nth-of-type(2) .card-picture img {
    left: -1px;
    top: 2.5px;
}

.advantages .card:nth-of-type(3) .card-picture img {
    left: -2px;
    top: -1px;
}

.advantages .card:nth-of-type(4) .card-picture img {
    left: 2px;
    top: 2px;
}

.advantages .card:nth-of-type(5) .card-picture img {
    left: 2px;
    top: -3px;
}

.advantages .card:nth-of-type(6) .card-picture img {
    left: -2px;
    top: 1px;
    padding: 12.5px;
}

.advantages .card-item {
    padding: 15px;
    border: none;
    height: 100%;
    -webkit-box-shadow: 0px 4px 10px 0px rgba(107, 107, 107, .2);
    -moz-box-shadow: 0px 4px 10px 0px rgba(107, 107, 107, .2);
    box-shadow: 0px 4px 10px 0px rgba(107, 107, 107, .2);
}

.advantages .card .card-title {
    margin-top: 20px;
    font-size: 16px;
    text-transform: uppercase;
}

.advantages .card-picture {
    max-width: 80px;
    margin: 10px auto;
    position: relative;
}

.advantages .card-picture img {
    height: 100%;
    width: 100%;
    padding: 15px;
    position: relative;
    z-index: 100;
}

.advantages .card-picture::before {
    content: '';
    background: #EEEEEF;
    height: 75px;
    width: 75px;
    position: absolute;
    display: block;
    z-index: 1;
    border-radius: 50px;
}

.advantages .card-content {
    text-align: center;
}

.home-section-04 {
    background: #EEEEEF;
    clear: both;
    margin-top: 50px;
}

/*--------------- Icons ---------------*/
.icon-letter {
    background: url('../../img/Icon_Letter.png') no-repeat;
}

.icon-profil {
    background: url('../../img/Icon_Profil.png') no-repeat;
}

.icon-docs {
    background: url('../../img/Icon_Docs.png') no-repeat;
}

.icon-info {
    background: url('../../img/Icon_Info.png') no-repeat;
}

.icon-folder {
    background: url('../../img/Icon_Folder.png') no-repeat;
}

.icon-calendar {
    background: url('../../img/Icon_Calendar.png') no-repeat;
}

/* Icon 1 */
.animated-icon2 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.animated-icon2 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.animated-icon2 span {
    background: #4A4A4A;
}

.animated-icon2 span:nth-child(1) {
    top: 0px;
}

.animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
    top: 10px;
}

.animated-icon2 span:nth-child(4) {
    top: 20px;
}

.animated-icon2.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
}

.animated-icon2.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.animated-icon2.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.animated-icon2.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
}

/*--------------- Home ---------------*/
.home-section-01 {
    background: url('../../img/Background_Home.jpg') no-repeat;
    background-size: cover;
    padding-bottom: 40px;
    position: relative;
}

.home-section-01::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.5256477591036415) 0%, rgba(240, 241, 244, 1) 50%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    opacity: .4;
}

.home-section-01 h1 {
    padding-top: 45px;
    padding-bottom: 25px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.home-section-01 .form h3 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 21px;
    color: #FFF;
}

.home-section-01 form {
    position: relative;
    padding-bottom: 10px;
}

.home-section-01 .form {
    background: #5CBAEF;
    padding: 30px;
    padding-bottom: 40px;
    margin-top: 50px;
}

.home-section-01 input[type="text"] {
    border: #FFF 2px solid;
    background: rgba(255, 255, 255, .1);
    padding: 7px 10px;
    width: 100%;
    max-width: 350px;
    position: relative;
    z-index: 10;
    top: 15px;
    color: #FFF;
}

.home-section-01 input[type="text"]::placeholder {
    color: #FFF;
}

.home-section-01 input[type="submit"] {
    border: #ff7675 2px solid;
    background: #ff7675;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 20px 8px 20px;
    position: relative;
    right: 0;
    top: 30px;
    z-index: 100;
    transition: .2s all;
    white-space: inherit;
}

.home-section-01 input[type="submit"]:hover {
    background: #d63031;
    border: 2px #d63031 solid;
    color: #FFF;
}

.home-section-01 .easy-autocomplete {
    max-width: 100% !important;
}

.home-section-01 .easy-autocomplete-container {
    z-index: 101;
    top: 50px;
}

.home-section-01 .card {
    margin-top: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, .85)
}

.home-section-01 .card h3 {
    margin-top: 10px;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 15px;
    width: fit-content;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 21px;
}

.home-section-01 .card ul li {
    padding-left: 40px;
    background-size: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-position: left center;
    font-weight: 400;
    color: #5CBAEF;
    font-size: 15px;
}

.home-section-01 .lSSlideOuter {
    background: rgba(255, 255, 255, .8);
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 25px;
}

.home-section-01 .lSSlideWrapper {
    padding-left: 40px;
    padding-right: 40px;
}

.home-section-01 .carousel h2 {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 900;
    color: #000;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 12.5px;
    letter-spacing: .5px;
}

.home-section-01 .carousel ul li {
    margin-top: 5px;
    font-weight: 400;
    color: #4d9ece;
}

.home-section-01 .carousel ul li a {
    color: #5CBAEF;
    border-bottom: 2px transparent solid;
    transition: .2s all;
}

.home-section-01 .carousel ul li a:hover {
    color: #2FB1FC;
    border-bottom: 2px #2FB1FC solid;
}

.home-section-01 .carousel ul li::before {
    /*content: '✓';*/
    content: '';
    background: url('../../img/icon-check.svg') no-repeat;
    background-size: contain;
    position: relative;
    top: 2px;
    height: 12px;
    width: 12px;
    display: inline-block;
    padding-right: 10px;
    margin-right: 5px;
}

.home-section-02 {
    background: #EEE;
    padding-bottom: 50px;
}

.home-section-02 h2 {
    margin: auto;
    display: table;
    padding-top: 50px;
    margin-bottom: 20px;
}

.home-section-02 h2 span {
    display: block;
}

.home-section-02 #lightSliderReviews {
    margin-top: 40px;
}

.home-section-02 .lSSlideWrapper {
    padding-left: 40px;
    padding-right: 40px;
}

.home-section-02 .review-item {
    max-width: 250px;
}

.home-section-02 .review-item h3 {
    font-size: 20px;
    font-weight: 700;
}

.home-section-02 .review-item img {
    max-height: 17.5px;
}

.home-section-02 .review-item p {
    margin-top: 15px;
}

.home-section-03 {
    margin-top: 40px;
}

.home-section-04 {
    padding-bottom: 25px;
}

.home-section-04 h2 {
    padding-top: 25px;
    padding-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.home-section-04 .content {
    padding-top: 15px;
}

.home-section-05 {
    padding-bottom: 30px;
}

.home-section-05 h2 {
    text-align: center;
    padding-top: 0px;
    padding-top: 35px;
}

.home-section-05 img {
    max-width: 100px;
    /* margin: auto; */
    margin-top: 20px;
    display: block;
}

.home-section-05 .col:nth-of-type(4) img {
    max-width: 80px;
}

.home-section-05 .col:last-of-type img {
    max-width: 60px;
}

.home-section-06 h2 {
    text-align: left;
    padding-top: 0px;
    /* padding-top: 35px; */
    font-weight: 700;
}

.home-section-06 img {
    max-width: 100px;
    margin: auto;
    margin-top: 50px;
    display: block;
}

.home-section-06 .content {
    padding-top: 15px;
}


.home-section-06 img {
    max-width: 220px;
    margin: auto;
    margin-top: 10px;
    display: block;
}

/*--------------- Form ---------------*/
.form-section-01 h1 {
    padding-top: 25px;
    width: fit-content;
    margin: auto;
    font-weight: 100;
    position: relative;
    text-align: center;
}

.form-section-01 h1 b {
    font-weight: 700;
    display: inline-table;
    overflow: hidden;
    position: relative;
    padding-bottom: 5px;
}

.form-section-01 h1 b::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #57B9F1;
    right: 0;
}

.form-section-01 .form-letter {
    margin-top: 25px;
}

.form-section-01 .form-letter .form-header {
    background: #57B9F1;
    color: #FFF;
    padding: 7px;
    position: relative;
}

.form-section-01 .form-letter .form-header p {
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 100;
    text-align: center;
    font-size: 20px;
    color: #FFF;
}

.form-section-01 .form-letter .form-header img {
    position: absolute;
    max-width: 60px;
    top: -10px;
    left: 40px;
}

.form-section-01 form {
    background: #EEF2F5;
    padding-bottom: 50px;
}

.form-section-01 form .form-content {
    padding-left: 30px;
    padding-right: 30px;
}

/* Cachons la case à cocher */
form p {
    position: relative; /* permet de positionner la checkbox cachée */
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    /* Cache la checkbox sans
       la désactiver pour les
       lecteurs d'écran */
    position: absolute;
    left: 0;
    opacity: 0.01;
}

/* on prépare le label */
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
    position: relative; /* permet de positionner les pseudo-éléments */
    padding-left: 1.8em; /* fait un peu d'espace pour notre case à venir */
    /*font-size: 1.05em;*/ /* Label un peu plus gros */
    line-height: 1.7;
    cursor: pointer; /* affiche un curseur adapté */
}

/* Aspect de la case */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 1.4em;
    height: 1.4em;
    border: 1px solid #57B9F1;
    background: #FFF;
    border-radius: 40px;
    transition: all .275s;
}

/* Aspect de la coche */
.form-section-01 [type="checkbox"]:not(:checked) + label:after,
.form-section-01 [type="checkbox"]:checked + label:after {
    content: '';
    position: absolute;
    background: #57B9F1;
    height: 15px;
    width: 15px;
    border-radius: 50px;
    top: 3.5px;
    left: 2.5px;
    font-size: 1.6em;
    color: #CB22ED;
    line-height: 0;
    transition: all .2s; /* Petite transition */
}

/* Aspect non cochée */
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0) rotate(45deg);
}

/* Aspect cochée */
[type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.form-section-01 form label, .form-section-01 form p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    color: #444;
}

/*[type="checkbox"]:disabled:not(:che[type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #e9e9e9;
}

/* Disabled checked */
[type="checkbox"]:disabled:checked + label:after {
    color: #777;
}

[type="checkbox"]:disabled + label {
    color: #aaa;
}

/* Accessibility focus */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1), 0 0 0 6px rgba(87, 185, 241, .2);
}

/*----------------- Radio Buttons -----------------*/
[type="radio"]:not(:checked),
[type="radio"]:checked {
    /* Cache la radio sans
       la désactiver pour les
       lecteurs d'écran */
    position: absolute;
    left: 0;
    opacity: 0.01;
}

/* on prépare le label */
[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
    position: relative; /* permet de positionner les pseudo-éléments */
    padding-left: 2.3em; /* fait un peu d'espace pour notre case à venir */
    font-size: 1.05em; /* Label un peu plus gros */
    line-height: 1.7;
    cursor: pointer; /* affiche un curseur adapté */
}

/* Aspect de la case */
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 1.4em;
    height: 1.4em;
    border: 1px solid #57B9F1;
    background: #FFF;
    border-radius: 50px;
    transition: all .275s;
}

/* Aspect de la coche */
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    background: #57B9F1;
    height: 15px;
    width: 15px;
    border-radius: 50px;
    top: 3.5px;
    left: 2.5px;
    font-size: 1.6em;
    color: #CB22ED;
    line-height: 0;
    transition: all .2s; /* Petite transition */
}

/* Aspect non cochée */
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0) rotate(45deg);
}

/* Aspect cochée */
[type="radio"]:checked + label:after {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.form-section-01 form label, .form-section-01 form p {
    margin-bottom: 0;
    font-size: 14px;
}

/*[type="radio"]:disabled:not(:che[type="radio"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #e9e9e9;
}

/* Disabled checked */
[type="radio"]:disabled:checked + label:after {
    color: #777;
}

[type="radio"]:disabled + label {
    color: #aaa;
}

/* Accessibility focus */
[type="radio"]:checked:focus + label:before,
[type="radio"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1), 0 0 0 6px rgba(87, 185, 241, .2);
}

.form-section-01 form input {
    border: #57B9F1 1px solid;
    border-radius: 40px;
    display: block;
    width: 100%;
    padding-left: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.form-section-01 form input:focus {
    outline: none;
}

.form-section-01 form label.required::before {
    content: '*';
    color: #FF0000;
    padding-right: 2px;
}

.form-section-01 form input[type="submit"] {
    background: #ff0000;
    border: 2px #ff0000 solid;
    width: 250px;
    padding: 6px 0;
    color: #FFF;
    font-weight: 700;
    font-size: 18px;
    margin: auto;
    margin-top: 30px;
    transition: .2s all;
}

.form-section-01 form input[type="submit"]:hover {
    background: #d40000;
    border: 2px #d40000 solid;
    color: #FFF;
}

.form-section-01 form .form-submit {
    margin: auto;
    position: relative;
}

.form-section-01 form .form-submit::after {
    content: '';
    position: absolute;
    height: 60px;
    width: 60px;
    bottom: -10px;
    left: -60px;
    background: url('../../img/Icon_Arrow_02.png') no-repeat;
    background-size: 45px;
    transition: .2s all;
}

.form-section-01 form .form-submit:hover:after {
    left: -50px;
}

.form-section-01 .form-generate {
    margin-top: 40px;
}

.form-section-02 .faq-container {
    margin-top: 20px;
}

.form-section-02 .faq-item {
    background: rgb(240, 241, 244);
    background: linear-gradient(90deg, rgba(240, 241, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 15px;
    margin-top: 20px;
}

.form-section-02 .content.huge {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 300;
    margin-top: 50px;
    margin-bottom: 0;
}

.form-section-02 .content {
    font-size: 18px;
    font-weight: 300;
}

.form-section-02 .faq-item img {
    width: 100%;
    display: block;
    max-width: 70px;
    margin: auto;
}

.form-section-02 .faq-item .faq-title {
    color: #e34824;
    font-weight: 700;
    font-size: 20px;
}

.form-section-02 .faq-item .faq-content {
    font-weight: 400;
    line-height: 20px;
    font-size: 15px;
}

/*---------------------- SKY -------------------*/
.is-form.sky .form-section-01 .form-letter .form-header {
    background: #67118F;
}

.is-form.sky .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -1px;
    left: 50px;
    max-width: 70px;
    padding: 4px;
}

.is-form.sky .form-section-01 form label.required::before {
    color: #FC1999;
}

.is-form.sky .form-section-01 form input {
    border-radius: 0;
    border: 1px #CCC solid;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.is-form.sky input[type="checkbox"]:not(:checked) + label:before, input[type="checkbox"]:checked + label:before {
    border: 1px #67118F solid;
}

.is-form.sky input[type="checkbox"]:not(:checked) + label:after, .is-form.sky input[type="checkbox"]:checked + label:after {
    background: #67118F;
}

.is-form.sky input[type="checkbox"]:checked:focus + label:before,
.is-form.sky input[type="checkbox"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1), 0 0 0 6px rgba(103, 17, 143, .2)
}

.is-form.sky input[type="radio"]:not(:checked) + label:before {
    border: 1px #67118F solid;
}

.is-form.sky input[type="radio"]:not(:checked) + label:after, .is-form.sky input[type="radio"]:checked + label:after {
    background: #67118F;
}

.is-form.sky input[type="radio"]:not(:checked) + label:before, .is-form.sky input[type="radio"]:checked + label:before {
    border: 1px #67118F solid;
}

.is-form.sky input[type="radio"]:checked:focus + label:before,
.is-form.sky input[type="radio"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1), 0 0 0 6px rgba(103, 17, 143, .2)
}

.is-form.sky .form-section-01 form input[type="submit"] {
    /*background: #FC1999;
    border: 2px #FC1999 solid;*/
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .5px;
}

/*---------------------- VIRGIN MEDIA -------------------*/
.is-form.virgin-media .form-section-01 form {
    background: #F8F8F8;
}

.is-form.virgin-media .form-section-01 .form-letter .form-header {
    border-bottom: #2C1F2C 1px solid;
    background: #2C1F2C;
}

.is-form.virgin-media .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -1px;
    left: 50px;
    max-width: 70px;
    padding: 4px;
}

.is-form.virgin-media .form-section-01 .form-header p {
    color: #FFF;
}

.is-form.virgin-media .form-section-01 form label.required::before {
    color: #FC1999;
}

.is-form.virgin-media .form-section-01 form input {
    border-radius: 0;
    border: 1px #CCC solid;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.is-form.virgin-media input[type="checkbox"]:not(:checked) + label:before, input[type="checkbox"]:checked + label:before {
    border: 2px #EB0003 solid;
}

.is-form.virgin-media input[type="checkbox"]:not(:checked) + label:after, .is-form.virgin-media input[type="checkbox"]:checked + label:after {
    background: #EB0003;
}

.is-form.virgin-media input[type="checkbox"]:checked:focus + label:before,
.is-form.virgin-media input[type="checkbox"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1), 0 0 0 6px rgba(235, 0, 3, 0.2);
}

.is-form.virgin-media input[type="radio"]:not(:checked) + label:before {
    border: 1px #EB0003 solid;
}

.is-form.virgin-media input[type="radio"]:not(:checked) + label:after, .is-form.virgin-media input[type="radio"]:checked + label:after {
    background: #EB0003;
}

.is-form.virgin-media input[type="radio"]:not(:checked) + label:before, .is-form.virgin-media input[type="radio"]:checked + label:before {
    border: 2px #EB0003 solid;
}

.is-form.virgin-media input[type="radio"]:checked:focus + label:before,
.is-form.virgin-media input[type="radio"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1), 0 0 0 6px rgba(235, 0, 3, 0.2);
}

.is-form.virgin-media .form-section-01 form input[type="submit"] {
    /*background: #EB0003;
    border: 2px #EB0003 solid;*/
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .5px;
}

/*---------------------- VODAFONE -------------------*/
.is-form.vodafone .form-section-01 form {
    background: #F8F8F8;
}

.is-form.vodafone .form-section-01 .form-letter .form-header {
    border-bottom: #BE0009 1px solid;
    background: #BE0009;
}

.is-form.vodafone .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -1px;
    left: 50px;
    max-width: 70px;
    padding: 4px;
}

.is-form.vodafone .form-section-01 .form-header p {
    color: #FFF;
}

.is-form.vodafone .form-section-01 form label.required::before {
    color: #FC1999;
}

.is-form.vodafone .form-section-01 form input {
    border-radius: 0;
    border: 1px #CCC solid;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.is-form.vodafone input[type="checkbox"]:not(:checked) + label:before, input[type="checkbox"]:checked + label:before {
    border: 2px #EB0003 solid;
}

.is-form.vodafone input[type="checkbox"]:not(:checked) + label:after, .is-form.vodafone input[type="checkbox"]:checked + label:after {
    background: #EB0003;
}

.is-form.vodafone input[type="checkbox"]:checked:focus + label:before,
.is-form.vodafone input[type="checkbox"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1), 0 0 0 6px rgba(235, 0, 3, 0.2);
}

.is-form.vodafone input[type="radio"]:not(:checked) + label:before {
    border: 1px #EB0003 solid;
}

.is-form.vodafone input[type="radio"]:not(:checked) + label:after, .is-form.vodafone input[type="radio"]:checked + label:after {
    background: #EB0003;
}

.is-form.vodafone input[type="radio"]:not(:checked) + label:before, .is-form.vodafone input[type="radio"]:checked + label:before {
    border: 2px #EB0003 solid;
}

.is-form.vodafone input[type="radio"]:checked:focus + label:before,
.is-form.vodafone input[type="radio"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1), 0 0 0 6px rgba(235, 0, 3, 0.2);
}

.is-form.vodafone .form-section-01 form input[type="submit"] {
    /*background: #754E6A;
    border: 2px #754E6A solid;*/
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .5px;
}

/*---------------------- BT GROUP -------------------*/
.is-form.bt .form-section-01 form {
    background: #EBEBEB;
}

.is-form.bt .form-section-01 .form-letter .form-header {
    border-bottom: #4B15AB 1px solid;
    background: #4B15AB;
}

.is-form.bt .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -1px;
    left: 50px;
    max-width: 48px;
    padding: 4px;
}

.is-form.bt .form-section-01 .form-header p {
    color: #FFF;
}

.is-form.bt .form-section-01 form label.required::before {
    color: #FC1999;
}

.is-form.bt .form-section-01 form input {
    border-radius: 0;
    border: 1px #CCC solid;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.is-form.bt input[type="checkbox"]:not(:checked) + label:before, input[type="checkbox"]:checked + label:before {
    border: 2px #4B15AB solid;
}

.is-form.bt input[type="checkbox"]:not(:checked) + label:after, .is-form.bt input[type="checkbox"]:checked + label:after {
    background: #4B15AB;
}

.is-form.bt input[type="checkbox"]:checked:focus + label:before,
.is-form.bt input[type="checkbox"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1), 0 0 0 6px rgba(75, 21, 171, 0.2);
}

.is-form.bt input[type="radio"]:not(:checked) + label:before {
    border: 1px #4B15AB solid;
}

.is-form.bt input[type="radio"]:not(:checked) + label:after, .is-form.bt input[type="radio"]:checked + label:after {
    background: #4B15AB;
}

.is-form.bt input[type="radio"]:not(:checked) + label:before, .is-form.bt input[type="radio"]:checked + label:before {
    border: 2px #4B15AB solid;
}

.is-form.bt input[type="radio"]:checked:focus + label:before,
.is-form.bt input[type="radio"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1), 0 0 0 6px rgba(75, 21, 171, 0.2);
}

.is-form.bt .form-section-01 form input[type="submit"] {
    /*background: #E20047;
    border: 2px #E20047 solid;*/
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .5px;
}

/*---------------------- THREE.CO.UK -------------------*/
.is-form.three .form-section-01 form {
    background: #FFF;
    border: 1px #000 solid;
}

.is-form.three .form-section-01 .form-letter .form-header {
    border: #000 1px solid;
    border-bottom: #000 2px solid;
    background: #FFF;
}

.is-form.three .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -1px;
    left: 50px;
    max-width: 36px;
    padding: 4px;
}

.is-form.three .form-section-01 .form-header p {
    color: #000;
}

.is-form.three .form-section-01 #textDocument {
    border-color: #ccc;
}

.is-form.three .form-section-01 form label.required::before {
    color: #000;
}

.is-form.three .form-section-01 form input {
    border-radius: 0;
    border: 1px #000 solid;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.is-form.three input[type="checkbox"]:not(:checked) + label:before, input[type="checkbox"]:checked + label:before {
    border: 2px #000 solid;
}

.is-form.three input[type="checkbox"]:not(:checked) + label:after, .is-form.three input[type="checkbox"]:checked + label:after {
    background: #000;
}

.is-form.three input[type="checkbox"]:checked:focus + label:before,
.is-form.three input[type="checkbox"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1), 0 0 0 6px rgba(0, 0, 0, 0.2);
}

.is-form.three input[type="radio"]:not(:checked) + label:before {
    border: 1px #000 solid;
}

.is-form.three input[type="radio"]:not(:checked) + label:after, .is-form.three input[type="radio"]:checked + label:after {
    background: #000;
}

.is-form.three input[type="radio"]:not(:checked) + label:before, .is-form.three input[type="radio"]:checked + label:before {
    border: 2px #000 solid;
}

.is-form.three input[type="radio"]:checked:focus + label:before,
.is-form.three input[type="radio"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1), 0 0 0 6px rgba(0, 0, 0, 0.2);
}

.is-form.three .form-section-01 form input[type="submit"] {
    /*background: #6120E6;
    border: 2px #6120E6 solid;*/
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .5px;
}

/*---------------------- EE -------------------*/
.is-form.ee .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -1px;
    left: 50px;
    max-width: 48px;
    max-height: 46px;
    padding: 4px;
}

/*---------------------- TESCO MOBILE -------------------*/
.is-form.tesco-mobile .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -1px;
    left: 50px;
    max-width: 100px;
    padding: 4px;
}

/*---------------------- GIFFGAFF -------------------*/
.is-form.giffgaff .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: 7px;
    left: 50px;
    max-width: 100px;
    padding: 4px;
}

/*---------------------- BRITISH GAS -------------------*/
.is-form.british-gas .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -1px;
    left: 50px;
    max-width: 100px;
    padding: 4px;
}
.is-form.british-gas #textDocument div.logo-letter img {
    max-height: 50px;
}

/*---------------------- EDF ENERGY -------------------*/
.is-form.edf-energy .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -1px;
    left: 50px;
    max-width: 100px;
    padding: 4px;
}

/*---------------------- EBICO LTD -------------------*/
.is-form.ebico-ltd .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -1px;
    left: 50px;
    max-height: 45px;
    padding: 4px;
}

/*---------------------- E.ON ENERGY -------------------*/
.is-form.eon-energy .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: 5px;
    left: 50px;
    max-width: 100px;
    padding: 4px;
}
.is-form.eon-energy #textDocument div.logo-letter img {
    max-height: 40px;
}

/*---------------------- GOOD ENERGY -------------------*/
.is-form.good-energy .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -1px;
    left: 50px;
    max-height: 45px;
    padding: 4px;
}

/*---------------------- LONDON ENERGY -------------------*/
.is-form.london-energy .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -1px;
    left: 50px;
    max-width: 200px;
    padding: 4px;
}
.is-form.london-energy #textDocument div.logo-letter img {
    max-height: 40px;
}

/*---------------------- NPOWER -------------------*/
.is-form.npower .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: 4px;
    left: 50px;
    max-width: 100px;
    padding: 4px;
}

/*---------------------- SOUTHERN ELECTRIC -------------------*/
.is-form.southern-electric .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -2px;
    left: 50px;
    max-width: 100px;
    padding: 4px;
}
.is-form.southern-electric #textDocument div.logo-letter img {
    max-height: 50px;
}

/*---------------------- SCOTTISH POWER -------------------*/
.is-form.scottish-power .form-section-01 .form-letter .form-header img {
    position: absolute;
    top: -2px;
    left: 50px;
    min-height: 50px;
    max-width: 200px;
    padding: 4px;
}
.is-form.scottish-power #textDocument div.logo-letter img {
    max-width: 250px;
}

/*-------------- Payment ------------*/

.payment-section-01 > div > h2 {
    text-align: center;
    text-transform: uppercase;
    margin-top: 35px;
    position: relative;
}

.payment-section-01 h2 span {
    font-weight: 700;
    position: relative;
    width: fit-content;
    margin: auto;
}

.payment-section-01 h2 span::after {
    left: 50px;
}

.payment-section-01 .form-header {
    background: #57B9F1;
    color: #FFF;
    padding: 7px;
    position: relative;
}

.payment-section-01 .form-header img {
    position: absolute;
    top: -7.5px;
    left: 50px;
    max-width: 55px;
}

.payment-section-01 .form-header h2 {
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 700;
    text-align: left;
    margin-left: 120px;
    font-size: 16px;
    color: #FFF;
}

.payment-section-01 form {
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  margin-bottom: 3rem;
}
.payment-section-01 .payment-details {
  margin-bottom: 4rem;
}

.payment-section-01 .form-col-header {
    background: #2D2D41;
    padding: 15px 20px;
    color: #FFF;
    text-align: center;
    font-weight: 700;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.payment-section-01 .payment-details .form-col-header{
  background-color: #fff;
  color: #212529;
}

.payment-section-01 form h3 {
    color: #28293A;
    font-size: 18px;
}

.payment-section-01 form input {
    color: #57B9F1;
}

.payment-section-01 form input {
    border: #57B9F1 1px solid;
    display: block;
    width: 100%;
    padding-left: 15px;
    padding-top: 6px;
    padding-bottom: 6px;
    color: #000;
    border-radius: 4px;
}

.payment-section-01 form input:focus {
    outline: none;
}

.payment-section-01 form button.cvv-infos {
    background: #1e1e1f;
    border: none;
    border-radius: 50px;
    color: #F0F1F4;
    height: 20px;
    width: 20px;
    font-weight: 1000;
    font-size: 13px;
    margin-bottom: 2px;
}

.payment-section-01 .payment-form,
.payment-section-01 .payment-details {
    /*margin-top: 30px;*/
}

.payment-section-01 .form-col-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
}

.payment-section-01 .payment-form {
  padding: 25px;
}

.payment-section-01 .payment-form .form-group {
  margin-bottom: 0.25rem;
}

.payment-section-01 .form-col-header h2::after {
    content: '';
    height: 25px;
    width: 25px;
    background: #2D2D41;
    position: absolute;
    transform: rotate(45deg);
    top: 35px;
    left: 50%;
    z-index: -1;
}

.payment-section-01 .payment-form label {
    font-weight: 500;
    margin-bottom: 0;
    margin-top: .5rem;
    font-size: 14px;
    color: #666;
}

.payment-section-01 .payment-form .card-img-container {
    float: right;
}

.payment-section-01 .payment-form h2 {
    text-transform: inherit;
    font-size: 18px;
}

.payment-section-01 .payment-form img {
    width: 70px;
}

.payment-section-01 .payment-form button.see-more {
    text-decoration: underline;
    color: #5c68e1;
    background: none;
    border: none;
    display: inline;
    padding: 0;
}

.payment-section-01 .payment-form button.see-more:focus {
    outline: none;
}

.terms-conditions [type="checkbox"]:not(:checked) + label:before, [type="checkbox"]:checked + label:before {
    border-radius: 0;
    top: 1.5px;
}

.terms-conditions [type="checkbox"]:not(:checked) + label:after, .terms-conditions [type="checkbox"]:checked + label:after {
    content: '✕';
    position: absolute;
    top: .31em;
    left: -.03em;
    font-size: 2em;
    color: #2ABB64;
    line-height: 0;
    transition: all .2s;
}
.form-section-01 .terms-conditions [type="checkbox"]:checked + label:after {
    height: 0;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 16px;
    color: #AAA;
}

::-moz-placeholder { /* Firefox 19+ */
    font-size: 16px;
    color: #AAA;
}

:-ms-input-placeholder { /* IE 10+ */
    font-size: 16px;
    color: #AAA;
}

:-moz-placeholder { /* Firefox 18- */
    font-size: 16px;
    color: #AAA;
}

.payment-section-01 form input[type="submit"] {
    background: #ff0000;
    border: 2px #ff0000 solid;
    width: 250px;
    padding: 6px 0;
    color: #FFF;
    font-weight: 700;
    font-size: 18px;
    margin: auto;
    margin-top: 20px;
    transition: .2s all;
    border-radius: 40px;
}

.payment-section-01 form input[type="submit"]:hover {
    background: #d40000;
    border: 2px #d40000 solid;
}

.payment-section-01 .payment-details .form-col-header img {
    position: absolute;
    max-width: 42px;
    left: 20px;
    top: -15px;
}

.payment-section-01 .payment-details .form-col-header h2::after {
    content: '';
    height: 25px;
    width: 25px;
    background: #28283A;
    position: absolute;
    transform: rotate(45deg);
    top: 15px;
    right: 0;
}

.payment-section-01 .payment-details .form-payment-list {
    padding: 10px 20px;
}

.payment-section-01 .payment-details .form-payment-list-item {
    border-bottom: 2px #57B9F1 dashed;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
}

.payment-section-01 .payment-details .form-payment-list-item img {
    max-width: 36px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.payment-section-01 .payment-details .form-payment-list-item .media-body {
    margin-top: 7px;
}

.payment-section-01 .payment-details .form-payment-list-item:last-of-type {
    border-bottom: none;
}

.payment-section-01 .payment-details .form-payment-list-item p {
    line-height: 1.2;
}

.payment-section-01 .payment-details .form-col-total {
    background: #5f5f5f;
    font-weight: 700;
    color: #FFF;
    padding: 10px;
    font-size: 18px;
    text-indent: 45px;
}

.payment-section-01 .payment-details .payment-details-container {
    background: #FFF;
    box-shadow: 0 0 10px #ddd;
    border-radius: 6px;
}

.payment-section-01 .payment-details .form-col-infos {
    padding: 20px;
    background: #EEE;
}

.payment-section-01 .payment-details .form-col-infos b {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.payment-section-01 .payment-details .form-col-infos p {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    max-width: 320px;
    margin: auto;
    padding-top: 5px;
}

.payment-section-01 .secure-payment {
    text-align: center;
    display: table;
    margin: auto;
    margin-top: 20px;
    background: url('../../img/Icon_Locker.png') center left no-repeat;
    background-size: 12px;
    padding-left: 25px;
}

/*------------------- FAQ ----------------*/
.is-faq h2.main-title {
    font-weight: 700;
    padding-top: 20px;
}

.is-faq .faq-section-01 {
    background: #EBEBEB;
    padding-bottom: 30px;
}

.is-faq .faq-container {
    border: 1px #EEE solid;
    background: #FFF;
}

.is-faq .faq-section-01 .faq-sommaire {
    padding: 20px 35px;
    background: #FFF;
    border: 1px #AAA solid;
    margin-top: 20px;
}

.is-faq .faq-section-01 ol.faq-sommaire li {
    list-style-type: decimal;
    margin-left: 10px;
    color: #57B9F1;
    font-weight: 700;
}

.is-faq .faq-section-01 .faq-sommaire a {
    color: #57B9F1;
    font-weight: 400;
}

.is-faq .faq-section-01 .faq-item {
    margin-top: 30px;
}

.is-faq .faq-section-01 .faq-item h2 {
    font-weight: 500;
    font-size: 22px;
}

.is-faq .faq-section-01 .faq-item .content {
    margin-top: 10px;
}

.is-faq .faq-section-01 #faq-01 {
    margin-top: 30px;
}

.is-faq .faq-section-01 .about-us {
    background: #FFF;
    padding: 15px;
}

.is-faq .faq-section-01 .about-us h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.is-faq .faq-section-01 .our-objective {
    background: #FFF;
    padding: 15px;
}

.is-faq .faq-section-01 .our-objective h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

/*------------------ CONTACT -----------------*/
.is-contact {
    background: #EBEBEB;
}

.is-contact h2 {
    font-weight: 700;
}

.is-contact .form {
    padding: 10px;
    background: #FFF;
    margin-bottom: 50px;
}

.is-contact form label {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
}

.is-contact form input {
    display: block;
    width: 100%;
    border-radius: 0;
    border: 1px #CCC solid;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.is-contact form input[type="submit"] {
    background: #DD4A2E;
    border: 2px #DD4A2E solid;
    width: 250px;
    padding: 6px 0;
    color: #FFF;
    font-weight: 700;
    font-size: 18px;
    margin: auto;
    margin-top: 30px;
    transition: .2s all;
    border-radius: 40px;
}

.is-contact form textarea {
    width: 100%;
    height: 140px;
    border: 1px #CCC solid;
    display: block;
}

.is-contact .contact-item {
    display: block;
    position: relative;
    margin-top: 15px;
}

.is-contact .contact-item.mail i {
    top: -7.5px;
}

.is-contact .contact-item.phone {
    margin-top: 30px;
}

.is-contact .contact-item.localisation {
    margin-top: 15px;
}

.is-contact .contact-item.phone i {
    top: 1.5px;
}

.is-contact .contact-item i {
    font-size: 18px;
    padding: 10px;
    position: absolute;
    border-radius: 40px;
    border: 2px #000 solid;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 16px;
    top: 5px;
}
.is-contact .form-infos {
    background: #FFF;
    padding: 20px 0px 40px 15px;
    margin-bottom: 120px;
}

.is-contact .form-infos h2 {
    font-size: 22px;
    font-weight: 700;
}

.is-contact .form-infos a {
    color: #000;
    font-size: 16px;
    margin-top: 10px;
    display: block;
    padding-left: 50px;
}

.is-contact .form-infos span {
    display: block;
    font-size: 15px;
    position: relative;
    top: -5px;
    padding-left: 50px;
}

.bg-light{
  background-color: #EEEEEF !important;
}

@media screen and (min-width: 992px) {
    .form-section-01 form input[type="submit"] {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
}

@media screen and (max-width: 992px) {
    .logo-mobile img {
        width: 200px;
        padding-bottom: 10px;
    }

    .navbar-toggler {
        float: right;
        margin-top: 10px;
    }

    .nav-item {
        display: block;
    }

    .nav-item a {
        font-size: 16px;
    }

    .nav-item a::after {
        display: none;
    }

    .nav-item.phone-number {
        margin-left: 15px;
        background-size: 12px;
    }

    .nav-item.phone-number a {
        font-size: 20px;
    }

    .home-section-01 {
        position: relative;
    }

    .home-section-01 input[type="email"]::placeholder {
        font-size: 14px;
    }

    .home-section-01 .lSSlideWrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .form-section-01 h1 {
        padding-top: 30px;
    }

    .form-section-01 .form-letter .form-header img {
        position: relative !important;
        left: inherit !important;
        display: block !important;
        max-width: 80px !important;
        margin: auto !important;
    }

    .payment-section-01 > div > h2 {
        left: 0;
    }

    .form-section-01 form .form-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .form-section-01 .form-generate {
        margin: 0;
        margin-top: 35px;
    }

    .form-section-01 form .form-submit::after {
        display: none;
    }

    .faq-title {
        margin-top: 20px;
    }

    .faq-content {
        margin-top: 15px;
    }

    .payment-section-01 h2 span {
        left: 0;
    }

    .footer {
        padding-top: 0;
    }

    .footer-category {
        margin-top: 30px;
    }

    .footer-category > div > ul {
        margin-top: 10px;
    }

    .footer-item a {
        display: block;
    }

    .footer-item a::before {
        display: none;
    }

    .footer-sub .col-informations::before {
        display: none;
    }

    .payment-section-01 .payment-form label {
        text-indent: 0;
    }

    .payment-section-01 .payment-details .form-col-header img {
        max-width: 32px;
        top: 5px;
    }
}

@media screen and (max-width: 768px) {
    .form-section-01 h1 {
        font-size: 20px;
    }

    .form-section-01 .form-letter .form-header p {
        font-size: 18px;
    }

    .terms-conditions [type="checkbox"]:not(:checked) + label:before, [type="checkbox"]:checked + label:before {
        top: 1px;
    }
}

@media screen and (max-width: 576px) {
    .payment-section-01 > div > h2 {
        font-size: 24px;
    }

    .payment-section-01 .payment-form label {
        font-size: 13px;
    }

    .form-section-01 h1 {
        font-size: 20px;
    }

    .home-section-01 .form h3 {
        font-size: 20px;
    }

    .home-section-01 input[type="text"]::placeholder {
        color: #FFF;
        font-size: 13px;
    }
    .home-section-01 input[type="text"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        font-size: 13px;
        color: #FFF;
    }
    .home-section-01 input[type="text"]::-moz-placeholder { /* Firefox 19+ */
        font-size: 13px;
        color: #FFF;
    }
    .home-section-01 input[type="text"]:-ms-input-placeholder { /* IE 10+ */
        font-size: 13px;
        color: #FFF;
    }
    .home-section-01 input[type="text"]:-moz-placeholder { /* Firefox 18- */
        font-size: 13px;
        color: #FFF;
    }

    .home-section-01 input[type="submit"] {
        font-size: 14px;
    }

    .form-section-01 h1 {
        font-size: 14px;
    }

    .form-section-01 .form-letter .form-header p {
        font-size: 14px;
    }

    .form-section-01 .form-letter .form-header img {
        max-width: 60px !important;
    }

    .terms-conditions [type="checkbox"]:not(:checked) + label, .terms-conditions [type="checkbox"]:checked + label {
        font-size: 12px;
    }

    .terms-conditions [type="checkbox"]:not(:checked) + label:before, [type="checkbox"]:checked + label:before, {
        top: 0.5px;
    }

}

@media screen and (max-width: 380px) {
    .terms-conditions [type="checkbox"]:not(:checked) + label, .terms-conditions [type="checkbox"]:checked + label {
        font-size: 11px;
    }
}

/*CUSTOM PAYMENT PAGE*/
.payment-section-01 h2 span::after {
  left: 0;
}

.payment-details-container.preview {
    height: 180px;
    overflow-y: auto;
}

.payment-details-container.preview img {
    max-width: 250px;
    max-height: 50px !important;
}

/* ---------- COUNTDOWN TIMER ---------- */
.alert-countdown {
    display: flex;
    position: relative;
    padding: 0.75rem 1.25rem;
    font-size: 16px;
    background-color: #f8f9fa;
    border: solid 3px #1b1b36;
    border-radius: 0;
  }
  .alert-countdown img {
    max-width: 42px;
  }
  #time {
    font-weight: 600;
  }
  .alerted {
    /* font-size: 1rem; */
    transition: all .2s ease-in-out;
  }

  @media (max-width: 767.98px) {
    .alert-countdown  {
      font-size: 15px;
    }
  }
  /* ---------- END COUNTDOWN TIMER ---------- */

  /* ---------- SUBSCRIPTION BANNER ---------- */

  .contract-banner {
    padding: 15px 20px 15px 20px;
    box-shadow: rgba(99, 99, 99, 0.1) 0 1px 4px 0;
    background: #f8f8f8
  }

  .contract-banner .banner-title {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 110%;
    color: #262626;
    margin-bottom: 10px;
  }
  .contract-banner p {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 110%;
    letter-spacing: .01em;
    color: #666666;
    margin-bottom: 0;
  }

  @media (max-width: 767.98px) {
    .contract-banner .banner-title {
      font-size: 20px;
    }
    .contract-banner p {
      font-size: 11px;
    }
  }

  /* ---------- END SUBSCRIPTION BANNER ---------- */
