:root {
    --dharma-gothic: "dharma-gothic", sans-serif;
    --dm-sans: "DM Sans", sans-serif;
    --grotesk: "Host Grotesk", sans-serif;
    --dark-bg: #020619;
    --dark-color: #020619;
    --dark-rgb: 2, 6, 25;
    --primary: #0037E6;
    --white-color: #FFFFFF;
    --white-bg: #FFFFFF;
    --white-rgb: 255, 255, 255;
    --placeholder: #838383;
    --error-color: #E84145;
}

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

html {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    scroll-behavior: auto !important;
}

html,
body {
    scroll-behavior: smooth;
    font-family: var(--dm-sans);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--white-color);
    background-color: var(--dark-bg);
    word-break: break-word;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-synthesis: none;
}

::selection {
    background: var(--primary);
    color: var(--white-color);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white-color);
}

picture {
    display: inline-block;
    line-height: 0;
    vertical-align: middle;
}

img {
    width: auto;
    max-width: 100%;
    min-width: auto;
    height: auto;
    max-height: 100%;
    min-height: auto;
    vertical-align: middle;
}

::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 24px;
    background-color: rgba(181, 190, 203, 0.5);
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
    cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}

::-webkit-scrollbar-track {
    border-radius: 24px;
    background-color: #2B3343;
    border: none;
}

@supports (-moz-appearance: none) {
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--primary) var(--vintage-blue);
    }
}

a,
button {
    -webkit-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
    text-decoration: none;
}

.container {
    max-width: 1920px;
    padding-left: 50px;
    padding-right: 50px;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.hidden {
    display: none !important;
}

/*Button Css*/
.btn {
    font-family: var(--grotesk);
    font-size: 1.25rem;
    line-height: 1.625rem;
    color: var(--white-color);
    font-weight: 500;
    text-align: center;
    padding: 16px 30px;
    border: 1px solid;
    border-radius: 10px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    position: relative;
    box-shadow: none;
    transition: all 0.35s ease 0s;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    display: inline-flex;
}

.btn img {
    transition: all 0.35s ease 0s;
}

.btn:hover img {
    transform: rotate(45deg);
}

.btn.btn-primary {
    background-color: var(--primary);
    color: var(--white-color);
    border-color: var(--primary);
}

.btn.btn-primary:hover {
    color: var(--white-color);
    background-color: transparent;
    border-color: var(--white-color);
}

.btn.btn-secondary {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white-color);
    border-color: var(--primary);
}

.btn.btn-white {
    color: var(--primary);
    background-color: var(--white-bg);
    border-color: var(--white-color);
}

.btn.btn-white:hover {
    color: var(--white-color);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn.btn-link {
    color: var(--white-color);
    background-color: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
}

.btn.btn-link:hover {
    color: var(--primary);
}

/* Common CSS */
.swiper {
    display: none;
}

.swiper.swiper-initialized {
    display: block;
}

.pt-110 {
    padding-top: 110px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-150 {
    padding-top: 150px;
}

.pb-150 {
    padding-bottom: 150px;
}

.mt-50 {
    margin-top: 50px;
}

/* Common CSS END */

/* Title CSS */
.section-title {
    /*font-family: var(--grotesk);*/
    /*font-size: 3.75rem;*/
    /*line-height: 5rem;*/
    /*font-weight: 600;*/
    font-family: var(--dharma-gothic);
    font-size: 5rem;
    line-height: 6rem;
    font-weight: bold;
    font-style: italic;
    color: var(--white-color);
    margin-bottom: 20px;
}

.section-title span,
.section-title strong {
    /*font-family: var(--dharma-gothic);*/
    /*font-size: 5rem;*/
    /*line-height: 6rem;*/
    color: var(--primary);
    /*font-weight: bold;*/
    /*font-style: italic;*/
}

.semi-title {
    font-family: var(--grotesk);
    font-size: 1.875rem;
    line-height: 2.5rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 20px;
}

/* Title CSS END */


/*Header CSS Start*/
.header-wrap {
    color: var(--white-color);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-wrap .container {
    gap: 50px;
    flex-wrap: nowrap;
}

.header-wrap .navbar {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0%, rgba(153, 153, 153, 0.09) 100%);
    backdrop-filter: blur(50px);
    padding: 0;
    position: sticky;
}

.header-wrap .navbar-brand {
    padding: 0;
    margin: 0;
    max-width: 45px;
}

.header-wrap .navbar-collapse {
    display: flex;
    align-items: center;
}

.header-wrap .navbar-nav {
    margin: 0 0 0 auto;
    gap: 30px;
    flex-direction: row;
}

.header-wrap .navbar-nav .dropdown span.dropdown-toggle {
    display: none;
}

.header-wrap .navbar-nav .nav-link {
    color: var(--white-color);
    padding: 36px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    cursor: pointer;
}

/* .header-wrap .nav-link:hover,
.header-wrap .nav-link.show {
    color: var(--primary);
    text-decoration: none;
} */

.header-wrap .nav-link.active {
    color: var(--primary);
    text-decoration: none;
}

.header-wrap .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border-radius: 0;
    background: linear-gradient(93.18deg, #0D162A 0%, #14203C 100%);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    padding: 0;
    margin: 0;
    border: 0;
    position: absolute;
    z-index: 9999;
    padding: 10px 0 !important;
    min-width: 250px;
}

.header-wrap .navbar .nav-item.dropdown:hover>.dropdown-menu,
.header-wrap .navbar .dropdown-menu .dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.header-wrap .navbar .dropdown-menu .sub-dropdown-menu {
    left: 100%;
    top: 0;
}

.header-wrap .dropdown-menu ul {
    padding: 0;
    margin: 0;
}

.header-wrap .dropdown-menu li {
    margin: 0 0 10px;
}

.header-wrap .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.header-wrap .dropdown-menu .dropdown-item {
    color: var(--white-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 9px 20px;
    white-space: normal;
    background: transparent;
    box-shadow: none;
}

.header-wrap .dropdown-menu .dropdown-item:hover,
.header-wrap .dropdown-menu .dropdown-item.active {
    background-color: var(--primary);
}

.header-wrap .dropdown-menu .dropdown:hover>.dropdown-item {
    background: var(--primary);
}

.header-wrap .navbar-toggler.offcanvas-btn {
    display: block !important;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.header-wrap .navbar-toggler.offcanvas-btn:focus {
    box-shadow: none;
}

.header-wrap .navbar-toggler.offcanvas-btn .navbar-toggler-icon {
    color: var(--white-color);
    width: 24px;
    height: 24px;
    background-image: url(../images/icons/menu-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.mega-menu.offcanvas.offcanvas-top {
    height: 100dvh;
    background: linear-gradient(90deg, rgba(63, 63, 63, 0.59) 0%, rgba(20, 20, 20, 0.59) 100%);
    backdrop-filter: blur(50px);
    color: var(--white-color);
}

.mega-menu .offcanvas-header {
    padding: 15px 50px;
}

.mega-menu .offcanvas-header .btn-close {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0%, rgba(153, 153, 153, 0.09) 100%);
    backdrop-filter: blur(50px);
    padding: 0;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    box-shadow: none;
}

.mega-menu .mega-menu-container .menu-links {
    min-width: 220px;
}

.menu-links li {
    margin: 0 0 60px;
}

.menu-links li:last-child {
    margin-bottom: 0;
}

.menu-links li a {
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 3.75rem;
    text-transform: uppercase;
    color: var(--white-color);
}

.menu-links li a:hover {
    color: var(--primary);
}

.mega-menu .offcanvas-body {
    padding: 80px 50px 120px;
}

.mega-menu .offcanvas-body::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.mega-menu .mega-menu-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    height: 100%;
    padding-right: 100px;
}

.mega-menu .mega-menu-title {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 467px;
    font-family: var(--grotesk);
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
}

.mega-menu .mega-menu-title picture {
    max-width: 88px;
}

.mega-menu .contact-us {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
    align-items: flex-start;
}

.mega-menu .contact-us .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 0 0 30px;
}

.mega-menu .contact-us .contact-info li .contact-info-inner span {
    color: var(--white-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    display: block;
    margin-bottom: 10px;
}

.mega-menu .contact-us .contact-info li .contact-info-inner a,
.mega-menu .contact-us .contact-info li .contact-info-inner p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--white-color);
}

/*========== Hero Section Start ==========*/
.banner-wrap {
    background-image: url(../images/banner-bg.svg), url(../images/wheels-vector.svg);
    background-position: center, left bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, auto;
    position: relative;
    overflow: hidden;
}

.banner-wrap .container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-right: 0;
    width: 100%;
}

.banner-wrap .container .banner-content,
.banner-wrap .container picture {
    flex: 1;
}

.banner-content .page-title {
    font-weight: 700;
    font-size: 7.5rem;
    line-height: 8.125rem;
    color: var(--white-color);
    font-family: var(--grotesk);
    padding: 0;
    margin: 0 0 20px;
}

.banner-content .page-title span,
.banner-content .page-title strong {
    display: block;
    font-family: var(--dharma-gothic);
    font-weight: 800;
    font-style: italic;
    font-size: 16.875rem;
    line-height: 96%;
    color: var(--primary);
}

.banner-content .banner-dec {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin: 0 0 30px;
    max-width: 640px;
}

.banner-wrap .banner-btns {
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    display: flex;
}

.banner-wrap .banner-btns .btn.btn-link {
    color: var(--white-color);
}

/*========== Hero Section End ==========*/

/*========== Upcoming & Featured Events Section Start ==========*/
.upcoming-wrap .upcoming-head {
    font-size: 1.25rem;
    line-height: 2.25rem;
    margin: 0 0 40px;
}

.upcoming-wrap .upcoming-list {
    gap: 30px;
    display: flex;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-wrap: wrap;
}

.upcoming-wrap .upcoming-list::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    display: none;
}

