:root {
    --mainTheme: #1f1c3b;
    --colorRed: #de1f13;
    --colorBlue: #0a3ccd;
    --colorWhite: #ffffff;
    --colorBlack: #232227;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Prometo W04 Regular";
}
@font-face {
    font-family: "Prometo W04 Light";
    src: url(../fonts/Prometo-W04-Light.otf);
    src: url(../fonts/Prometo-W04-Light.ttf);
}   
@font-face {
    font-family: "Prometo W04 Regular";
    src: url(../fonts/Prometo-W04-Regular.otf);
    src: url(../fonts/Prometo-W04-Regular.ttf);
}
@font-face {
    font-family: "Prometo W04 Bold";
    src: url(../fonts/Prometo-W04-Bold.otf);
    src: url(../fonts/Prometo-W04-Bold.ttf);
} 
input,
select,
button {
    outline: none;
    box-shadow: none;
}
input:focus,
select:focus,
button:focus {
    outline: none;
    box-shadow: none !important;
}
.form-control:focus {
    border-color: transparent;
    box-shadow: none;
}
a {
    text-decoration: none;
}
a:hover {
    transition: all 0.4s ease-in-out;
}
a:focus-visible {
    outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Prometo W04 Bold";
}
p {
    font-family: "Prometo W04 Light";
}
.thm-btn {
    font-size: 16px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
    text-transform: uppercase;
    border: 1px solid var(--colorRed);
    background-color: var(--colorRed);
    padding: 17px 27px;
    border-radius: 0;
    display: inline-block;
}
.thm-btn:hover {
    color: var(--colorRed);
    background-color: var(--colorWhite);
    border-color: var(--colorWhite);
    transition: all 0.4s ease-in-out;
}
.thm-btn-1 {
    font-size: 16px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
    text-transform: uppercase;
    border: 1px solid #312e9c;
    background-color: #312e9c;
    padding: 17px 27px;
    border-radius: 0;
    display: inline-block;
}
.thm-btn-1:hover {
    color: #312e9c;
    background-color: var(--colorWhite);
    border-color: var(--colorWhite);
    transition: all 0.4s ease-in-out;
}
/*-- Start Header --*/
.header {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding: 15px 50px;
    width: 100%;
    transition: all 0.4s ease-in-out;
}
.header-sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #1f1c3b;
}
.sidebar-menu .sidepanel {
    width: 0;
    position: fixed;
    z-index: 3;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--mainTheme);
    overflow-x: hidden;
    transition: 0.5s;
}
.sidebar-menu .openbtn {
    float: right;
    font-size: 16px;
    color: var(--colorWhite);
    text-transform: uppercase;
    border: none;
    padding: 0;
    background-color: transparent;
}
.sidebar-menu .openbtn:hover {
    color: var(--colorRed);
}
.sidebar-menu .openbtn i {
    margin-left: 15px;
}
.sidebar-menu .close-box {
    padding: 39px 55px 30px 0px;
    width: 100%;
    float: right;
    /* position: relative;
    z-index: 1; */
}
.sidebar-menu .sidepanel .close-box button {
    font-size: 16px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
    display: flex;
    align-items: center;
    justify-content: end;
    text-transform: uppercase;
    margin-left: auto;
    transition: all 0.4s ease-in-out;
    background-color: transparent;
    border: none;
    position: relative;
    z-index: 1;
}
.sidebar-menu .sidepanel .close-box button:hover {
    color: var(--colorRed);
}
.sidebar-menu .sidepanel .close-box i {
    margin-left: 15px;
    margin-top: -4px;
    font-size: 17px;
}
.sidebar-menu .navbar {
    width: 50%;
    left: 50%;
    top: 0;
    padding: 0 0 30px;
}
.sidebar-menu .navbar-nav .nav-item {
    margin-bottom: 10px;
}
.sidebar-menu .navbar-nav .nav-item.dropdown {
    position: unset;
}
.sidebar-menu .navbar-nav .nav-item:last-child {
    margin-bottom: 0px;
}
.sidebar-menu .navbar-nav .nav-item .nav-link {
    font-size: 30px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    padding: 0;
    overflow: hidden;
}
.sidebar-menu .navbar-nav .nav-item .nav-link:before {
    content: "";
    position: relative;
    left: 0;
    background-color: transparent;
    display: inline-block;
    width: 130px;
    height: 3px;
    vertical-align: middle;
    margin-right: 40px;
    transition: all 0.4s ease-in-out;
}
.sidebar-menu .navbar-nav .nav-item .nav-link:hover {
    color: var(--colorRed);
}
.sidebar-menu .navbar-nav .nav-item .nav-link.active {
    color: var(--colorRed);
}
.sidebar-menu .navbar-nav .nav-item .nav-link:hover:before {
    background-color: var(--colorRed);
}
.sidebar-menu .navbar-nav .nav-item .menu-img {
    display: none;
}
.sidebar-menu .navbar-nav .nav-item:hover .menu-img {
    display: block;
}
.menu-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 26%;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translate(-0%, -50%);
    width: calc(100% - 156px);
}
.sidebar-menu .compete-menu h5 {
    font-size: 24px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
    text-transform: capitalize;
}
.sidebar-menu .dropdown-menu .compete-menu ul {
    margin-left: 40px;
    margin-bottom: 30px;
}
.sidebar-menu .dropdown-menu .compete-menu ul:last-child {
    margin-bottom: 0;
}
.sidebar-menu .dropdown-menu {
    min-width: auto;
    margin-top: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 15px 0px 0 40px;
}
.sidebar-menu .dropdown-menu {
    /*transform: scaleY(0);
    transform-origin: top;*/
    transition: transform 0.26s ease;
    margin-left: 130px;
    display: block;
}
.sidebar-menu .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
}
.sidebar-menu .dropdown-menu.show {
    margin-left: 130px;
}
.sidebar-menu .dropdown-menu ul {
    list-style-type: none;
    padding: 0;
}
.sidebar-menu .dropdown-menu ul li {
    margin-bottom: 8px;
}
.sidebar-menu .dropdown-menu ul li:last-child {
    margin-bottom: 0px;
}
.sidebar-menu .dropdown-menu ul li a {
    font-size: 20px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
    text-transform: capitalize;
}
.sidebar-menu .dropdown-menu ul li a:hover {
    color: var(--colorRed);
}
.sidebar-menu .dropdown-toggle::after {
    border: none;
}
.sidebar-menu .dropdown:hover .nav-link:before {
    background-color: var(--colorRed);
}
.sidebar-menu .dropdown:hover .nav-item .nav-link {
    font-size: 30px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
}
.sidebar-menu .dropdown:hover .nav-link {
    color: var(--colorRed);
}



/* Hide all submenus by default */
        .submenu-group .submenu-level-3 {
            max-height: 0;
            opacity: 0;
            visibility: hidden;
            margin-top: 5px;
            transition: all 0.4s ease-in-out;
        }

        /* Show submenu on hover */
        .submenu-group:hover .submenu-level-3 {
            max-height: 500px;
            opacity: 1;
            visibility: visible;
            position: relative;
            transition: all 0.4s ease-in-out;
        }

        .submenu-group:hover .submenu-level-3:before {
            content: "";
            position: absolute;
            top: 0;
            left: -38px;
            background-color: var(--colorRed);
            display: inline-block;
            width: 3px;
            height: 100%;
            transition: all 0.4s ease-in-out;
        }



        /* Make <h5> look interactive */
        .submenu-group h5 {
            cursor: pointer;
            position: relative;
        }

        /* .submenu-group h5::after {
            content: '▼';
            font-size: 10px;
            margin-left: 6px;
            transition: transform 0.3s ease;
        } */

        .submenu-group:hover h5::after {
            transform: rotate(180deg);
        }

        .submenu-group {
            margin-bottom: 30px;
        }
        .submenu-group .submenu-level-3.open {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
        }





