@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;700&display=swap');

/* RESET
--------------------------------*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, b-footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
p {
    margin: 0;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input[type="checkbox"] {
    -webkit-appearance: checkbox;
}
textarea {
    resize: none;
}
a, button {
    cursor: pointer;
    background: none;
    outline: none;
}
a {
    color: inherit;
    text-decoration: none;
}
button, input[type="submit"] {
    cursor: pointer;
}
img {
    display: block;
    border: none;
    max-width: 100%;
    height: auto;
}
a:hover {
    text-decoration: none;
}
strong {
    font-weight: bold;
}
* {
    box-sizing: border-box;
}

/* general
---------------------------------*/

html, body {
    height: 100%;
}
body {
    background-color: #fff;
    color: #1B1B1B;
}
a {
    color: inherit;
    text-decoration: none;
}
.row {
    display: flex;
    margin: 0 -15px;
}
.col {
    width: 100%;
    max-width: 50%;
    margin: 0 15px;
}
.section {
    padding: 20px 0 20px;
}
.wrap {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}
.accent {
    color: #B5C845;
}

/* typography */

body {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
    font-family: 'Mulish', sans-serif;
}
.title-lvl-1 {
    font-weight: 700;
    font-size: 45px;
    line-height: 1.3;
}
html[lang="fr"] .title-lvl-1 {
    font-size: 44px;
}
.title-lvl-2 {
    font-weight: 700;
    font-size: 26px;
    line-height: 1.3;
}
html[lang="fr"] .title-lvl-2 {
    font-size: 23px;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    html[lang="fr"] .title-lvl-1, .title-lvl-1 {
        font-size: 40px;
    }
    html[lang="fr"] .title-lvl-2, .title-lvl-2 {
        font-size: 28px;
    }
    .title-lvl-3 {
        font-size: 20px;
    }
}
@media (max-width: 1040px) {
    html[lang="fr"] .title-lvl-1, .title-lvl-1 {
        font-size: 24px;
    }
    html[lang="fr"] .title-lvl-2, .title-lvl-2 {
        font-size: 16px;
    }
    .title-lvl-3 {
        font-size: 15px;
    }
}

/* typography end*/

.btn {
    display: inline-block;
    background: #FFAE23;
    border-radius: 32px;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    color: #1B1B1B;
    padding: 15px 25px;
}
@media (max-width: 1280px) {
    .btn {
        font-size: 15px;
        line-height: 25px;
        padding: 10px 15px;
        max-width: 380px;
    }
}

/* form */

.form .form-field {
    margin-top: 28px;
}
.form .form-label {
    display: none;
}
.form .form-control {
    display: block;
    width: 100%;
    border: none;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 22px 25px;
    font-size: 16px;
    line-height: 20px;
}
.form .form-control.error {
    border: 1px solid red;
}
.form label.error {
    color: red;
}
.form .phone-note {
    display: block;
}
::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}
::-moz-placeholder {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}
:-ms-input-placeholder {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}
::-ms-input-placeholder {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}
::placeholder {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Mulish', sans-serif;
}
@media (max-width: 1280px) {
    .form .form-control {
        padding: 10px 15px;
        font-size: 15px;
        line-height: 25px;
    }
     ::-webkit-input-placeholder {
        font-size: 15px;
        line-height: 25px;
    }
     ::-moz-placeholder {
        font-size: 15px;
        line-height: 25px;
    }
     :-ms-input-placeholder {
        font-size: 15px;
        line-height: 25px;
    }
     ::-ms-input-placeholder {
        font-size: 15px;
        line-height: 25px;
    }
     ::placeholder {
        font-size: 15px;
        line-height: 25px;
    }
}

/* form end*/


/* timer */

.countdown-container {
    max-width: 315px;
    margin: 0 auto;
}
.countdown-container .countdown-intro p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.5;
}
.countdown-container .icon-clock {
    display: inline-block;
    width: 17px;
    height: 18px;
    margin-right: 10px;
    background-image: url('../images/icon-clock.svg');
    background-repeat: no-repeat;
    background-position: center;
}
.countdown-container .rotor-group:first-child {
    display: none;
}
.countdown-container .rotor-group-heading:before {
    color: #fff;
    width: 100%;
    text-align: center;
    display: block;
}
.countdown-container .rotor-group-heading {
    position: absolute;
    top: 100%;
    text-align: center;
    width: calc(100% - 30px);
    color: #fff;
}
.countdown-container .rotor-group:last-child .rotor-group-heading {
    width: 100%;
}

/* timer end*/

.header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 65px 0 0;
    z-index: 5;
}
.header-logo {
    display: block;
    width: 100%;
    max-width: 266px;
}
@media (max-width: 980px) {
    .header {
        padding: 15px;
    }
    .header-logo {
        max-width: 130px;
        margin: 0 auto;
    }
}
.section {
    padding: 80px 0 100px;
    overflow: hidden;
}
@media (max-width: 1280px) {
    .section {
        padding: 50px 0 60px;
        overflow: hidden;
    }
}
@media (max-width: 980px) {
    .section {
        padding: 40px 0 40px;
    }
}

/* section-1 */

