:root {
  --primary-font: "Jost", sans-serif;
  --primary-color: #003163;
  --white-color: #fff;
  --green-color: #00AD02;

  --14-font: 1.4rem;
  --16-font: 1.6rem;
  --20-font: 2.0rem;
  --22-font: 2.2rem;
  --24-font: 2.4rem;
  --26-font: 2.6rem;
  --28-font: 2.8rem;
  --30-font: 3.0rem;
  --32-font: 3.2rem;
  --35-font: 3.5rem;
  --40-font: 4rem;
  --50-font: 4.5rem;
  --42-font: 4.2rem;
  --57-font: 5.7rem;
  --70-font: 7rem;
  --100-font: 10rem;

  --transition-03: all 0.3s ease-in;
}

@font-face {
    font-family: 'discotacondensed_rough';
    src: url('../assets/fonts/discota-condensedrough-webfont.woff2') format('woff2'),
         url('../assets/fonts/discota-condensedrough-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
}

/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: red;

}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 8px;
    padding: 10px;

}

*::-webkit-scrollbar-track {
    background: red
}

*::-webkit-scrollbar-thumb {
    background-color: #000;

}

::-moz-selection {
    color: #fff;
    background: #000;
    text-shadow: none;
}

::selection {
    color: #fff;
    background: #000;
    text-shadow: none;
}

html {
    font-size: 62.5%;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth
}

body {
    line-height: 1;
    background: #5095D2;
    position: relative;
    font-size: var(--20-font);
    font-family: var(--primary-font);
    color: var(--white-color);
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: inherit;
    margin: 0;
}

ol,
ul,
li {
    list-style: none;
}

a {
    outline: none;
    color: inherit;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}


main {
    display: block;
}

section{
    display: flex;
    flex-direction: column;
    width: 100%;
}

img {
    border-style: none;
}
  
.img-res {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: bottom;
}

/* ! Global css */
.cnt {
    width: 100%;
    margin: 0 auto;
}

.cnt_1540 {
    max-width: 154rem;
}

.cnt_1640 {
    max-width: 164rem;
}

.cnt_wp {
    display: flex;
    width: 100%;
}

/* ! Footer */
.footer .cnt_wp {
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--white-color);
    padding: 3.5rem 0;
}

.footer.home .cnt_wp {
    border: none;
}

.footer_link a {
    text-decoration: underline;
    font-weight: 500;
    font-size: var(--22-font);
    transition: var(--transition-03);
}

.footer_link a:hover {
    color: var(--primary-color);
}

