:root {
    --white: #fff;
    --primary: #c3e92d;
    --primaryLight: #edf9ba;
    --success: #3dab25;
    --black: #121212;
    --surface: #f7f7f7;
    --offGrey: #a0a0a0;
    --line: #e9e9e9;
    --secondary: #5e6267;
    --grey: #1e1e1e;
    --line2: #2e2e2e;
    --transparentBlack: rgba(0, 0, 0, 0.5);
    --transparentGrey: rgba(0, 0, 0, 0.2);
    --transparentPrimary: rgba(195, 233, 45, 0.1);
}

body {
    font-family: "Oswald", sans-serif;
    background-color: var(--grey);
}
.elementor-widget-text-editor {
    font-family: "Oswald", sans-serif !important;
}
.e-con {
    --padding-inline-start: 0 !important;
    --padding-inline-end:  0 !important;
    --padding-block-start:  0 !important;
    --padding-block-end:  0 !important;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 280px;
  background-color: var(--grey);
  z-index: 1050;
  transition: right 0.3s ease-in-out;
  box-shadow: -4px 0 12px var(--transparentGrey);
}
.mobile-menu.show {
  right: 0;
}
.btn-close-menu {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}
.top-nav {
    position: relative;
    background-color: var(--primary);
    padding: 5px 0;
}
.top-nav .infobar {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.top-nav .infobar .connect {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.top-nav .infobar .connect .infos {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--grey);
    gap: 5px;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.top-nav .infobar .connect .infos i {
    font-size: 20px;
}
.top-nav .infobar .social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.top-nav .infobar .social-icons a {
    color: var(--grey);
    font-size: 20px;
    text-decoration: none;
}
.navbar {
    background-color: var(--grey);
    position: sticky;
    top: 0;
    z-index: 10;
}
.navbar-brand, .nav-link {
    color: var(--white) !important;
}
.navbar-brand img {
  max-width: 80px;
}
.btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    border-radius: 22px;
    transition: all 0.3s ease;
}
.btn.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn.btn-solid {
    background-color: var(--primary);
    border: 2px solid var(--primary);
    color: var(--grey);  
}
.btn.btn-outline:hover,
.btn.btn-solid:hover {
    background-color: var(--white);
    color: var(--grey);
    border: 2px solid var(--white);
}
.btn.btn-outline.dark:hover,
.btn.btn-solid.dark:hover {
    background-color: var(--grey);
    color: var(--primary);
    border: 2px solid var(--grey);
}
.nav {
    list-style: none;
    margin: 0 24px 0 0;
    padding: 0;
    display: flex;
    gap: 24px;
    align-items: center;
}
.nav .menu-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
.nav .menu-item > a {
    color: var(--white);
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}
.nav .menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.nav .menu-item > a:hover::after {
    transform: scaleX(1);
}
.nav .menu-item.current-menu-item > a,
.nav .menu-item.current-menu-parent > a {
    color: var(--primary);
}
.nav .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 140px;
    background: var(--grey);
    box-shadow: 0 4px 16px var(--transparentGrey);
    padding: 0;
    z-index: 100;
}
.nav .menu-item:hover > .sub-menu,
.nav .menu-item:focus-within > .sub-menu {
    display: block;
}
.nav .sub-menu li {
    list-style: none;
}
.nav .sub-menu a {
    color: var(--white);
    padding: 10px 18px;
    display: block;
    width: 100%;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}