.section-1 {
    background-color: #251FA2;
    background: linear-gradient(0deg, #251FA2, #251FA2), #1B1B1B;
    color: #fff;
    padding: 90px 0 55px;
}
.section-1 .wrap {
    position: relative;
    z-index: 3;
}
.section-1 .info {
    max-width: 590px;
    padding-top: 122px;
    /* position:relative; */
    z-index: 2;
}
.section-1 .section-title {
    color: #fff;
    text-shadow: 0px 3px 0px rgb(255 174 35);
    margin-bottom: 49px;
    letter-spacing: 5px;
}
.section-1 .list {
    font-weight: 700;
    font-size: 26px;
    line-height: 42px;
    position: relative;
}
.section-1 .list li {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    padding-right: 50px;
    letter-spacing: 1px;
}
.section-1 .list li:last-child {
    max-width: 500px;
}
.section-1 .list li:after {
    display: block;
    content: '';
    width: 41px;
    height: 39px;
    background-image: url('../images/icon-arr.svg');
    background-repeat: no-repeat;
    position: absolute;
    right: 19px;
    margin-top: 21px;
    transform: rotate(-90deg);
    transform-origin: center;
}
.section-1 .btn {
    margin-top: 22px;
    width: 100%;
}
.section-1 .countdown-container {
    margin-top: 10px;
}
.section-1 .pic-product {
    display: block;
    position: absolute;
    right: -23px;
    top: 120px;
    z-index: 1;
    max-width: 583px;
    width: 90%;
}
.section-1 .bg {
    display: block;
    position: absolute;
    right: -88px;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: -1;
}
@media (max-width: 1280px) {
    .section-1 .info {
        max-width: 50%;
    }
    .section-1 .countdown-container {
        margin-left: 34px;
    }
    .section-1 .list {
        font-size: 16px;
        line-height: 25px;
        position: relative;
    }
}
@media (max-width: 980px) {
    .section-1 .bg {
        display: none;
    }
    .section-1 .info {
        padding-top: 0;
        margin: 0 auto;
        max-width: 550px;
    }
    .section-1 .section-title {
        text-align: center;
        margin-bottom: 15px;
    }
    .section-1 .pic-product {
        position: relative;
        right: auto;
        top: auto;
    }
    .section-1 .list li {
        padding-left: 60px;
        position: relative;
    }
    .section-1 .list li:after {
        left: 0;
        margin-top: 0;
        top: calc(50% - 20px);
    }
    .section-1 .btn {
        margin: 0 auto;
        display: block;
    }
    .section-1 .countdown-container {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 550px) {
    .flipdown {
        display: flex;
        justify-content: center;
        height: 52px;
        width: auto;
    }
}

/* section-1 end */


/* section-2 */

.section-2 {
    background: #E3E3E3;
}
.section-2 .section-title {
    text-align: center;
    margin-bottom: 34px;
    direction: rtl;
}
.section-2 .list {
    display: flex;
    justify-content: center;
    margin: 0 -12px;
}
.section-2 .item {
    flex-basis: calc(100% / 3);
    flex-grow: 0;
    margin: 0 12px;
    background: #fff;
}
.section-2 .item-title {
    display: flex;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    align-items: center;
    padding: 35px 20px;
}
.section-2 .item-title span {
    font-weight: 700;
    font-size: 65px;
    line-height: 65px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 20px;
    display: inline-block;
}
.section-2 .item .pic img {
    display: block;
    width: 100%;
    border-top: 2px solid #B5C845;
}
@media (max-width: 1280px) {
    .section-2 .item-title {
        font-size: 16px;
        line-height: 25px;
        align-items: center;
        padding: 20px 10px;
        min-height: 90px;
    }
    .section-2 .item-title span {
        font-size: 38px;
        line-height: 1;
        margin-right: 10px;
    }
}
@media (max-width: 860px) {
    .section-2 .list {
        flex-wrap: wrap;
        max-width: 500px;
        margin: auto;
    }
    .section-2 .item {
        flex-basis: 100%;
        flex-grow: 0;
        margin: 0 12px 20px;
        background: #fff;
    }
    .section-2 .item:last-child {
        margin-bottom: 0;
    }
}

/* section-2 end */


/* section-3 */

.section-3 {
    background-color: #fff;
    padding-top: 25px;
    padding-bottom: 25px;
}
.section-3 .wrap {
    position: relative;
    padding: 100px 0;
}
.section-3 .info {
    position: relative;
    z-index: 1;
    text-align: center;
}
.section-3 .title-wrap {
    background-color: #fff;
    padding: 20px;
    margin: 0 -20px;
}
.section-3 .section-title {
    margin-bottom: 6px;
}
.section-3 .arrows {
    display: flex;
    justify-content: center;
    padding: 23px 0 38px;
}
.section-3 .arrows span {
    display: block;
    margin: 0 12px;
}
.section-3 .btn {
    width: 100%;
    max-width: 375px;
}
.section-3 .bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('../images/sec3-bg.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
}
.section-3 .pic-product {
    position: absolute;
    left: 0;
    top: -60px;
    z-index: 3;
    width: 100%;
    max-width: 268px;
}
@media (max-width: 980px) {
    .section-3 .wrap {
        padding: 0;
    }
    .section-3 .bg {
        background-image: none;
    }
    .section-3 .info {
        background: #000;
        display: flex;
        flex-direction: column;
    }
    .section-3 .info .title-wrap {
        order: 1;
    }
    .section-3 .arrows {
        display: none;
    }
    .section-3 .pic-product {
        order: 2;
        position: relative;
        top: auto;
        margin: 30px auto;
        max-width: 220px;
    }
    .section-3 .btn {
        order: 3;
        margin: 0 auto 30px;
    }
}
@media (max-width: 480px) {
    .section-3 .btn {
        max-width: 90%;
    }
}

/* section-3 end */


/* section-4 */

.section-4 {
    background: #AFACAC;
    padding: 75px 0 25px;
}
.section-4 .section-title {
    text-align: center;
    direction: rtl;
}
.section-4 .cards {
    display: flex;
    justify-content: center;
    margin: 45px -12px;
}
.section-4 .card {
    display: flex;
    flex-direction: column;
    margin: 0 12px;
    max-width: 375px;
}
.section-4 .cards .info {
    background-color: #1B1B1B;
    padding: 20px 10px;
    min-height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-4 .cards .info h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    text-align: center;
}
.section-4 .cards .info h3:before {
    content: '';
    display: block;
    position: relative;
    width: 50px;
    height: 5px;
    background-color: #B5C845;
    margin: 0 auto 15px;
}
.section-4 .cards .pic {
    max-height: 235px;
    overflow: hidden;
}
.section-4 .card:nth-child(odd) .pic {
    order: 1;
}
.section-4 .card:nth-child(odd) .info {
    order: 2;
}
.section-4 .comparison {
    color: #fff;
    background: #1b1b1b;
}
.section-4 .columns {
    display: flex;
    width: 100%;
}
.section-4 .comparison .info {
    padding: 72px 80px;
    max-width: 540px;
    flex-shrink: 0;
    flex-basis: 540px;
    z-index: 1;
}
.section-4 .comparison .section-title {
    margin-bottom: 30px;
}
.section-4 .comparison p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}
.section-4 .comparison .btn {
    margin-top: 58px;
    width: 100%;
}
.section-4 .comparison .countdown-container {
    margin: 15px auto 0;
    max-width: 300px;
}
.section-4 .comparison .countdown-intro {}
.section-4 .comparison .pic {
    flex-grow: 1;
    flex-shrink: 1;
    z-index: 0;
    display: flex;
}
.section-4 .comparison .pic img {
    display: block;
    width: calc(100% + 200px);
    margin-left: -200px;
    max-width: 840px;
    margin-top: auto;
}
.section-4 .pic-mob {
    display: none;
}
@media (max-width: 1280px) {
    .section-4 .cards .info h3 {
        font-size: 15px;
        line-height: 25px;
    }
    .section-4 .cards .info {
        min-height: 0;
        padding: 24% 10px;
    }
}
@media (max-width: 980px) {
    .section-4 .comparison .info {
        width: 100%;
        flex-basis: 100%;
        max-width: 335px;
        margin: auto;
        padding: 40px 0 0;
    }
    .section-4 .comparison .pic {
        display: none;
    }
    .section-4 .pic-mob {
        display: block;
        margin: 20px auto 0;
    }
    .section-4 .comparison .btn {
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .section-4 {
        padding: 40px 0;
    }
    .section-4 .cards {
        flex-wrap: wrap;
    }
    .section-4 .card {
        width: 100%;
        flex-basis: 100%;
        max-width: 335px;
        margin-bottom: 20px;
    }
    .section-4 .cards .pic {
        order: 1;
        max-height: 150px;
    }
    .section-4 .cards .info {
        order: 2;
        padding: 15% 10px;
    }
    .section-4 .comparison {
        padding-bottom: 40px;
    }
}

/* section-4 end */


/* section-5 */

.section-5 {
    color: #fff;
    text-align: center;
    background-color: #1B1B1B;
    background-image: url('../images/sec5-bg.jpg');
    background-position: center;
}
.section-5 .section-title {
    margin-bottom: 30px;
}
.section-5 .list-why {
    max-width: 480px;
    margin-left: auto;
    margin-top: 54px;
}
.section-5 .list-why li {
    padding: 30px 10px 40px 135px;
    position: relative;
    text-align: left;
    background-color: #353535;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
}
.section-5 .list-why li:last-child {
    margin-bottom: 0;
}
.section-5 .list-why li:before {
    content: '';
    display: block;
    width: 70px;
    height: 70px;
    background-image: url('../images/icon-thumb.svg');
    background-position: center;
    position: absolute;
    left: 33px;
}
.section-5 .list-why .title {
    width: 100%;
    margin-bottom: 10px;
}
@media (max-width: 1280px) {
    .section-5 {
        background-size: cover;
        background-repeat: no-repeat;
    }
    .section-5 .list-why li {
        padding: 20px 10px 20px 95px;
        min-height: 130px;
    }
    .section-5 .list-why li:before {
        width: 50px;
        height: 50px;
        background-size: contain;
        left: 23px;
    }
}
@media (max-width: 980px) {
    .section-5 {
        background-size: contain;
        background-position: center 82px;
    }
    .section-5 .list-why {
        margin: 200px auto 0;
    }
    .section-5 .list-why li {
        padding: 20px 25px 20px 25px;
        min-height: 0;
    }
    .section-5 .list-why li:before {
        width: 30px;
        height: 30px;
        left: 23px;
        top: 17px;
    }
    .section-5 .list-why .title {
        padding-left: 45px;
    }
}

/* section-5 end */


/* section-6 */

.section-6 {
    background-color: #E3E3E3;
}
.section-6 .section-title {
    text-align: center;
}
.section-6 .cards {
    margin-top: 45px;
    width: 100%;
}
.section-6 .card {
    display: flex;
    margin-bottom: 20px;
}
.section-6 .info {
    flex-basis: 50%;
    background-color: #fff;
    min-height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
}
.section-6 .info h3 {
    max-width: 350px;
    text-align: left;
    margin: auto;
}
.section-6 .pic {
    flex-basis: 50%;
    background-color: #fff;
}
.section-6 .card-2 {}
.section-6 .card-3 {
    margin-bottom: 0;
}
.section-6 .card:nth-child(odd) .pic {
    order: 2;
    -webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 80px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, calc(100% - 80px) 100%, 0% 100%);
}
.section-6 .card:nth-child(odd) .info {
    order: 1;
    -webkit-clip-path: polygon(80px 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(80px 0, 100% 0%, 100% 100%, 0% 100%);
}
.section-6 .card:nth-child(even) .pic {
    order: 1;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 80px 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 80px 100%);
}
.section-6 .card:nth-child(even) .info {
    order: 2;
    -webkit-clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 100%, 0 100%);
}
.section-6 .card-1 .pic {
    background-image: url('../images/sec6-bg1.jpg');
}
.section-6 .card-2 .pic {
    background-image: url('../images/sec6-bg2.jpg');
}
.section-6 .card-3 .pic {
    background-image: url('../images/sec6-bg3.jpg');
}
@media (max-width: 1280px) {
    .section-6 .info {
        min-height: 200px;
        padding: 20px 80px;
    }
    .section-6 .card .pic {
        background-size: cover;
    }
    .section-6 .card:nth-child(odd) .pic {
        -webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 50px) 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0%, calc(100% - 50px) 100%, 0% 100%);
    }
    .section-6 .card:nth-child(odd) .info {
        -webkit-clip-path: polygon(50px 0, 100% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(50px 0, 100% 0%, 100% 100%, 0% 100%);
    }
    .section-6 .card:nth-child(even) .pic {
        -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 50px 100%);
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 50px 100%);
    }
    .section-6 .card:nth-child(even) .info {
        -webkit-clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 100%, 0 100%);
    }
}
@media (max-width: 768px) {
    .section-6 .cards {
        margin-top: 45px;
        width: 100%;
    }
    .section-6 .cards {
        flex-wrap: wrap;
        margin-left: auto;
        margin-right: auto;
        max-width: 335px;
    }
    .section-6 .card {
        width: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
        flex-direction: column;
    }
    .section-6 .card .info {
        order: 2 !important;
        -webkit-clip-path: none !important;
        clip-path: none !important;
        min-height: 140px;
        padding: 20px;
    }
    .section-6 .card .pic {
        padding-bottom: 45%;
        order: 1 !important;
        -webkit-clip-path: none !important;
        clip-path: none !important;
    }
}