/*-- End Header --*/
/*-- Start Home Slider --*/
.main-slider {
    position: relative;
}
.main-home-video {
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-height: 100vh;
}
.web-video-img {
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.mobile-video-img {
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
}
.main-slider .owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}
.main-slider .owl-carousel .item .slide-bg {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    display: flex;
    align-items: center;
}
.main-slider .home-slider-1 {
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
}
.main-slider .owl-item.active .arrow1 {
    -webkit-animation: 1s .2s fadeInRight both;
    animation: 1s .2s fadeInRight both;
}
.main-slider .owl-item.active .arrow2 {
    -webkit-animation: 1s .4s fadeInRight both;
    animation: 1s .4s fadeInRight both;
}
.main-slider .owl-item.active .arrow3 {
    -webkit-animation: 1s .6s fadeInRight both;
    animation: 1s .6s fadeInRight both;
}
.home-slide1-cnt h1 {
    font-size: 130px;
    color: var(--colorRed);
    text-transform: uppercase;
    line-height: 120px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.home-slide1-cnt h1 span {
    color: var(--colorWhite);
    display: block;
}
.main-slider .owl-item.active .home-slide1-cnt h1 {
    -webkit-animation: 1s .4s fadeInLeft both;
    animation: 1s .4s fadeInLeft both;
}
.main-slider .home-slider-2 {
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
}
.main-slider .owl-item.active .rectangle1 {
    -webkit-animation: 1s .2s fadeInUp both;
    animation: 1s .2s fadeInUp both;
}
.main-slider .owl-item.active .rectangle2 {
    -webkit-animation: 1s .4s fadeInUp both;
    animation: 1s .4s fadeInUp both;
}
.main-slider .owl-item.active .rectangle3 {
    -webkit-animation: 1s .6s fadeInUp both;
    animation: 1s .6s fadeInUp both;
}
.home-slide2-cnt h1 {
    font-size: 200px;
    color: var(--colorWhite);
    text-transform: uppercase;
    line-height: 150px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.home-slide2-cnt p {
    font-size: 83px;
    font-family: "Prometo W04 Bold";
    color: var(--colorWhite);
    line-height: 80px;
    margin: 0 0 0 90px;
    position: relative;
    z-index: 1;
}
.main-slider .owl-item.active .home-slide2-cnt h1 {
    -webkit-animation: 1s .2s fadeInRight both;
    animation: 1s .2s fadeInRight both;
}
.main-slider .owl-item.active .home-slide2-cnt p {
    -webkit-animation: 1s .4s fadeInRight both;
    animation: 1s .4s fadeInRight both;
}
.main-slider .home-slider-3 {
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
}
.main-slider .owl-item.active .line1 {
    -webkit-animation: 1s .2s fadeInRight both;
    animation: 1s .2s fadeInRight both;
}
.main-slider .owl-item.active .line2 {
    -webkit-animation: 1s .4s fadeInRight both;
    animation: 1s .4s fadeInRight both;
}
.main-slider .owl-item.active .line3 {
    -webkit-animation: 1s .6s fadeInRight both;
    animation: 1s .6s fadeInRight both;
}
.home-slide3-cnt h1 {
    font-size: 200px;
    color: var(--colorWhite);
    text-transform: uppercase;
    line-height: 150px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.home-slide3-cnt p {
    font-size: 83px;
    font-family: "Prometo W04 Bold";
    color: var(--colorWhite);
    line-height: 80px;
    margin: 0 0 0 90px;
    position: relative;
    z-index: 1;
}
.main-slider .owl-item.active .home-slide3-cnt h1 {
    -webkit-animation: 1s .2s fadeInLeft both;
    animation: 1s .2s fadeInLeft both;
}
.main-slider .owl-item.active .home-slide3-cnt p {
    -webkit-animation: 1s .4s fadeInLeft both;
    animation: 1s .4s fadeInLeft both;
}
.scrolldown img {
    width: auto !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2%;
    margin-bottom: 30px;
    z-index: 1;
    margin: 0 auto;
}
/*-- End Home Slider --*/
/*-- Start --*/
.find-your-motorsport {
    background-color: var(--mainTheme);
    /* min-height: 100vh;
    display: flex;
    align-items: center; */
    padding: 100px 0 0;
}
.find-your-motorsport-cnt {
    float: right;
    max-width: 660px;
    padding: 100px 87px 100px 12px;
}
.find-your-motorsport-cnt h5 {
    font-size: 30px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
    line-height: 35px;
    margin-bottom: 40px;
}
.find-your-motorsport-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 30px;
    margin-bottom: 20px;
}
.find-your-motorsport-cnt .thm-btn {
    margin: 40px 0 0;
}
.find-your-motorsport-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
}
.find-your-motorsport-video iframe {
    width: 100%;
    /* height: 100vh; */
}
/*-- End --*/
/*-- Start --*/
.compete-volunteer-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    max-height: 700px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}
.compete-volunteer-img:hover::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1f1c3b;
    opacity: 0.43;
    transition: all 0.4s ease-in-out;
}
.compete-volunteer-img h6 {
    position: absolute;
    left: 30px;
    bottom: 30px;
    font-size: 48px;
    font-family: "Prometo W04 Light";
    font-weight: 600;
    color: var(--colorWhite);
    margin-bottom: 0;
    text-shadow: 11px 19.053px 40px rgb( 35, 31, 32 );
    transition: all 0.4s ease-in-out;
}
.compete-volunteer-img:hover h6 {
    left: unset;
    right: 30px;
    bottom: 175px;
}
.compete-volunteer-img:hover .orange-border {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: calc(100% - 30px);
    margin-top: 0px;
    background-color: transparent;
    border: 30px solid #f56100;
    border-right: 0;
    border-top: 0;
    border-radius: 0 0 0 120px;
    top: 0px;
    left: 30px;
    bottom: 30px;
    animation: 0.6s ease-in-out 0s normal none 1 running fadeInUp;
}
.compete-volunteer-img:hover .orange-border:before {
    content: "";
    position: absolute;
    background-color: transparent;
    border: 30px solid #f56100;
    border-right: 0;
    border-top: 0;
    border-radius: 0 0 0 80px;
    width: 100%;
    height: 100%;
    bottom: 20px;
    left: 20px;
    animation: 0.5s ease-in-out 0s normal none 1 running fadeInUp;
}
.compete-volunteer-img:hover .orange-border:after {
    content: "";
    position: absolute;
    background-color: transparent;
    border: 30px solid #f56100;
    border-right: 0;
    border-top: 0;
    border-radius: 0 0 0 40px;
    width: 100%;
    height: 100%;
    bottom: 70px;
    left: 70px;
    animation: 0.4s ease-in-out 0s normal none 1 running fadeInUp;
}
/*-- End --*/
/*-- Start --*/
/*.find-your-drive {
    padding: 200px 0 100px;
}
.find-your-drive .sec-heading h2 {
    font-size: 60px;
    color: var(--colorBlack);
    text-transform: uppercase;
    line-height: 72px;
    margin-bottom: 10px;
}
.find-your-drive .sec-heading p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 0;
} 
.find-your-drive .swiper-slide {
    width: 416px;
}
.find-your-drive .swiper-scrollbar {
    background: #cccccc;
}
.find-your-drive .swiper-horizontal>.swiper-scrollbar, .find-your-drive .swiper-scrollbar.swiper-scrollbar-horizontal {
    width: 500px;
}
.find-your-drive .swiper-scrollbar-drag {
    background: var(--colorRed);
}
.find-your-drive-box {
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}
.drive-digit {
    font-size: 264px;
    font-family: "Prometo W04 Light";
    color: #908bb4;
    display: inline;
    position: absolute;
    left: 0;
    right: 0;
    height: 250px;
}
.ctm-btn-1 {
    font-size: 24px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
    text-transform: uppercase;
    border: 1px solid rgb(222 31 19 / 79%);
    background-color: rgb(222 31 19 / 79%);
    padding: 16px 40px 12px;
    border-radius: 15px;
    display: inline-block;
    position: relative;
    margin: 145px 0 95px 0;
}
.ctm-btn-1:after {
    content: "";
    background-color: var(--colorBlack);
    display: inline-block;
    position: absolute;
    top: 50%;
    right: -50px;
    bottom: 0;
    width: 50px;
    height: 2px;
    transform: translate(-0%, -50%);
}
.ctm-btn-1:hover {
    background-color: rgb(10 60 205 / 79%);
    border-color: rgb(10 60 205 / 79%);
    transition: all 0.4s ease-in-out;
}
.find-your-drive-box ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}
.find-your-drive-box ul li {
    margin-bottom: 20px;
}
.find-your-drive-box ul li a {
    font-size: 25px;
    color: var(--colorBlack);
    text-transform: uppercase;
}
.find-your-drive-box ul li a:hover {
    color: var(--colorRed);
}*/
.find-your-drive {
    padding: 200px 0 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
.find-your-drive:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 78%);
}
.find-your-drive .sec-heading {
    position: relative;
    z-index: 1;
}
.find-your-drive .sec-heading h2 {
    font-size: 60px;
    color: var(--colorWhite);
    text-transform: uppercase;
    line-height: 72px;
    margin-bottom: 10px;
}
.find-your-drive .sec-heading p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorWhite);
    line-height: 30px;
    margin-bottom: 0;
}
.find-drive-box {
    background-color: #0b0b1d;
    border: 1px solid var(--colorWhite);
    padding: 40px;
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 40px 0;
}
.find-your-drive .thm-btn {
    position: relative;
    z-index: 1;
    width: fit-content;
    padding: 14px 57px;
    display: block;
}
.find-your-drive-bg {
    position: relative;
    z-index: 1;
    background: url(../images/who-should-logo-bg.png) repeat-x 50% 0;
    background-position: center;
    /* animation: infinite-shift-right 800s linear; */
}
.find-que {
    font-size: 36px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
    text-transform: uppercase;
}
.find-drive-box .form-check {
    font-size: 18px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
    margin-top: 50px;
    width: fit-content;
    cursor: pointer;
    padding-left: 0;
}
.find-drive-box .form-check-label {
    cursor: pointer;
    font-size: 18px;
    text-transform: uppercase;
}
.find-drive-box .form-check-input {
    display: none;
}
.find-drive-box .form-check-input:checked[type=radio] {
    background-image: none;
}
.find-drive-box .form-check-input:checked~label {
    color: var(--colorRed);
}
.find-drive-box .thm-btn {
    background-color: var(--colorBlue);
    border-color: var(--colorBlue);
    padding: 14px 57px;
    margin-top: 130px;
}
.find-drive-box .thm-btn:hover {
    background-color: var(--colorRed);
    color: var(--colorWhite);
    border-color: var(--colorRed);
}
/*-- End --*/
/*-- Start --*/
.people-think {
    padding: 160px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    position: relative;
}
.people-think .sec-heading h2 {
    font-size: 60px;
    color: var(--colorBlack);
    text-transform: uppercase;
    line-height: 72px;
    margin-bottom: 70px;
}
.people-think-box {
    background-color: rgb(247 247 247 / 80%);
    border-radius: 30px;
    padding: 40px 113px 40px 40px;
    position: relative;
}
.left-quotes {
    font-size: 83px;
    font-weight: 600;
    color: var(--colorBlue);
    float: left;
}
.right-quotes {
    font-size: 83px;
    font-weight: 600;
    color: var(--colorBlue);
    float: right;
    transform: matrix(-1.00002839698992, 0, 0, 1, 0, 0);
}
.people-think-cnt {
    padding: 46px 50px 0px 50px;
}
.people-think-cnt p {
    font-size: 25px;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 30px;
}
.people-think-cnt h6 {
    font-size: 25px;
    color: var(--colorBlack);
    line-height: 32px;
    margin-bottom: 0px;
}
.people-think-cnt span {
    font-size: 18px;
    font-family: "Prometo W04 Light";
    color: var(--colorBlack);
    line-height: 30px;
    display: block;
    margin-bottom: 0px;
}
.people-img-box {
    width: 196px;
    height: 180px;
    border-radius: 15px;
    position: absolute;
    right: -115px;
    top: 50%;
    transform: translate(-0%, -50%);
}
.people-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
/*-- End --*/
/*-- Start --*/
.banner {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    min-height: 60vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    align-items: center;
    display: flex;
}
.banner:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 30%);
}
.banner-txt {
    position: relative;
    z-index: 1;
}
.banner-txt h1 {
    font-size: 80px;
    color: var(--colorWhite);
    text-transform: uppercase;
    line-height: 120px;
    margin-bottom: 0px;
    animation: 1s .2s fadeInUp both;
}
.banner-txt p {
    font-size: 30px;
    color: var(--colorWhite);
    margin-bottom: 0;
    line-height: 52px;
    animation: 1s .4s fadeInUp both;
}
.circuit-racing {
    padding: 140px 0;
}
.circuit-racing-cnt h2 {
    font-size: 60px;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.circuit-racing-cnt p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 0;
}
.circuit-racing-video {
    background-color: #212121;
}
.circuit-racing-video-cnt-bg {
    background-color: var(--mainTheme);
}
.circuit-racing-video-cnt {
    font-size: 30px;
    font-weight: bold;
    color: var(--colorWhite);
    text-transform: uppercase;
    padding: 50px 0;
    font-family: "Prometo W04 Bold";
}
.circuit-racing-video-cnt span {
    color: var(--colorRed);
}
.circuit-racing-video-img {
    background-image: url(../images/watch-more.png);
    background-size: auto;
    background-position: bottom;
    height: 100%;
    background-repeat: no-repeat;
    margin-left: auto;
    width: 44%;
}
.circuit-racing-box {
    padding: 140px 0;
}
.circuit-racing-box .row {
    margin-bottom: 100px;
}
.circuit-racing-box .row:last-child {
    margin-bottom: 0;
}
.circuit-racing-box-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50%;
    border-radius: 20px;
}
.circuit-racing-box-cnt h4 {
    font-size: 30px;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.circuit-racing-box-cnt p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 30px;
}
.circuit-racing-box-cnt p:last-child {
    margin-bottom: 0;
}
/*-- End --*/
/*-- Start --*/
.marshalling {
    padding: 140px 0;
}
.marshalling-cnt p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 25px;
}
.m-75 {
    margin: 75px -12px;
}
.marshalling-box-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 37.5%;
    border-radius: 20px;
}
.marshalling-box-cnt h4 {
    font-size: 30px;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.marshalling-box-cnt p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 30px;
}
.marshalling-box-cnt p:last-child {
    margin-bottom: 0;
}
.marshalling-description-box .row:last-child .marshalling-description {
    border-bottom: none;
    padding: 0;
    margin-bottom: 0;
}
.marshalling-description {
    padding-bottom: 60px;
    margin: 30px 0 30px;
    border-bottom: 1px solid #d1d2d3;
}
.marshalling-description h4 {
    font-size: 30px;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.marshalling-description p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 30px;
}
.marshalling-description p:last-child {
    margin-bottom: 0;
}
/*-- End --*/
/*-- Start --*/
.rescue-recovery {
    padding: 140px 0;
}
.rescue-recovery-cnt h4 {
    font-size: 30px;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin: 100px 0 30px;
}
.rescue-recovery-cnt p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 25px;
}
.rescue-recovery-cnt p:last-child {
    margin-bottom: 0;
}
/*-- End --*/
/*-- Start --*/
.what-volunteer {
    padding: 140px 0 70px;
    background-color: #111111;
}
.what-volunteer .sec-heading h2 {
    font-size: 60px;
    color: var(--colorWhite);
    text-transform: uppercase;
    line-height: 72px;
    margin-bottom: 10px;
}
.what-volunteer .sec-heading p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorWhite);
    line-height: 30px;
    margin-bottom: 0;
}
.volunteer-box {
    margin: 40px 0 0;
}
.volunteer-box ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.volunteer-box ul li {
    width: 13.21%;
    position: relative;
    margin-left: -20px;
    transition: width 800ms ease-in-out;
}
.volunteer-box ul li:hover {
    width: 30%;
}
.volunteer-box ul li.active {
    width: 30%;
}
.volunteer-box-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 219px;
    border-radius: 20px;
}
.volunteer-box ul li a {
    position: relative;
    z-index: 1;
    display: -webkit-box;
}
.volunteer-box ul li a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 26%);
    border-radius: 20px;
}
.volunteer-box ul li a span {
    font-size: 20px;
    font-weight: bold;
    color: var(--colorWhite);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    position: absolute;
    top: 20px;
    bottom: 15px;
    right: 30px;
}
.volunteer-box ul li:first-child {
    margin-left: 0px;
}
/*-- End --*/
/*-- Start --*/
.volunteering {
    padding: 65px 0;
}
.volunteering-box-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 36.9%;
    border-radius: 20px;
}
.volunteering-box-cnt h4 {
    font-size: 30px;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.volunteering-box-cnt p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 30px;
}
.volunteering-box-cnt p:last-child {
    margin-bottom: 0;
}
.volunteering-description h4 {
    font-size: 30px;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.volunteering-description p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 30px;
}
.volunteering-description p:last-child {
    margin-bottom: 0;
}
/*-- End --*/
/*-- Start --*/
.explore {
    background-color: #f56100;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 311px;
}
.explore .blue-border {
    position: absolute;
    z-index: 0;
    width: 30%;
    height: 311px;
    margin-top: 0px;
    background-color: transparent;
    border: 30px solid #1f1c3b;
    border-right: 0;
    border-radius: 311px 0 0 311px;
    top: 0;
    right: 0;
    animation: 1s ease-in-out 0s normal none 1 running fadeInRight;
}
.explore .blue-border:before {
    content: "";
    position: absolute;
    background-color: transparent;
    border: 30px solid #1f1c3b;
    border-right: 0;
    border-radius: 209px 0 0 209px;
    width: 100%;
    height: 209px;
    top: 20px;
    left: 20px;
    right: 0px;
    animation: 1.2s ease-in-out 0s normal none 1 running fadeInRight;
}
.explore .blue-border:after {
    content: "";
    position: absolute;
    background-color: transparent;
    border: 30px solid #1f1c3b;
    border-right: 0;
    border-radius: 105px 0 0 105px;
    width: 100%;
    height: 105px;
    top: 70px;
    left: 70px;
    right: 0;
    animation: 1.4s ease-in-out 0s normal none 1 running fadeInRight;
}
.explore-cnt {
    font-size: 30px;
    font-family: "Prometo W04 Bold";
    color: var(--colorBlack);
    text-transform: uppercase;
    margin: 0 320px 0 0;
}
/*-- End --*/
/*-- Start --*/
.who-should {
    padding: 120px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
.who-should:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 78%);
}
.who-should-cnt {
    position: relative;
    z-index: 1;
}
.who-should-cnt h4 {
    font-size: 30px;
    color: var(--colorWhite);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.who-should-cnt p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorWhite);
    line-height: 30px;
    margin-bottom: 0px;
}
.who-should-logo-bg {
    position: relative;
    z-index: 1;
    padding: 80px 0px 60px;
    background: url(../images/who-should-logo-bg.png) repeat-x 50% 0;
    background-position: center;
    /* animation: infinite-shift-right 800s linear; */
}
@keyframes infinite-shift-right {
    0% {
        background-position: 0px;
    }
    100% {
        background-position: 100000px;
    }
}
.who-should-logo-box {
    height: 107px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.who-should-logo {
    position: relative;
    z-index: 1;
}
.who-should-logo a{
    color: var(--colorWhite);
}
.who-should-logo ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.who-should-logo ul li {
    width: 14.28%;
    padding-right: 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--colorWhite);
    line-height: 26px;
    margin-bottom: 30px;
}
.who-should-logo ul li .who-should-logo-box img {
    width: 100px;
    height: auto;
}
.who-should-logo ul li:last-child {
    padding-right: 0;
}
/*-- End --*/
/*-- Start --*/
.faq-banner {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    min-height: 75vh;
    background-image: url(../images/faq.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    align-items: center;
    display: flex;
}
.faq-banner:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 30%);
}
.faq-banner .faq-arrow {
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    width: 100%;
}
.faq-arrow.arrow1 {
    -webkit-animation: 1s .2s fadeInRight both;
    animation: 1s .2s fadeInRight both;
}
.faq-arrow.arrow2 {
    -webkit-animation: 1s .4s fadeInRight both;
    animation: 1s .4s fadeInRight both;
}
.faq-arrow.arrow3 {
    -webkit-animation: 1s .6s fadeInRight both;
    animation: 1s .6s fadeInRight both;
}
.faq-banner-txt {
    position: relative;
    z-index: 1;
}
.faq-banner-txt h1 {
    font-size: 80px;
    color: var(--colorWhite);
    text-transform: uppercase;
    line-height: 80px;
    margin-bottom: 30px;
    animation: 1s .2s fadeInUp both;
}
.faq-banner-txt p {
    font-size: 30px;
    color: var(--colorWhite);
    margin-bottom: 0;
    line-height: 52px;
    animation: 1s .4s fadeInUp both;
}
.faq {
    padding: 140px 0;
}
.faq-box {
    margin-bottom: 60px;
}
.faq-box h5 {
    font-size: 30px;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f56100;
}
.faq-box p {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    color: var(--colorBlack);
    margin-bottom: 15px;
    position: relative;
}
.faq-box p::before {
    content: "A.";
    font-size: 30px;
    font-weight: bold;
    font-family: "Prometo W04 Bold";
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-right: 5px;
}
.faq .row .col-lg-12 .faq-box:last-child {
    margin-bottom: 0;
}
/*-- End --*/
/*-- Start --*/
.stage-rallying {
    background-color: var(--mainTheme);
    padding: 100px 0;
}
.stage-rallying-cnt {
    margin-right: 68px;
}
.stage-rallying-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 30px;
    margin-bottom: 20px;
}
.stage-rallying-cnt h6 {
    font-size: 30px;
    font-weight: 600;
    color: var(--colorWhite);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.stage-rallying-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 30px;
    margin-bottom: 20px;
}
.stage-rallying-point ul {
    padding: 0 0 0 15px;
    margin: 0;
    list-style-type: none;
}
.stage-rallying-point ul li {
    font-size: 24px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
    position: relative;
}
.stage-rallying-point ul li::before {
    content: "-";
    width: 0;
    height: 0;
    top: 0;
    left: -15px;
    background-color: var(--colorWhite);
    border-radius: 6px;
    position: absolute;
}
.stage-rallying-icon ul {
    margin: 45px 0;
    padding: 0 0 0 8px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.stage-rallying-icon ul li img {
    margin: 0 auto;
    filter: brightness(0) invert(1);
}
.stage-rallying-icon ul li .img-fluid {
    max-width: 75%;
}
.stage-rallying-icon ul li {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 80px;
    min-height: 60px;
    margin-right: 10px;
    cursor: pointer;
    animation: 1s ease-in-out 0s normal none 1 running fadeInLeft;
/*    background-color: #c1b7b7;*/
}
/*.stage-rallying-icon ul li:nth-child(2) {
    margin-right: 34px;
}*/
.stage-rallying-icon ul li:last-child {
    margin-right: 0;
} 
.stage-rallying-icon ul li .purple-line {
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 60px;
    background-color: #3b38d1;
    top: 0;
    left: 22px;
    transform: skew(-40deg);
}
.stage-rallying-icon ul li .purple-line:before {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 15px;
    transform: skew(0deg);
    background-color: #3b38d1;
}
.stage-rallying-icon ul li .purple-line:after {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 30px;
    transform: skew(0deg);
    background-color: #3b38d1;
}
.stage-rallying-icon ul li span {
    font-size: 30px;
    font-family: "Prometo W04 Bold";
    color: var(--colorWhite);
    position: relative;
    text-align: center;
    margin: 0 auto;
}
.stage-rallying-icon ul li .orange-line {
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 60px;
    top: 0;
    left: 22px;
    transform: skew(-40deg);
    background-color: #f56100;
}
.stage-rallying-icon ul li .orange-line:before {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 15px;
    transform: skew(0deg);
    background-color: #f56100;
}
.stage-rallying-icon ul li .orange-line:after {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 30px;
    transform: skew(0deg);
    background-color: #f56100;
}
.stage-rallying-icon ul li .red-line {
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 60px;
    top: 0;
    left: 22px;
    transform: skew(-40deg);
    background-color: var(--colorRed);
}
.stage-rallying-icon ul li .red-line:before {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 15px;
    transform: skew(0deg);
    background-color: var(--colorRed);
}
.stage-rallying-icon ul li .red-line:after {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 30px;
    transform: skew(0deg);
    background-color: var(--colorRed);
}
.stage-rallying-icon ul li .b-span {
    font-size: 12px;
    background-color: var(--mainTheme);
    border: 1px solid var(--colorWhite);
    border-radius: 5px;
    padding: 2px 6px 0;
    text-align: center;
    text-transform: uppercase;
    min-width: auto;
    margin: 0 auto;
}
.stage-rallying-icon ul li .stage-rallying-popup {
    background-color: var(--colorWhite);
    padding: 15px;
    position: absolute;
    z-index: 1;
    width: 192px;
    top: 0%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -100%);
    font-size: 16px;
    font-family: "Prometo W04 Light";
    font-weight: 600;
    color: var(--colorBlack);
    display: none;
}
.stage-rallying-icon ul li:hover .stage-rallying-popup {
    display: block;
}
.stage-rallying-cnt .thm-btn {
    margin-bottom: 38px;
}
.stage-rallying .row.g-5 {
    --bs-gutter-y: 50px;
    --bs-gutter-x: 50px;
}
.stage-rallying-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50%;
    border-radius: 20px;
}
.about-stage-rallying {
    padding: 100px 0;
}
.about-stage-rallying-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 28%;
    border-radius: 20px;
    margin-bottom: 30px;
}
.about-stage-rallying-cnt h4 {
    font-size: 30px;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.about-stage-rallying-cnt p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 30px;
}
/*.about-stage-rallying-cnt .thm-btn-1 {
    font-size: 24px;
    border-radius: 20px;
    margin-top: 70px;
}*/
.about-stage-rallying-cnt .thm-btn-1:hover {
    background-color: var(--colorRed);
    border-color: var(--colorRed);
    color: var(--colorWhite);
}
/*-- End --*/
/*-- Start --*/
.reasons .col-lg-6 {
    width: 50%;
    max-width: 951px;
    padding: 0;
}
.reasons-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.reasons-cnt {
    padding: 100px 220px 100px 90px;
}
.reasons-cnt h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--colorBlack);
    text-transform: uppercase;
    line-height: 55px;
    margin-bottom: 0;
}
.reasons-cnt span {
    font-size: 120px;
    font-family: "Prometo W04 Bold";
    color: var(--colorBlack);
    text-transform: uppercase;
    line-height: 55px;
    margin: -20px 10px 0 0px;
}
.reasons-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 70px;
}
.reasons-box .reasons-digit {
    font-size: 80px;
    font-family: "Prometo W04 Bold";
    color: var(--colorBlack);
    text-transform: uppercase;
    line-height: 40px;
    margin-right: 15px;
    margin-top: 12px;
}
.reasons-box p {
    font-size: 24px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 0;
    line-height: 30px;
}
.reasons-box-txt {
    font-size: 44px;
    font-family: "Prometo W04 Light";
    color: var(--colorBlack);
}
.arrow-right-lg-box {
    display: flex;
    margin: 0 16px 0 0;
}
.arrow-right-lg-box .chevron-right-lg {
    width: 54px;
    height: 10px;
    transform: rotate(-90deg);
}
.arrow-right-lg-box .chevron-right-lg:nth-child(2) {
    margin-left: -38px;
}
.arrow-right-lg-box .chevron-right-lg:nth-child(3) {
    margin-left: -38px;
}
.arrow-right-lg-box .chevron-right-lg:before,
.arrow-right-lg-box .chevron-right-lg:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: var(--colorBlack);
}
.arrow-right-lg-box .chevron-right-lg:before {
    left: 0;
    transform: skewY(45deg);
}
.arrow-right-lg-box .chevron-right-lg:after {
    right: 0;
    width: 50%;
    transform: skewY(-45deg);
}
/*-- End --*/
/*-- Start --*/
.easy-steps {
    padding: 100px 0 0;
    background-color: var(--mainTheme);
}
.easy-steps .sec-heading h2 {
    font-size: 48px;
    color: var(--colorWhite);
    text-transform: uppercase;
    line-height: 72px;
    margin-bottom: 44px;
}
.easy-steps .col-lg-4 {
    width: 33.33333333%;
    padding: 0;
}
.easy-steps-box {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
/*    height: 368px;*/
    position: relative;
    overflow: hidden;
    padding: 29%;
}
.easy-steps-box-bg.thm-blue {
    background-color: #3d3bcc;
}
.easy-steps-box-bg.thm-orange {
    background-color: #f3601b;
}
.easy-steps-box-bg.thm-red {
    background-color: #dd1c1d;
}
.easy-steps-box-bg {
    position: absolute;
    width: 100%;
    height: 202%;
    margin-top: 0px;
    background-color: #3d3bcc;
    border: 15px solid var(--colorWhite);
    top: -79%;
    right: 33%;
    transform: rotate(45deg);
}
.easy-steps-box-bg:before {
    content: "";
    position: absolute;
    background-color: transparent;
    border: 15px solid var(--colorWhite);
    width: 100%;
    height: 100%;
    top: 10px;
    right: 10px;
}
.easy-steps-box-bg:after {
    content: "";
    position: absolute;
    background-color: transparent;
    border: 15px solid var(--colorWhite);
    width: 100%;
    height: 100%;
    top: 35px;
    right: 35px;
}
.easy-steps-box-cnt {
    margin-right: 359px;
    position: absolute;
    z-index: 1;
    top: 40px;
    left: 20px;
}
.easy-steps-box-cnt h3 {
    font-size: 48px;
    font-weight: 900;
    color: var(--colorWhite);
    text-transform: uppercase;
    margin-bottom: 0px;
}
.easy-steps-box-cnt p {
    font-size: 22px;
    font-weight: 600;
    color: var(--colorWhite);
    text-transform: uppercase;
    line-height: 30px;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
/*-- End --*/
/*-- Start --*/
.rallying-pathway {
    padding: 100px 0 85px;
    /* background-color: #3b38d1; */
    background-color: #1f1c3b;
}
.rallying-pathway .sec-heading h2 {
    font-size: 48px;
    color: var(--colorWhite);
    text-transform: uppercase;
    line-height: 72px;
    margin-bottom: 10px;
}
.rallying-pathway .sec-heading p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorWhite);
    line-height: 30px;
    margin-bottom: 0;
}
.pathway-box {
    margin: 40px 0 0;
}
.pathway-box ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.pathway-box ul li {
    width: 19%;
    position: relative;
    margin-left: -20px;
    transition: width 800ms ease-in-out;
}
.pathway-box ul li:hover {
    width: 30%;
}
.pathway-box ul li.active {
    width: 30%;
}
.pathway-box .nav-pills .nav-link {
    padding: 0;
    border-radius: 0;
}
.pathway-box-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 219px;
    border-radius: 20px;
}
.pathway-box ul li a {
    position: relative;
    z-index: 1;
    display: -webkit-box;
}
.pathway-box ul li a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(31 28 59 / 41%);
    border-radius: 20px;
}
.pathway-box ul li a span {
    font-size: 20px;
    font-weight: bold;
    color: var(--colorWhite);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    position: absolute;
    top: 20px;
    bottom: 15px;
    right: 30px;
}
.pathway-box ul li:first-child {
    margin-left: 0px;
}
.pathway-box .nav-pills .nav-link.active,
.pathway-box .nav-pills .show>.nav-link {
    background-color: transparent;
}
/*-- End --*/
/*-- Start --*/
.order-rally {
    display: flex;
    align-items: center;
    background-color: #dfdfdf;
}
.order-rally-img {
    width: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 12%;
}
.order-rally-cnt {
    width: 38%;
    padding: 70px 100px;
}
.order-rally-cnt h2 {
    font-size: 42px;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.order-rally-cnt p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 40px;
}
.order-rally-cnt .thm-btn-1:hover {
    background-color: var(--colorRed);
    border-color: var(--colorRed);
    color: var(--colorWhite);
}
/*-- End --*/
/*-- Start --*/
.question-matrix-output {
    background-color: var(--mainTheme);
    padding: 100px 0;
}
.question-matrix-output-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 30px;
    margin-bottom: 40px;
}
.question-matrix-output .row.g-5 {
    --bs-gutter-y: 70px;
    --bs-gutter-x: 70px;
}
.question-matrix-output-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50%;
    border-radius: 20px;
    margin-bottom: 30px;
}
.question-matrix-output-box h6 {
    font-size: 30px;
    color: var(--colorWhite);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.question-matrix-output-icon ul {
    margin: 45px 0 25px;
    padding: 0 4px;
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.question-matrix-output-icon ul li img {
    margin: 0 auto;
    filter: brightness(0) invert(1);
}
.question-matrix-output-icon ul li .img-fluid {
    max-width: 75%;
}
.question-matrix-output-icon ul li {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 80px;
    min-height: 60px;
    margin-bottom: 20px;
    margin-right: 10px;
    animation: 1s ease-in-out 0s normal none 1 running fadeInLeft;
/*    background-color: #c1b7b7;*/
}
/*.question-matrix-output-icon ul li:nth-child(2) {
    margin-right: 34px;
}*/
.question-matrix-output-icon ul li:last-child {
    margin-right: 0;
}
.question-matrix-output-icon ul li .purple-line {
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 60px;
    background-color: #3b38d1;
    top: 0;
    left: 22px;
    transform: skew(-40deg);
}
.question-matrix-output-icon ul li .purple-line:before {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 15px;
    transform: skew(0deg);
    background-color: #3b38d1;
}
.question-matrix-output-icon ul li .purple-line:after {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 30px;
    transform: skew(0deg);
    background-color: #3b38d1;
}
.question-matrix-output-icon ul li span {
    font-size: 30px;
    font-family: "Prometo W04 Bold";
    color: var(--colorWhite);
    position: relative;
    text-align: center;
    margin: 0 auto;
}
.question-matrix-output-icon ul li .orange-line {
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 60px;
    top: 0;
    left: 22px;
    transform: skew(-40deg);
    background-color: #f56100;
}
.question-matrix-output-icon ul li .orange-line:before {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 15px;
    transform: skew(0deg);
    background-color: #f56100;
}
.question-matrix-output-icon ul li .orange-line:after {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 30px;
    transform: skew(0deg);
    background-color: #f56100;
}
.question-matrix-output-icon ul li .red-line {
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 60px;
    top: 0;
    left: 22px;
    transform: skew(-40deg);
    background-color: var(--colorRed);
}
.question-matrix-output-icon ul li .red-line:before {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 15px;
    transform: skew(0deg);
    background-color: var(--colorRed);
}
.question-matrix-output-icon ul li .red-line:after {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 30px;
    transform: skew(0deg);
    background-color: var(--colorRed);
}
.question-matrix-output-icon ul li .b-span {
    font-size: 12px;
    background-color: var(--mainTheme);
    border: 1px solid var(--colorWhite);
    border-radius: 5px;
    padding: 2px 6px 0;
    text-align: center;
    text-transform: uppercase;
    min-width: auto;
    margin: 0 auto;
}
.question-matrix-output-icon ul li .stage-rallying-popup {
    background-color: var(--colorWhite);
    padding: 15px;
    position: absolute;
    z-index: 1;
    width: 192px;
    top: 0%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -100%);
    font-size: 16px;
    font-family: "Prometo W04 Light";
    font-weight: 600;
    color: var(--colorBlack);
    display: none;
}
.question-matrix-output-icon ul li:hover .stage-rallying-popup {
    display: block;
}
/*-- End --*/

/*-- Start --*/
.general-sport .col-lg-4 {
    padding: 0;
}
.general-sport-box {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 32%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}
.general-sport-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.26;
}
.general-sport-box:hover::before {
    background-color: #2031c6;
    opacity: 0.36;
}
.general-sport-box h2 {
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 48px;
    color: var(--colorWhite);
    text-transform: uppercase;
    line-height: 55px;
    margin-bottom: 0;
}
.general-sport-box .orange-border {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: calc(100% - 25px);
    margin-top: 0px;
    background-color: transparent;
    border: 16px solid rgb(255 255 255 / 40%);
    border-left: 0;
    border-top: 0;
    border-radius: 0 0 120px 0;
    top: 0px;
    right: 25px;
    animation: 1.3s ease-in-out 0s normal none 1 running fadeInUp;
}
.general-sport-box .orange-border:before {
    content: "";
    position: absolute;
    background-color: transparent;
    border: 16px solid rgb(255 255 255 / 40%);
    border-left: 0;
    border-top: 0;
    border-radius: 0 0 80px 0;
    width: 100%;
    height: 100%;
    right: 16px;
    bottom: 16px;
    animation: 1.2s ease-in-out 0s normal none 1 running fadeInUp;
}
.general-sport-box .orange-border:after {
    content: "";
    position: absolute;
    background-color: transparent;
    border: 16px solid rgb(255 255 255 / 40%);
    border-left: 0;
    border-top: 0;
    border-radius: 0 0 40px 0;
    width: 100%;
    height: 100%;
    right: 48px;
    bottom: 48px;
    animation: 1s ease-in-out 0s normal none 1 running fadeInUp;
}
/*-- End --*/