.nav .sub-menu a:hover,
.nav .sub-menu a:focus {
    background: var(--primary);
    color: var(--grey);
}
.nav .sub-menu .menu-item > a:hover::after {
    content: none;
}
.nav .sub-menu .menu-item.current-menu-item > a {
    background: var(--primary);
    color: var(--grey);
}
.banner {
    position: relative;
    padding: 45px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--transparentBlack);
    z-index: 0;
}
.banner .banner-content {
    position: relative;
}
.banner .banner-logo {
    position: relative;
    max-width: 200px;
    margin-bottom: 20px;
}
.banner .banner-title {
    position: relative;
    color: var(--primaryLight);
    font-size: 50px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.banner .banner-title > .cl-1, .cl-2, .cl-3, .cl-4 {
    display: block;
}
.banner .banner-title .cl-3 {
    font-size: 70px;
    color: var(--primary);
}
.banner .banner-title sup {
    font-size: 24px;
    top: -20px;
}
.banner .banner-slogan {
    position: relative;
    color: var(--white);
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.banner .banner-logo-mobile {
    display: none;
}
.banner .banner-event {
    background: var(--transparentBlack);
    border-radius: 12px;
    box-shadow: 0 6px 32px var(--transparentGrey);
    padding: 24px;
    position: relative;
    max-width: 454px;
}
.banner .banner-event .boxtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--grey);
    text-transform: uppercase;
    background: var(--primary);
    padding: 8px 16px;
    margin-bottom: 0;
    border-radius: 8px 8px 0 0;
    width: fit-content;
}
.banner .banner-event .event-image {
    margin-bottom: 18px;
}
.banner .banner-event .event-image img {
    width: 100%;
    border-radius: 0 12px 12px 12px;
}
.banner .banner-event .event-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}
.banner .banner-event .event-info {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.banner .banner-event .event-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    justify-content: flex-start;
}
.banner .banner-event .event-item .icons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
}
.banner .banner-event .event-item .icons i {
    color: var(--grey);
    font-size: 16px;
}
.banner .banner-event .event-date,
.banner .banner-event .event-time,
.banner .banner-event .event-location {
    font-weight: 400;
    color: var(--white);
    font-size: 16px;
    text-transform: uppercase;
}
.banner .main-banner {
    position: relative;
    width: 520px;
    position: absolute;
    bottom: -45px;
    right: 0;
}
.banner .main-banner .banner-image {
    max-width: 100%;
}
.banner .main-banner .banner-image-mobile {
    display: none;
}
.sponsors {
    padding: 40px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--line);
}
.sponsors .section-title {
    margin-bottom: 0;
}
.sponsors .swiper {
    width: 100%;
    height: 100%;
}
.sponsors .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: var(--white);
    padding: 5px;
    border-radius: 4px; */
}
.welcome {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}
.welcome .mask {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 100px;
}
.welcome .mask .mask-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.welcome .mask .mask-left img {
    max-width: 100%;
}
.welcome .mask .mask-left .graphic {
    max-width: 140px;
}
.welcome .mask .mask-right {
    position: relative;
    display: flex;
    margin-left: -206px;
}
.welcome .mask .mask-right img {
    max-width: 100%;
}
.welcome .mask .mask-right .intersect {
    position: absolute;
    bottom: 50px;
    right: 16px;
    width: 120px;
    height: 205px;
}
.welcome .welcome-content {
    position: relative;
    margin-left: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.welcome .welcome-content .graphic-box {
    max-width: 100%;
    margin-bottom: 30px;
}
.section-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary);
    text-transform: uppercase;
}
.section-subtitle.primary {
    color: var(--primary);
}
.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.section-title.primary {
    color: var(--primary);
}
.section-title.white {
    color: var(--white);
}
.welcome .welcome-content .welcome-text {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 20px;
}
.welcome .welcome-content .hr {
    width: 100%;
    margin-top: 20px;
    border-bottom: 1px solid var(--primary);
    margin-bottom: 20px;
}
.welcome .welcome-content .welcome-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.welcome .welcome-content .welcome-author .author-image {
    max-width: 100%;
}
.welcome .welcome-content .welcome-author .author-details {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.welcome .welcome-content .welcome-author .author-details .author-name {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    color: var(--grey);
}
.welcome .welcome-content .welcome-author .author-details .author-position {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: var(--secondary);
}
.marathon-anthem {
    padding: 80px 0;
    background-color: var(--grey);
}
.marathon-anthem .section-title {
    margin-bottom: 30px;
}
.marathon-anthem .video-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.marathon-anthem .anthem-video {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 16px;
    /* overflow: hidden; */
    border-radius: 50%;
    border: 1px solid var(--transparentPrimary);
}
.marathon-anthem .anthem-video .video-thumbnail {
    width: 100%;
    border-radius: 50%;
    border: 16px solid var(--transparentPrimary);
}
.marathon-anthem .anthem-video .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--transparentBlack);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
}
.marathon-anthem .anthem-video .video-pointers {
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: calc(100% + 260px);
    height: 100%;
    margin: 0 -130px;
    z-index: 1;
}
.marathon-anthem .video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--transparentBlack);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 9999;
}
.marathon-anthem .video-popup.active {
    opacity: 1;
    visibility: visible;
}
.marathon-anthem .video-popup-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: transparent;
}
.marathon-anthem .close-popup {
    position: absolute;
    top: -50px;
    right: 0;
    cursor: pointer;
}
.marathon-anthem .close-popup i {
    font-size: 30px;
    color: var(--white);
}
.marathon-anthem .video-popup-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.marathon-anthem .anthem-video .video-pointers .pointer {
    max-width: 100%;
}
.marathon-anthem .anthem-video .video-pointers .pointer:nth-child(1) { align-self: start; justify-self: start; }
.marathon-anthem .anthem-video .video-pointers .pointer:nth-child(2) { align-self: start; justify-self: end; }
.marathon-anthem .anthem-video .video-pointers .pointer:nth-child(3) { align-self: end; justify-self: start; }
.marathon-anthem .anthem-video .video-pointers .pointer:nth-child(4) { align-self: end; justify-self: end; }
.marathon-anthem .anthem-points {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 100px;
    padding-left: 36px;
}
.marathon-anthem .anthem-points.end {
    padding-right: 36px;
    padding-left: 0;
    align-items: flex-end;
}
.marathon-anthem .anthem-points .point {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}
.marathon-anthem .anthem-points .point .point-number {
    font-size: 70px;
    line-height: 80px;
    font-weight: 500;
    color: var(--primary);
    width: 75px;
    text-align: right;
    margin-top: -8px;
}
.marathon-anthem .anthem-points.end .point-number {
    text-align: left;
}
.marathon-anthem .anthem-points .point .point-text {
    width: calc(100% - 75px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 10px;
    border-left: 2px solid var(--primary);
}
.marathon-anthem .anthem-points .point .point-text.right {
    border-left: none;
    border-right: 2px solid var(--primary);
    padding-right: 10px;
    align-items: flex-end;
}
.marathon-anthem .anthem-points .point .point-text .point-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    text-transform: capitalize;
    margin-bottom: 10px;
}
.marathon-anthem .anthem-points .point .point-text .point-description {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: var(--offGrey);
    margin-bottom: 0;
}
.marathon-anthem .anthem-points .point .point-text.right .point-title,
.marathon-anthem .anthem-points .point .point-text.right .point-description {
    text-align: right;
}
.run-categories {
    position: relative;
    padding: 80px 0;
    background: url(../images/event-bg.jpg) no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
}
.run-categories .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--transparentBlack);
    z-index: 1;
}
.run-categories .events {
    position: relative;
    width: 100%;
    height: 300px;
    padding-right: 40px;
    margin-bottom: 30px;
    background: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.run-categories .events .event-info {
    position: relative;
    width: calc(100% - 300px);
    height: 100%;
    background-color: var(--white);
    overflow: hidden;
}
.run-categories .events .event-info .event-image {
    position: absolute;
    width: 100%;
    height: calc(100% + 2px);
    object-fit: cover;
    object-position: top;
    right: 0;
    top: -1px;
    bottom: 0;
    z-index: 0;
    transition: all 1.5s cubic-bezier(0,0,.2,1);
}
.run-categories .events .event-info .event-details {
    max-width: 460px;
    height: 100%;
    -webkit-clip-path: polygon(0 0, 80% 0, 100% 35%, 70% 100%, 0 100%);
    clip-path: polygon(0 0, 80% 0, 100% 35%, 70% 100%, 0 100%);
    background-color: var(--white);
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    position: relative;
}
.run-categories .events .event-info .event-details .event-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--grey);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.run-categories .events .event-info .event-details .event-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.run-categories .events .event-info .event-details .event-item:last-child {
    margin-bottom: 0;
}
.run-categories .events .event-info .event-details .event-item .icons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
}
.run-categories .events .event-info .event-details .event-item .icons i {
    color: var(--grey);
    font-size: 16px;
}
.run-categories .events .event-info .event-details .event-item .event-text {
    font-size: 16px;
    color: var(--secondary);
}
.run-categories .events .event-action {
    position: relative;
    background: var(--white);
    width: 300px;
    height: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.run-categories .events .event-action .title {
    font-size: 24px;
    font-weight: 500;
    color: var(--grey);
    margin-bottom: 6px;
}
.run-categories .events .event-action .price {
    font-size: 20px;
    font-weight: 300;
    color: var(--grey);
    margin-bottom: 30px;
}
.run-categories .events .event-action .price span {
    font-size: 60px;
    line-height: 70px;
    font-weight: 600;
}
.run-categories .events .event-after-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    height: 100%;
    z-index: 1;
}
.run-categories .events .event-after-bg:before {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    background: repeating-linear-gradient(0deg, var(--grey) 0, var(--grey) 20px, var(--primary) 20px, var(--primary) 40px);
    right: 0;
    top: 0;
}
.run-categories .events .event-after-bg:after {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    right: 20px;
    top: 0;
    background: repeating-linear-gradient(0deg, var(--primary) 0, var(--primary) 20px, var(--grey) 20px, var(--grey) 40px);
}
.mission-vision {
    position: relative;
    padding: 80px 0;
    background-color: var(--white);
}
.mission-vision .mission-vision-banner {
    position: relative;
    width: 100%;
    padding-right: 150px;
    
}
.mission-vision .mission-vision-banner::before {
    content: '';
    background: url(../images/square-bottom.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
}
.mission-vision .mission-vision-banner::after {
    content: '';
    background: url(../images/square-top.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: -10px;
    right: 140px;
    width: 70px;
    height: 70px;
}
.mission-vision .mission-vision-banner img {
    max-width: 100%;
}
.mission-vision .mission-vision-banner .mission-mask {
    position: absolute;
    top: 120px;
    right: 0;
    width: 300px;
    border: 15px solid var(--white);
}
.mission-vision .mission-vision-content {
    position: relative;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.mission-vision .mission-vision-content .title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    color: var(--grey);
    text-transform: capitalize;
    margin-bottom: 16px;
    position: relative;
    width: fit-content;
}
.mission-vision .mission-vision-content .title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}
.mission-vision .mission-vision-content .text {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 20px;
}
.graphic {
    position: relative;
    margin-top: 40px;
}
.graphic::after, .graphic::before {
    content: "";
    width: 100%;
    position: absolute;
    right: 0px;
    left: 0px;
}
.graphic::before {
    height: 40px;
    bottom: 0px;
    background: repeating-linear-gradient(270deg, var(--grey) 0, var(--grey) 20px, var(--primary) 20px, var(--primary) 40px);
}
.graphic::after {
    height: 20px;
    bottom: 20px;
    background: repeating-linear-gradient(270deg, var(--primary) 0, var(--primary) 20px, var(--grey) 20px, var(--grey) 40px);
}
footer {
    position: relative;
    background: var(--grey);
    padding-top: 40px;
    padding-bottom: 20px;
}
footer .footer-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
}
footer .footer-subtitle {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
}
footer .footer-text {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--offGrey);
    margin-bottom: 20px;
}
footer .footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}
footer .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: relative;
    border: 1px solid var(--offGrey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 16px;
    color: var(--surface);
    transition: all 0.3s ease;
}
footer .footer-social a:hover {
    background: var(--primary);
    color: var(--grey);
    border-color: var(--primary);
}
footer .footer-pages {
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 40px;
}
footer .footer-pages .widget-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
footer .footer-pages .widget-links .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}
footer .footer-pages .widget-links .footer-links {
    line-height: 100%;
}
footer .footer-pages .widget-links .footer-links a {
    color: var(--white);
    text-decoration: none;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--offGrey);
    transition: color 0.3s ease;
}
footer .footer-pages .widget-links .footer-links a:hover {
    color: var(--primary);
}
footer .chat {
    position: relative;
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    text-decoration: none;
    margin-bottom: 20px;
}
footer .chat .icon {
    width: 50px;
}
footer .chat .icon img {
    max-width: 100%;
}
footer .chat .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}
footer .chat .text .title {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: var(--offGrey);
    text-transform: capitalize;
    transition: all 0.3s ease;
}
footer .chat .text .subtitle {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    color: var(--white);
    text-transform: capitalize;
    transition: all 0.3s ease;
}
footer .chat:hover > .text .title {
    color: var(--primaryLight);
}
footer .chat:hover > .text .subtitle {
    color: var(--primary);
}
footer .footer-bottom {
    position: relative;
    width: 100%;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--offGrey);
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--offGrey);
}
footer .footer-bottom a {
    text-decoration: none;
    color: var(--offGrey);
    border-bottom: 1px solid var(--offGrey);
    transition: all 0.3s ease;
}
footer .footer-bottom a:hover {
    color: var(--primary);
    border-color: var(--primary);
}
#mvcwid {
    padding: 0 !important;
}
.wps_visitor_title {
    display: none;
}
.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--grey);
    color: var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.btn-back-to-top.appear {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.btn-back-to-top:hover {
    background-color: var(--primary);
    color: var(--grey);
}
/* pages */
.page-header {
    position: relative;
    padding: 80px 0;
    background: url(../images/page-bg.jpg) no-repeat center center;
    background-size: cover;
}
.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--transparentBlack);
}
.page-header .page-title {
    position: relative;
    color: var(--primary);
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
}
.map-route {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: var(--white);
}
.map-route .route-container {
    position: relative;
    width: 100%;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;
}
.map-route .route-container .map {
    position: relative;
    width: calc(100% - 400px);
}
.map-route .route-container .map img {
    max-width: 100%;
}
.map-route .route-container .route-details {
    width: 400px;
    height: 100%;
    padding: 40px;
    background: var(--grey);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.map-route .route-container .route-details .route-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
}
.map-route .route-container .route-details .price {
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 40px;
}
.map-route .route-container .route-details .price span {
    font-size: 80px;
    line-height: 90px;
    font-weight: 600;
    color: var(--white);
}
.map-route .route-container .route-details .route-locations {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.map-route .route-container .route-details .route-locations .route-point {
    position: relative;
    max-width: 150px;
    margin-bottom: 10px;
}
.map-route .route-container .route-details .route-locations .route-text {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--offGrey);
    margin-bottom: 20px;
}
.sidebar {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}
.sidebar .table-content {
    width: 100%;
    height: auto;
    position: sticky;
    top: 135px;
}
.sidebar .sidebar-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--grey);
    margin-bottom: 12px;
} 
.sidebar .sidelist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sidebar .sidelist ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sidebar .sidelist ul li {
    list-style: none;
    position: relative;
    padding: 4px 0 16px;
    border-bottom: 1px solid var(--line);
}
.sidebar .sidelist ul li a {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-decoration: none;
}
.sidebar .sidelist ul li a .title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--grey);
    position: relative;
    transition: all 0.3s ease;
}
.sidebar .sidelist ul li a .title i {
    margin-right: 6px;
}
.sidebar .sidelist ul li a .number {
    width: 20px;
    height: 20px;
    background: var(--grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
}
.sidebar .sidelist ul li a:hover > .title {
    color: var(--primary);
}
.page-details {
    position: relative;
}
.page-details h1 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 12px;
}
.page-details h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: var(--grey);
    margin-bottom: 12px;
}
.page-details h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--grey);
    margin-bottom: 10px;
}
.page-details h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: var(--grey);
    margin-bottom: 8px;
}
.page-details h5 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--grey);
    margin-bottom: 8px;
}
.page-details h6 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--grey);
    margin-bottom: 8px;
}
.page-details p,
.page-details ul li,
.page-details ul ol {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--secondary);
    margin-bottom: 16px;
}
.page-details ul li,
.page-details ul ol {
    margin-bottom: 12px;
}
.page-details table {
    border-collapse: collapse;
    width: 100%;
}
.page-details table > tbody, td, tfoot, th, thead, tr {
    border-width: 1px;
    border-color: var(--line);
    padding: .5em;
    color: var(--secondary);
    font-size: 16px;
}
.page-details .has-text-align-center {
    text-align: center;
}
[id] {
  scroll-margin-top: 135px; /* height of your sticky header */
}
.page-details .accordion-button:not(.collapsed) {
    color: var(--grey);
    background-color: var(--surface)
}
.page-details .accordion-button:focus {
    box-shadow: none;
}
.event {
    position: relative;
    padding: 80px 0;
    background: var(--white);
}
.event .event-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.event .event-content .text {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 20px;
}
.data-list {
    margin-left: 0;
    margin-bottom: 20px;
    padding-left: 0;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 20px;
}
.data-list li {
    list-style: none;
    display: flex;
    gap: 6px;
    position: relative;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 8px;
}
.data-list li .icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.data-list li .icon i {
    /* font-size: 12px; */
    color: var(--grey);
}
.event .banner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 160px;
}
.event .banner::after {
    content: '';
    background: url(../images/square-bottom.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: 145px;
    bottom: -5px;
    width: 100px;
    height: 100px;
}
.event .banner .about-bg {
    max-width: 100%;
}
.event .banner .overlap {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    background: linear-gradient(to right, var(--primary) 50%, var(--white) 50%);
    padding: 20px;
    border-radius: 50%;
    overflow: hidden;
}
.event .banner .overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
.athletes {
    position: relative;
    padding: 80px 0;
    background: var(--white);
}
.athletes .athlete-card {
    width: 100%;
    height: calc(100% - 24px);
    margin-bottom: 24px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.athletes .athlete-card .identity {
    width: 264px;
    height: 100%;
    background: var(--grey);
    border-radius: 110px 8px 8px;
    padding: 24px 60px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.athletes .athlete-card .identity .image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}
.athletes .athlete-card .identity .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.athletes .athlete-card .identity .info {
    position: relative;
    padding-left: 6px;
    border-left: 3px solid var(--primary);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.athletes .athlete-card .identity .info .name {
    font-size: 16px;
    line-height: 20px;
    color: var(--white);
}
.athletes .athlete-card .identity .info .desig {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--primaryLight);
}
.athletes .athlete-card .bio {
    width: calc(100% - 224px);
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--offGrey);
    margin: 24px 0 24px -40px;
    padding: 24px 24px 72px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
.athletes .athlete-card .bio::before,
.athletes .athlete-card .bio::after {
    content: "";
    width: 100%;
    position: absolute;
    right: 0;
    left: 0;
}
.athletes .athlete-card .bio::before {
    height: 40px;
    background: repeating-linear-gradient(270deg, var(--grey) 0, var(--grey) 20px, var(--primary) 20px, var(--primary) 40px);
    bottom: 0;
    border-radius: 8px;
}
.athletes .athlete-card .bio::after {
    height: 20px;
    bottom: 20px;
    background: repeating-linear-gradient(270deg, var(--primary) 0, var(--primary) 20px, var(--grey) 20px, var(--grey) 40px);
}
.athletes .athlete-card .bio .quote {
    position: absolute;
    right: 24px;
    top: -20px;
    width: 73px;
    height: 61px;
    background: url(../images/quotation.png) no-repeat;
    background-size: contain;
    transform: rotate(180deg);
}
.athletes .athlete-card .bio .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 12px;
}
.athletes .athlete-card .bio .details {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--secondary);
}
.filters {
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 21px;
    background: var(--surface);
    margin-bottom: 32px;
}
.filters .filter-btn {
    position: relative;
    background: none;
    border: none;
    padding: 8px 20px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: var(--offGrey);
    transition: all 0.3s ease;
}
.filters .filter-btn .count {
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--white); 
}
.filters .filter-btn.active {
    color: var(--grey);
    background: var(--primaryLight);
}
.filters .filter-btn.active > .count {
    background: var(--grey);
}
.gallery-intro {
    position: relative;
    background: linear-gradient(to right, var(--white) 50%, var(--primary) 50%);
}
.gallery-intro .intro-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.gallery-intro .intro-content .text {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--secondary);
    margin-bottom: 20px;
}
.gallery-intro .gallery {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 80px 0 80px 40px;
}
.gallery-intro .gallery .gallerySwiper {
    position: relative;
}
.gallery-intro .gallery .gallerySwiper .swiper-wrapper {
    margin-bottom: 24px;
    border-radius: 12px;
}
.gallery-intro .gallery .gallerySwiper .swiper-wrapper .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
}
.gallery-intro .gallery .gallerySwiper .swiper-wrapper .swiper-slide img {
    max-width: 100%;
    border-radius: 12px;
}
.gallery-intro .gallery .navigator {
    position: relative;
    display: flex;
    gap: 8px;
}
.gallery-intro .gallery .navigator .gallery-next,
.gallery-intro .gallery .navigator .gallery-prev {
    position: relative;
    color: var(--primary);
    background: var(--grey);
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50%;
    margin-top: 0;
    left: auto;
    right: auto;
    transition: all 0.3s ease;
}
.gallery-intro .gallery .navigator .gallery-next::after,
.gallery-intro .gallery .navigator .gallery-prev::after {
    font-size: 20px;
}
.gallery-intro .gallery .navigator .gallery-next:hover,
.gallery-intro .gallery .navigator .gallery-prev:hover {
    color: var(--grey);
    background: var(--white);
}
.past-gallery {
    position: relative;
    background: var(--grey);
    padding: 80px 0;
}
.past-gallery .past-event {
    position: relative;
    width: 100%;
    height: calc(100% - 24px);
    margin-bottom: 24px;
    border: 1px solid var(--secondary);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.past-gallery .past-event::after {
    content: '';
    background: var(--primary);
    width: 100%;
    height: 3px;
    position: absolute;
    top: 0;
    left: 0;
}
.past-gallery .past-event .year {
    width: fit-content;
    padding: 0 20px 20px;
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    margin-bottom: 20px;
}
.past-gallery .past-event .year::after {
    content: '';
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(270deg, var(--black) 0, var(--black) 10px, var(--primary) 10px, var(--primary) 20px);
    position: absolute;
    left: 0;
    bottom: 0;
}
.past-gallery .past-event .year {
    width: fit-content;
    padding: 0 20px 20px;
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    margin-bottom: 20px;
}
.past-gallery .past-event .season {
    width: 100%;
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}

@media (max-width: 1399px) {
    .welcome .mask {
        gap: 120px;
    }
    .welcome .mask .mask-left .graphic {
        max-width: 125px;
    }
    .welcome .mask .mask-right .intersect {
        width: 90px;
        height: 170px;
    }
    .welcome .mask .mask-right .intersect {
        width: 80px;
        height: 140px;
    }
    .run-categories .events .event-info .event-details {
        max-width: 430px;
    }
    .map-route .route-container .map {
        width: calc(100% - 350px);
    }
    .map-route .route-container .route-details {
        width: 350px;
        padding: 30px;
    }
    .map-route .route-container .route-details .route-title {
        font-size: 20px;
    }
    .map-route .route-container .route-details .price {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    .map-route .route-container .route-details .price span {
        font-size: 70px;
        line-height: 80px;
    }
    .map-route .route-container .route-details .route-locations .route-point {
        max-width: 130px;
        margin-bottom: 8px;
    }
    .map-route .route-container .route-details .route-locations .route-text {
        font-size: 16px;
        line-height: 24px;
    }
    .event .banner::after {
        left: 148px;
        bottom: 50px;
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 1199px) {
    .banner .banner-title {
        font-size: 48px;
    }
    .welcome .mask {
        gap: 130px;
    }
    .welcome .mask .mask-left .graphic {
        max-width: 100px;
    }
    .marathon-anthem .anthem-points {
        gap: 50px;
    }
    .mission-vision .mission-vision-content {
        padding: 0;
    }
    .map-route .route-container .map {
        width: calc(100% - 300px);
    }
    .map-route .route-container .route-details {
        width: 300px;
        padding: 30px;
    }
    .map-route .route-container .route-details .route-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .map-route .route-container .route-details .price {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
    }
    .map-route .route-container .route-details .price span {
        font-size: 50px;
        line-height: 60px;
    }
    .map-route .route-container .route-details .route-locations .route-point {
        max-width: 100px;
        margin-bottom: 6px;
    }
    .map-route .route-container .route-details .route-locations .route-text {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }
    .event .banner {
        padding-left: 120px;
    }
    .event .banner .overlap {
        width: 240px;
        height: 240px;
        padding: 16px;
    }
    .event .banner::after {
        left: 110px;
        bottom: 110px;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 991px) {
    .nav .menu-item > a::after {
        content: none;
    }
    #mobileMenu .nav {
        flex-direction: column;
        gap: 0;
        margin: 0;
    }
    #mobileMenu .menu-item {
        width: 100%;
        display: block;
        height: auto;
        border-bottom: 1px solid var(--line2);
        position: relative;
    }
    #mobileMenu .menu-item > a {
        text-decoration: none;
        width: 100%;
        padding: 14px 0;
        color: var(--white);
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 0;
        position: relative;
    }
    #mobileMenu .menu-item.current-menu-item > a, 
    #mobileMenu .menu-item.current-menu-parent > a {
        color: var(--primary);
    }
    #mobileMenu .menu-item > a .submenu-toggle {
        margin-left: auto;
        font-size: 18px;
        cursor: pointer;
        color: var(--primary);
    }
    #mobileMenu .sub-menu {
        display: none;
        position: static;
        background: transparent;
        box-shadow: none;
        padding-left: 20px;
        margin: 0;
    }
    #mobileMenu .menu-item.open > .sub-menu {
        display: block;
    }
    #mobileMenu .sub-menu li a {
        color: var(--offGrey);
        font-size: 14px;
        padding: 10px 0 10px 10px;
        border-radius: 0;
    }
    #mobileMenu .sub-menu a:hover {
        background: none;
        color: var(--white);
    }
    #mobileMenu .sub-menu .menu-item.current-menu-item > a {
        background: none;
        color: var(--primary);
    }
    #mobileMenu .social-icons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    #mobileMenu .social-icons a {
        color: var(--primary);
        font-size: 20px;
    }
    .banner {
        padding: 40px 0;
    }
    .banner .banner-content {
        text-align: center;
    }
    .banner .banner-logo {
        display: none;
    }
    .banner .banner-logo-mobile {
        display: inline-block;
        max-width: 150px;
        margin-bottom: 20px;
    }
    .banner .banner-title {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .banner .banner-title .cl-3 {
        font-size: 50px;
    }
    .banner .banner-title sup {
        font-size: 20px;
        top: -16px;
    }
    .banner .banner-slogan {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .banner .banner-event {
        margin-bottom: 40px;
    }
    .banner .main-banner {
        position: relative;
        bottom: auto;
        right: auto;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    .banner .main-banner .banner-image {
        display: none;
    }
    .banner .main-banner .banner-image-mobile {
        max-width: 440px;
        display: block;
    }
    .welcome .mask {
        gap: 60px;
    }
    .welcome .mask .mask-left .graphic {
        max-width: 140px;
    }
    .welcome .mask .mask-right {
        margin-left: -140px;
    }
    .welcome .mask .mask-right .intersect {
        width: 120px;
        height: 206px;
        bottom: 110px;
        right: 30px;
    }
    .welcome .welcome-content {
        margin-left: 0;
        margin-top: 40px;
    }
    .marathon-anthem .anthem-video .video-pointers {
        display: none;
    }
    .marathon-anthem .anthem-points {
        padding-left: 0;
        padding-top: 50px;
    }
    .marathon-anthem .anthem-points.end {
        padding-right: 0;
        padding-bottom: 50px;
    }
    .run-categories .events {
        flex-direction: column;
        height: auto;
    }
    .run-categories .events .event-info {
        width: 100%;
        height: auto;
    }
    .run-categories .events .event-info .event-details {
        width: 100%;
        -webkit-clip-path: polygon(0 0, 80% 0, 100% 35%, 80% 100%, 0 100%);
        clip-path: polygon(0 0, 84% 0, 100% 35%, 80% 100%, 0 100%);
        padding: 40px;
    }
    .run-categories .events .event-info .event-image {
        width: 100%;
        height: calc(100% - 2px);
        top: 0;
    }
    .run-categories .events .event-action {
        width: 100%;
        height: auto;
        padding: 0 40px 40px;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
    .run-categories .events .event-action .price {
        margin-bottom: 0;
    }
    .mission-vision .mission-vision-banner {
        margin-bottom: 90px;
    }
    .mission-vision .mission-vision-banner .mission-mask {
        top: 80px;
    }
    footer .footer-social {
        margin-bottom: 30px;
    }
    footer .footer-pages {
        padding: 0;
        justify-content: flex-start;
    }
    .map-route .route-container {
        flex-direction: column;
    }
    .map-route .route-container .map,
    .map-route .route-container .route-details {
        width: 100%;
    }
    .map-route .route-container .route-details .route-locations {
        flex-direction: row;
        gap: 60px;
    }
    .event .banner {
        max-width: 500px;
        margin: 0 auto;
    }
    .event .banner::after {
        bottom: 30px;
    }
    .gallery-intro {
        background: linear-gradient(to top, var(--white) 59%, var(--primary) 50%);
        padding: 0 0 80px;
    }
    .gallery-intro .gallery {
        padding: 80px 0;
    }
    .gallery-intro .gallery .navigator .gallery-next:hover,
    .gallery-intro .gallery .navigator .gallery-prev:hover {
        color: var(--grey);
        background: var(--primary);
    }
}

@media (max-width: 767px) {
    .banner .banner-event {
        max-width: 100%;
    }
    .banner .banner-event .event-title {
        font-size: 20px;
    }
    .banner .banner-event .event-item {
        font-size: 14px;
    }
    .sponsors .section-title {
        margin-bottom: 20px;
    }
    .welcome, 
    .run-categories, 
    .marathon-anthem, 
    .mission-vision, 
    .page-header,
    .map-route,
    .event,
    .athletes,
    .gallery-intro .gallery,
    .past-gallery {
        padding: 60px 0;
    }
    .welcome .mask .mask-right .intersect {
        bottom: 60px;
        right: 10px;
    }
    .run-categories .events .event-info .event-details {
        -webkit-clip-path: none;
        clip-path: none;
    }
    .run-categories .events .event-info .event-image {
        display: none;
    }
    .run-categories .events .event-action {
        padding: 0 40px 40px;
    }
    .mission-vision .mission-vision-banner {
        padding: 0 12px;
        margin-bottom: 40px;
    }
    .mission-vision .mission-vision-banner::before {
        left: 0;
    }
    .mission-vision .mission-vision-banner::after {
        right: 0;
    }
    .mission-vision .mission-vision-banner .mission-mask {
        display: none;
    }
    footer .footer-pages {
        margin-bottom: 30px;
    }
    .page-header .page-title {
        font-size: 28px;
    }
    .page-details h1 {
        font-size: 32px;
        line-height: 40px;
    }
    .page-details h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .page-details h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .page-details h4 {
        font-size: 18px;
        line-height: 26px;
    }
    .page-details h5 {
        font-size: 16px;
        line-height: 24px;
    }
    .page-details h6 {
        font-size: 14px;
        line-height: 20px;
    }
    .page-details p,
    .page-details ul li,
    .page-details ul ol {
        font-size: 14px;
        margin-bottom: 14px;
    }
    .page-details table > tbody, td, tfoot, th, thead, tr {
        font-size: 14px;
    }
    .gallery-intro {
        padding: 0 0 60px;
    }
}

@media (max-width: 575px) {
    .top-nav {
        display: none;
    }
    .navbar-brand img {
        max-width: 60px;
    }
    .banner {
        padding: 10px 0 30px;
    }
    .banner .banner-event .boxtitle {
        font-size: 14px;
        padding: 6px 12px;
    }
    .banner .banner-event .event-item .icons {
        width: 24px;
        height: 24px;
    }
    .banner .banner-event .event-item .icons i {
        font-size: 12px;
    }
    .banner .banner-event .event-date, 
    .banner .banner-event .event-time, 
    .banner .banner-event .event-location {
        font-size: 14px;
    }
    .banner .banner-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    .banner .banner-title .cl-3 {
        font-size: 36px;
    }
    .banner .banner-title sup {
        font-size: 14px;
        top: -11px;
    }
    .banner .banner-slogan {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .banner .banner-logo-mobile {
        max-width: 130px;
        margin-bottom: 10px;
    }
    .banner .main-banner {
        width: 250px;
        margin-bottom: 20px;
    }
    .banner .main-banner .banner-image-mobile {
        max-width: 100%;
    }
    .welcome, 
    .run-categories, 
    .marathon-anthem, 
    .mission-vision, 
    .page-header,
    .map-route,
    .event,
    .athletes,
    .gallery-intro .gallery,
    .past-gallery {
        padding: 40px 0;
    }
    .welcome .mask {
        gap: 20px;
    }
    .welcome .mask .mask-left {
        width: min-content;
    }
    .welcome .mask .mask-left .graphic {
        max-width: 120px;
    }
    .welcome .mask .mask-right {
        width: max-content;
        margin-left: -90px;
    }
    .welcome .mask .mask-right .intersect {
        bottom: 80px;
        right: 30px;
    }
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .section-title {
        font-size: 24px;
    }
    .welcome .welcome-content .welcome-text {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .welcome .welcome-content .welcome-author .author-image {
        max-width: 50px;
    }
    .welcome .welcome-content .welcome-author .author-details .author-name {
        font-size: 18px;
        line-height: 18px;
    }
    .run-categories .events .event-info .event-details {
        padding: 24px;
    }
    .run-categories .events .event-action {
        padding: 0 24px 24px;
    }
    .run-categories .events .event-action .price {
        font-size: 16px;
    }
    .run-categories .events .event-action .price span {
        font-size: 50px;
        line-height: 60px;
    }
    .map-route .route-container .route-details {
        padding: 24px;
    }
    .map-route .route-container .route-details .route-title {
        margin-bottom: 4px;
    }
    .map-route .route-container .route-details .price {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .map-route .route-container .route-details .price span {
        font-size: 40px;
        line-height: 50px;
    }
    .map-route .route-container .route-details .route-locations .route-point {
        max-width: 90px;
    }
    .map-route .route-container .route-details .route-locations .route-text {
        font-size: 12px;
        line-height: 16px;
    }
    .event .event-content .text,
    .data-list li {
        font-size: 14px;
    }
    .data-list li .icon {
        width: 22px;
        height: 22px;
    }
    .event .banner {
        padding-left: 100px;
    }
    .event .banner::after {
        left: 90px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }
    .event .banner .overlap {
        width: 200px;
        height: 200px;
    }
    .athletes .athlete-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .athletes .athlete-card .identity {
        width: calc(100% - 48px);
        border-radius: 80px 8px 8px;
        padding: 24px 24px 60px 24px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    .athletes .athlete-card .identity .image {
        width: 100px;
        height: 100px;
        margin-bottom: 0;
        margin-right: 24px;
    }
    .athletes .athlete-card .bio {
        width: calc(100% - 84px);
        margin: -40px 0 0 84px;
    }
    .gallery-intro {
        padding: 0 0 40px;
    }
    .gallery-intro .intro-content .text {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .welcome .mask .mask-left .graphic {
        max-width: 80px;
    }
    .welcome .mask .mask-right .intersect {
        bottom: 50px;
        right: 20px;
    }
    .run-categories .events .event-action .title {
        font-size: 20px;
    }
    .run-categories .events .event-action .price span {
        font-size: 40px;
        line-height: 50px;
    }
    .athletes .athlete-card .identity {
        width: calc(100% - 32px);
        padding: 16px 16px 50px 16px;
        border-radius: 60px 8px 8px;
    }
    .athletes .athlete-card .identity .image {
        width: 80px;
        height: 80px;
    }
    .athletes .athlete-card .bio {
        width: calc(100% - 60px);
        margin: -40px 0 0 60px;
        padding: 16px 16px 60px;
    }
    .athletes .athlete-card .bio .quote {
        width: 60px;
        height: 50px;
        right: 55px;
        top: -16px;
    }
    .athletes .athlete-card .bio .details {
        font-size: 14px;
    }
}