/* section-6 end */


/* section-7 */

.section-7 {
    background-color: #251FA2;
    background-image: url('../images/sec7-bg.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    color: #fff;
    padding-top: 75px;
}
.section-7 .title {
    direction: rtl;
}
.section-7 .col {
    max-width: 50%;
    margin-left: auto;
}
.section-7 .section-title {
    margin-bottom: 40px;
}
.section-7 .form-container {
    background-color: #1B1B1B;
    padding: 43px 20px 14px;
    text-align: center;
    margin-top: 60px;
}
.section-7 .form-container .inner {
    max-width: 420px;
    margin: auto;
}
.section-7 .discont {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
}
.section-7 .discont .before {
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 42px;
    text-decoration: line-through;
    padding: 0 40px;
}
.section-7 .discont .after {
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 42px;
    color: #B5C845;
    padding: 0 40px;
}
.section-7 .btn {
    width: 100%;
    margin-bottom: 12px;
}
@media (max-width: 1280px) {
    .section-7 {
        background-position: 32% 0;
        background-size: cover;
        padding-top: 65px;
    }
}
@media (max-width: 860px) {
    .section-7 {
        background-image: none;
        background-color: #fff;
        color: #1B1B1B;
        padding-bottom: 10px;
    }
    .section-7 .col {
        max-width: 100%;
    }
    .section-7 .section-title {
        margin-bottom: 12px;
    }
    .section-7 .form-container {
        margin-top: 30px;
        color: #fff;
        padding-bottom: 40px;
    }
}
@media (max-width: 540px) {
    .section-7 .discont {
        display: flex;
        justify-content: space-between;
        padding: 7px 0;
    }
    .section-7 .discont .before, .section-7 .discont .after {
        font-size: 20px;
        line-height: 38px;
        padding: 0 5px;
    }
}

/* section-7 end */


/* section-8 */

.section-8 {}
.section-8 .section-title {
    text-align: center;
}
.section-8 .reviews {
    display: flex;
    flex-wrap: wrap;
    margin: 25px -12px;
}
.section-8 .review-item {
    flex-basis: calc(100% / 3 - 24px);
    flex-grow: 0;
    flex-shrink: 0;
    margin: 10px 12px 0;
    padding-bottom: 31px;
    border-bottom: 2px solid #E3E3E3;
}
.section-8 .review-item:nth-child(n+4) {
    border-bottom: none;
}
.section-8 .review-title {
    text-align: right;
    margin-bottom: 10px;
}
.section-8 p {
    display: block;
    font-size: 20px;
    text-align: right;
    line-height: 28px;
    min-height: 115px;
}
.section-8 .review-item:nth-child(5) p {
    min-height: 196px;
}
.section-8 .review-pic {
    margin-top: 26px;
}
.section-8 .review-pic img {
    display: block;
    width: 100%;
}
@media (max-width: 1280px) {
    .section-8 .review-title {
        margin-bottom: 6px;
    }
    .section-8 p {
        font-size: 15px;
        line-height: 25px;
    }
    .section-8 .review-item:nth-child(5) p {
        min-height: 125px;
    }
}
@media (max-width: 1024px) {
    .section-8 .review-item {
        flex-basis: calc(100% / 2 - 24px);
        border-bottom: 2px solid #E3E3E3;
    }
    .section-8 .review-item:nth-child(n) {
        border-bottom: 2px solid #E3E3E3;
    }
    .section-8 .review-item:nth-child(5) p {
        min-height: 100px;
    }
}
@media (max-width: 768px) {
    .section-8 .reviews {
        display: flex;
        flex-wrap: wrap;
        margin: 25px auto;
        max-width: 500px;
    }
    .section-8 .review-item {
        flex-basis: 100%;
        margin: 30px auto 0;
    }
    .section-8 .review-item {
        border-bottom: 2px solid #E3E3E3;
    }
    .section-8 .review-item:last-child {
        border-bottom: none;
    }
    .section-8 .review-item p {
        min-height: 0;
    }
}

/* section-8 end */


/* thanks page */

.section-thanks {
    background: #251FA2;
    color: #fff;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
}
.section-thanks .wrap {
    max-width: 1000px;
    display: flex;
    align-items: flex-end;
}
.section-thanks .info {
    max-width: 520px;
    order: 2;
    padding-left: 110px;
    padding-bottom: 181px;
    position: relative;
}
.section-thanks .info:after {
    bottom: 30px;
    display: block;
    content: '';
    width: 200px;
    height: 200px;
    background-image: url('../images/pic-arr.png');
    background-repeat: no-repeat;
    position: absolute;
    left: -81px;
    bottom: 36px;
}
.section-thanks .section-title {}
.section-thanks .title-lvl-2 {
    margin-top: 23px;
}
.section-thanks .note {
    background-color: #fff;
    display: inline-block;
    color: #1B1B1B;
    padding: 18px 13px;
    font-size: 17px;
    margin-top: 32px;
}
.section-thanks .thks-bg {
    display: block;
    order: 1;
}
@media (max-width: 1024px) {
    .section-thanks {
        min-height: 760px;
    }
    .section-thanks .wrap {
        max-width: 1000px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .section-thanks .info {
        max-width: 600px;
        order: 1;
        padding-left: 0;
        padding-bottom: 30px;
    }
    .section-thanks .info:after {
        display: none;
    }
    .section-thanks .title-lvl-2 {
        margin-top: 23px;
    }
    .section-thanks .note {
        padding: 15px 10px;
        font-size: 16px;
        margin-top: 24px;
    }
    .section-thanks .thks-bg {
        display: block;
        order: 2;
    }
}

/* thanks page end*/


/* /french lang styles */


/* section 1 */
html[lang=fr] * {
    direction: ltr !important;
}
html[lang=fr] .section-1 {
    padding: 68px 0 70px;
}
html[lang=fr] .section-1 .info {
    padding-top: 174px;
    padding-left: 45px;
}
html[lang=fr] .section-1 .section-title {
    margin-bottom: 24px;
    max-width: 500px;
    letter-spacing: 1px;
}
html[lang=fr] .section-1 .list {
    font-size: 23px;
    line-height: 1.5;
}
html[lang=fr] .section-1 .list li {
    margin-bottom: 20px;
    display: block;
    padding-right: 92px;
    width: 100%;
    position: relative;
}
html[lang=fr] .section-1 .list li:after {
    margin-top: 0;
    top: calc(50% - 22px);
}
html[lang=fr] .section-1 .btn {
    max-width: 451px;
}
html[lang=fr] .section-1 .countdown-container {
    margin-left: 69px;
}
html[lang=fr] .section-1 .pic-product {
    top: 145px;
}
@media (max-width: 1280px) {
    html[lang=fr] .section-1 .info {
        max-width: 50%;
    }
    html[lang=fr] .section-1 .countdown-container {
        margin-left: 34px;
    }
    html[lang=fr] .section-1 .list {
        font-size: 16px;
        line-height: 25px;
        position: relative;
    }
}
@media (max-width: 980px) {
    html[lang=fr] .section-1 .bg {
        display: none;
    }
    html[lang=fr] .section-1 .info {
        padding-top: 0;
        margin: 0 auto;
        max-width: 550px;
    }
    html[lang=fr] .section-1 .section-title {
        text-align: center;
        margin-bottom: 15px;
    }
    html[lang=fr] .section-1 .pic-product {
        position: relative;
        right: auto;
        top: auto;
    }
    html[lang=fr] .section-1 .list li {
        padding-left: 60px;
        position: relative;
    }
    html[lang=fr] .section-1 .list li:after {
        left: 0;
        margin-top: 0;
        top: calc(50% - 20px);
    }
    html[lang=fr] .section-1 .btn {
        margin: 0 auto;
        display: block;
    }
    html[lang=fr] .section-1 .countdown-container {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 550px) {
    html[lang=fr] .flipdown {
        display: flex;
        justify-content: center;
        height: 52px;
        width: auto;
    }
}

/* section2 */

html[lang=fr] .section-2 {
    background: #E3E3E3;
}
html[lang=fr] .section-2 .section-title {
    text-align: center;
    margin-bottom: 34px;
}
html[lang=fr] .section-2 .list {
    display: flex;
    justify-content: center;
    margin: 0 -12px;
}
html[lang=fr] .section-2 .item {
    flex-basis: calc(100% / 3);
    flex-grow: 0;
    margin: 0 12px;
    background: #fff;
}
html[lang=fr] .section-2 .item-title {
    display: flex;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    align-items: center;
    padding: 35px 15px 44px 22px;
    border-bottom: 5px solid #B5C845;
}
html[lang=fr] .section-2 .item-title span {
    font-weight: 700;
    font-size: 65px;
    line-height: 65px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 20px;
    display: inline-block;
}
html[lang=fr] .section-2 .item .pic img {
    display: block;
    width: 100%;
}
@media (max-width: 1280px) {
    html[lang=fr] .section-2 .item-title {
        font-size: 16px;
        line-height: 25px;
        align-items: center;
        padding: 20px 10px;
        min-height: 90px;
    }
    html[lang=fr] .section-2 .item-title span {
        font-size: 38px;
        line-height: 1;
        margin-right: 10px;
    }
}
@media (max-width: 860px) {
    html[lang=fr] .section-2 .list {
        flex-wrap: wrap;
        max-width: 500px;
        margin: auto;
    }
    html[lang=fr] .section-2 .item {
        flex-basis: 100%;
        flex-grow: 0;
        margin: 0 12px 20px;
        background: #fff;
    }
    html[lang=fr] .section-2 .item:last-child {
        margin-bottom: 0;
    }
}

/* section-4 */

html[lang=fr] .section-4 {
    background: #AFACAC;
    padding: 75px 0 25px;
}
html[lang=fr] .section-4 .section-title {
    text-align: center;
}
html[lang=fr] .section-4 .cards {
    display: flex;
    justify-content: center;
    margin: 45px -12px 25px;
}
html[lang=fr] .section-4 .card {
    display: flex;
    flex-direction: column;
    margin: 0 12px;
    max-width: 375px;
}
html[lang=fr] .section-4 .cards .info {
    background-color: #1B1B1B;
    padding: 20px 20px;
    min-height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}
html[lang=fr] .section-4 .cards .info h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    text-align: center;
    max-width: 270px;
}
html[lang=fr] .section-4 .cards .info h3:before {
    content: "";
    display: block;
    position: relative;
    width: 50px;
    height: 5px;
    background-color: #B5C845;
    margin: 20px auto 25px;
}
html[lang=fr] .section-4 .cards .pic {
    max-height: 235px;
    overflow: hidden;
}
html[lang=fr] .section-4 .card:nth-child(odd) .pic {
    order: 1;
}
html[lang=fr] .section-4 .card:nth-child(odd) .info {
    order: 2;
}
html[lang=fr] .section-4 .comparison {
    color: #fff;
    background: #1b1b1b;
}
html[lang=fr] .section-4 .columns {
    display: flex;
    width: 100%;
}
html[lang=fr] .section-4 .comparison .info {
    padding: 72px 80px;
    max-width: 540px;
    flex-shrink: 0;
    flex-basis: 540px;
    z-index: 1;
}
html[lang=fr] .section-4 .comparison .section-title {
    margin-bottom: 13px;
    text-align: left;
}
html[lang=fr] .section-4 .comparison p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}
html[lang=fr] .section-4 .comparison .btn {
    margin-top: 33px;
    width: 100%;
}
html[lang=fr] .section-4 .comparison .countdown-container {
    margin: 15px auto 0;
    max-width: 300px;
}
html[lang=fr] .section-4 .comparison .pic {
    flex-grow: 1;
    flex-shrink: 1;
    z-index: 0;
    display: flex;
}
html[lang=fr] .section-4 .comparison .pic img {
    display: block;
    width: calc(100% + 200px);
    margin-left: -200px;
    max-width: 840px;
    margin-top: auto;
}
html[lang=fr] .section-4 .pic-mob {
    display: none;
}
@media (max-width: 1280px) {
    html[lang=fr] .section-4 .cards .info h3 {
        font-size: 15px;
        line-height: 25px;
    }
    html[lang=fr] .section-4 .cards .info {
        min-height: 0;
        padding: 24% 10px;
    }
}
@media (max-width: 980px) {
    html[lang=fr] .section-4 .comparison .info {
        width: 100%;
        flex-basis: 100%;
        max-width: 335px;
        margin: auto;
        padding: 40px 0 0;
    }
    html[lang=fr] .section-4 .comparison .pic {
        display: none;
    }
    html[lang=fr] .section-4 .pic-mob {
        display: block;
        margin: 20px auto 0;
    }
    html[lang=fr] .section-4 .comparison .btn {
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    html[lang=fr] .section-4 {
        padding: 40px 0;
    }
    html[lang=fr] .section-4 .cards {
        flex-wrap: wrap;
    }
    html[lang=fr] .section-4 .card {
        width: 100%;
        flex-basis: 100%;
        max-width: 335px;
        margin-bottom: 20px;
    }
    html[lang=fr] .section-4 .cards .pic {
        order: 1;
        max-height: 150px;
    }
    html[lang=fr] .section-4 .cards .info {
        order: 2;
        padding: 15% 10px;
    }
    html[lang=fr] .section-4 .comparison {
        padding-bottom: 40px;
    }
}

/* section-5 */

html[lang=fr] .section-5 {
    color: #fff;
    text-align: center;
    background-color: #1B1B1B;
    background-image: url("../images/sec5-bg.jpg");
    background-position: center;
}
html[lang=fr] .section-5 .section-title {
    margin-bottom: 22px;
}
html[lang=fr] .section-5 .list-why {
    max-width: 480px;
    margin-left: auto;
    margin-top: 40px;
}
html[lang=fr] .section-5 .list-why li {
    padding: 29px 10px 30px 135px;
    min-height: 155px;
    position: relative;
    text-align: left;
    background-color: #353535;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}
html[lang=fr] .section-5 .list-why li:last-child {
    margin-bottom: 0;
}
html[lang=fr] .section-5 .list-why li:before {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    background-image: url("../images/icon-thumb.svg");
    background-position: center;
    position: absolute;
    left: 33px;
    top: calc(50% - 35px);
}
html[lang=fr] .section-5 .list-why .title {
    width: 100%;
    margin-bottom: 13px;
}
@media (max-width: 1280px) {
    html[lang=fr] .section-5 {
        background-size: cover;
        background-repeat: no-repeat;
    }
    html[lang=fr] .section-5 .list-why li {
        padding: 20px 10px 20px 95px;
        min-height: 130px;
    }
    html[lang=fr] .section-5 .list-why li:before {
        width: 50px;
        height: 50px;
        background-size: contain;
        left: 23px;
    }
}
@media (max-width: 980px) {
    html[lang=fr] .section-5 {
        background-size: contain;
        background-position: center 82px;
    }
    html[lang=fr] .section-5 .list-why {
        margin: 200px auto 0;
    }
    html[lang=fr] .section-5 .list-why li {
        padding: 20px 25px 20px 25px;
        min-height: 0;
    }
    html[lang=fr] .section-5 .list-why li:before {
        width: 30px;
        height: 30px;
        left: 23px;
        top: 17px;
    }
    html[lang=fr] .section-5 .list-why .title {
        padding-left: 45px;
    }
}

/* section-6 */

html[lang=fr] .section-6 {
    background-color: #E3E3E3;
}
html[lang=fr] .section-6 .section-title {
    text-align: center;
}
html[lang=fr] .section-6 .cards {
    margin-top: 36px;
    width: 100%;
}
html[lang=fr] .section-6 .card {
    display: flex;
    margin-bottom: 20px;
}
html[lang=fr] .section-6 .info {
    flex-basis: 50%;
    background-color: #fff;
    min-height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
}
html[lang=fr] .section-6 .info h3 {
    max-width: 400px;
    text-align: left;
}
html[lang=fr] .section-6 .pic {
    flex-basis: 50%;
    background-color: #fff;
}
html[lang=fr] .section-6 .card-3 {
    margin-bottom: 0;
}
html[lang=fr] .section-6 .card:nth-child(odd) .pic {
    order: 2;
    -webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 80px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, calc(100% - 80px) 100%, 0% 100%);
}
html[lang=fr] .section-6 .card:nth-child(odd) .info {
    order: 1;
    -webkit-clip-path: polygon(80px 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(80px 0, 100% 0%, 100% 100%, 0% 100%);
    justify-content: flex-end;
    padding-right: 66px;
}
html[lang=fr] .section-6 .card:nth-child(even) .pic {
    order: 1;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 80px 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 80px 100%);
}
html[lang=fr] .section-6 .card:nth-child(even) .info {
    order: 2;
    -webkit-clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 100%, 0 100%);
    justify-content: flex-start;
    padding-left: 70px;
}
html[lang=fr] .section-6 .card-1 .pic {
    background-image: url("../images/sec6-bg1.jpg");
}
html[lang=fr] .section-6 .card-2 .pic {
    background-image: url("../images/sec6-bg2.jpg");
}
html[lang=fr] .section-6 .card-3 .pic {
    background-image: url("../images/sec6-bg3.jpg");
}
@media (max-width: 1280px) {
    html[lang=fr] .section-6 .info {
        min-height: 200px;
        padding: 20px 80px;
    }
    html[lang=fr] .section-6 .card .pic {
        background-size: cover;
    }
    html[lang=fr] .section-6 .card:nth-child(odd) .pic {
        -webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 50px) 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0%, calc(100% - 50px) 100%, 0% 100%);
    }
    html[lang=fr] .section-6 .card:nth-child(odd) .info {
        -webkit-clip-path: polygon(50px 0, 100% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(50px 0, 100% 0%, 100% 100%, 0% 100%);
    }
    html[lang=fr] .section-6 .card:nth-child(even) .pic {
        -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 50px 100%);
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 50px 100%);
    }
    html[lang=fr] .section-6 .card:nth-child(even) .info {
        -webkit-clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 100%, 0 100%);
    }
}
@media (max-width: 768px) {
    html[lang=fr] .section-6 .cards {
        margin-top: 45px;
        width: 100%;
    }
    html[lang=fr] .section-6 .cards {
        flex-wrap: wrap;
        margin-left: auto;
        margin-right: auto;
        max-width: 335px;
    }
    html[lang=fr] .section-6 .card {
        width: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
        flex-direction: column;
    }
    html[lang=fr] .section-6 .card .info {
        order: 2 !important;
        -webkit-clip-path: none !important;
        clip-path: none !important;
        min-height: 140px;
        padding: 20px;
    }
    html[lang=fr] .section-6 .card .pic {
        padding-bottom: 45%;
        order: 1 !important;
        -webkit-clip-path: none !important;
        clip-path: none !important;
    }
}

