* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    --primary-color: #bb133e;
    --secondary-color: #002147;
    --dark-color: #4a4f54;
    --text-color: #4a4f54;
    --light-color: #fff;
    --white-color: #fff;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: var(--dark-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    text-rendering: optimizeLegibility;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;
    --text-opacity: 1;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    touch-action: auto;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    padding: 0;
    margin: 0;
}

* {
    box-sizing: border-box;
}

a {
    color: var(--primary-color);
    transition: all 0.5s;
    text-decoration: none;
    outline: none;
    border: none;
}

a:hover,
a:active,
a:focus {
    color: var(--secondary-color);
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

button {
    border: none;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    transition: all 0.5s;
}

.ares-container-mid {
    position: relative;
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---------------------------- Theme Heading CSS Start --------------------------- */
.main-heading {
    position: relative;
    margin-bottom: 25px;
    z-index: 1;
}

.main-heading .sub-heading p {
    color: var(--primary-color);
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.main-heading h2 {
    font-size: 30px;
    position: relative;
    z-index: 1;
    padding-bottom: 12px;
    margin-bottom: 13px;
}

@media (max-width: 767px) {
    .main-heading h2 {
        font-size: 19px;
    }

    .main-heading .sub-heading p {
        text-transform: capitalize;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .main-heading h2 {
        font-size: 22px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .main-heading h2 {
        font-size: 24px;
    }
}

.main-heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    display: block;
    z-index: -1;
}

.main-heading p {
    margin-bottom: 0;
}

.main-heading p a {
    text-decoration: underline;
}

.main-heading.heading-dark h2 {
    color: var(--secondary-color);
}

.main-heading.heading-dark h2::after {
    background: var(--primary-color);
}

.main-heading.heading-dark .heading-content p {
    color: var(--dark-color);
}

.main-heading.heading-light h2 {
    color: var(--primary-color);
}

.main-heading.heading-light h2::after {
    background: var(--light-color);
}

.main-heading.heading-light .heading-content p {
    color: var(--light-color);
}

/* ---------------------------- Theme Heading CSS End --------------------------- */

/* ---------------------------- Theme Button CSS Start --------------------------- */
.theme-btn a {
    font-size: 15px !important;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    padding: 12px 20px !important;
    min-width: 210px;
    width: 100%;
    border-radius: 2px !important;
    text-transform: capitalize;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
}

@media (max-width: 767px) {
    .theme-btn a {
        padding: 8px 15px;
        min-width: 125px;
        font-size: 14px !important;
    }
}

.theme-btn.primary-btn a {
    color: var(--light-color) !important;
    border: 0px solid var(--primary-color) !important;
    background: var(--primary-color) !important;
}

.theme-btn.primary-btn a:hover,
.theme-btn.primary-btn a:focus,
.theme-btn.primary-btn a:active {
    color: var(--light-color) !important;
    border: 0px solid var(--secondary-color) !important;
    background: var(--secondary-color) !important;
}

.theme-btn.secondary-btn a {
    color: var(--light-color) !important;
    border: 0px solid var(--secondary-color) !important;
    background: var(--secondary-color) !important;
}

.theme-btn.secondary-btn a:hover,
.theme-btn.secondary-btn a:focus,
.theme-btn.secondary-btn a:active {
    color: var(--light-color) !important;
    border: 0px solid var(--primary-color) !important;
    background: var(--primary-color) !important;
}

.theme-btn.white-btn a {
    color: var(--secondary-color) !important;
    border: 0px solid var(--secondary-color) !important;
    background: var(--white-color) !important;
}

.theme-btn.white-btn a:hover,
.theme-btn.white-btn a:focus,
.theme-btn.white-btn a:active {
    color: var(--primary-color) !important;
    border: 0px solid var(--primary-color) !important;
    background: var(--white-color) !important;
}

/* ---------------------------- Theme Button CSS End --------------------------- */

/*---------------------------- Header CSS Start ------------------------- */
.site-header {
    background: var(--light-color);
    position: relative;
    z-index: 11;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .site-header {
        padding: 10px 0;
    }
}

@media (max-width: 991px) {
    .site-header .ares-container-mid {
        padding: 0;
    }
}

.site-header .menu-main-menu-container {
    margin-left: auto;
}

.site-header .navbar {
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
}

@media (max-width: 991px) {
    .site-header .navbar {
        padding: 0 10px;
    }

    .site-header .navbar .navbar-nav {
        margin: 0;
    }
}

.site-header .navbar-brand {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.site-header .navbar-brand img {
    max-width: 150px;
    width: 100%;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .site-header .navbar-brand img {
        max-width: 110px;
    }
}

.site-header .navbar .navbar-nav li {
    display: inline-block;
}

@media (max-width: 767px) {
    .site-header .navbar .navbar-nav li {
        display: block;
    }
}

.site-header .navbar .navbar-nav li a {
    text-transform: uppercase;
    padding: 15px 10px;
    font-size: 14px;
    line-height: 30px;
    color: var(--dark-color);
    border: 0px;
    border-bottom: 1px solid transparent;
    font-weight: 500;
    display: block;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.site-header .navbar .navbar-nav li a:hover,
.site-header .navbar .navbar-nav li a:active,
.site-header .navbar .navbar-nav li a:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--primary-color);
    background: transparent;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .site-header .navbar .navbar-nav li a {
        border-radius: 0;
        color: var(--dark-color);
        font-size: 14px;
        line-height: 1.25;
        border-top: 1px solid #eee;
    }

    .site-header .navbar .navbar-nav li:first-child a {
        padding-left: 10px;
    }

    .site-header .navbar .navbar-nav li:last-child a {
        border-bottom: 1px solid #eee;
    }
}

.site-header .navbar .navbar-toggler {
    background: transparent;
    border-radius: 0;
    outline: none;
    padding: 0;
}

.site-header .navbar .navbar-toggler .icon-bar {
    width: 22px;
    height: 2px;
    background-color: var(--primary-color);
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin: 4px 0;
}

.site-header.header2 .navbar .navbar-toggler .icon-bar {
    background-color: var(--white-color);
}

.site-header .navbar .navbar-toggler .top-bar {
    -webkit-transform: rotate(-42deg);
    transform: rotate(-42deg);
    -webkit-transform-origin: 90% 90%;
    transform-origin: 90% 90%;
}

.site-header .navbar .navbar-toggler .middle-bar {
    opacity: 0;
}

.site-header .navbar .navbar-toggler .bottom-bar {
    -webkit-transform: rotate(42deg);
    transform: rotate(42deg);
    -webkit-transform-origin: 90% 10%;
    transform-origin: 90% 10%;
}

.site-header .navbar .navbar-toggler.collapsed .top-bar {
    width: 32px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.site-header .navbar .navbar-toggler.collapsed .middle-bar {
    width: 24px;
    opacity: 1;
}

.site-header .navbar .navbar-toggler.collapsed .bottom-bar {
    width: 16px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.site-header .navbar-collapse {
    position: relative;
}

@media (max-width: 991px) {
    .site-header .navbar-collapse {
        position: absolute;
        top: 70px;
        left: -100%;
        padding: 0;
        width: 100%;
        text-align: center;
        overflow-y: scroll;
        height: calc(100vh - 70px);
        display: block;
        z-index: 11;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        overflow-y: scroll;
    }

    .site-header .navbar-collapse.collapsing {
        height: calc(100vh - 70px);
        margin-right: 50%;
        display: block;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }

    .site-header .header-search-bar .navbar-collapse {
        top: 13px;
        height: calc(100vh - 13px);
    }

    .site-header .header-search-bar .navbar-collapse.collapsing {
        height: calc(100vh - 13px);
    }

    .site-header .navbar-collapse.show {
        left: 0;
        background: var(--white-color);
    }
}

.site-header .navbar .menu-secondary-menu-container .navbar-nav li a {
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 30px;
    padding-left: 50px;
    line-height: 28px;
    border-radius: 3px;
}

.site-header .navbar .menu-secondary-menu-container .navbar-nav li a::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 6px;
    width: 26px;
    height: 26px;
    background-image: url('../images/donate.png');
    display: block;
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .site-header .navbar .menu-secondary-menu-container .navbar-nav li a {
        margin-top: 15px;
        display: inline-block;
        border-top: 0;
    }
}

/* ---------------------------- Site Header DropDown Start --------------------------- */

@media(min-width:992px) {
    #header .sub-menu {
        display: none
    }
}

#header .sub-menu.dropdown-menu {
    border: none;
    border-top: none;
    border-bottom: none;
    border-radius: 0;
    padding: 0;
    top: 68px;
    background-color: var(--white-color);
    min-width: 13rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 0px;
}

#header .sub-menu li {
    cursor: pointer;
    display: block;
}

#header .navbar .navbar-nav li.dropdown:last-child .dropdown-menu {
    left: auto;
    right: 0;
}

#header .sub-menu li:last-child a,
#header .sub-menu li:last-child a:hover {
    border-bottom: 0px dotted transparent;
}

