@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
    font-family:"Poppins", sans-serif;
    background: radial-gradient(circle at 24.1% 68.8%, rgb(22 22 22) 0%, rgb(0, 0, 0) 99.4%);
    color: white;
    font-size: 20px;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
h1{font-size: 5rem;
    letter-spacing: -1px;
    margin: 0;
    text-transform: uppercase;
    color: #ed2221;
    font-weight: 400;
    line-height: 1em;
    font-family: "Anton", sans-serif;
    -webkit-font-smoothing: antialiased;
     opacity: 0;
     animation: fadeIn 1s forwards;
  animation-delay: 0.5s; /* Delay the fade-in for 2 seconds */

  
}

h2.sub {
    font-size: 2.6rem;
    letter-spacing: -1px;
    margin: 0;
    text-wrap: nowrap;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    line-height: 1em;
    font-family: "Anton", sans-serif;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
 animation: fadeIn 1s forwards;
  animation-delay: 0.5s; /* Delay the fade-in for 2 seconds */
}

p.subone {
    line-height: 1.5em;
    text-align: center;
    opacity: 0;
    word-spacing: 1px;
    animation: fadeIn 1s forwards;
    animation-delay: 0.5s;
    margin-bottom: 1em;
}
.video {
    opacity: 0;
 animation: fadeIn 1s forwards;
  animation-delay: 0.5s; /* Delay the fade-in for 2 seconds */
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


h2 {
    font-size: 3rem;
    letter-spacing: 0px;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    color: #ed2221;
    font-weight: 400;
    line-height: 1em;
    font-family: "Anton", sans-serif;
    -webkit-font-smoothing: antialiased;
}
h3.light {
    letter-spacing: 0px;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    color: #000000cc;
    font-weight: 400;
    line-height: 1em;
    font-family: "Anton", sans-serif;
    -webkit-font-smoothing: antialiased;
}

h3{
    font-size:2em;
  
}
h3.light.sub {
}
.cta-button {
  width: 50%; /* 50% of the width on desktop */
  margin: 0 auto; /* Center the button */
  display: block; /* Ensures margin auto works for centering */
}

@media (max-width: 768px) {
    .cta-button {
        width: 88%;
        background: #ed2221;
        color: white;
        bordeR: 0;
        border-radius: 0.3em;
        padding: 0.5em;
    }

    .section.one {
    height: 100vh;
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 1em;
    flex-wrap: wrap;
}
}
/* Desktop-only styles */
@media (min-width: 1024px) {
    .cta-button {
        width: 88%;
        background: #ed2221;
        color: white;
        bordeR: 0;
        border-radius: 0.3em;
        padding: 0.5em;
    }
    h2 {
    margin-top: 1em;
}
       .title {
        margin-top:2em;
   display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5em;
        flex-wrap: wrap;
}

.btn.one {
    width: 60%;
    padding-top: 1.5em;
    margin: 0 auto;
    font-size: 1.5rem;
}
h2 {
    font-size: 6rem;
}
h3.light {
    font-size: 6rem;
    }
}

/* Hide desktop version by default */
.section.two.d {
    display: none;
    opacity: 0; /* Start with 0 opacity */
    transform: translateY(50px); /* Start slightly below */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Mobile-only styles */
.section.two.m {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section.two.m.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop styles */
@media (min-width: 1024px) {
    .section.two.m {
        display: none;
    }

    .section.two.d {
        display: block;
        opacity: 0; /* Start with 0 opacity */
        transform: translateY(50px);
    }

    .section.two.d.visible {
        opacity: 1;
        transform: translateY(0);
    }
    h1.tl {
    font-size: 7.9rem;
}
h1 {
    font-size: 7rem;
}
h2.sub {
    font-size: 4.6rem;
    }
}


.container.dark {
    
}
   p {

    font-size:1.5em;
}

.container {
  width: 60vw; /* 70% of the viewport width on desktop */
  margin: 0 auto; /* Center the container */
}

@media (max-width: 768px) {
    p {
    font-size:1em;
}
.video {margin-top:0em;text-align: center;}

  .container {
    width: 100vw; /* Full width on mobile */
    margin: 0; /* Remove margin on mobile */
  }
}
.page {
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin-bottom: 0em;
}
.pagetwo {
    display: flex;
    padding-bottom:5em;
    flex-direction: column;
    gap: 3em;
    padding-top: 2em;
    border-top: 1px solid #3f3f3f;
    background: linear-gradient(45deg, #EEEEEE, #FAF8F9, #FFFFFF);
    color: #000000cc;

    box-shadow: inset 2px 2px 10px #000000;

}

.container.light {
    
}

.section.two {
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 1em;
    padding-bottom: 4em;
  
}
.section.three {
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0em auto;
    gap: 1em;
}
.section.four {
    margin-top:3em;
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1em auto;
    gap: 1em;
 
}

.section.four.visible {
  opacity: 1;
  transform: translateY(0); /* Move to the original position */
}
button.cta-button {
    margin-top: 1em;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}


span.focus {
    font-weight: 600;
    font-size: 1.1em;
}

p.subtwo {
    text-align: center;
    word-spacing: 1px;
    -webkit-font-smoothing: antialiased;
}
p.subthree {
    color: #000;
    letter-spacing: 0.1px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}
p.subfour {
    color: #323131;
    letter-spacing: 0.1px;
    text-align: center;
    word-spacing: 1px;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
}
span.highlight {
    font-weight: 600;
}

.subthree {
    color:#000;
    text-align:left;
    line-height: 1.2em;
    word-spacing: 0.2em;
  opacity: 0;
  transform: translateY(30px); /* Start 20px below */
  transition: opacity 2s ease-out, transform 2s ease-out;
}
.subfour {
  color:#000;
    text-align:left;
    line-height: 1.2em;
    word-spacing: 0.2em;
}

.subthree.visible {
  opacity: 1;
  transform: translateY(0); /* Slide to original position */
}
    
#video-player {
    max-width: 640px;
    margin: auto;
    position: relative;
}
button#play-pause {
    display: block;
    width: 25%;
    margin: 3em;
    padding: 2em;
    border-radius: 0.5em;
}
#video-controls {
    position: absolute;
    display: flex;
    top: 0;
    bottom: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

button {
    cursor: pointer;
    background-color: #ed2221;
    border: none;
    color: white;
    padding: 5px 10px;
}



video#video {
    width: 100%;
}

.player {
    border: 5px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
    font-size: 0;
    overflow: hidden;
    width: 100%;
}






#play-pause:hover {
    background-color: rgba(255, 0, 0, 0.7);
}
button#play-pause {
    background-color: rgba(255, 255, 255, 0.7); /* Change to a visible color */
    border: 1px solid #ed2221; /* Add a border for visibility */
}
button#play-pause {
    background-color: none;
    border: none;
}
.section.two {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section.two.visible {
    opacity: 1;
    transform: translateY(0);
}
.tt {
    display: flex;
    gap: 1em;
    align-items: end;
}
h1.tl {
    font-size: 5.6rem;
}
button.watchfirst {
    position: relative;
    padding: 0.2em 0.5em;
    top: 50%;
    z-index:99;
    font-size: 1.5em;
    font-family: "Anton", sans-serif;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}
input#phoneNumber {
    width: 100%;
}
.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;
    color: black;
    font-size: 0.9rem;
}
.modal-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 500px;
    height: 100vh;
    background: white;
    z-index: 1000;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.35, 0, 0.25, 1);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