/* section-7 */

html[lang=fr] .section-7 {
    background-color: #251FA2;
    background-image: url("../images/sec7-bg.jpg");
    background-position: bottom;
    background-repeat: no-repeat;
    color: #fff;
    padding-top: 75px;
}
html[lang=fr] .section-7 .col {
    max-width: 50%;
    margin-left: auto;
}
html[lang=fr] .section-7 .section-title {
    margin-bottom: 25px;
}
html[lang=fr] .section-7 .form-container {
    background-color: #1B1B1B;
    padding: 28px 20px 14px;
    text-align: center;
    margin-top: 45px;
}
html[lang=fr] .section-7 .form-container .inner {
    max-width: 420px;
    margin: auto;
}
html[lang=fr] .section-7 .discont {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
}
html[lang=fr] .section-7 .discont .before {
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 42px;
    text-decoration: line-through;
    padding: 0 40px;
}
html[lang=fr] .section-7 .discont .after {
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 42px;
    color: #B5C845;
    padding: 0 40px;
}
html[lang=fr] .section-7 .btn {
    width: 100%;
    margin-bottom: 12px;
}
@media (max-width: 1280px) {
    html[lang=fr] .section-7 {
        background-position: 32% 0;
        background-size: cover;
        padding-top: 65px;
    }
}
@media (max-width: 860px) {
    html[lang=fr] .section-7 {
        background-image: none;
        background-color: #fff;
        color: #1B1B1B;
        padding-bottom: 10px;
    }
    html[lang=fr] .section-7 .col {
        max-width: 100%;
    }
    html[lang=fr] .section-7 .section-title {
        margin-bottom: 12px;
    }
    html[lang=fr] .section-7 .form-container {
        margin-top: 30px;
        color: #fff;
        padding-bottom: 40px;
    }
}
@media (max-width: 540px) {
    html[lang=fr] .section-7 .discont {
        display: flex;
        justify-content: space-between;
        padding: 7px 0;
    }
    html[lang=fr] .section-7 .discont .before, html[lang=fr] .section-7 .discont .after {
        font-size: 20px;
        line-height: 38px;
        padding: 0 5px;
    }
}