/* ! Home */
.main_banner {
    width: 100%;
    height: 108rem;
    background-image: url('../assets/images/todelete/main_banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.date_of_event,
.warriors_logo {
    position: absolute;
}

.date_of_event {
    top: 0;
    right: 7%;
    max-width: 21rem;
}

.warriors_logo {
    top: 45%;
    transform: translateY(-50%);
    left: 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fb_link a {
    padding: 2rem 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    background: var(--white-color);
    border-radius: 15px;
    display: block;
    margin-top: 2rem;
    font-weight: 700;
}

.logo_img {
    max-width: 51rem;
}

.inscrivez_box {
    margin-top: 4rem;
    position: relative;
    transition: var(--transition-03);
}

.inscrivez_box:hover {
    transform: scale(1.05);
}

.blue_box-txt {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    font-size: var(--50-font);
    text-align: center;
}

.blue_box-txt span {
    display: block;
}

.blue_box-txt span:first-child {
    font-size: var(--35-font);
}

.blue_box-txt span:last-child {
    text-transform: lowercase;
    font-size: var(--30-font);
}

.time_event {
    width: 75%;
    margin: 3rem auto;
    position: relative;
}

.time_event_wp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 3rem;
    position: absolute;
    top: 12%;
}

.days_num {
    text-align: center;
    font-size: var(--70-font);
    font-weight: 600;
    width: 30%; 
}

.time_event_txt {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.days_txt {
    text-align: center;
    font-size: var(--20-font);
    text-transform: uppercase;
    font-weight: 600;
    width: 30%;
}

.video {
    margin-top: 9rem;
}

.video .cnt_wp {
    align-items: center;
    justify-content: center;
}

#player {
    height: 85rem;
}

.team_challenge {
    margin-top: 11rem;
}

.team_challenge-left {
    width: 47%;
}

.team_challenge-right {
    width: 50%;
    padding-right: 5rem;
    margin-left: auto;
}

.challenge-title {
    color: var(--primary-color);
    font-size: var(--50-font);
    font-weight: 800;
}

.challenge-txt {
    margin-top: 4rem;
    font-size: var(--28-font);
    max-width: 85rem;
}

.blue_color-text {
    color: var(--primary-color);
    font-weight: 600;
}

.challenge-txt ul {
    margin-top: 4rem;
    padding-left: 2rem;
}

.challenge-txt ul li {
    font-size: var(--32-font);
    font-weight: 800;
    list-style: disc;
}

.challenge-txt ul li:not(:last-child) {
    margin-bottom: 3rem;
}

.reward {
    margin-top: 7.5rem;
    background: var(--primary-color);
}

.reward .cnt_wp {
    padding: 9.5rem 30rem;
    flex-direction: column;
}

.section_subTible {
    font-size: var(--70-font);
    font-weight: 800;
    text-transform: uppercase;
}

.reward-title {
    text-align: center;
}

.reward-loot {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.5rem;
}

.reward-repeat {
    padding: 2rem 5rem;
    background: var(--white-color);
    color: var(--primary-color);
    text-align: center;
}

.price-rupee {
    font-family: 'discotacondensed_rough';
    font-size: var(--100-font);
    text-transform: uppercase;
}

.ranking {
    font-size: var(--35-font);
    font-weight: 500;
}

.how_to_participate {
    margin-top: 8rem;
}

.how_to_participate .cnt_wp {
    flex-direction: column;
}

.how_to_participate-title,
.distribution-title {
    margin-left: 14rem;
    color: var(--primary-color);
}

.steps-top,
.steps-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
}

.steps-top {
    width: 85%;
    margin-top: 10rem;
    margin-left: auto;
}

.steps-bottom {
    margin-top: 5rem;
}

.steps-bottom .steps-repeat:first-child {
    width: 14%;
}

.steps-bottom .steps-repeat:first-child .step-line {
    transform: translateY(33px);
}

.steps-repeat {
    width: 30%;
}

.steps-top .steps-repeat:last-child {
    flex: 1;
}

.steps_number_wp {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.8rem;
}

.step-num {
    font-size: var(--70-font);
    font-weight: 800;
}

.step-line {
    width: 100%;
    height: 3px;
    background: var(--white-color);
}

.steps-title {
    font-size: var(--30-font);
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
}

.steps-list {
    margin-top: 2rem;
    padding-left: 2.5rem;
    max-width: 33rem;
}

.steps-list li {
    list-style: disc;
    font-size: var(--20-font);
    line-height: 2.5rem;
}

.steps-list li:not(:last-child) {
    margin-bottom: 2rem;
}

.steps-list li .list-bold {
    font-weight: 700;
}

.steps-repeat  a {
    display: inline-block;
    background: var(--green-color);
    border-radius: 10px;
    padding: 1.8rem 2rem;
    margin-top: 2rem;
    margin-left: 5%;
}

.blue_text-underline {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

.distribution {
    margin-top: 11rem;
}

.distribution .cnt_wp {
    justify-content: flex-start;
    align-items: center;
    gap: 5rem;
}

.distribution-txt {
   max-width: 102rem;
   font-size: var(--28-font);
   line-height: 3rem;
}

.game_zone {
    margin-top: 12rem;  
}

.game_zone .cnt_wp {
    align-items: center;
}

.game_zone-left {
    width: 55%;
}

.game_zone-right {
    width: 42%;
    margin-left: auto;
}

.game_zone-title {
    color: var(--primary-color);
    font-size: var(--50-font);
    font-weight: 800;
}

.game_zone-title span {
    display: block;
    color: var(--white-color);
    font-size: var(--28-font);
    font-weight: 400;
}

.game_activities-repeat {
    margin-top: 4rem;
}

.game-name {
    padding: 1.5rem;
    background: var(--primary-color);
    width: fit-content;
    font-size: var(--30-font);
    font-weight: 800;
}

.game-list {
    margin-top: 3rem;
    margin-left: 3rem;
}

.game-list li {
    font-size: var(--30-font);
    font-weight: 800;
    list-style: disc;
    text-transform: uppercase;
}

.game-list li:not(:last-child) {
    margin-bottom: 3rem;
}

/* .concert {
    margin-top: 5rem;
    background-image: url('../assets/images/todelete/concert_bg.png');
    height: 60rem;
    background-size: cover;
    background-repeat: no-repeat;
} */

.concert {
    margin-top: 5rem;
    background: var(--primary-color);
}

/* .concert-title {
    padding: 8rem 6.5rem;
} */

.concert-title {
    margin-bottom: 3rem;
}

.concert-artists {
    width: 29rem;
    background: var(--white-color);
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    padding: 1rem 0;
    text-align: center;
    font-size: var(--32-font);
    font-weight: 800;
}

.concert-left {
    padding: 15rem 7rem 12rem 14rem;
}

.concert-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.prophecy_img,
.blakkayo_img {
    width: 50%;
}

.product_benefits {
    margin-top: 8rem;
}

.product_benefits .cnt_wp {
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.benefits {
    width: 41rem;
    height: 13.5rem;
    text-align: center;
    padding: 2rem 0;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: var(--35-font);
    font-weight: 800;
    text-transform: uppercase;
}

.benefits span {
    display: block;
    color: #5095D2;
    font-size: var(--22-font);
    font-weight: 500;
    margin-top: 1rem;
    line-height: 2.5rem;
}

.narta_products {
    margin-top: 10rem;
}

.inner-narta-slider {
    padding: 0 5rem;
}

.inner-narta-slider .swiper-wrapper {
    align-items: flex-end;
}

.inner-narta-slider .swiper-slide {
    text-align: center;
}

.end_text_wp {
    margin-top: 4.5rem;
    padding: 2.8rem 0;
    background: var(--primary-color);
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.end_text {
    font-size: var(--28-font);
    font-weight: 500;
    padding-left: 5rem;
    animation: defile 30s linear infinite;
}

@keyframes defile {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ! inscrivez vous */
.form_fill {
    margin-top: 10rem;
}

.team_challenge.team_challenge_formPage.animation {
    margin-top: 6rem;
}

.team_challenge.team_challenge_formPage.animation .challenge-txt {
    margin-top: 3rem;
}

.member_form-wp {
    display: flex;
    gap: 1.6rem;
}

.member_form-repeat {
    width: 25%;
    border: 2px solid var(--white-color);
    border-radius: 45px;
    position: relative;
}

.member_form-repeat.lead_form {
    border-top-color: var(--primary-color);
}

.member_icon-wp {
    position: relative;
}

.member_photo {
    position: absolute;
    width: 100%;
}

.member-txt.leader_txt {
    color: var(--white-color);
    position: absolute;
    top: 2rem;
    left: 38%;
    max-width: 20rem;
}

.member-txt.leader_txt span {
    display: block;
    font-size: var(--14-font);
    font-weight: 500;
    margin-top: 5px;
    max-width: 15rem;
}

.member-txt {
    position: absolute;
    top: 3.4rem;
    left: 36%;
    color: var(--primary-color);
    font-size: var(--30-font);
    font-weight: 700;
}

.member_form {
    padding: 14rem 2.5rem 2.5rem;
    border: 0;
    outline: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2rem;
}

.member_form .field:not(:first-child) {
    margin-top: 2rem;
}

.member_form .field label {
    font-size: var(--20-font);
    font-weight: 700;
    display: block;
}

.member_form .field {
    width: 100%;
}

.member_form .field input {
    border: none;
    border-bottom: 1px solid var(--white-color);
    background: transparent;
    height: 3rem;
    width: 100%;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.member_form .field.age,
.member_form .field.sexe,
.member_form .field.tel,
.member_form .field.mobile {
    width: 45%;
}

.input_radio {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    padding-top: 1rem;
    opacity: 0.5;
}

.input_radio-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.input_radio-btn label {
    font-size: 1.6rem;
}

.input_radio label {
    display: inline-block;
}

.member_form .input_radio input {
    width: 10px;
    height: 10px;
    background: transparent;
}

.validation_ticket {
    text-align: center;
    margin-top: 10rem;
    position: relative;
}

.validation_ticket {
    text-align: center;
    margin-top: 10rem;
    position: relative;
}

.validation_ticket .field-error-msg {
    left: 50%;
    transform: translateX(-50%);
}

.form_subTitle {
    color: var(--white-color);
    font-size: var(--32-font);
    font-weight: 800;
}

.form_subTitle span {
    display: block;
    font-size: var(--40-font);
    font-weight: 500;
}

.file-upload {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.file-upload-label {
  display: inline-block;
  background: var(--green-color);
  color: white;
  padding: 2rem 3rem;
  border-bottom-left-radius: 16px;
  border-top-left-radius: 16px;
  cursor: pointer;
  font-size: var(--24-font);
  transition: var(--transition-03);
  font-weight: 700;
}

.file-upload-label:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.file-name {
  font-size: var(--16-font);
  color: var(--primary-color);
  background: var(--white-color);
  padding: 2.7rem 0 2.1rem 3rem;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  width: 35rem;
  text-align: left;
  font-weight: 700;
}

.narta_warriors {
    margin-top: 9rem;
}

.checkBox_wp {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
}

.checkBox-repeat {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.checkBox-repeat label {
  font-size: var(--24-font);
  flex: 1;
  line-height: 3.5rem;
  cursor: pointer;
}

.checkBox-repeat label span {
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: underline;
}

.checkBox-repeat label span.field-required {
  color: red;
  text-decoration: none;
}

.checkBox-repeat input[type="checkbox"] {
   width: 22px;
   height: 22px;
   margin: 0;
   cursor: pointer;
}

.text_yellow {
    text-transform: uppercase;
    color: var(--yellow-color);
}

.submit_btn {
    margin-top: 5rem;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.submit_btn input[type="submit"] {
    background-color: var(--green-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 10px;
    font-size: var(--20-font);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition-03);
}

.submit_btn input[type="submit"]:hover {
    background-color: var(--primary-color);
}

.field-error-msg {
    margin-top: 4px;
    position: absolute;
    bottom: -1.8rem;
    left: 4rem;
    font-size: 2rem;
    font-size: 1.8rem;
}

.text-danger {
    font-size: 1.6rem;
}

/*! rule */
.rule_page {
    margin-top: 10rem;
    position: relative;
}

.banner_tribecca .date_of_event {
    top: 0;
    right: 5%;
    max-width: 14rem;
}

.img_rule_logo {
    width: 30rem;
}

.rule {
    margin-top: 7rem;
    margin-bottom: 12rem;
}

.rule-title,
.rule-txt {
    font-size: var(--26-font);
    line-height: 3rem;
    max-width: 145rem;
}

.rule-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.rule_article {
    margin-top: 5rem;
}

.rule-txt-reward {
    color: var(--primary-color);
    font-weight: 700;
}

.rule-txt .rule-txt-reward:first-child {
    font-weight: 400;
} 

/*! confirmation page*/
.onepage {
    height: 100vh;
    width: 100%;
    background: url('../assets/images/todelete/Background-NARTA-ciel.png');
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.onepage-img {
    max-width: 51.4rem;
    margin: 0 auto;
}

.onepage-txt-wp {
    position: relative;
    margin-top: 5rem;
}

.count_img {
    max-width: 63rem ;
}

.onepage-txt {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    text-align: center;
    color: white;
    font-size: 4rem;
    font-family: "Jost", sans-serif;
    text-transform: uppercase;
    line-height: 4.5rem;
}

.triangle-pointer {
    position: absolute;
    left: 0;
    top: 0;
}

.plyr__control--overlaid {
    background: transparent;
    border: 2px solid var(--white-color);
}

.plyr--video .plyr__control {
    transition: var(--transition-03);
}

.plyr--video .plyr__control:hover {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}