/**
* Template Name: QuickStart
* Template URL: https://bootstrapmade.com/quickstart-bootstrap-startup-website-template/
* Updated: May 04 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Chelsea Market", sans-serif;
  --nav-font: "Roboto", sans-serif;
}



:root {
  --background-color: #ffffff;
  --background-color-rgb: 0, 0, 0;  
  --default-color: #242424;
  --default-color-rgb: 61, 67, 72;
  --heading-color: #FF1744;
  --heading-color-rgb: 62, 80, 85;
  --accent-color: #FF1744;
  --accent-color-rgb: 255, 23, 68;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
  --btn-background-color: #242424;
  --btn-background-color-rgb: 36, 36, 36;
  --border-color: #f2f2f2;
  --background-pink-color: #FF1744;
  --background-pink-color-rba: 255, 23, 68;
  --background-white-color-rgb: 255, 255, 255;
  --bs-border-width:1px;
}

/* Nav Menu Colors */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #FF1744;
  --nav-dropdown-color: #242424;
  --nav-dropdown-hover-color: #FF1744;
  --nav-dropdown-background-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  letter-spacing: 1px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(var(--accent-color-rgb), 0.75);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

p{font-family: var(--default-font); font-size: 15px; font-weight: 400; color: var(--default-color); line-height: 26px;}
p a{color: var(--accent-color);}
p a:hover{color: var(--default-color);}

.btn-primary {
  color: var(--contrast-color);
  background: var(--background-pink-color);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  /*box-shadow: 0 8px 28px rgba(var(--accent-color-rgb), 0.2);*/
}

.btn-primary:hover {
  color: var(--contrast-color);
  background: var(--default-color);
  box-shadow: 0 4px 18px rgba(var(--accent-color-rgb), 0.45);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 96px;
  margin-right: 8px;
  transition: all 0.5s;
}

.index-page.scrolled .logo img {
  max-height: 80px;
  transition: all 0.5s;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 480px) {
  .header .logo img {
    max-height: 24px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: rgba(var(--accent-color-rgb), 0.85);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(var(--default-color-rgb), 0.15);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 14px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus
  {
    color: var(--nav-hover-color);
  }

  .index-page.scrolled .navmenu a{color: var(--default-color);}
  .index-page.scrolled .navmenu li:hover>a,
  .index-page.scrolled .navmenu .active
  {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .index-page.scrolled .mobile-nav-toggle {
    color: var(--default-color);
  }
  .index-page.scrolled .bi-x::before {
    content: "\f62a";
    color: var(--nav-color);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--accent-color-rgb), 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid rgba(var(--default-color-rgb), 0.1);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  /*--background-color: rgba(var(--accent-color-rgb), .03);*/
  color: var(--default-color);  
  font-size: 14px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var( --default-color);
  font-size: 16px;
  color: var( --default-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}


@keyframes subscription-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.footer .copyright {
  padding-top: 8px;
  padding-bottom: 0px;
  /*border-top: 1px solid rgba(var(--default-color-rgb), 0.1);*/
}

.footer .copyright p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(var(--accent-color-rgb), 0.8);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: rgba(var(--default-color-rgb), .04);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--default-color-rgb), 0.3);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
/*
.hero .hero-bg::before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.85);
  position: absolute;
  inset: 0;
  z-index: 2;
}
*/
.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-family: var(--heading-font);
  margin: 0;
  font-size: 80px;
  font-weight: 500;
  color: var(--contrast-color);
  line-height: 60px;
  margin-bottom: 16px;
}
.hero h1::before{border: none;}

.hero span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--contrast-color);  
  margin: 10px 0 30px 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(var(--accent-color-rgb), 0.2);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: rgba(var(--accent-color-rgb), 0.85);
  box-shadow: 0 8px 28px rgba(var(--accent-color-rgb), 0.45);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: rgba(var(--accent-color-rgb), 0.85);
}

