/* Fonts Start */
@font-face {
    font-family: 'Gothic821';
    src: url('../assets/fonts/GOTH821C.TTF') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'ReadexPro';
    src: url('../assets/fonts/ReadexPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'ReadexPro';
    src: url('../assets/fonts/ReadexPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'ReadexPro';
    src: url('../assets/fonts/ReadexPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'ReadexPro';
    src: url('../assets/fonts/ReadexPro-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'ReadexPro';
    src: url('../assets/fonts/ReadexPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Impact';
    src: url('../assets/fonts/impact.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
/* Fonts End */

/* transition: all 1s ease; */

/* General CSS Start */
:root {
    --primary-color: #EB4632;       /* Fresh green */
    --secondary-color: #005555;     /* Bright orange */
    --dark: #000000;      /* Deep dark gray */
    --White: #FFFFFF;    /* White */
    --accent-color: #00A292; /* Light Green */
    --x:0.075s;
    --y:70;
}
* {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "ReadexPro";
}
  
html{
    scroll-behavior: smooth;
}
body {
    text-align: center;
    color:var(--dark);
}
a {
    color: inherit;
    text-decoration: none;
    outline: none !important;
}
a:hover {
    color: inherit;
    text-decoration: none;
}
  button:focus,
  input:focus {
    outline: none;
}
.orange_text{
    color: var(--secondary-color);
}
h1,
h1 *{
    font-family: 'Gothic821';
    font-weight: 400;
}
h1,
h1 *{
    font-size: 9.4rem;
    line-height: 104%;
}
h2,
h2 *{
    font-size: 7.4rem;
    line-height: 110%;
    font-family: 'Gothic821';
    font-weight: 400;
}
h3,
h3 *,
h4,
h4 *,
h5,
h5 *,
h6,
h6 *{
    font-family: 'Gothic821';
    font-weight: 400;
}
h3,
h3 *{
    font-size: 5.8rem;
    line-height: 110%;
}

section{
    position: relative;
}
p,
li {
    font-family: "ReadexPro";
    font-weight: 400;
    font-size: 2.2rem;
    line-height: 150%;
}
.container {
    margin: 0 auto;
    width: 100%;
    max-width: 160rem;
}
main {
    position: relative;
    z-index: 1;
}
.d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.primary_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 34.6rem;
    height: 8.8rem;    
    background-color: var(--primary-color);
    color: var(--White);
    transition-duration: 0.3s;
    border-radius: 10rem;
    font-family: 'Gothic821';
    font-size: 4.6rem;
    line-height: 4.6rem;
    font-weight: 400;
    text-transform: uppercase;
    will-change: transform;
}
.primary_btn b {
    font-family: 'Gothic821';
    font-size: 4.6rem;
    line-height: 4.6rem;
    font-weight: 400;
    text-transform: uppercase;
    /* padding-bottom: 0.25rem; */
}
.primary_btn span {
    font-family: 'ReadexPro';
    font-weight: 300;
    font-size: 2rem;
    line-height: 2rem;
    text-transform: initial;
}
.orange {
    color: var(--primary-color) !important;
}
.light_green{
    color: var(--accent-color) !important;
}
.title-animation {
    opacity: 0 !important;
    transform: translateY(-5rem) !important;
    transition-duration: 0.9s !important;
}
.title-animation.active
 {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
/* Header Start */
header{
    /* display: none; */
    width: 40.3rem;
    height: 18.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
    position: fixed;
    left: 4.2rem;
    top: 0;
    z-index: 10;
    background-color: var(--White);
    border-bottom-left-radius: 6.7rem;
    border-bottom-right-radius: 6.7rem;
    transition-duration: 0.3s;
    transform-style: preserve-3d;
    will-change: transform;
}
header .header_logo img {
    width: 35rem;
    display: block;
    transition-duration: 0.3s;
    transform-style: preserve-3d;
    will-change: transform;
}
.header_logo{
    display: block;
}
body.scrolled2 header{
    width: calc(40.3rem / 100 * var(--y));
    height: calc(18.8rem / 100 * var(--y));
    border-bottom-left-radius: calc(6.7rem / 100 * var(--y));
    border-bottom-right-radius: calc(6.7rem / 100 * var(--y));
    left: calc(4.2rem + calc(calc(40.3rem - calc(40.3rem / 100 * var(--y))) / 2));
}
body.scrolled2 header .header_logo img {
    width: calc(35rem / 100 * var(--y));
}
/* Header End */
/* Section1 Start */
.section1,
.slick1_item{
    height: 100vh;
    height: calc(100vh - 2rem);
}
.section1{
    background-color: var(--accent-color);
    color: var(--White);
    z-index: 1;
    /* height: 100vh; */
}
.slick1{
    width: 100%;
    position: relative;
    z-index: 1;
}
.slick1_item{
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 14.2rem;
}
.slick1_item1 {
    background-image: url(../img/desktop/e1_yvan_leonie_1x.webp);
}
.slick1_item2 {
    background-image: url(../img/desktop/e1_lise_1x.webp);
}
.slick1_item p {
    font-size: 2.2rem;
    line-height: 130%;
    margin: 0;
    padding-left: 4.2rem;
    width: 32rem;
    text-align: left;
    font-weight: 600;
    text-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.25);
}
.scroll_bottom {
    display: block;
    margin: 0 auto;
    width: 8.3rem;
    transform: translateY(-3rem);
}
.section1 .container {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll_bottom img{
    display: block;
    width: 100%;
}
.section1 h1 {
    margin-bottom: 2.4rem;
}
.section1 h1 span:nth-child(1) {
    display: block;
} 
.section1 h1 span:nth-child(2) {
    display: block;
    color: var(--secondary-color);
    transition-delay: 0.3s;
    position: relative;
    width: 116.2rem;
    height: 12.4rem;
    margin: 0 auto;
}
.section1 h1 span:nth-child(2)::after {
    content: '';
    background-image: url(../img/desktop/section1_vector.svg);
    background-position: top -0.85rem left;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition-duration: 1.2s;
    transition-delay: 0.9s;
    width: 0;
}
.section1 h1 span.active:nth-child(2)::after {
    width: 100%;
}
.play_vod {
    width: 7rem;
    display: block;
    margin: 0 auto 3.6rem auto;
    transition-duration: 0.3s;
    cursor: pointer;
}
.slick2_holder {
    width: 25.3rem;
    border-top-left-radius: 2.2rem;
    border-bottom-left-radius: 2.2rem;
    background-color: var(--White);
    text-align: center;
    color: var(--secondary-color);
    position: absolute;
    right: 0;
    z-index: 3;
    top: calc(50% - 14.2rem);
    transform: translateY(-50%);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    transition-duration: 0.3s;
}
.slick2 {
    width: 100%;
}
.slick2_item{
    cursor: pointer;
    padding: 0.7rem 2.2rem 2.2rem 2.2rem;
}
.slick2_item p{
    font-family: 'Gothic821';
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 0.5rem;
}
.slick2_item_img{
    margin: 0 auto;
    width: 20.9rem;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    border-radius: 3px;
    min-height: 11.85rem;
    background-color: #00A292;
}
.slick2_item_img img:nth-child(1){
    width: 100%;
    height: 100%;
    height: 11.25rem;
    object-fit: cover;
    display: block;
}
.slick2_item_img img:nth-child(2){
    position: absolute;
    z-index: 3;
    width: 3.2rem;
    display: block;
    top: calc(50% + 0.5rem);
    left: calc(50% + 0.5rem);
    transform: translate(-50%, -50%);
}
.slick2_item_img img:nth-child(3){
    position: absolute;
    z-index: 2;
    width: 120%;
    display: block;
    top: 0;
    left: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    opacity: 0;
    transition-duration: 0.3s;
    /* display: none; */
}
.slick2_item_img:hover {
    min-height: 12rem;
}
.slick2_item:hover img:nth-child(3){
    /* display: block; */
    opacity: 1;
}
.slick2_item:hover img:nth-child(1),
.slick2_item:hover img:nth-child(2){
    opacity: 0;
}
.right_bare{
    position: fixed;
    transition-duration: 0.9s;
    right: 0;
    bottom: 5.2rem;
    width: 61.2rem;
    height: 15.6rem;
    border-top-left-radius: 3rem;
    background-color: var(--accent-color);
    z-index: 7;
    padding: 2rem 4.2rem 0 4.2rem;
    bottom: 100%;
    bottom: -11rem;
    /* transform: translateY(15rem); */
}

@keyframes slideUp {
    from {
        bottom: -11rem;
    }
    to {
        bottom: 5.2rem;
    }
}
.right_bare p {
    font-family: 'Gothic821';
    font-size: 2.6rem;
    line-height: 120%;
    font-weight: 400;
    color: var(--secondary-color);
    margin: 0 auto;
}
.right_bare p span {
    font-family: 'Gothic821';
    font-size: 2.6rem;
    line-height: 120%;
    font-weight: 400;
    color: var(--White);
}
.right_bare img {
    width: 3.8rem;
    display: block;
    margin: 1.3rem 19.1rem 0 auto;
}
/* Section1 End */
/* Section2 Start */
.section2{
    background-image: url(../img/desktop/section2.png);
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--White);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    height: 111.4rem;
    padding-top: 10rem;
}
.section2 .container{
    position: relative;
    z-index: 1;
}
.section2 h2 {
    margin: 0 auto 2.4rem auto;
    width: 104.8rem;
}
.section2 p {
    margin: 0 auto 4rem auto;
    width: 85rem;
    font-size: 2.6rem;
    line-height: 130%;
}
.section2 .primary_btn {
    width: 39.7rem;
    height: 8rem;
    font-size: 5.1rem;
}
.section2_top {
    position: absolute;
    top: -4.5rem;
    left: 0;
    width: 100%;
    display: block;
    z-index: 2;
}
.section2_bottom {
    width: 100%;
    height: 53rem;
    display: block;
    object-fit: cover;
    object-position: top;
}
/* Section2 End */
/* Section3 Start */
.section3{
    background-image: url(../img/desktop/section3.png);
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--White);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    overflow: hidden;
    height: 139rem;
    margin-bottom: -4.5rem;
    padding-bottom: 1rem;
}
.section3 .container{
    max-width: 160.4rem;
}
.section3 h2 {
    margin: 0 auto 3.7rem auto;
    width: 114.8rem;
}
.section3 p {
    font-size: 3rem;
    line-height: 130%;
    margin: 0 auto 3rem auto;
    width: 104.4rem;
}
.section3 .primary_btn {
    width: 57rem;
    height: 8rem;
    font-size: 5.1rem;
    border-radius: 16rem;
}
.sec3_cards{
    margin: 0 auto 3.5rem auto;
    width: 100%;
    height: 76.7rem;
    background-image: url(../img/desktop/recherche.png);
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-content: center;
}
.sec3_card {
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-direction: column;
    text-align: left;
}
.sec3_card1 {
    width: 90rem;
    padding-left: 9.7rem;
}
.sec3_card2 {
    width: calc(100% - 90rem);
    padding-left: 6.7rem;
    padding-right: 9rem;
    color: var(--dark);
}
.sec3_card1 h3 {
    width: 35.3rem;
    font-size: 5.8rem;
    line-height: 110%;
    margin-bottom: 2.5rem;
}
.sec3_card1 h3 span {
    display: inline-block;
}
.sec3_card1 h3 span:nth-child(2) {
    transition-delay: var(--x);
}
.sec3_card1 h3 span:nth-child(3) {
    transition-delay: calc(var(--x) * 2);
}
.sec3_card1 h3 span:nth-child(4) {
    transition-delay: calc(var(--x) * 3);
}
.sec3_card1 h3 span:nth-child(5) {
    transition-delay: calc(var(--x) * 4);
}
.sec3_card1 h3 span:nth-child(6) {
    transition-delay: calc(var(--x) * 5);
}
.sec3_card1 h3 span:nth-child(7) {
    transition-delay: calc(var(--x) * 6);
}
.sec3_card1 h3 span:nth-child(8) {
    transition-delay: calc(var(--x) * 7);
}
.sec3_card1 h3 span:nth-child(9) {
    transition-delay: calc(var(--x) * 8);
}
.sec3_card1 h3 span:nth-child(10) {
    transition-delay: calc(var(--x) * 9);
}
.sec3_card1 h3 span:nth-child(11) {
    transition-delay: calc(var(--x) * 10);
}
.sec3_card1 h3 span:nth-child(12) {
    transition-delay: calc(var(--x) * 11);
}
.sec3_card1 h3 span:nth-child(13) {
    transition-delay: calc(var(--x) * 12);
}
.sec3_card1 h3 span:nth-child(14) {
    transition-delay: calc(var(--x) * 13);
}
.sec3_card1 h3 span:nth-child(15) {
    transition-delay: calc(var(--x) * 14);
}
.sec3_card1 h3 span:nth-child(16) {
    transition-delay: calc(var(--x) * 15);
}
.sec3_card1 h3 span:nth-child(17) {
    transition-delay: calc(var(--x) * 16);
}
.sec3_card1 h3 span:nth-child(18) {
    transition-delay: calc(var(--x) * 17);
}
.sec3_card1 h3 span:nth-child(19) {
    transition-delay: calc(var(--x) * 18);
}
.sec3_card1 h3 span:nth-child(20) {
    transition-delay: calc(var(--x) * 19);
}
.sec3_card1 h3 span:nth-child(21) {
    transition-delay: calc(var(--x) * 20);
}
.sec3_card1 h5 {
    font-size: 2.1rem;
    line-height: 130%;
    margin-bottom: 0;
    font-family: 'ReadexPro';
    font-weight: 700;
}
.sec3_card2 p {
    width: auto;
    font-size: 2.2rem;
    line-height: 150%;
    margin-bottom: 2rem;
}
.sec3_card2 ul {
    padding-left: 3rem;
}
/* Section3 End */
/* Section4 Start */
.section4{
    background-image: url(../img/desktop/section4.png);
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--White);
    padding: 10rem 0 10rem 0;
    z-index: 3;
    overflow: hidden;
    height: 131.7rem;
    margin-bottom: -4.5rem;
}
.section4 .container{
    max-width: 161.3rem;
}
.section4 h2 {
    width: 138.4rem;
    margin: 0 auto 3rem auto;
}
.section4 h3 {
    font-family: "ReadexPro";
    font-size: 2.6rem;
    line-height: 130%;
    font-weight: 500;
    width: 101.4rem;
    margin: 0 auto 5rem auto;
}
.section4 h3 span {
    font-family: "ReadexPro";
    font-size: 2.6rem;
    line-height: 130%;  
}
.sec4_cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}
.sec4_card{
    width: 36rem;
    height: 48.9rem;
    height: 50.7rem;
    border-radius: 1rem;
    background-color: var(--White);
    color: var(--dark);
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 15.5rem;
    transform-style: preserve-3d;
    will-change: transform;
    transition-duration: 0.3s;
}
.sec4_card1{
    background-image: url(../img/desktop/photo80_1x.webp);
    height: 48.9rem;
    transform: rotate(-2deg);
}
.sec4_card2{
    background-image: url(../img/desktop/photo150_1x.webp);
    height: 50.7rem;
    transform: rotate(-1deg);
}
.sec4_card3{
    background-image: url(../img/desktop/photo300_1x.webp);
    height: 50.7rem;
    transform: rotate(1deg);
}
.sec4_card4{
    background-image: url(../img/desktop/photo500_1x.webp);
    height: 50.7rem;
    transform: rotate(2deg) translateY(1.5rem);
}
.sec4_card h3{
    width: auto;
    color: var(--primary-color);
    font-family: 'Gothic821';
    margin: 0 auto 0.5rem auto;
    font-size: 7.2rem;
    line-height: 5.2rem;
}
.sec4_card h3 span {
    font-family: 'Impact';
    font-size: 6.6rem;
    padding-left: 1rem;
}
.sec4_card h4{
    color: var(--White);
    font-family: 'ReadexPro';
    font-weight: 400;
    margin: 0 auto 2.5rem auto;
    font-size: 2rem;
    line-height: 110%;
    position: relative;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec4_card h4 b {
    font-family: 'ReadexPro';
    font-weight: 400;
    font-size: 2rem;
    line-height: 110%;
}
.sec4_card1 h4 {
    width: 15.5rem;
    height: 4.6rem;
    height: 4.9rem;
    background-image: url(../img/desktop/vector_1.svg);
}
.sec4_card1 h4 b{
    transform: rotate(-2deg);
}
.sec4_card2 h4 b {
    transform: rotate(-1deg);
}
.sec4_card3 h4 b{
    transform: rotate(1deg);
}
.sec4_card4 h4 b {
    transform: rotate(2deg);
}
.sec4_card2 h4 {
    width: 27.4rem;
    height: 4.9rem;
    background-image: url(../img/desktop/vector_2.svg);
}
.sec4_card3 h4 {
    width: 23rem;
    height: 4.7rem;
    height: 4.9rem;
    background-image: url(../img/desktop/vector_3.svg);
}
.sec4_card4 h4 {
    width: 18.2rem;
    height: 4.9rem;
    background-image: url(../img/desktop/vector_4.svg);
}
.sec4_card h5{
    font-family: 'ReadexPro';
    margin: 0 auto 0.5rem auto;
    font-size: 1.4rem;
    line-height: 130%;
    font-weight: 400;
}
.sec4_card h5 span {
    font-family: 'ReadexPro';
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}
.sec4_card p{
    font-size: 1.8rem;
    line-height: 120%;
    font-weight: 400;
    /* min-height: 8.66rem; */
    margin: 1rem auto 1.2rem auto;
}
.sec4_card1 p{
    width: 27.6rem;
}
.sec4_card2 p{
    width: 28.8rem;
}
.sec4_card3 p{
    width: 31.4rem;
}
.sec4_card4 p{
    width: 24.2rem;
}
.sec4_card .primary_btn {
    font-size: 2.8rem;
    width: 21.4rem;
    height: 5rem;
    border-radius: 10rem;
    flex-direction: initial;
}
.sec4_card .primary_btn span{
    font-size: 2.8rem;
    font-family: 'impact';
    display: block;
    padding-left: 0.5rem;
}
.sec4_text {
    width: 118.5rem;
    height: 17.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/desktop/sec4_text.png);
    background-position: center;
    background-size: cover;
    margin: 8rem auto 0 auto;
    padding: 0 2rem;
}
.sec4_text p {
    font-size: 2.6rem;
    line-height: 130%;
    margin: 0;
}
.sec4_text b {
    font-size: 3.9rem;
    font-weight: 700;
}
/* Section4 End */
/* Section5 Start */
.section5 {
    background-image: url(../img/desktop/section5.png);
    background-position: center bottom;
    background-size: cover;
    z-index: 2;
    margin-bottom: -9rem;
    padding: 15rem 0 15rem 0;
}
.sec5_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 130.5rem;
    margin: 0 auto;
}
.section5 h2{
    color: var(--secondary-color);
    text-align: left;
    margin-bottom: 4.3rem;
}
.sec5_box1 {
    width: 80.6rem;
}
.sec5_box2 {
    width: 41.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.sec5_box2 p {
    text-align: center;
    font-size: 2.6rem;
    line-height: 130%;
    font-weight: 600;
    margin-bottom: 0;
}
 /*  */
.circle_box {
  position: initial;
  width: 32.5rem;
  height: auto;
  margin: 0 auto;
  position: relative;
  margin-bottom: 1rem;
}
.circle_box .omega {
  height: 32.5rem;
}
.circular-chart {
    display: block;
    max-height: 32.5rem;
}
.single-chart {
  position: relative;
  z-index: 2;
}
.circle {
  fill: none;
  stroke-width: 2.8;
  stroke-width: 0.2rem;
 /* stroke-linecap: round; */
  stroke: var(--secondary-color);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  /* animate the dashoffset (2s here) */
  transition: stroke-dashoffset 2s ease-out;
  /* rotate so progress starts at top (optional) */
  transform: rotate(108deg);
  transform-origin: 50% 50%;
}
.circle_box.active .circle {
  stroke-dashoffset: 34; /* example for 66% (100 - 66 = 34) */
}
.omega{
  width: 100%;
  height: 100%;
  position: relative;
}
.circle_bg {
    background-color: var(--accent-color);
    width: 29rem;
    height: 29rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--White);
}
.circle_bg h5{
    font-family: 'Gothic821';
    font-size: 11.5rem;
    line-height: 100%;
    margin-bottom: 0;
}
.circle_bg h6{
    font-size: 1.8rem;
    line-height: 130%;
    margin-bottom: 0;
    width: 13.9rem;
    font-family: 'ReadexPro';
    font-weight: 700;
}
/* Section5 End */
/* Section6 Start */
.section6 {
    height: 98rem;
    /* height: 100vh; */
    background-image: url(../img/desktop/ecran_final_1x.webp);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    color: var(--White);
    z-index: 1;
}
.section6 .container {
    max-width: 166.6rem;
}
.section6 h2 {
    font-size: 30.6rem;
    line-height: 110%;
    margin: 0;
}
/* Section6 End */
/* Footer Start */
footer {
    padding: 4.1rem 4.4rem 14rem 4.4rem;
    background-color: var(--secondary-color);
    color: var(--White);
}
footer .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: initial;
}
footer .container p,
footer .container a {
    font-size: 1.6rem;
    line-height: 120%;
    text-transform: uppercase;
}
footer .container a {
    position: relative;
}
footer .container .a::after{
    content: '';
    width: 0;
    height: 0.2rem;
    background-color: #FFFFFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.3rem;
    transition-duration: 0.5s;
}
.footer_links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: initial;
}
.footer_media {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: initial;
    width: 17rem;
    margin-left: 2.2rem;
}
.footer_media a {
    display: block;
    transition-duration: 0.3s;
}
.footer_media a:nth-child(1) {
    width: 3.1rem;
}
.footer_media a:nth-child(2) {
    width: 3.2rem;
}
.footer_media a:nth-child(3) {
    width: 3.4rem;
}
.footer_media a:nth-child(4) {
    width: 3.1rem;
}
.footer_media a img {
    width: 100%;
    display: block;
}
/* Footer End */
/* Videos Popups Start */
.popup_bg {
    background-color: var(--dark);
    z-index: 80;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    position: fixed;
    display: none;
    transition-duration: 0.4s;
    padding: 5rem;
}
.popup_bg.active {
    width: 101%;
    height: 101%;
}
.popup_bg .svg1{
    width: 3.9rem;
    height: 3.9rem;
    margin: 0 0 0 auto;
    display: block;
    cursor: pointer;
}
.popup_bg video {
    width: 100%;
    height: 100%;
    max-width: 95vw;
    max-height: 75vh;
    margin: 0.5rem auto 0 auto;
    position: relative;
    z-index: 1;
}
.vod_holder {
    margin: 0 auto;
    width: 140rem;
    position: relative;
}
.video-next {
    position: absolute;
    z-index: 2;
    bottom: 9rem;
    right: 3.3rem;
    cursor: pointer;
    border-radius: 1rem;

    width: 23rem;
    height: 5.5rem;
    border: 2px solid var(--dark);
    background-color: rgb(179 179 179 / 1) /* #B3B3B3 */;
    overflow: hidden;
}
.video-next span{
    font-family: 'Gothic821';
    font-size: 2.8rem;
    color: var(--dark);
    position: relative;
    z-index: 2;
}
.video-next svg {
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 0.5rem;
    position: relative;
    z-index: 2;
}
.video-next-holder{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.video-next-animation{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 0;
    height: 100%;
    background-color: var(--White);
    animation-name: bt-anim;
    animation-duration: 10s;
    animation-fill-mode: forwards;
}
@keyframes bt-anim {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Videos Popups End */
/* Sticky Bare Start */
.sticky_bare {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    background-color: var(--White);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 9.1rem;
}
.sticky_bare-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 168rem;
}
.sticky_bare h2 {
    color: var(--secondary-color);
    font-size: 2.4rem;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    display: flex;
}
.sticky_bare img {
    position: absolute;
    top: -2.4rem;
    right: 1.9rem;
    width: 8.5rem;
    display: block;
}
.sticky_bare-urls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 145.8rem;
}
.sticky_bare-urls a{
    border: 1px solid var(--primary-color);
    border-radius: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24.2rem;
    height: 5.6rem;
    transition-duration: 0.3s;
}
.sticky_bare-urls a b {
    color: var(--primary-color);
    font-size: 4rem;
    line-height: 90%;
    font-family: 'Gothic821';
    font-weight: 400;
    display: block;
    padding-right: 0.8rem;
    transition-duration: 0.3s;
}
.sticky_bare-urls a b strong {
    font-family: 'Impact';
    font-weight: 400;
    font-size: 3.4rem;
}
.sticky_bare-urls a span {
    font-size: 1.4rem;
    line-height: 110%;
    text-align: left;
}
.sticky_bare-urls a span span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    transition-duration: 0.3s;
}
.sticky_bare-urls input{
    border: 1px solid var(--primary-color);
    border-radius: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22.1rem;
    height: 5.6rem;
    font-size: 3.4rem;
    font-family: 'Gothic821';
    font-weight: 400;
    text-align: center;
    color: var(--White);
    color: var(--primary-color);
    padding: 0 1rem;
    transition-duration: 0.3s;
}
.sticky_bare-urls a:nth-child(5) b{
    font-size: 3.4rem;
}
.sticky_bare-urls a:last-child {
    width: 17.7rem;
    height: 5.6rem;
    background-color: var(--primary-color);
    color: var(--White) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.4rem;
    line-height: 94%;
    font-family: 'Gothic821';
    font-weight: 400;
    text-transform: uppercase;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}
.sticky_bare-urls input::placeholder {
    color: var(--primary-color);
    opacity: 1;
}
.sticky_bare-urls input:focus::placeholder {
    color: transparent;
}
.sticky_bare-urls input:hover{
    background-color: var(--primary-color);
    color: var(--White);
}
.sticky_bare-urls input:hover::placeholder {
    color: var(--White);
}

/* Sticky Bare End */