#header .sub-menu li a {
    background: var(--primary-color);
    color: var(--white-color);
    border-bottom: 1px dotted var(--white-color);
    width: 100%;
    font-size: 14px;
    line-height: 1;
    padding: 11px;
    border-radius: 0;
    display: inline-block;
    text-align: left;
    text-transform: capitalize;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

.site-header .navbar .navbar-collapse .navbar-nav a.dropdown-toggle::after {
    border: none;
    position: relative;
    top: 1px;
    margin-left: 8px;
    height: 6px;
    width: 6px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.site-header .navbar .navbar-collapse .navbar-nav li a:hover.dropdown-toggle::after {
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

@media (max-width:991px) {
    .site-header .navbar .navbar-collapse .navbar-nav a.dropdown-toggle::after {
        border-right: 2px solid var(--secondary-color);
        border-bottom: 2px solid var(--secondary-color);
    }

    .site-header .navbar .navbar-collapse .navbar-nav li a:hover.dropdown-toggle::after {
        border-right: 2px solid var(--secondary-color);
        border-bottom: 2px solid var(--secondary-color);
    }
}

@media (max-width: 991px) {
    #header .sub-menu li a {
        text-align: center;
    }
}

#header .sub-menu li a::before {
    background: transparent;
    height: 0;
}