@media (max-width: 1100px) {
  .hero h1 {font-size: 60px; margin: 0; padding: 0;}
  .h1, h1 {font-size: calc(1.275rem + 1.2vw);}
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*--- New Class Added ---*/
section h2{ position: relative; padding-bottom: 10px; margin-bottom: 18px;}
section h2::before{ content: ''; width: 105px; position: absolute; bottom: 0px; left: 0%; border-bottom: 2px solid #242424; z-index: 0; border-radius: 10px;}

section h3{ position: relative; padding-bottom: 10px; margin-bottom: 18px;}
section h3::before{ content: ''; width: 105px; position: absolute; bottom: 0px; left: 0%; border-bottom: 2px solid #242424; z-index: 0; border-radius: 10px;}

.share-social{width: auto; text-align: center; display: inline-block; background: #ffffff; border-radius: 6px; margin:0px; padding: 5px 5px;}
.share-social img{display: inline-block; margin: 0 5px;}

.about .cycle-ride-pic {width: 100%; display: inline-block; position: relative; z-index: 1;}
.about .cycle-ride-pic img{ border-radius: 6px;}
.about .cycle-ride-pic::before{content: ''; width: 150px; height: 140px; background-color: var(--background-pink-color); position:  absolute; right:-14px; bottom: -14px; z-index: -1; border-radius: 18px 18px 18px 10px;}
.about .cyleride-welcome p{ font-size: 15px; font-weight: 400; color: var(--default-color); line-height: 24px;}
.about .cyleride-welcome p a, .your-benefits p a{font-weight: 500;}
.about .cyleride-welcome p a:hover{color: #242424; text-decoration: underline;}
.about .cycle-ride-th {border-radius: 6px; position: relative; overflow: hidden;}
.about .cycle-ride-th a{ width: 100%; display: block; background-color: #FF1744;}
.about .cycle-ride-th a:hover img{ opacity: 0.5; border-radius: 6px; position: relative;  -webkit-transition: 0.3s ease; transition: 0.3s ease;}
.about .carousel-indicators{ position: relative; margin-bottom: 0rem; margin-top: 1rem;}
.about .carousel-indicators [data-bs-target] {height: 5px; background-color: #242424; opacity: 1;}
.about .carousel-indicators .active{background-color: #FF1744;}


.video-section{ width: 100%; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; position: relative; height: 100vh; background-position: center center; background-size: 100% 100%;}
.video-section::before {content: ""; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-color: rgb(0, 0, 0, 0.5);}
.video-section .video-caption{width: 100%; margin: 0; padding: 0; position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: center;}
.video-section .video-caption span {font-family: var(--default-font); position: relative; font-size: 36px; color: var(--accent-color); text-transform: uppercase; line-height: 36px; font-weight: 700; vertical-align: top; margin: 0; padding: 0;}
.video-section .video-caption .cyclothon-year{ font-family: var(--default-font); color: var(--contrast-color); font-size: 18px; font-weight: 600; margin-top: 1rem;}
.video-section .video-caption .video-icon {width: auto; display: inline-block; position: relative; margin: 0 40px;}
.video-section .video-caption .video-icon .popup-vimeo { position: relative; display: inline-block; width: 200px; height: 200px; 
  -webkit-transition-duration: 0.5s; -webkit-transition-delay: 0s; -webkit-transition-timing-function: ease-in-out; transition-duration: 0.5s; transition-delay: 0s; transition-timing-function: ease-in-out; border-color: #DEDEDE; border-radius: 500px; background: url(../images/btn_play_video_normal.webp) no-repeat center center; background-size: 100% 100%;}

.ridedetails .ride-event-pic { width: 100%; display: inline-block; position: relative; z-index: 1;}
.ridedetails .ride-event-pic img{border-radius: 6px;}
.ridedetails .ride-event-pic::before{content: ''; width: 150px; height: 140px; background-color: var(--background-pink-color); position:  absolute; left:-14px; bottom: -14px; z-index: -1; border-radius: 18px 18px 18px 10px;}

.table-pink {
  --bs-table-color:#fff;
  --bs-table-bg:#FF1744;
  --bs-table-active-bg:#FF1744;
  --bs-table-active-color:#fff;
    color:var(--bs-table-color);
  }

.ridedetails .ride-event-table table thead {--bs-table-color:#fff; --bs-table-bg:#FF1744; --bs-table-active-bg:#FF1744; --bs-table-active-color:#fff; color:var(--bs-table-color);}
.ridedetails .ride-event-table table thead th{font-family: var(--default-font);  color: var(--contrast-color); font-size: 14px; font-weight: 600; vertical-align: middle;}
.ridedetails .ride-event-table table tbody td{font-family: var(--default-font);  color: var(--default-color); font-size: 13px; font-weight: 500; letter-spacing: 0.5px;}

.coman-accordin .accordion-item{ margin-bottom: 1rem;}
.coman-accordin button:focus:not(:focus-visible){ box-shadow: none;}
.coman-accordin .accordion-button{font-family: var(--default-font); font-weight: 700; font-size: 16px;  color: var(--default-color); border: 1px solid #f2f2f2; border-top-left-radius: 6px; border-top-right-radius: 6px;}
.coman-accordin .accordion-button:not(.collapsed){ background-color: var(--background-pink-color); color: var(--contrast-color);}
.coman-accordin .accordion-button:not(.collapsed)::after{ /*content: "\F286"; font-family: "bootstrap-icons"; font-size: 18px; color: #ffffff; */ --bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");}
.coman-accordin .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{ border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}

.coman-accordin .accordion{ --bs-accordion-border-width:0px;}
.coman-accordin .accordion-body{border: 1px solid #f2f2f2; border-top: 0px;}
.coman-accordin .accordion-body p{font-family: var(--default-font); font-size: 15px; font-weight: 400; color: var(--default-color); line-height: 26px; margin-bottom: 0.8rem;}
.coman-accordin .accordion-body ul{ width: 100%; display: flex; flex-wrap: wrap; margin: 0px 0px 6px 0px; padding: 0px;}
.coman-accordin .accordion-body ul li{ width: 100%; display: flex; flex-wrap: wrap; justify-content: flex-start;
  align-content: flex-start; font-family: var(--default-font); font-size: 14px; font-weight: 400; color: var(--default-color); line-height: 26px; position: relative; margin: 0px 0px 6px 0px; padding: 0px 0px 0px 24px;}
.coman-accordin .accordion-body ul li a{font-family: var(--default-font); font-size: 14px; font-weight: 400; color: var(--heading-color); text-decoration: underline;}
.coman-accordin .accordion-body ul li a:hover{color: var(--default-color); text-decoration: none;}
.coman-accordin .accordion-body ul li::before{content: "\f135"; font-family: "bootstrap-icons"; font-size: 18px; position: absolute; left: 0px;}

.route-detail .download-map-btn{ margin-top: 1.5rem;}
.route-detail .map-route-pic{ width: 100%; display: inline-block; position: relative; z-index: 1;}
.route-detail .map-route-pic img{border-radius: 6px;}
.route-detail .map-route-pic::before{content: ''; width: 150px; height: 140px; background-color: var(--background-pink-color); position:  absolute; right:-14px; bottom: -14px; z-index: -1; border-radius: 18px 18px 18px 10px;}
.route-detail .rating-km{font-family: var(--default-font); font-size: 15px; font-weight: 600; color: var(--default-color); margin-top: 3rem;}
.route-detail .rating-km .stars-rating{ float: right; text-align: right;}
.route-detail .rating-km .stars-rating i{color: var(--default-color);}


.register-details .register-fee-table table th{font-family: var(--default-font);  color: var(--contrast-color); font-size: 18px; font-weight: 700; vertical-align: middle; text-align: center; padding: .8rem .5rem;}
.register-details .register-fee-table table tbody td{font-family: var(--default-font);  color: var(--default-color); font-size: 15px; font-weight: 400; text-align: center; letter-spacing: 0.5px;}
.register-details .register-fee-table table tbody td .ride-year{ display: inline-block; color: var(--contrast-color); background: #48BC26; font-family: var(--default-font); font-weight: 700; font-size: 16px; margin-bottom: 4px; padding: 10px 18px;}
.register-details .register-fee-table table tbody td .fees{font-family: var(--default-font);  color: var(--heading-color); font-size: 18px; font-weight: 700;}
.register-details .register-fee-table table tbody td a.register-now{ display: inline-block; color: var(--contrast-color); background: var(--background-pink-color); font-family: var(--default-font); font-weight: 700; font-size: 16px; display: inline-block; padding: 10px 28px; margin-bottom: 0.5rem; border-radius: 50px; transition: 0.5s;}
.register-details .register-fee-table table tbody td a.register-now:hover { color: var(--contrast-color); background: var(--default-color);}
.register-details .register-fee-table table tbody td .chekbox-register{ display: block;}
.register-details .register-fee-table table tbody td .chekbox-register a{ font-weight: 600;}
.register-details .register-fee-table table tbody td .chekbox-register a:hover{color: var(--default-color);}


.faq-main .faq-pic{width: 100%; display: inline-block; position: relative; z-index: 1;}
.faq-main .faq-pic img{border-radius: 6px;}
.faq-main .faq-pic::before{content: ''; width: 150px; height: 140px; background-color: var(--background-pink-color); position:  absolute; left:-14px; bottom: -14px; z-index: -1; border-radius: 18px 18px 18px 10px;}


.partners-main{background: url("../images/partner-bg.webp") no-repeat center top; background-attachment: scroll; position: relative;
background-attachment: fixed;}
.partners-main h3::before{ border-bottom: 2px solid #ffffff;}
.partners-main .owl-carousel .owl-item{ background-color: var(--background-color); border-radius: 6px; display: flex; flex-wrap: wrap; justify-content: center; align-content: center;}
.partners-main .owl-carousel .owl-item .partner-logo{ width: auto; height: 160px; }
.partners-main .owl-carousel .owl-nav{ display: none;}
.partners-main .owl-carousel .owl-dots {text-align: center; margin-top: 10px;}
.partners-main .owl-carousel button.owl-dot {width: 10px; height: 10px; background-color: var(--background-color); border-radius: 100%; margin: 0 5px; outline: none;}
.partners-main .owl-carousel button.owl-dot.active { width: 15px; height: 15px; background-color: var(--background-pink-color);}

.contact {--background-color: rgba(var(--accent-color-rgb), .03); position: relative; padding: 0px; margin-top:50px;}
.contact .getin-tuch-pic{ width: 50%; position: absolute; left: 0px; top: 0px; height: 100%;}
.contact .getin-tuch-pic img{ width: 100%; display: block; height: 100%;}
.contact .getin-tuch-pic::before{content: ''; position: absolute; background-color: rgb(0, 0, 0, 0.5); left: 0px; right: 0px; height: 100%;}
.contact .contnat-info{ padding: 30px 0px 20px 40px;}
.contact .contnat-info p{font-family: var(--default-font); font-size: 15px; font-weight: 400; color: var(--default-color); line-height: 22px;}
.contact .contnat-info ul {width: 100%; display: block; margin: 0px 0px 20px 0px; padding: 0px;}
.contact .contnat-info ul li{width: 100%; display: block; list-style: none; position: relative; font-family: var(--default-font); font-size: 15px; font-weight: 400; color: var(--default-color); line-height: 22px; margin: 0px 0px 14px 0px; padding: 0px 0px 0px 32px;}
.contact .contnat-info ul li a {font-family: var(--default-font); font-size: 15px; font-weight: 500; color: var(--default-color); text-decoration: none;}
.contact .contnat-info ul li a:hover {color: var(--accent-color);}
.contact .contnat-info ul li i {position: absolute; left: 0px; top: 2px; font-size: 20px;}
.contact .contnat-info .form-control{ font-size: 15px; resize: none; padding: .675rem .75rem;}
.contact .contnat-info .form-control:focus {color: var(--bs-body-color); background-color: var(--bs-body-bg); border: 1px solid #ff1744; outline: 0; box-shadow:none;}
.contact .contnat-info .btn-primary{ box-shadow: none; outline: none; border: none; line-height: initial; padding: 12px 28px;}
.contact .contnat-info #cyclothone_contactfrm .error{font-size: 14px; color: #FF0000;}
.contact .contnat-info #successmessage{ font-size: 14px; color: #008000;}

/* --- Responsive Class Start --- */
@media (max-width: 1100px) {
  .video-section .video-caption .video-icon .popup-vimeo{ width: 150px; height: 150px;}
}

@media (max-width: 991px) {
  .h1, h1 {font-size: calc(1.175rem + 1.1vw);}
  
  .hero h1 {font-size: 56px;}
  .hero p {font-size: 22px; line-height: 28px;}
  section, .section{padding:30px 0px;}

  .about .cycle-ride-pic {margin-bottom: 2rem;}
  .about .carousel.ps-5{ padding-left: calc(var(--bs-gutter-x) * .5) !important;}

  .video-section{ height: 100%;}
  .video-section .video-caption .video-icon .popup-vimeo{ width: 120px; height: 120px;}

  .ridedetails .ride-event-pic{margin-bottom: 2rem;}
  .ridedetails .ride-event-table .table-responsive.ps-3{padding-left: 0px !important;}

  .faq-main .faq-pic{margin-bottom: 2rem;}

  .partners-main {background-attachment: scroll;}

  .contact .getin-tuch-pic{ width: 100%; position: relative;}  
  .contact .contnat-info {padding: 30px 0px 20px 0px;}
}

@media (max-width: 767px) { 

  .h1, h1 {font-size: calc(1rem + 1vw);}
  .h4, h4 {font-size: calc(1rem + .3vw);}

  .header .logo img{max-height: 80px;}
  .index-page.scrolled .logo img {max-height: 66px;}

  .hero h1 {font-size: 46px; line-height: 40px;}
  .hero p {margin: 0px 0 14px 0; font-size: 22px;}
  .hero span {font-size: 22px; margin-bottom: 0.5rem;}

  .video-section .video-caption span{ font-size: 28px;}
  .video-section .video-caption .video-icon {margin: 0 20px;}
  .video-section .video-caption .video-icon .popup-vimeo {width: 80px; height: 80px;}

  .ridedetails .ride-event-table table{ width: 1000px;}

  .register-details .register-fee-table table{ width: 650px;}

  .footer .social-links{ text-align: center; justify-content: center;}
  .footer .copyright{text-align: center !important;}
}

@media (max-width: 599px) {
  .hero p {font-size: 20px; line-height: 24px;}

  .video-section .video-caption .cyclothon-year{ font-size: 16px;}

  .register-details .register-fee-table table tbody td .ride-year{ font-size: 14px;}
  .register-details .register-fee-table table tbody td a.register-now{font-size: 14px; padding: 10px 18px;}
}

@media (max-width: 479px) { 

  .header .logo img{max-height: 60px;}
  .index-page.scrolled .logo img {max-height: 50px;}

  .hero h1 {font-size: 40px; line-height: 40px;}
  .hero p {font-size: 16px; line-height: 22px;}

  .about .cycle-ride-pic::before, .ridedetails .ride-event-pic::before, .route-detail .map-route-pic::before, .faq-main .faq-pic::before {right: auto; left: 50%; transform: translateX(-50%);}

  .video-section .video-caption span {font-size: 24px;}

  .route-detail .rating-km .stars-rating{ float: left; text-align: left;}
  
    
}