.upcoming-list .upcoming-item {
    width: calc(33.33% - 20px);
    background: linear-gradient(93.18deg, #0D162A 0%, #14203C 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.upcoming-item .upcoming-item-body {
    padding: 20px;
}

.upcoming-item .upcoming-item-image {
    position: relative;
    padding-bottom: 83.65%;
}

.upcoming-item .upcoming-item-image picture {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.upcoming-item .upcoming-item-image picture img {
    border-radius: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.25s ease 0s;
}

.upcoming-list .upcoming-item .event-date {
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 15px;
}

.upcoming-list .upcoming-item h3 {
    font-family: var(--grotesk);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 0 0 10px;
    transition: all 0.3s ease 0s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upcoming-list .upcoming-item .btn-link {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-top: 15px;
    position: initial;
}

.upcoming-list .upcoming-item .btn-link:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.upcoming-list .upcoming-item:hover .upcoming-item-image img {
    transform: scale(1.025);
}

.upcoming-item .upcoming-item-body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.upcoming-wrap .upcoming-view-more {
    margin-top: 40px;
    text-align: center;
}

/*========== Upcoming & Featured Events Section END ==========*/

/*========== Women in Motorsport Section Start ==========*/
.women-in-motorsport-wrap {
    overflow: hidden;
}

.women-in-motorsport-wrap .motorsport-head {
    font-size: 1.25rem;
    line-height: 2.25rem;
    margin: 0 0 40px;
}

.upcoming-events-filters,
.women-in-motorsport-wrap .motorsport-filters {
    margin: 0 0 40px;
    display: inline-flex;
    gap: 1px;
    border-bottom: 1px solid #2C2C2C;
    overflow: auto;
    max-width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.upcoming-events-filters::-webkit-scrollbar,
.women-in-motorsport-wrap .motorsport-filters::-webkit-scrollbar {
    display: none;
}

.upcoming-events-filters .btn,
.motorsport-filters .btn {
    border-radius: 10px 10px 0 0;
    border-color: transparent;
    padding-left: 30px;
    padding-right: 30px;
    /*min-width: 250px;*/
    white-space: nowrap;
    box-shadow: none;
}

.upcoming-events-filters .btn.active,
.motorsport-filters .btn.active {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white-color);
}

.women-in-motorsport-wrap .womenInMotorsport {
    overflow: visible;
}

.womenInMotorsport .swiper-slide {
    width: auto;
    margin-right: 20px;
    height: auto;
}

.womenInMotorsport .swiper-slide:last-child {
    margin-right: 0;
}

.womenInMotorsport .motorsport-item {
    width: calc(33.33% - 20px);
    background: linear-gradient(111.48deg, #0D162A 0%, #14203C 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 432px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.motorsport-item .motorsport-item-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.motorsport-item .motorsport-item-image {
    position: relative;
    padding-bottom: 74.075%;
}

.motorsport-item .motorsport-item-image picture {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.motorsport-item .motorsport-item-image picture img {
    border-radius: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.25s ease 0s;
}

.motorsport-item .motorsport-user-info {
    font-size: 1rem;
    line-height: 1.25rem;
    margin: 0 0 15px;
    align-items: center;
    gap: 10px;
    display: flex;
}
.women-in-motorsport-wrap-custom .motorsport-item .motorsport-user-info {
	align-items: flex-start;
    min-height: 60px;
}
.women-in-motorsport-wrap-custom .motorsport-item .motorsport-user-info:last-child {
	min-height: inherit;
}
.women-in-motorsport-wrap-custom .motorsport-item .motorsport-user-info img {
	margin-top: -2px;
}
.motorsport-item .motorsport-user-info:last-child {
    margin-bottom: 0;
}

.motorsport-item h3 {
    margin: 0 0 15px;
    transition: all 0.3s ease 0s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-width: 100%;
}

.motorsport-item h3:last-child {
    margin-bottom: 0;
}

.motorsport-item h3:has(.view-profile) {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.motorsport-item h3 span {
    display: block;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.womenInMotorsport .motorsport-item h3 .view-profile {
    margin: 0;
    min-width: 24px;
}

.womenInMotorsport .motorsport-item .btn-link {
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: var(--white-color);
    margin-top: auto;
    position: initial;
}

.womenInMotorsport .motorsport-item .btn-link:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.motorsport-item:hover .motorsport-item-image img {
    transform: scale(1.025);
}

.view-profile img {
    width: 24px;
    transform: none !important;
}

.motorsport-item .motorsport-item-body p {
/*     display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; */
    margin-bottom: 15px;
}

.motorsport-item .motorsport-item-body p:last-child {
    margin-bottom: 0;
}

.womenInMotorsport .swiper-buttons {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.womenInMotorsport .swiper-buttons .btn {
    position: relative;
    inset: auto;
    margin: 0;
    width: 60px;
    height: 60px;
    padding: 0;
    opacity: 1;
}

.womenInMotorsport .swiper-buttons .swiper-button-disabled {
    opacity: 0.3;
}

.womenInMotorsport .swiper-buttons .btn img {
    transform: none;
}

.womenInMotorsport .swiper-buttons .btn:after {
    display: none;
}

/*========== Women in Motorsport Section END ==========*/


/*========== Ready to Get Involved? Section Start ==========*/
.involved-wrap .container {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    justify-content: space-between;
}

.section-img,
.section-content {
    flex: 1;
}

.section-dec {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2.25rem;
    margin: 0 0 20px;
}

.section-dec:last-child {
    margin-bottom: 0;
}

.involved-wrap .btn {
    margin-top: 30px;
}

/*========== Ready to Get Involved? Section End ==========*/

/*========== Gallery Section Start ==========*/
.gallery-wrap .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-wrap .gallery-listing {
    gap: 30px;
    flex-wrap: wrap;
    display: flex;
}

.gallery-wrap .gallery-listing li {
    width: calc(25% - 24px);
}

.gallery-wrap .gallery-listing li:nth-child(6n + 3),
.gallery-wrap .gallery-listing li:nth-child(6n + 4) {
    width: calc(50% - 13px);
}

.gallery-listing .gallery-image-box {
    position: relative;
    padding-bottom: 120.84%;
    height: 100%;
}

.gallery-wrap .gallery-listing li:nth-child(6n + 3) .gallery-image-box,
.gallery-wrap .gallery-listing li:nth-child(6n + 4) .gallery-image-box {
    padding-bottom: 58.055%;
}

.gallery-image-box picture {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-listing .gallery-image-box img {
    border-radius: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*========== Drivers Section END ==========*/
.drivers-wrap .container {
    max-width: 1542px;
    padding-right: 16px;
    padding-left: 16px;
}

.drivers-wrap .drivers-content-box {
    background-color: #0D162A;
    background: linear-gradient(93.18deg, #0D162A 0%, #14203C 100%);
    padding: 20px;
    border-radius: 20px;
    gap: 10px;
    align-items: center;
    display: flex;
}

.drivers-content-box .drivers-images-box {
    width: calc(50% - 5px);
}

.drivers-images-box .drivers-box {
    position: relative;
    padding-bottom: 88.768%;
}

.drivers-images-box .drivers-box picture {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    border-radius: 10px;
    overflow: hidden;
}

.drivers-images-box .drivers-box picture img {
    border-radius: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drivers-content-box .drivers-info {
    flex: 1;
    padding: 26px 30px;
}

.drivers-content-box .drivers-info .btn.btn-link {
    margin: 0 0 25px;
    color: var(--white-color);
    padding: 0 0 2px;
    border-bottom: 1px solid #FFFFFF;
}

.drivers-content-box .drivers-info .semi-title {
    margin-bottom: 25px;
}

.drivers-content-box .drivers-info h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 700;
}

.drivers-content-box .drivers-info p {
    margin-bottom: 25px;
}

.drivers-content-box .drivers-info p:last-child {
    margin-bottom: 0;
}

.drivers-content-box .drivers-info .btn {
    margin-top: 5px;
}

.drivers-wrap .driversSwiper .swiper-pagination {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drivers-wrap .driversSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    padding: 0;
    transition: all 0.25s ease 0s;
    border-radius: 20px;
    background: rgba(var(--white-rgb), 0.8);
    opacity: 1;
    margin: 0;
}

.drivers-wrap .driversSwiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--white-bg);
}

/*========== Snapshots Section END ==========*/

/*========== Snapshots Section END ==========*/
.lr-bg {
    background-image: url(../images/left-bg.svg), url(../images/right-bg.svg);
    background-position: left top, right top;
    background-size: contain, contain;
    background-repeat: no-repeat;
}

.snapshots-wrap {
    overflow: hidden;
}

.snapshots-wrap .section-title {
    text-align: center;
}

.snapshotSwiper {
    overflow: hidden;
}

.snapshotSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.snapshotSwiper .swiper-slide {
    width: auto;
}

.snapshotSwiper .snapshot-box {
    width: 452px;
    border-radius: 16px;
    background: rgba(var(--white-rgb), 0.2);
    backdrop-filter: blur(84px);
    padding: 10px;
}

.snapshotSwiper .snapshot-box picture {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 106.02%;
    border-radius: 10px;
    overflow: hidden;
}

.snapshotSwiper .snapshot-box picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/*========== Snapshots Section END ==========*/

/*========== About Women in Wheels Start ==========*/
.about-wrap .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-wrap .card-wrap,
.about-wrap .section-content {
    flex: 1;
}

.about-wrap .card-wrap .card {
    background: linear-gradient(93.18deg, #0D162A 0%, #14203C 100%);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    border-radius: 10px;
    margin: 0 0 20px 0;
    flex-direction: row;
    -webkit-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
    cursor: pointer;
}

.about-wrap .card-wrap .card:hover {
    background: var(--primary);
}

.about-wrap .card-wrap .card:last-child {
    margin: 0;
}

.about-wrap .card-wrap .card .card-icon-box {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 10px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
}

.about-wrap .card-wrap .card:hover .card-icon-box {
    background: var(--white-color);
}

/* .mail-icon {
    -webkit-mask: url(../images/icons/mail.svg) no-repeat center;
    mask: url(../images/icons/mail.svg) no-repeat center;
} */

.about-wrap .card-wrap .card .card-icon-box img {
    filter: brightness(0) invert(1);
    transition: all 0.35s ease 0s;
    object-fit: contain;
}

.about-wrap .card-wrap .card:hover .card-icon-box img {
    filter: none;
}

.about-wrap .card-wrap .card .card-body {
    padding: 0;
    margin: 0;
    color: var(--white-color);
}

.about-wrap .card-wrap .card .card-body .card-title {
    font-family: var(--dharma-gothic);
    font-weight: 800;
    font-style: italic;
    font-size: 2.5rem;
    line-height: 3rem;
    color: var(--white-color);
    margin: 0 0 20px 0;
}

.about-wrap .card-wrap .card .card-body .card-text {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2.25rem;
    color: var(--white-color);
    margin: 0;
}

/*========== About Women in Wheels END ==========*/

/*========== testimonials Section Start ==========*/
.testimonials-wrap {
    background-image: url(../images/testimonials-vector.svg);
    background-position: bottom center;
    background-size: contain;
    background-repeat: no-repeat;
}

.testimonials-wrap .container {
    max-width: 1200px;
}

.testimonials-wrap .testimonials-feedback {
    font-family: var(--grotesk);
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 3.75rem;
    color: var(--white-color);
    margin: 0 0 30px;
    position: relative;
    padding-left: 22px;
}

.testimonials-wrap .testimonials-feedback:before {
    content: '“';
    position: absolute;
    top: 0;
    left: 0;
}

.testimonials-wrap .testimonials-feedback:after {
    content: '”';
}

.testimonials-wrap .semi-title {
    margin: 0 0 5px;
    position: relative;
    padding-left: 22px;
}

.testimonials-wrap .semi-title:before {
    content: '-';
    position: absolute;
    top: 0;
    left: 0;
}

.testimonials-wrap .author-roll {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.625rem;
    padding-left: 22px;
}

/*========== testimonials Section END ==========*/

/*========== Q&A Series Section Start ==========*/
.qa-series-inner {
    gap: 30px;
    margin-top: 50px;
    display: flex;
}

.qa-series-inner .card-wrap {
    flex: 1;
    background: linear-gradient(93.18deg, #0D162A 0%, #14203C 100%);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.qa-series-inner .card-wrap .semi-title {
    /* font-family: var(--grotesk);
    font-weight: 600;
    font-size: 30px;
    line-height: 40px; */
    margin: 0 0 10px;
}

.qa-series-inner .card-wrap .card-text {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.875rem;
    margin: 0 0 30px;
}

.qa-series-inner .card-wrap .update-list {
    align-items: center;
    gap: 16px 30px;
    flex-wrap: wrap;
    display: flex;
    margin: 0 0 30px;
}

.qa-series-inner .card-wrap .update-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qa-series-inner .card-wrap .session-title {
    font-family: var(--grotesk);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 0 0 10px;
}

.qa-series-inner .card-wrap .session-list {
    padding: 0 0 0 20px;
    margin: 0 0 30px;
    list-style: disc;
}

.qa-series-inner .card-wrap .session-list li {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.875rem;
    margin-bottom: 10px;
}

.qa-series-inner .card-wrap .session-list li:last-child {
    margin-bottom: 0;
}

.qa-series-inner .card-wrap .btn {
    margin-top: auto;
}

/*========== Q&A Series Section END ==========*/

/*========== Get in Touch Section Start ==========*/
.get-in-touch .container {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.get-in-touch-form,
.get-in-touch-wrap {
    flex: 1;
}

.get-in-touch-form {
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(0deg, #1A162D, #1A162D), linear-gradient(93.18deg, #0D162A 0%, #14203C 100%);
}

.get-in-touch-form .screen-reader-response {
    display: none;
}

.get-in-touch-form .form-group {
    margin: 0 0 30px 0;
}

.get-in-touch-form .form-group .form-label {
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 10px;
    color: var(--white-color);
}

.get-in-touch-form .form-group .form-label .req {
    color: var(--error-color);
}

.get-in-touch-form .form-group .form-check-label {
    color: var(--white-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    user-select: none;
    cursor: pointer;
}

.get-in-touch-form .form-group .form-control {
    padding: 17px 20px;
    background: var(--white-color);
    border: none;
    box-shadow: none;
    border-radius: 10px;
    font-family: var(--dm-sans);
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    color: var(--dark-color);
}

.get-in-touch-form .form-group .form-control::placeholder {
    color: var(--placeholder);
}

.get-in-touch-form .form-check-box span {
    display: block;
    margin: 0;
}

.get-in-touch-form .form-group.form-check,
.get-in-touch-form .form-group .form-check-box-input .wpcf7-list-item label {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--white-color);
    user-select: none;
    cursor: pointer;
    gap: 16px;
    padding: 0;
    display: flex;
}

.get-in-touch-form .form-group.form-check .form-check-input,
.get-in-touch-form .form-group .form-check-box-input .wpcf7-list-item input {
    appearance: none;
    width: 28px;
    min-width: 28px;
    height: 28px;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: var(--white-bg);
    background-size: 16px auto;
    background-repeat: no-repeat;
    background-position: left 7px center;
    transition: all 0.35s ease 0s;
    margin: 0;
    padding: 0;
}

.get-in-touch-form .form-group.form-check .form-check-input:checked,
.get-in-touch-form .form-group .form-check-box-input .wpcf7-list-item input:checked {
    background-color: var(--primary);
    background-image: url(../images/icons/check-icon.svg);
}

.get-in-touch-form .form-group .wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 18px;
    color: var(--error-color);
    margin: 8px 0 0;
}

.get-in-touch-form .form-group-action {
    position: relative;
    display: flex;
}

.get-in-touch-form .form-group-action p {
    position: relative;
}

.get-in-touch-form .form-group-action .wpcf7-spinner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: rgba(var(--dark-rgb), 0.6);
    opacity: 1;
    width: 30px;
    height: 30px;
}

.get-in-touch-form .form-group-action::before {
    background: var(--primary);
}

.get-in-touch-form .wpcf7-response-output {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin: 20px 0 0 !important;
    border: none !important;
    padding: 0 !important;
}

.get-in-touch-form form.sent .wpcf7-response-output {
    color: #53BD6F;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.get-in-touch-form form.invalid .wpcf7-response-output,
.get-in-touch-form form.unaccepted .wpcf7-response-output,
.get-in-touch-form form.payment-required .wpcf7-response-output,
.get-in-touch-form form.failed .wpcf7-response-output,
.get-in-touch-form form.aborted .wpcf7-response-output {
    color: var(--error-color);
}

.get-in-touch-form form.spam .wpcf7-response-output {
    color: #CD753B;
}


/*========== Get in Touch Section END ==========*/

/*========== Footer Section Start ==========*/
.footer-wrap .footer-wrap-menu {
    background: linear-gradient(0deg, #1A162D, #1A162D),
        linear-gradient(93.18deg, #0D162A 0%, #14203C 100%);
    background-image: url("../images/footer-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-wrap .container {
    max-width: 1512px;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.footer-wrap .container>.textwidget {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.footer-wrap .semi-title {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 525px;
    margin-bottom: 0;
}

.footer-wrap .semi-title picture {
    width: 150px;
}

.footer-wrap-menu .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 0 0 30px;
}

.footer-wrap-menu .contact-info li:last-child {
    margin: 0;
}

.footer-wrap-menu .contact-info li .contact-info-inner span {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 10px;
    display: block;
    color: var(--white-color);
}

.footer-wrap-menu .contact-info li .contact-info-inner a,
.footer-wrap-menu .contact-info li .contact-info-inner p {
    color: var(--white-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.footer-wrap .copyright {
    background: var(--dark-bg);
    color: var(--white-color);
    padding: 12px 0;
}

.footer-wrap .copyright ul {
    display: flex;
    align-items: center;
}

.footer-wrap .copyright ul li {
    border-left: 1px solid rgba(var(--white-rgb), 0.3);
    padding: 0 20px;
    line-height: 20px;
}

.footer-wrap .copyright ul li:first-child {
    padding-left: 0;
    border: none;
}

.footer-wrap .copyright ul li:last-child {
    padding-right: 0;
}

.footer-wrap .copyright ul li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--white-color);
}

.footer-wrap .copyright ul li a:hover {
    color: var(--primary);
}

.no-data-found {
    background: linear-gradient(111.48deg, #0D162A 0%, #14203C 100%);
    border-radius: 20px;
    padding: 100px 16px;
    font-size: 1.25rem;
    line-height: 1.625rem;
}

/*========== Footer Section End ==========*/

/*========== Responsive CSS Start ==========*/

@media screen and (max-width: 1600px) {
    .pt-110 {
        padding-top: 80px;
    }

    .pb-110 {
        padding-bottom: 80px;
    }

    .pb-120 {
        padding-bottom: 90px;
    }

    .pt-120 {
        padding-top: 90px;
    }

    .pt-150 {
        padding-top: 120px;
    }

    .pb-150 {
        padding-bottom: 120px;
    }


    .mega-menu .offcanvas-body {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .menu-links li {
        margin-bottom: 50px;
    }
}


@media screen and (max-width: 1599px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .pt-110 {
        padding-top: 70px;
    }

    .pb-110 {
        padding-bottom: 70px;
    }

    .pb-120 {
        padding-bottom: 80px;
    }

    .pt-120 {
        padding-top: 80px;
    }

    .pt-150 {
        padding-top: 100px;
    }

    .pb-150 {
        padding-bottom: 100px;
    }

    .banner-content .page-title {
        font-size: 6.25rem;
        line-height: 6.875rem;
    }

    .banner-content .page-title span,
    .banner-content .page-title strong {
        font-size: 14.375rem;
    }

    .banner-content .banner-dec {
        font-size: 1rem;
    }

    .btn {
        font-size: 1.125rem;
        line-height: 1.5rem;
        padding: 13px 24px;
    }

    .section-title {
        /*font-size: 3.125rem;*/
        /*line-height: 4.375rem;*/
        font-size: 4.375rem;
        line-height: 5.375rem;
    }

    .section-title span,
    .section-title strong {
        /*font-size: 4.375rem;*/
        /*line-height: 5.375rem;*/
    }

    .semi-title {
        font-size: 1.625rem;
        line-height: 2.25rem;
    }

    .upcoming-events-filters .btn,
    .motorsport-filters .btn {
        /*min-width: 200px;*/
        padding-left: 20px;
        padding-right: 20px;
    }

    .womenInMotorsport .swiper-buttons .btn {
        width: 52px;
        height: 52px;
    }

    .womenInMotorsport .swiper-buttons {
        top: -92px;
    }

    .womenInMotorsport .motorsport-item {
        width: 340px;
    }

    .testimonials-wrap .container {
        max-width: 1130px;
    }

    .testimonials-wrap .testimonials-feedback {
        font-size: 2.25rem;
        line-height: 3.5rem;
        padding-left: 20px;
    }

    .testimonials-wrap .semi-title,
    .testimonials-wrap .author-roll {
        padding-left: 20px;
    }

    .about-wrap .card-wrap .card .card-body .card-title {
        font-size: 2.25rem;
        line-height: 2.75rem;
    }

    .about-wrap .card-wrap .card .card-body .card-text {
        font-size: 1.143rem;
        line-height: 2rem;
    }

    .upcoming-list .upcoming-item .event-date {
        font-size: 13px;
    }

    .upcoming-list .upcoming-item h3 {
        font-size: 1.375rem;
        line-height: 1.875rem;
    }

    .upcoming-list .upcoming-item .btn-link,
    .womenInMotorsport .motorsport-item .btn-link {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .qa-series-inner .card-wrap .session-title {
        font-size: 1.375rem;
        line-height: 1.875rem;
    }

    .qa-series-inner .card-wrap .session-list li {
        font-size: 1rem;
        line-height: 1.75rem;
    }

    .snapshotSwiper .snapshot-box {
        width: 340px;
        padding: 8px;
    }

    .semi-title {
        font-size: 1.571rem;
        line-height: 2.286rem;
    }

    .testimonials-wrap .author-roll {
        font-size: 1.143rem;
        line-height: 1.714rem;
    }

    .section-dec,
    .upcoming-wrap .upcoming-head,
    .women-in-motorsport-wrap .motorsport-head {
        font-size: 1.143rem;
        line-height: 2rem;
    }

    .section-dec {
        margin-bottom: 16px;
    }

    .menu-links {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-links li {
        margin-bottom: 40px;
    }

    .menu-links li a {
        font-size: 1.625rem;
        line-height: 2.5rem;
    }

    .drivers-content-box .drivers-info h3 {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }

    .no-data-found {
        padding: 80px 16px;
    }
}

@media screen and (max-width: 1440px) {

    html,
    body {
        font-size: 14px;
        line-height: 26px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pt-110 {
        padding-top: 60px;
    }

    .pb-110 {
        padding-bottom: 60px;
    }

    .pb-120 {
        padding-bottom: 60px;
    }

    .pt-120 {
        padding-top: 60px;
    }

    .pt-150 {
        padding-top: 80px;
    }

    .pb-150 {
        padding-bottom: 80px;
    }

    .btn {
        font-size: 16px;
        line-height: 22px;
        padding: 12px 22px;
    }

    .btn img {
        width: 22px;
        height: 22px;
    }

    .banner-wrap .container {
        gap: 40px;
    }

    .banner-content .page-title {
        font-size: 5.571rem;
        line-height: 6.286rem;
    }

    .banner-content .page-title span,
    .banner-content .page-title strong {
        font-size: 12.857rem;
    }

    .banner-content .banner-dec {
        margin-bottom: 24px;
    }

    .banner-wrap .banner-btns {
        gap: 20px 24px;
    }

    .banner-content .banner-dec {
        line-height: 1.571rem;
        max-width: 520px;
    }

    .section-title {
        /*font-size: 2.857rem;*/
        /*line-height: 4.286rem;*/
        font-size: 4.286rem;
        line-height: 5.429rem;
        margin-bottom: 16px;
    }

    .section-title span,
    .section-title strong {
        font-size: 4.286rem;
        line-height: 5.429rem;
    }

    .upcoming-wrap .upcoming-head,
    .women-in-motorsport-wrap .motorsport-head {
        margin-bottom: 32px;
    }

    .upcoming-wrap .upcoming-list {
        gap: 24px;
    }

    .upcoming-list .upcoming-item {
        width: calc(33.33% - 16px);
    }

    .upcoming-item .upcoming-item-body {
        padding: 16px;
    }

    .upcoming-list .upcoming-item .event-date {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .upcoming-list .upcoming-item h3 {
        font-size: 1.429rem;
        line-height: 1.857rem;
        margin-bottom: 8px;
    }

    .upcoming-list .upcoming-item .btn-link,
    .womenInMotorsport .motorsport-item .btn-link {
        font-size: 1.143rem;
        line-height: 1.571rem;
        /*         margin-top: 12px; */
    }

    .upcoming-list .upcoming-item .btn-link img,
    .womenInMotorsport .motorsport-item .btn-link img {
        width: 20px;
        height: 20px;
    }

    .upcoming-wrap .upcoming-view-more {
        margin-top: 32px;
    }

    .testimonials-wrap .container {
        max-width: 920px;
    }

    .testimonials-wrap .testimonials-feedback {
        font-size: 2.143rem;
        line-height: 3.286rem;
        margin: 0 0 24px;
    }

    .about-wrap .container {
        gap: 40px;
    }

    .about-wrap .card-wrap .card {
        padding: 24px;
        gap: 24px;
    }

    .about-wrap .card-wrap .card .card-icon-box {
        width: 60px;
        min-width: 60px;
        height: 60px;
    }

    .about-wrap .card-wrap .card .card-body .card-title {
        font-size: 2.286rem;
        line-height: 2.857rem;
        margin-bottom: 10px;
    }

    .about-wrap .card-wrap .card .card-icon-box img {
        width: 32px;
        height: 32px;
    }

    .upcoming-events-filters .btn,
    .motorsport-filters .btn {
        /*min-width: 180px;*/
        line-height: 24px;
    }

    .upcoming-events-filters,
    .women-in-motorsport-wrap .motorsport-filters {
        margin: 0 0 32px;
    }

    .header-wrap .navbar-nav {
        gap: 24px;
    }

    .menu-links li {
        margin-bottom: 30px;
    }

    .header-wrap .navbar-toggler.offcanvas-btn {
        width: 50px;
        height: 50px;
    }

    .header-wrap .container {
        gap: 16px;
    }

    .motorsport-item .motorsport-item-body {
        padding: 16px;
    }

    .womenInMotorsport .swiper-buttons {
        gap: 16px;
        top: -82px;
    }

    .womenInMotorsport .swiper-buttons .btn {
        width: 50px;
        height: 50px;
    }

    .motorsport-item h3,
    .motorsport-item .motorsport-user-info {
        margin-bottom: 12px;
    }

    .involved-wrap .container {
        gap: 40px;
    }

    .involved-wrap .btn {
        margin-top: 20px;
    }

    .drivers-wrap .drivers-content-box {
        padding: 16px;
    }

    .drivers-content-box .drivers-info {
        padding: 24px;
    }

    .drivers-content-box .drivers-info .semi-title,
    .drivers-content-box .drivers-info p {
        margin-bottom: 20px;
    }

    .qa-series-inner {
        gap: 24px;
        margin-top: 40px;
    }

    .qa-series-inner .card-wrap .card-text {
        font-size: 1.143rem;
        line-height: 1.714rem;
        margin-bottom: 24px;
    }

    .qa-series-inner .card-wrap .update-list {
        gap: 16px 24px;
        margin-bottom: 24px;
    }

    .qa-series-inner .card-wrap .session-title {
        font-size: 1.429rem;
        line-height: 1.857rem;
    }

    .qa-series-inner .card-wrap .session-list {
        margin-bottom: 24px;
    }

    .gallery-wrap .section-title {
        margin-bottom: 32px;
    }

    .gallery-wrap .gallery-listing {
        gap: 24px;
    }

    .gallery-wrap .gallery-listing li {
        width: calc(25% - 20px);
    }

    .gallery-wrap .gallery-listing li:nth-child(6n + 3),
    .gallery-wrap .gallery-listing li:nth-child(6n + 4) {
        width: calc(50% - 8px);
    }

    .gallery-wrap .gallery-listing li:nth-child(6n + 3) .gallery-image-box,
    .gallery-wrap .gallery-listing li:nth-child(6n + 4) .gallery-image-box {
        padding-bottom: 57.65%;
    }

    .get-in-touch-form {
        padding: 32px;
    }

    .get-in-touch-form .form-group .form-label {
        font-size: 16px;
        line-height: 22px;
    }

    .get-in-touch-form .form-group .form-control {
        font-size: 16px;
        line-height: 24px;
        padding: 14px 16px;
    }

    .get-in-touch-form .form-group {
        margin-bottom: 24px;
    }

    .get-in-touch-form .form-group .form-check-label {
        font-size: 14px;
        line-height: 20px;
    }

    .womenInMotorsport .motorsport-item {
        width: 310px;
    }

    .snapshotSwiper .snapshot-box {
        width: 320px;
        padding: 5px;
    }

    .footer-wrap .semi-title {
        gap: 32px;
    }

    .footer-wrap-menu .contact-info li {
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer-wrap-menu .contact-info picture {
        width: 28px;
        min-width: 28px;
    }

    .footer-wrap .copyright ul li {
        padding: 0 16px;
    }

    .footer-wrap .copyright ul li a {
        font-size: 14px;
    }

    .footer-wrap-menu .contact-info li .contact-info-inner span {
        font-size: 16px;
    }

    .footer-wrap-menu .contact-info li .contact-info-inner a,
    .footer-wrap-menu .contact-info li .contact-info-inner p {
        font-size: 14px;
    }

    .no-data-found {
        padding: 60px 16px;
    }
}

@media screen and (max-width: 991px) {
    .pt-110 {
        padding-top: 40px;
    }

    .pb-110 {
        padding-bottom: 40px;
    }

    .pb-120 {
        padding-bottom: 40px;
    }

    .pt-120 {
        padding-top: 40px;
    }

    .pt-150 {
        padding-top: 60px;
    }

    .pb-150 {
        padding-bottom: 60px;
    }

    .banner-wrap {
        padding: 40px 0 60px !important;
        background-size: contain, contain;
        background-position: left, bottom;
    }

    .banner-wrap .container {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .banner-wrap .container .banner-content {
        padding-right: 16px;
    }

    .banner-content .page-title {
        font-size: 4.857rem;
        line-height: 5.571rem;
    }

    .banner-content .page-title span,
    .banner-content .page-title strong {
        font-size: 11.429rem;
    }

    .upcoming-wrap .upcoming-list {
        overflow: auto;
        margin: 0 -16px;
        padding: 0 16px;
    }

    .upcoming-list .upcoming-item {
        width: calc(50% - 40px);
        min-width: calc(50% - 40px);
    }

    .about-wrap .container {
        gap: 32px;
        flex-direction: column;
    }

    .upcoming-events-filters,
    .women-in-motorsport-wrap .motorsport-filters {
        margin: 0 0 24px;
    }

    .upcoming-events-filters .btn,
    .motorsport-filters .btn {
        min-width: initial;
        padding-right: 30px;
        padding-left: 30px;
    }

    .womenInMotorsport .swiper-buttons {
        gap: 20px;
        position: relative;
        inset: auto;
        left: auto;
        margin: 32px 0 0;
        justify-content: center;
    }

    .involved-wrap .container {
        gap: 32px;
        flex-direction: column-reverse;
    }

    .drivers-wrap {
        padding-bottom: 0 !important;
    }

    .drivers-wrap .drivers-content-box {
        flex-direction: column;
        gap: 0;
    }

    .drivers-content-box .drivers-info .semi-title,
    .drivers-content-box .drivers-info p {
        margin-bottom: 16px;
    }

    .drivers-content-box .drivers-images-box {
        width: 100%;
    }

    .drivers-content-box .drivers-info {
        padding: 24px 10px 10px;
    }

    .gallery-wrap .gallery-listing {
        gap: 16px;
    }

    .gallery-wrap .gallery-listing li {
        width: calc(25% - 14px);
    }

    .gallery-wrap .gallery-listing li:nth-child(6n + 3),
    .gallery-wrap .gallery-listing li:nth-child(6n + 4) {
        width: calc(50% - 4px);
    }

    .snapshotSwiper .snapshot-box {
        width: 250px;
    }

    .get-in-touch .container {
        gap: 24px;
        flex-direction: column;
    }

    .footer-wrap .semi-title {
        gap: 24px;
        max-width: 362px;
    }

    .footer-wrap .copyright {
        padding: 16px 0;
    }

    .footer-wrap .copyright .container {
        gap: 10px;
        flex-direction: column;
    }

    .section-title {
        font-size: 4rem;
        line-height: 5rem;
    }

    .section-title span,
    .section-title strong {
        /*font-size: 4rem;*/
        /*line-height: 5rem;*/
    }

    .qa-series-inner {
        margin-top: 32px;
    }

    .qa-series-inner .card-wrap {
        padding: 16px;
    }

    .qa-series-inner .card-wrap .card-text {
        margin-bottom: 20px;
    }

    .qa-series-inner .card-wrap .update-list {
        gap: 10px 24px;
        margin-bottom: 20px;
    }

    .qa-series-inner .card-wrap .session-list {
        margin-bottom: 20px;
    }

    .get-in-touch-form .form-group .form-control {
        padding: 12px 16px;
    }

    .footer-wrap .container {
        flex-direction: column;
    }

    .footer-wrap .container>.textwidget {
        flex-direction: column;
    }

    .footer-wrap-menu .contact-info {
        width: 100%;
        flex-wrap: wrap;
        gap: 24px;
        display: flex;
    }

    .footer-wrap-menu .contact-info li {
        gap: 20px;
        margin-bottom: 0;
        width: calc(50% - 12px);
    }

    .banner-wrap .container .banner-content {
        width: 100%;
    }

    .banner-wrap .container picture {
        display: none;
    }

    .drivers-content-box .drivers-info h3 {
        font-size: 1.143rem;
        line-height: 1.571rem;
    }

    .no-data-found {
        padding: 40px 16px;
        font-size: 1.143rem;
        line-height: 1.571rem;
    }
}

@media screen and (max-width: 767px) {
    .banner-content .page-title {
        font-size: 4.143rem;
        line-height: 4.857rem;
    }

    .banner-content .page-title span,
    .banner-content .page-title strong {
        font-size: 10rem;
    }

    .section-title {
        /*font-size: 2.571rem;*/
        /*line-height: 4rem;*/
        font-size: 3.571rem;
        line-height: 4.714rem;
    }

    .section-title span,
    .section-title strong {
        /*font-size: 3.571rem;*/
        /*line-height: 4.714rem;*/
    }

    .qa-series-inner {
        flex-direction: column;
    }

    .footer-wrap .copyright ul {
        flex-wrap: wrap;
        gap: 10px 16px;
        justify-content: center;
    }

    .footer-wrap .copyright ul li {
        border: none;
        padding: 0;
    }

    .gallery-wrap .gallery-listing li,
    .gallery-wrap .gallery-listing li:nth-child(6n + 3),
    .gallery-wrap .gallery-listing li:nth-child(6n + 4) {
        width: calc(50% - 8px);
    }

    .gallery-wrap .gallery-listing li:nth-child(6n + 3) .gallery-image-box,
    .gallery-wrap .gallery-listing li:nth-child(6n + 4) .gallery-image-box {
        padding-bottom: 120.84%;
    }

    .gallery-wrap .gallery-listing li:nth-child(3n) {
        width: 100%;
    }

    .gallery-wrap .gallery-listing li:nth-child(3n) .gallery-image-box {
        padding-bottom: 58.055%;
    }

    .upcoming-list .upcoming-item,
    .gallery-image-box picture,
    .womenInMotorsport .motorsport-item,
    .drivers-wrap .drivers-content-box {
        border-radius: 15px;
    }

    .upcoming-item .upcoming-item-image picture,
    .motorsport-item .motorsport-item-image picture {
        border-radius: 15px 15px 0 0;
    }

    .about-wrap .card-wrap .card {
        padding: 20px;
        gap: 20px;
    }

    .get-in-touch-form {
        padding: 24px;
    }

    .testimonials-wrap .testimonials-feedback {
        font-size: 2rem;
        line-height: 2.857rem;
        margin-bottom: 20px;
        padding-left: 16px;
    }

    .testimonials-wrap .semi-title {
        font-size: 1.429rem;
        line-height: 2.143rem;
        padding-left: 16px;
    }

    .testimonials-wrap .author-roll {
        font-size: 1rem;
        line-height: 1.429rem;
        padding-left: 16px;
    }

    .womenInMotorsport .motorsport-item {
        width: 290px;
    }

    .snapshotSwiper .snapshot-box {
        width: 180px;
    }

    .drivers-wrap .driversSwiper .swiper-pagination {
        bottom: 16px;
        gap: 8px;
    }

    .no-data-found {
        padding: 30px 16px;
        border-radius: 10px;
    }
	.women-in-motorsport-wrap-custom .motorsport-item .motorsport-user-info {
		min-height: 54px;
	}
}

@media screen and (max-width: 480px) {
    .banner-content .page-title {
        font-size: 3.571rem;
        line-height: 4.286rem;
    }

    .banner-content .page-title span,
    .banner-content .page-title strong {
        font-size: 8.571rem;
    }

    .banner-wrap .banner-btns .btn {
        width: 100%;
    }

    .section-title {
        /*font-size: 2.429rem;*/
        /*line-height: 3.857rem;*/
        font-size: 3.429rem;
        line-height: 4.286rem;
    }

    .section-title span,
    .section-title strong {
        /*font-size: 3.429rem;*/
        /*line-height: 4.286rem;*/
    }

    .upcoming-wrap .upcoming-list {
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
    }

    .upcoming-list .upcoming-item {
        width: 100%;
        min-width: 100%;
    }

    .womenInMotorsport .motorsport-item {
        width: 310px;
    }

    .footer-wrap-menu .contact-info li {
        width: 100%;
    }
}

/*========== Responsive CSS END ==========*/


/*========== Mobile Menu CSS Start ==========*/
@media screen and (min-width: 1201px) {
    .custom-navbar .navbar-toggler {
        display: none !important;
    }

    .navbar-toggler-icon svg {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .custom-navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(93.18deg, #0D162A 0%, #14203C 100%);
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(50px);
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        box-shadow: 0 8px 20px rgba(var(--white-rgb), 0.20);
    }

    .custom-navbar .navbar-collapse.show {
        max-height: calc(100dvh - 80px);
        opacity: 1;
        visibility: visible;
    }

    .custom-navbar .navbar-nav {
        margin: 0;
        width: 100%;
        display: block;
        gap: 0;
        max-height: calc(100dvh - 80px);
        padding: 0;
        overflow: auto;
    }

    .custom-navbar .navbar-nav::-webkit-scrollbar {
        width: 3px;
        height: 3px;
    }

    .header-wrap .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(var(--white-rgb), 0.15);
        position: relative;
        margin-bottom: 0;
        width: 100%;
    }

    .header-wrap .navbar-nav .nav-item .dropdown-menu .dropdown {
        position: relative;
    }

    .header-wrap .navbar-nav .dropdown span.dropdown-toggle {
        position: absolute;
        top: 0;
        right: 0;
        width: 42px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        z-index: 9;
    }

    .header-wrap .navbar-nav .dropdown span.dropdown-toggle img {
        width: 14px;
        transition: all 0.25s ease 0s;
    }

    .header-wrap .navbar-nav .dropdown span.dropdown-toggle.show img {
        transform: rotateX(180deg);
    }

    .header-wrap .navbar-nav .dropdown span.dropdown-toggle:after {
        display: none;
    }

    .header-wrap .navbar-nav .nav-item .dropdown-menu .dropdown span.dropdown-toggle {
        height: 42px;
    }

    .header-wrap .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .header-wrap .navbar-nav .nav-link {
        padding: 15px 50px 15px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: none;
    }

    .nav-item.dropdown .dropdown-menu {
        position: relative;
        inset: auto;
        padding: 10px !important;
        background: var(--dark-bg);
        display: none !important;
        max-height: initial;
    }

    .nav-item.dropdown .dropdown-menu.show {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }

    .header-wrap .navbar .dropdown-menu .sub-dropdown-menu {
        left: auto;
        top: auto;
        background: linear-gradient(93.18deg, #0D162A 0%, #14203C 100%);
        backdrop-filter: blur(50px);
    }

    .header-wrap .navbar .dropdown-menu .sub-dropdown-menu .sub-dropdown-menu {
        background: var(--dark-bg);
    }

    .header-wrap .dropdown-menu .dropdown-item {
        padding: 10px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: none;
    }

    .header-wrap .navbar-nav .nav-item .dropdown-menu .dropdown>.dropdown-item {
        padding-right: 45px;
    }

    .header-wrap .navbar {
        padding: 10px 0;
    }

    .custom-navbar .ms-auto.navbar-toggler {
        width: 50px;
        min-width: 40px;
        height: 50px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
        padding: 0;
        position: relative;
        cursor: pointer;
        outline: none;
        box-shadow: none;
        border: none;
        order: 3;
    }

    .custom-navbar .ms-auto.navbar-toggler .navbar-toggler-icon {
        background: var(--white-color);
        border-radius: 20px;
        width: 10px;
        height: 2px;
        margin-left: 10px;
        transition: all .25s;
        display: block;
        position: relative;
    }

    .custom-navbar .ms-auto.navbar-toggler .navbar-toggler-icon:after,
    .custom-navbar .ms-auto.navbar-toggler .navbar-toggler-icon:before {
        content: "";
        background: var(--white-color);
        border-radius: 20px;
        height: 2px;
        transition: all .25s;
        display: block;
        position: absolute;
        right: 0;
    }

    .custom-navbar .ms-auto.navbar-toggler .navbar-toggler-icon:before {
        width: 20px;
        top: -6px;
    }

    .custom-navbar .ms-auto.navbar-toggler .navbar-toggler-icon:after {
        width: 16px;
        bottom: -6px;
    }

    .custom-navbar .ms-auto.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background: 0 0;
    }

    .custom-navbar .ms-auto.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
        top: 0;
        transform: rotate(45deg);
    }

    .custom-navbar .ms-auto.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
        width: 20px;
        bottom: 0;
        transform: rotate(-45deg);
    }

    .header-wrap .navbar-toggler.offcanvas-btn {
        margin-left: auto;
    }

    .header-wrap .navbar-toggler.offcanvas-btn .navbar-toggler-icon {
        content: "\F431";
        background-image: none;
    }

    .navbar-toggler-icon svg {
        width: 24px;
        height: 24px;
    }

    .header-wrap .dropdown-menu li {
        margin: 0;
    }

    .header-wrap .dropdown-toggle::after {
        display: inline-block;
    }

    .mega-menu .mega-menu-container {
        padding-right: 70px;
    }
}

@media screen and (max-width: 991px) {
    .mega-menu .offcanvas-header {
        padding: 16px;
    }

    .mega-menu .offcanvas-header .btn-close {
        width: 50px;
        height: 50px;
    }

    .mega-menu .offcanvas-body {
        padding: 16px;
    }

    .mega-menu .mega-menu-container {
        gap: 30px;
        height: auto;
        padding-right: 0;
    }

    .mega-menu .mega-menu-title {
        gap: 20px;
        font-weight: 600;
        font-size: 26px;
        line-height: 36px;
    }

    .mega-menu .contact-us .contact-info li {
        gap: 16px;
        margin: 0 0 24px;
    }

    /* .mega-menu .contact-us, .menu-links {
        max-height: 500px;
    } */

    .menu-links li a {
        font-size: 1.429rem;
        line-height: 1.857rem;
    }
}

@media screen and (max-width: 767px) {
    .mega-menu .offcanvas-header {
        padding: 10px 16px;
    }

    .mega-menu .mega-menu-container {
        gap: 24px;
        flex-direction: column;
    }

    .mega-menu .contact-us {
        gap: 30px;
        border-bottom: 1px solid rgba(var(--white-rgb), 0.1);
    }

    .mega-menu .offcanvas-body {
        padding: 0 16px 16px;
    }

    .menu-links li {
        margin-bottom: 24px;
    }

    .custom-navbar .ms-auto.navbar-toggler,
    .mega-menu .offcanvas-header .btn-close,
    .header-wrap .navbar-toggler.offcanvas-btn {
        width: 40px;
        height: 40px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .mega-menu .contact-us,
    .menu-links {
        max-height: inherit;
    }

    .mega-menu .contact-us .contact-info li picture,
    .mega-menu .contact-us .contact-info li picture img {
        width: 28px;
        min-width: 28px;
        height: 28px;
    }

    .mega-menu .mega-menu-title {
        font-size: 20px;
        line-height: 30px;
    }
}

/*========== Mobile Menu CSS Start ==========*/
