body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", serif;
    /* background: black; */
    color: white !important;
    overflow-x: hidden;
background:#0a0a62 !important;
}

@font-face {
    src: url('Roslindale-DisplayNarrowMedium-Testing.woff2') format("woff2"),
        url('Roslindale-DisplayNarrowMedium-Testing.woff') format("woff");
    font-family: 'Roslindale';
    font-style: normal;
    font-weight: 500;
}
@font-face {
    font-family: 'AvantGarde Normal';
    src: url('../fonts/AvantGardeITCbyBT-Book.eot');
    src: url('../fonts/AvantGardeITCbyBT-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvantGardeITCbyBT-Book.woff2') format('woff2'),
        url('../fonts/AvantGardeITCbyBT-Book.woff') format('woff'),
        url('../fonts/AvantGardeITCbyBT-Book.ttf') format('truetype'),
        url('../fonts/AvantGardeITCbyBT-Book.svg#AvantGardeITCbyBT-Book') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avant Garde';
    src: url('../fonts/AvantGardeBold.eot');
    src: url('../fonts/AvantGardeBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvantGardeBold.woff2') format('woff2'),
        url('../fonts/AvantGardeBold.woff') format('woff'),
        url('../fonts/AvantGardeBold.ttf') format('truetype'),
        url('../fonts/AvantGardeBold.svg#AvantGardeBold') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

.spacer {
    height: 100vh;
    /* Extra space to enable scrolling */
}

svg {
    width: 600px;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

img {
    width: 100%;
    transition: transform 0.3s ease;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

video {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;


}

video::-webkit-media-controls {
    display: none !important;
}

.video-container h2{
    text-transform: uppercase;
    font-size: 100px;
   
    width: 580px;
    text-align: center;
    line-height: 82px;
    font-weight: 700;
    letter-spacing: -5px;

}
.video-container h2 span{
    color: rgb(244 205 54);
}

.races {
    width: fit-content;
    display: flex;
    flex-wrap: nowrap;
}

.races h2 {
    font-family: 'Staatliches', cursive;
    font-size: 30vw;
    flex-shrink: 0;
    padding-right: 0.3em;
    padding-left: 0.3em;
    color: #e10600;

    margin: 0;
}

.races h2:last-of-type {
    background: #e1e1ff;
}

.lightBG {
    background: #313143;
}

canvas {
    width: 100%;
    height: 100%;
    position: fixed;
    /* Change from absolute to fixed */
    top: 0;
    /* Add top positioning */
    left: 0;
    /* Add left positioning */
    pointer-events: none;
    /* Allow events to pass through */

}



.page_wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.container {
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
}

.header {
    position: fixed;
    /* Change from absolute to fixed */
    top: -150px;
    /* Start above viewport */
    width: 100%;
    left: 0;
    padding: 20px 0;
    background:rgb(16 16 120);
    /* Optional: add semi-transparent background */
    z-index: 100;
    border-bottom: 1px solid white;
}

.header ul {
    width: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.header ul li a {
    text-decoration: none;
    color: #d3d3d3;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid #d3d3d3;
    border-radius: 20px;
    padding: 6px 13px;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    overflow: hidden;
}
.header ul li a:hover{
    /*background: #242493;
    border: 1px solid #242493;
*/
  color: yellow !important;  /* Text Color */
    /* border: 1px solid rgb(244 205 54) !important; */
}
.header ul li a img{
    width: 20px;
    border-radius: 50px;
    height: 20px;
}
.banner_heading {
    font-size: 60px;
    line-height: 70px;
    font-weight: 500;
    padding-right: 30px;
}


.img {
    width: 100%;
    height: 100vh;
    background: url(https://i.imgur.com/aGromZ6.png) no-repeat 50% 50%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .container {
display: flex;
justify-content: space-between;
align-items: flex-start;
height: 200vh;
width: 100%;
} */

.text>p>div {
    background: linear-gradient(to right,
            rgb(255, 255, 255) 50%,
            rgb(37, 37, 37) 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    /*   margin-bottom: -250px; */

    line-height: 1.2;
    /*   outline: 6px dotted teal; */
    font-size: 50px;
}

.scroll_down_container {
    position: fixed;
    width: 24px;
    height: 24px;
    left: 50px;
    bottom: 100px;

}

.chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
}

.chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;

    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

.text {
    display: block;
    margin-top: 75px;
    margin-left: -30px;

    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .25;
    animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .container .logo {
    position: absolute;
    left: 46%;
    margin-left: 0px;
    margin-top: 30px;
    padding: 10px 30px;
    background: rgb(8 8 88);
    border-bottom: 1px solid white;
}

.header .container .logo::before,
.header .container .logo::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 1px;
    height: 25px;
}
.header .container .logo::after{
    right: 0;
    left: auto;
}

.header .container .logo img {
    width: 80px;
    height: auto;

}

.text-container {
    width: 100%;
    max-width: 890px;
    margin: 0 auto;
    text-align: center;
}
.split-lines {
    display: block;
  
    color: #fff;
   
  }
  .line {
    position: relative;
}

.line-mask {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0a0a62;
    opacity: 0.65;
    height: 100%;
    width: 100%;
 
    z-index: 2;
}
 h3 {
    font-size: 40px;
    padding-top: 50px;
    font-family: 'Avant Garde';
    margin: 0;
    text-align: center;
    padding: 0;
    transition: .4s;
    line-height: 45px;
    font-weight: 900;
    max-width: 790px;
    margin: 30px auto;
    position: relative;
    z-index: 1;
    width: 100%;

}
.text-container p{
    font-size: 20px;
    line-height: 34px;
    font-weight: 300;
}
/* HTML: <div class="loader"></div> */
.content_loading {
    height: 15px;
    aspect-ratio: 2.5;
    --_g: no-repeat radial-gradient(farthest-side,#fff 90%,#fff);
    background:var(--_g), var(--_g), var(--_g), var(--_g);
    background-size: 20% 50%;
    animation: l43 1s infinite linear; 
    display: inline-block;
    top: 9px;
    position: relative;
   
  }
  @keyframes l43 {
    0%     {background-position: calc(0*100%/3) 50% ,calc(1*100%/3) 50% ,calc(2*100%/3) 50% ,calc(3*100%/3) 50% }
    16.67% {background-position: calc(0*100%/3) 0   ,calc(1*100%/3) 50% ,calc(2*100%/3) 50% ,calc(3*100%/3) 50% }
    33.33% {background-position: calc(0*100%/3) 100%,calc(1*100%/3) 0   ,calc(2*100%/3) 50% ,calc(3*100%/3) 50% }
    50%    {background-position: calc(0*100%/3) 50% ,calc(1*100%/3) 100%,calc(2*100%/3) 0   ,calc(3*100%/3) 50% }
    66.67% {background-position: calc(0*100%/3) 50% ,calc(1*100%/3) 50% ,calc(2*100%/3) 100%,calc(3*100%/3) 0   }
    83.33% {background-position: calc(0*100%/3) 50% ,calc(1*100%/3) 50% ,calc(2*100%/3) 50% ,calc(3*100%/3) 100%}
    100%   {background-position: calc(0*100%/3) 50% ,calc(1*100%/3) 50% ,calc(2*100%/3) 50% ,calc(3*100%/3) 50% }
  }



  .default_btn{
    text-decoration: none;
    color: #d3d3d3;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid #d3d3d3;
    border-radius: 20px;
    padding: 6px 13px;
    text-transform: uppercase;
    margin-top: 40px;
    display: inline-block;

  }



  .full_width_services{
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    display: inline-block;

  }
  .full_width_services ul{
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .full_width_services ul li{
    width: 100%;
    display: inline-flex;
    border-top: 1px solid #141472;
    border-bottom: 1px solid #141472;

    cursor: pointer;
  }
 
  .full_width_services ul li h2:hover{
    color: transparent;
    -webkit-text-stroke: 1px #fff;
  }
  .full_width_services ul li h2{
    font-size: 150px;
    font-family: 'Avant Garde';

    text-transform: uppercase;
    margin: 0;
    padding: 0;

 
  transition: .4s;
    line-height: 132px;
    font-weight: 900;

  }


  
  .full_width_services ul li span{
    font-size: 16px;
    font-weight: 300;
  }
  .service_item_container{
    max-width: 1680px;
    width: 100%;
    margin: 0 auto; 
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .service_item_container h2{
    font-size: 20px;
    font-weight: 500;
  }
  .service_item_container span{
    font-size: 16px;
    font-weight: 300;
    display: none;
    position: absolute;
  }
  .full_width_services ul li:hover > .service_item_container span{
    display: block;
  }

  .footer_wrapper{
   
    width: 100%;
    height: 100px;

    bottom: 0;
    position: relative;
    z-index: 1;
  }
 /*dropdowncss*/ 
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    padding: 5px 0;
    z-index: 1000;
}

.language-dropdown .dropdown-menu li {
    list-style: none;
}

.language-dropdown .dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 8px 13px;
    text-decoration: none;
    color: black;
}

.language-dropdown .dropdown-menu li a img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.language-dropdown .dropdown-menu li a:hover {
    background: #f5f5f5;
}
.language-dropdown .dropdown-toggle img {
    width: 20px;
    height: auto;
    margin-right: 10px;
}
a.language-option {
    border: 0 !important;
}
.language-dropdown ul.dropdown-menu li a {
    border: 0 !important;
    background: transparent !important;
    color: #000 !important;
}