/* section-8 */

html[lang=fr] {

}
html[lang=fr] .section-8 .section-title {
    text-align: center;
}
html[lang=fr] .section-8 .reviews {
    display: flex;
    flex-wrap: wrap;
    margin: 12px -12px;
}
html[lang=fr] .section-8 .review-item {
    flex-basis: calc(100% / 3 - 24px);
    flex-grow: 0;
    flex-shrink: 0;
    margin: 10px 12px 0;
    padding-bottom: 31px;
    border-bottom: 2px solid #E3E3E3;
}
html[lang=fr] .section-8 .review-item:nth-child(n+4) {
    border-bottom: none;
    display: none;
}
html[lang=fr] .section-8 .review-title {
    text-align: left;
    margin-bottom: 10px;
}
html[lang=fr] .section-8 p {
    display: block;
    font-size: 18px;
    text-align: left;
    line-height: 1.6;
    min-height: 233px;
}
html[lang=fr] .section-8 .review-item:nth-child(5) p {
    min-height: 196px;
}
html[lang=fr] .section-8 .review-pic {
    margin-top: 26px;
}
html[lang=fr] .section-8 .review-pic img {
    display: block;
    width: 100%;
}
@media (max-width: 1280px) {
    html[lang=fr] .section-8 .review-title {
        margin-bottom: 6px;
    }
    html[lang=fr] .section-8 p {
        font-size: 15px;
        line-height: 25px;
    }
    html[lang=fr] .section-8 .review-item:nth-child(5) p {
        min-height: 125px;
    }
}
@media (max-width: 1024px) {
    html[lang=fr] .section-8 .review-item {
        flex-basis: calc(100% / 2 - 24px);
        border-bottom: 2px solid #E3E3E3;
    }
    html[lang=fr] .section-8 .review-item:nth-child(n) {
        border-bottom: 2px solid #E3E3E3;
    }
    html[lang=fr] .section-8 .review-item:nth-child(5) p {
        min-height: 100px;
    }
}
@media (max-width: 768px) {
    html[lang=fr] .section-8 .reviews {
        display: flex;
        flex-wrap: wrap;
        margin: 25px auto;
        max-width: 500px;
    }
    html[lang=fr] .section-8 .review-item {
        flex-basis: 100%;
        margin: 30px auto 0;
    }
    html[lang=fr] .section-8 .review-item {
        border-bottom: 2px solid #E3E3E3;
    }
    html[lang=fr] .section-8 .review-item:last-child {
        border-bottom: none;
    }
    html[lang=fr] .section-8 .review-item p {
        min-height: 0;
    }
}
html[lang=fr] .section-thanks {
    background: #251FA2;
    color: #fff;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
}
html[lang=fr] .section-thanks .wrap {
    max-width: 1060px;
    display: flex;
    align-items: flex-end;
}
html[lang=fr] .section-thanks .info {
    max-width: 700px;
    order: 2;
    padding-left: 110px;
    padding-bottom: 181px;
    position: relative;
}
html[lang=fr] .section-thanks .info:after {
    bottom: 30px;
    display: block;
    content: "";
    width: 200px;
    height: 200px;
    background-image: url("../images/pic-arr.png");
    background-repeat: no-repeat;
    position: absolute;
    left: -81px;
    bottom: 36px;
}
html[lang=fr] .section-thanks .title-lvl-2 {
    margin-top: 23px;
}
html[lang=fr] .section-thanks .note {
    background-color: #fff;
    display: inline-block;
    color: #1B1B1B;
    padding: 18px 13px;
    font-size: 20px;
    margin-top: 32px;
    max-width: 480px;
}
html[lang=fr] .section-thanks .thks-bg {
    display: block;
    order: 1;
}
@media (max-width: 1024px) {
    html[lang=fr] .section-thanks {
        min-height: 760px;
    }
    html[lang=fr] .section-thanks .wrap {
        max-width: 1000px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    html[lang=fr] .section-thanks .info {
        max-width: 600px;
        order: 1;
        padding-left: 0;
        padding-bottom: 30px;
    }
    html[lang=fr] .section-thanks .info:after {
        display: none;
    }
    html[lang=fr] .section-thanks .title-lvl-2 {
        margin-top: 23px;
    }
    html[lang=fr] .section-thanks .note {
        padding: 15px 10px;
        font-size: 16px;
        margin-top: 24px;
    }
    html[lang=fr] .section-thanks .thks-bg {
        display: block;
        order: 2;
    }
}