#header .sub-menu li a:hover {
    background: #f2f2f2;
    color: var(--primary-color);
    border-bottom: 1px dotted var(--white-color);
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

@media (min-width:990px) {
    #top_menu li.menu-item-has-children:hover ul.sub-menu.dropdown-menu {
        display: block;
    }
}

@media (min-width: 992px) {
    .site-header .navbar .navbar-collapse .navbar-nav li a:hover.dropdown-toggle::after {
        top: 4px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
}

@media (max-width: 991px) {
    .site-header .navbar .navbar-nav .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
    }

    .site-header .navbar .navbar-collapse .navbar-nav li.show .dropdown-toggle::after {
        transform: rotate(228deg);
        top: 3px;
    }

    .site-header .navbar .navbar-collapse .navbar-nav li a:hover.dropdown-toggle::after {
        top: 1px;
    }
}

.contact-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 0;
}

.contact-info ul li {
    display: block;
}

.contact-info ul li a {
    font-size: 13px;
    font-weight: 500;
    display: block;
    color: var(--light-color);
    margin-right: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

.contact-info ul li a:hover {
    text-decoration: underline;
}

.contact-info ul li a img {
    margin-right: 5px;
}

.contact-info ul li:last-child a {
    margin-right: 0;
}

.contact-social ul {
    margin: 0;
    padding: 0;
    font-size: 0;
}

.contact-social ul li {
    display: inline-block;
    padding-left: 3px;
}

.contact-social ul li a {
    display: block;
    text-align: center;
    transition: all 0.5s;
}

.contact-social ul li a img {
    max-width: 26px;
}

/*---------------------------- Header CSS End ------------------------- */
.site-footer {
    position: relative;
    background-image: url("../images/united-state.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.site-footer:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    background: radial-gradient(at top left, rgba(19, 50, 86, 0.8) 0%, #002147 50%);
    z-index: -1;
}

.site-footer .pre-footer {
    padding: 50px 0;
    border-bottom: 1px solid #36506f;
}

.site-footer .pre-footer .footer-logo {
    display: inline-block;
    margin-bottom: 30px;
}

.site-footer .pre-footer .footer-logo img {
    max-width: 175px;
    width: 100%;
}

@media (max-width: 767px) {
    .site-footer .pre-footer {
        padding: 30px 0;
    }

    .site-footer .pre-footer .footer-logo img {
        max-width: 150px;
    }
}

@media (max-width: 991px) {
    .site-footer .footer-menu {
        margin: 15px 0;
    }
}

.site-footer .footer-menu.footer-content .widget-title {
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 20px;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    max-width: 400px;
    width: 100%;
}

.site-footer .footer-menu.footer-content .widget-title::after {
    height: 0;
}

@media (max-width: 767px) {
    .site-footer .footer-menu.footer-content .widget-title {
        font-size: 18px;
    }
}

.site-footer .footer-menu.footer-content .textwidget p {
    color: var(--white-color);
    margin-bottom: 0;
    line-height: 1.9;
    font-size: 15px;
    max-width: 385px;
    width: 100%;
}

@media (max-width: 991px) {
    .site-footer .footer-menu.footer-content .widget-title {
        max-width: 100%;
    }

    .site-footer .footer-menu.footer-content .textwidget p {
        max-width: 100%;
    }
}

.site-footer .footer-menu .widget-title {
    color: var(--white-color);
    text-transform: capitalize;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    z-index: 1;
    position: relative;
}

@media (max-width: 991px) {
    .site-footer .footer-menu .widget-title {
        margin-bottom: 8px;
        font-size: 18px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .site-footer .footer-menu .widget-title {
        font-size: 19px;
    }
}

.site-footer .footer-menu .widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 60px;
    background: var(--white-color);
    display: block;
    z-index: -1;
}

.site-footer .footer-menu ul {
    padding-left: 15px;
}

.site-footer .footer-menu ul li {
    list-style: square;
    color: var(--white-color);
    padding: 3px 0;
}

.site-footer .footer-menu ul li:hover {
    color: var(--white-color);
}

.site-footer .footer-menu ul li a {
    font-size: 15px;
    position: relative;
    color: var(--white-color);
    display: inline-block;
    transition: all 0.5s;
    font-weight: 400;
}

@media (max-width: 991px) {
    .site-footer .footer-menu ul li a {
        font-size: 14px;
        text-transform: capitalize;
        padding: 3px 0;
    }
}

.site-footer .footer-menu ul li a::before {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white-color);
    transition: all 0.5s;
    display: inline-block;
}

.site-footer .footer-menu ul li a:hover {
    opacity: 0.75;
    text-decoration: none;
}

.site-footer .footer-menu ul li a:hover::before {
    width: 100%;
}

.site-footer .footer-menu .contact-info ul {
    padding: 0;
}

.site-footer .footer-menu .contact-info ul li a {
    margin-right: 0;
    word-break: break-all;
}

.site-footer .footer-menu .contact-info ul li img {
    position: relative;
    margin-right: 4px;
}

.site-footer .footer-menu .contact-social {
    margin-top: 15px;
}

.site-footer .footer-menu .contact-social ul {
    padding: 0;
}

.site-footer .footer-menu .contact-social ul li a {
    margin-right: 5px;
}

.site-footer .footer-menu .contact-social ul li a::before {
    height: 0;
}

.site-footer .copyright-footer {
    padding: 25px 0;
    background-color: var(--light-color);
    text-align: center;
}

.site-footer .copyright-footer p {
    margin-bottom: 0;
    color: var(--dark-color);
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.5s;
}

.site-footer .copyright-footer p a {
    color: var(--dark-color);
    transition: all 0.5s;
}

.site-footer .copyright-footer p:hover a {
    color: var(--primary-color);
    transition: all 0.5s;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .site-footer .copyright-footer {
        display: block;
    }
}

/* ------------------------------------- About Us Section CSS Start  ---------------------------------*/
.aboutus-section {
    position: relative;
    padding: 75px 0 0;
    padding-top: 75px !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.aboutus-section::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(at center center, #FFFFFFCC 0%, #fff 65%);
    display: block;
    z-index: -1;
}

.aboutus-section .aboutus-section-inner {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .aboutus-section {
        padding: 50px 0 0;
        padding-top: 50px !important;
    }

    .aboutus-section .aboutus-section-inner {
        display: block;
    }
}

.aboutus-section .aboutus-section-img>.vc_column-inner {
    position: relative;
    max-width: 425px;
    width: 100%;
    margin-left: auto;
}

@media (max-width: 767px) {
    .aboutus-section .aboutus-section-img>.vc_column-inner {
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}

.aboutus-section .aboutus-section-right {
    padding-right: 75px;
}

@media (max-width: 767px) {
    .aboutus-section .aboutus-section-right {
        padding-right: 0px;
    }
}

.aboutus-section .aboutus-section-right .theme-btn {
    margin-top: 20px;
}

.aboutus-section .main-heading {
    margin-bottom: 50px;
}

/* ------------------------------------- About Us Section CSS End  ---------------------------------*/

/* ------------------------------------- Why Running Section CSS Start  ---------------------------------*/
.why-running-section {
    padding-top: 75px !important;
    padding: 75px 0;
    position: relative;
    background-image: url("../images/united-state.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.why-running-section:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    background: radial-gradient(at top left, rgba(19, 50, 86, 0.8) 0%, #002147 50%);
    z-index: -1;
}

.why-running-section .why-running-section-inner {
    display: flex;
    align-items: center;
}

.why-running-section .main-heading {
    margin-bottom: 0;
}

.why-running-section .main-heading h2 {
    color: var(--light-color);
}

.why-running-section .main-heading .theme-btn {
    margin-top: 15px;
}

.why-running-section .why-running-img {
    max-width: 550px;
    width: 100%;
    margin-left: auto;
}

.why-running-section .why-running-img img {
    border-radius: 5px;
}

@media (max-width: 767px) {
    .why-running-section {
        padding-top: 50px !important;
        padding: 50px 0;
    }

    .why-running-section .why-running-section-inner {
        display: block;
    }

    .why-running-section .main-heading {
        margin-bottom: 50px;
    }
}

/* ------------------------------------- Why Running Section CSS End  ---------------------------------*/