/*-- Start --*/
.pin-spacer {
    background-color: #2031c6;
}
.national-membership {
    padding: 50px 0;
    overflow: hidden;
}
.national-membership .container-fluid {
    max-width: 1920px;
}
.national-membership-cnt {
    padding: 50px 150px;
}
.national-membership-cnt p {
    font-size: 30px;
    font-weight: 500;
    color: var(--colorWhite);
    line-height: 50px;
}
.national-membership-number-box {
    position: relative;
    overflow: hidden;
}
.national-membership-number-list {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-0%, -50%);
    display: flex;
    align-items: center;
    padding-left: 35%;
}
.national-membership-number {
    opacity: 0.3;
    margin-right: 130px;
}
.national-membership-number.active {
    opacity: 1;
}
.national-membership-value {
    font-size: 86px;
    font-weight: bold;
    color: var(--colorWhite);
}
.national-membership-number p {
    font-size: 24px;
    font-weight: 500;
    color: var(--colorWhite);
    line-height: 43px;
    white-space: nowrap;
}
/*-- End --*/
.never-miss {
    background-color: var(--mainTheme);
}

/*-- Start --*/
.stage-rallying-video iframe {
    border-radius: 20px;
}
/*-- End --*/

/*-- Start --*/
.displine-rallying {
    background-color: #f56100;
}
.displine-rallying .stage-rallying-icon ul {
    margin: 50px 0;
    padding: 0 0 0 8px;
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.displine-rallying .stage-rallying-icon ul li img {
    margin: 0 auto;
    filter: brightness(0) invert(1);
}
.displine-rallying .stage-rallying-icon ul li .img-fluid {
    max-width: 75%;
}
.displine-rallying .stage-rallying-icon ul li {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 80px;
    min-height: 60px;
    margin-right: 100px;
    cursor: pointer;
    animation: 1s ease-in-out 0s normal none 1 running fadeInLeft;
/*    background-color: #c1b7b7;*/
}
.displine-rallying .stage-rallying-icon ul li:last-child {
    margin-right: 0;
} 
.displine-rallying .stage-rallying-icon ul li span {
    font-size: 30px;
    font-family: "Prometo W04 Bold";
    color: var(--colorWhite);
    position: relative;
    text-align: center;
    margin: 0 auto;
}
.displine-rallying .stage-rallying-icon ul li .purple-line {
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 60px;
    background-color: #3b38d1;
    top: 0;
    left: 22px;
    transform: skew(-40deg);
}
.displine-rallying .stage-rallying-icon ul li .purple-line:before {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 15px;
    transform: skew(0deg);
    background-color: #3b38d1;
}
.displine-rallying .stage-rallying-icon ul li .purple-line:after {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 30px;
    transform: skew(0deg);
    background-color: #3b38d1;
}
.displine-rallying .stage-rallying-icon ul li .blue-line {
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 60px;
    background-color: var(--mainTheme);
    top: 0;
    left: 22px;
    transform: skew(-40deg);
}
.displine-rallying .stage-rallying-icon ul li .blue-line:before {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 15px;
    transform: skew(0deg);
    background-color: var(--mainTheme);
}
.displine-rallying .stage-rallying-icon ul li .blue-line:after {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 30px;
    transform: skew(0deg);
    background-color: var(--mainTheme);
}
.displine-rallying .stage-rallying-icon ul li .orange-line {
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 60px;
    top: 0;
    left: 22px;
    transform: skew(-40deg);
    background-color: #f56100;
}
.displine-rallying .stage-rallying-icon ul li .orange-line:before {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 15px;
    transform: skew(0deg);
    background-color: #f56100;
}
.displine-rallying .stage-rallying-icon ul li .orange-line:after {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 30px;
    transform: skew(0deg);
    background-color: #f56100;
}
.displine-rallying .stage-rallying-icon ul li .red-line {
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 60px;
    top: 0;
    left: 22px;
    transform: skew(-40deg);
    background-color: var(--colorRed);
}
.displine-rallying .stage-rallying-icon ul li .red-line:before {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 15px;
    transform: skew(0deg);
    background-color: var(--colorRed);
}
.displine-rallying .stage-rallying-icon ul li .red-line:after {
    content: "";
    position: absolute;
    width: 10px;
    min-height: 60px;
    top: 0;
    left: 30px;
    transform: skew(0deg);
    background-color: var(--colorRed);
}
.displine-rallying .stage-rallying-icon ul li .b-span {
    font-size: 12px;
    background-color: var(--mainTheme);
    border: 1px solid var(--colorWhite);
    border-radius: 5px;
    padding: 2px 6px 0;
    text-align: center;
    text-transform: uppercase;
    min-width: 86px;
    min-height: 23px;
    margin: 0 auto;
}
.displine-rallying .stage-rallying-icon ul li .stage-rallying-popup {
    background-color: var(--colorWhite);
    padding: 15px;
    position: absolute;
    z-index: 1;
    width: 192px;
    top: 0%;
    left: 50%;
    right: 0;
    bottom: unset;
    transform: translate(-50%, -100%);
    font-size: 16px;
    font-family: "Prometo W04 Light";
    font-weight: 600;
    color: var(--colorBlack);
    display: none;
}
.displine-rallying .stage-rallying-icon ul li:hover .stage-rallying-popup {
    display: block;
}
/*-- End --*/

/*-- Start --*/
.case-study {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}
.case-study-box {
    background-color: rgb(255 255 255 / 90%);
    border-radius: 20px;
    padding: 50px;
}
.case-study-box p {
    font-size: 19px;
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 33px;
    margin-bottom: 30px;
}
.case-study-cnt p {
    width: calc(100% - 100px);
    position: relative;
    margin: 0 auto;
    font-size: 19px;
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 33px;
    margin-bottom: 0px;
}
.case-study-cnt p::before {
    content: "“";
    position: absolute;
    top: 15px;
    left: -50px;
    width: 39px;
    height: 27px;
    font-size: 83px;
    font-family: "Prometo W04 Bold";
    font-weight: 600;
    color: #f56100;
}
.case-study-cnt p::after {
    content: "“";
    position: absolute;
    top: 15px;
    right: -50px;
    width: 39px;
    height: 27px;
    font-size: 83px;
    font-family: "Prometo W04 Bold";
    font-weight: 600;
    color: #f56100;
    transform: matrix(-1.00002839698992, 0, 0, 1, 0, 0);
}
.case-study-cnt h6 {
    font-size: 25px;
    color: var(--colorBlack);
    line-height: 32px;
    margin: 30px 0 0;
}
.case-study-cnt span {
    font-size: 18px;
    font-family: "Prometo W04 Light";
    color: var(--colorBlack);
    line-height: 30px;      
    display: block;
    margin-bottom: 0px;
}
/*-- End --*/

/*-- Start --*/
.personal-safety {
    padding: 100px 0;
    background-color: #f56100;
}
.personal-safety .sec-heading {
    margin-bottom: 50px;
}
.personal-safety .sec-heading h2 {
    font-size: 48px;
    color: var(--colorWhite);
    text-transform: uppercase;
    line-height: 72px;
    margin-bottom: 0px;
}
.personal-safety .sec-heading p {
    font-size: 22px;
    font-weight: 500;
    color: var(--colorWhite);
    line-height: 30px;
    margin-bottom: 0;
}
.personal-safety-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.personal-safety-box {
    width: calc(20% - 19.2px);
}
.personal-safety-box img {
    width: 100%;
    height: 234px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 15px;
}
.personal-safety-box h6 {
    font-size: 20px;
    font-weight: bold;
    color: var(--colorWhite);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}
/*-- End --*/

/*-- Start --*/
.competition-licences {
    background-color: #2031c6;
    padding: 100px 0;
}
.competition-licences-cnt p {
    font-size: 30px;
    font-weight: 500;
    color: var(--colorWhite);
    line-height: 50px;
}
.competition-licences-cnt a {
    color: var(--colorWhite);
    text-decoration: underline;
}
.competition-licences-table {
    padding: 100px 0;
}
.table-responsive {
    max-height: 70vh;
}
.table thead th {
    position: sticky;
    top: 0;
    z-index: 10;
}
.competition-licences-table .table thead tr th {
    background-color: #1d1a33;
    font-size: 18px;
    font-family: "Prometo W04 Light";
    color: #ffffff;
    line-height: 28px;
    vertical-align: middle;
    padding: 20px;
    border-left: 1px solid #d2d1d6;
    white-space: nowrap;
}
.competition-licences-table .table thead tr th:first-child {
    background-color: var(--colorWhite);
    border: none;
}
.competition-licences-table .table tbody tr th {
    font-size: 18px;
    font-family: "Prometo W04 Bold";
    color: var(--colorBlack);
    padding: 20px;
    border-bottom: none;
}
.competition-licences-table .table tbody tr td {
    font-size: 18px;
    font-family: "Prometo W04 Light";
    font-weight: 600;
    color: var(--colorBlack);
    border-left: 1px solid #d2d1d6;
    padding: 20px;
    border-bottom: none;
}
.competition-licences-table .table tbody tr td img {
    width: 25px;
}
.circle-info {
    width: 25px;
    height: 25px;
    color: #818181;
    border: 1px solid #818181;
    border-radius: 50%;
    display: block;
    text-align: center;
}
.wsn {
    white-space: nowrap;
}
.wsn img {
    margin-left: 5px;
    margin-top: -25px;
}
/*-- End --*/

/*-- Start --*/
.rev-up-form {
    background-color: var(--mainTheme);
    padding: 80px 0 0;
}
.rev-up-form .sec-heading h2 {
    font-size: 60px;
    color: var(--colorWhite);
    text-transform: uppercase;
    line-height: 72px;
    margin-bottom: 10px;
}
.rev-up-form .sec-heading p {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorWhite);
    line-height: 30px;
    margin-bottom: 20px;
}
.rev-up-form .form-control {
    font-size: 18px;
    font-weight: 500;
    color: var(--colorBlack);
    margin-bottom: 5px;
    padding: 15px 20px 10px;
    border-radius: 0;
    height: 50px;
}
.rev-up-form .form-check {
    margin-bottom: 6px;
    padding-left: 10px;
}
.rev-up-form .form-check p {
    margin-bottom: 0;
}
.rev-up-form .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    vertical-align: middle;
    border: 1px solid var(--colorWhite);
    background-color: var(--mainTheme);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 0;
    appearance: none;
}
.rev-up-form .form-check-input:checked {
    background-color: var(--mainTheme);
    border-color: var(--colorWhite);
}
.rev-up-form .form-check-input:checked[type=checkbox] {
    background-image: url(../images/check-red.svg);
}
.rev-up-form .form-check-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorWhite);
    margin-left: 15px;
    margin-bottom: 0;
}
.rev-up-form .form-check-label a {
    color: var(--colorWhite);
}
.rev-up-form .wpcf7-spinner {
    display: block;
    margin-left: auto;
}
/*-- End --*/