.modal-container.active {
    right: 0;
}

.modal-close-btn {
    position: sticky;
    top: 0;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: transform 0.2s ease;
}

.modal-close-btn:hover {
    transform: rotate(90deg);
}

.modal-form-wrapper {
    padding: 30px 20px 50px;
}

.modal-form-wrapper h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    font-family: "Anton", sans-serif;
}

.modal-form-wrapper h2 {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
}

.modal-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}
.modal-form-wrapper input,
.modal-form-wrapper select,
.modal-form-wrapper textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.modal-form-wrapper input:focus,
.modal-form-wrapper select:focus,
.modal-form-wrapper textarea:focus {
    outline: none;
    border-color: #ed2221;
}

.modal-form-wrapper input::placeholder,
.modal-form-wrapper textarea::placeholder {
    color: #999;
}

/* Make select boxes show the same placeholder grey until a valid option is chosen */
.modal-form-wrapper select {
    color: #999;
}
.modal-form-wrapper select:focus,
.modal-form-wrapper select:not(:invalid) {
    color: #000;
}

.phone-container {
    position: relative;
}

.modal-form-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    font-family: "Poppins", sans-serif;
}

.modal-form-wrapper .action-button {
    padding: 14px 20px;
    background-color: #ed2221;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.modal-form-wrapper .action-button:hover {
    background-color: #c91a19;
}

.modal-form-wrapper .checkbox-container {
    margin-top: 15px;
}

.modal-form-wrapper .termsc {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.modal-form-wrapper .termsc a {
    color: #ed2221;
    text-decoration: underline;
    cursor: pointer;
}

.modal-form-wrapper .termsc a:hover {
    text-decoration: none;
}

/* Modal for Terms and Privacy */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #f4f4f4;
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #000;
}

.mh {
    font-size: 1.8rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 15px;
}

.mhh {
    font-size: 1.1rem;
    color: #555;
    margin-top: 15px;
    margin-bottom: 10px;
}

.modal-content p, .modal-content ul {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.modal-content a {
    color: #ed2221;
    text-decoration: none;
}

.modal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .modal-container {
        max-width: 100%;
        width: 100%;
    }
}

    