/*-- Start --*/
.find-an-event-main .page-heading h1 {
    font-size: 220px;
    color: var(--colorWhite);
    line-height: 210px;
    text-transform: uppercase;
    text-shadow: 0px 7px 34.02px rgba(35, 31, 32, 0.34);
    animation: 1s 0.3s fadeInLeft both;
}
.find-an-event .container-fluid {
    padding: 0;
}
.event-dropdown {
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 30px;
}
.event-dropdown-box {
    display: flex;
    align-items: center;
    width: 100%;
}
.event-dropdown .event-dropdown-box:last-child {
    margin-right: 0;
}
.event-dropdown-box h4 {
    font-size: 26px;
    color: var(--colorBlack);
    white-space: nowrap;
    margin-right: 25px;
    margin-bottom: 0;
}
.event-radio-box {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.event-radio-box h4 {
    font-size: 26px;
    color: var(--colorBlack);
    margin-right: 25px;
    margin-bottom: 0;
}
.event-radio-box .form-check {
    margin-right: 20px;
    padding-left: 25px;
}
.event-radio-box .form-check-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--colorBlack);
    margin-left: 15px;
    cursor: pointer;
}
.event-radio-box .form-check-input {
    width: 24px;
    height: 24px;
    background-color: var(--colorWhite);
    margin-top: 0;
}
.event-radio-box .form-check-input:checked {
    background-color: #167ce7;
    border-color: #167ce7;
}
.event-radio-box .form-check-label {
    color: var(--colorBlack);
}
.event-search-box {
    display: flex;
    align-items: end;
    column-gap: 30px;
    margin-bottom: 30px;
}
.event-search-box label {
    font-size: 26px;
    font-weight: 600;
    color: var(--colorBlack);
    text-transform: capitalize;
    margin-bottom: 10px;
}
.event-dropdown-box {
    display: flex;
    align-items: center;
    width: 100%;
}
.event-search-input {
    width: 50%;
}

.event-search-box .form-control {
    border-color: #d8d9da;
    font-size: 16px;
    padding: 11px 20px;
    border-radius: 0;
}

.event-search-radius {
    width: 50%;
}

.event-dropdown-box .form-select {
    width: 100%;
    height: 48px;
    border-radius: 0;
    font-size: 16px;
    color: var(--colorBlack);
    font-family: "PT Sans";
    border-color: #d8d9da;
    padding: 7px 40px 7px 20px;
    background-size: 16px 16px;
    background-image: url(https://staging.getstarted.motorsportuk.mojom.co.uk/wp-content/uploads/2025/11/select-arrow.svg);
}

.event-search-box .form-select {
    width: 100%;
    height: 48px;
    border-radius: 0;
    font-size: 16px;
    font-family: "PT Sans";
    color: var(--colorBlack);
    border-color: #d8d9da;
    padding: 10px 40px 10px 20px;
    background-size: 16px 16px;
    background-image: url(https://staging.getstarted.motorsportuk.mojom.co.uk/wp-content/uploads/2025/11/select-arrow.svg);
}

.find-an-event .col-lg-6:first-child {
    max-width: 710px;
    padding: 60px 12px 50px;
}
.event-list-main .upcoming-ets {
    font-size: 26px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 0px;
}
.event-list-main .previous-ets {
    font-size: 26px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-top: 16px;
}
.event-list {
    max-height: 750px;
    overflow: auto;
    padding-top: 10px;
}
.event-list-box {
    border-top: 1px solid #167ce7;
    padding: 20px 20px 20px 0;
    margin-right: 12px;
}
.event-list-box h5 {
    font-size: 24px;
    font-family: "PT Sans";
    font-weight: 600;
    color: var(--colorBlack);
    line-height: 28px;
}
.event-list-box-cnt {
    display: flex;
    align-items: start;
    position: relative;
}
.event-list-box-cnt.showContent {
  min-height: 130px;
}
.event-list-box-cnt .event-list-box-desc {
    font-size: 18px;
    font-family: "PT Sans";
    font-weight: 400;
    line-height: 28px;
    color: var(--colorBlack);
    margin-bottom: 0px;
    float: left;
    margin-right: 25px;
    /* height: 85px; */
    overflow: hidden;
	width:100%;
}
.event-list-box-desc.event-list-box-post-content {
  display: none;
}
.showContent .event-list-box-desc.event-list-box-post-content {
  display: block;
}
.showContent .event-list-box-desc.event-list-box-short-desc {
  display: none;
}
.event-list-box-cnt.showContent .event-list-box-desc {
    height: auto;
}
.event-list-box-cnt .event-list-box-desc p {
    margin-bottom: 0;
}
.event-list::-webkit-scrollbar {
    width: 7px;
    background-color: #cce2fa;
}
.event-list::-webkit-scrollbar-thumb {
    background-color: #a4ccf6;
}
.event-list-box-desc .thm-btn {
    float: right;
    position: absolute;
    right: 0;
    bottom: 0;
    display: none;
    font-size: 16px;
    font-family: "Prometo W04 Light";
    padding: 9px 15px;
    text-align: center;
    min-width: 184px;
}
.showContent .event-list-box-desc .thm-btn {
    display: block;
}
.more-btn {
    font-size: 16px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
    text-transform: uppercase;
    border: none;
    background-color: var(--colorBlack);
    padding: 12px 15px;
    border-radius: 0;
    display: inline-block;
    min-width: 184px;
    text-align: center;
    float: right;
}
.more-btn:hover {
    background-color: var(--mainTheme);
    transition: all 0.4s ease-in-out;
}
.event-list-box-cnt.showContent .more-btn {
    background-color: #d6d6d6;
    color: var(--colorBlack);
}
.find-an-event-map {
    width: 100%;
    height: 100%;
}
.find-an-event-map iframe {
    width: 100%;
    height: 100%;
}
.event-ajax-loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #167ce7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin-left: calc(50% - 20px);
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.event-list.event-list-main {
  min-height: 750px;
}

.event-search-btn .thm-btn {
    padding: 11px 27px;
}
.event-search-btn .thm-btn:hover {
    color: var(--colorWhite);
    background-color: var(--colorBlack);
}
.event-search-input .form-control:focus { 
    border: 1px solid #d8d9da;
}

/*-- End --*/

/*-- Start --*/
.footer {
    background-color: var(--mainTheme);
    padding: 300px 0 120px;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}
.footer .orange-border {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    margin-top: 0px;
    background-color: transparent;
    border: 30px solid #f56100;
    border-right: 0;
    border-bottom: 0;
    border-radius: 120px 0 0 0;
    top: 50px;
    left: 0;
    animation: 1s ease-in-out 0s normal none 1 running fadeInUp;
}
.footer .orange-border:before {
    content: "";
    position: absolute;
    background-color: transparent;
    border: 30px solid #f56100;
    border-right: 0;
    border-bottom: 0;
    border-radius: 80px 0 0 0;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    animation: 1.2s ease-in-out 0s normal none 1 running fadeInUp;
}
.footer .orange-border:after {
    content: "";
    position: absolute;
    background-color: transparent;
    border: 30px solid #f56100;
    border-right: 0;
    border-bottom: 0;
    border-radius: 40px 0 0 0;
    width: 100%;
    height: 100%;
    top: 70px;
    left: 70px;
    animation: 1.4s ease-in-out 0s normal none 1 running fadeInUp;
}
.footer .footer-logo {
    position: relative;
    z-index: 1;
}
.footer .footer-social {
    margin-top: 30px;
    padding-right: 0;
    position: relative;
    z-index: 1;
}
.footer .footer-social ul {
    padding: 0;
    margin-bottom: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.footer .footer-social ul li {
    width: 35px;
    height: 35px;
    line-height: 39px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--colorWhite);
    margin-right: 10px;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}
.footer .footer-social ul li a {
    font-size: 16px;
    color: var(--mainTheme);
    transition: all 0.4s ease-in-out;
}
.footer .footer-social ul li:hover {
    background-color: var(--colorRed);
}
.footer .footer-social ul li:hover a {
    color: var(--colorWhite);
}
.footer .short-link ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}
.footer .short-link ul li {
    position: relative;
    z-index: 1;
}
.footer .short-link ul li::after {
    content: "|";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    color: var(--colorWhite);
}
.footer .short-link ul li a {
    font-size: 16px;
    color: var(--colorWhite);
    padding: 0 13px 0 15px;
}
.footer .short-link ul li a:hover {
    color: var(--colorRed);
}
.footer .short-link ul li:last-child:after {
    content: "";
}
.footer .short-link ul li:last-child a {
    padding-right: 0;
}
.footer .footer-text {
    text-align: right;
    position: relative;
    z-index: 1;
}
.footer .footer-text span {
    font-size: 16px;
    font-weight: 600;
    color: var(--colorWhite);
    margin-top: 20px;
    display: block;
}
.footer .footer-text p {
    font-size: 16px;
    color: var(--colorWhite);
    margin-bottom: 40px;
}
.footer .footer-text .crafted a {
    font-size: 16px;
    font-family: "Prometo W04 Light";
    color: var(--colorWhite);
    text-transform: uppercase;
}
/*-- End --*/

/*-- Start SignUp Popup --*/
.form-control:focus {
    border: none;
    box-shadow: none;
}
.modal-backdrop {
    --bs-backdrop-bg: var(--colorWhite);
}
.modal-backdrop.show {
    opacity: 0.8;
}
.sign-up-modal .modal {
    padding-right: 0!important;
}
.sign-up-modal .modal-header {
    border: 0px;
    border-radius: 0;
    padding: 15px 15px 0;
}
.sign-up-modal .modal-content {
    border: none;
    border-radius: 0;
    background-color: var(--mainTheme);
}
.sign-up-modal .modal-body {
    padding: 10px 80px 60px;
}
.sign-up-modal .btn-close {
    box-sizing: content-box;
    width: 30px;
    height: 39px;
    padding: 0;
    background: none;
    border-radius: 0;
    opacity: 1;
    margin-right: -3px;
    margin-top: -3px;
}
.sign-up-modal .btn-close i {
    font-size: 24px;
    color: var(--colorRed);
}
.sign-up-content h1 {
    font-size: 34px;
    font-weight: 500;
    color: var(--colorWhite);
    text-transform: uppercase;
    margin-bottom: 25px;
}
.sign-up-content p {
    font-size: 18px;
    font-weight: 400;
    color: var(--colorWhite);
    margin-bottom: 45px;
}
.sign-up-form p {
    margin-bottom: 30px;
}
.sign-up-content h5 {
    font-size: 20px;
    font-weight: 500;
    color: var(--colorWhite);
    margin: 0 0 25px;
}
.sign-up-content .form-check {
    margin-bottom: 6px;
    padding-left: 10px;
}
.sign-up-content .form-check p {
    margin-bottom: 0;
}
.sign-up-content .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    vertical-align: middle;
    border: 1px solid var(--colorWhite);
    background-color: var(--mainTheme);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 0;
    appearance: none;
}
.sign-up-content .form-check-input:checked {
    background-color: var(--mainTheme);
    border-color: var(--colorWhite);
}
.sign-up-content .form-check-input:checked[type=checkbox] {
    background-image: url(../images/check-red.svg);
}
.sign-up-content .form-check-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorWhite);
    margin-left: 15px;
    margin-bottom: 0;
}
.sign-up-form .form-control {
    font-size: 18px;
    font-weight: 500;
    color: var(--colorBlack);
    margin-bottom: 5px;
    padding: 15px 20px 10px;
    border-radius: 0;
    height: 50px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: white;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    color: red;
}
.sign-up-form p {
    color: var(--colorBlack);
}
.sign-up-form .form-control:nth-child(3) {
    margin-bottom: 20px!important;
}
.sign-up-form .form-check-label a {
    display: block;
    color: var(--colorWhite);
    text-decoration: underline;
}
.sign-up-form .thm-btn {
    margin-top: 20px;
}
/*-- End SignUp Popup --*/