/* Theme Stylesheet */


/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');

body{
     font-family: "Open Sans", sans-serif;
	line-height: 33px;
	font-weight: 400;
	background-color: #fff;
}


/* Font Styles */

h1{
	font-size: 60px;
	line-height: 70px;
    font-weight: 400;
     font-family: "Open Sans", sans-serif;
	color:#3c3c3b;
}

h2{
	font-size: 40px;
	line-height: 60px;
    font-weight: 700;
     font-family: "Open Sans", sans-serif;
	 color:#0b405e;
    text-transform: initial
	
}
h3{
	font-size: 32px;
	line-height: 40px;
    font-weight: 400;
     font-family: "Open Sans", sans-serif;
	color:#3c3c3b;
    text-transform: initial;
}
h4{
	font-size: 24px;
	line-height: 32px;
    font-weight: 400;
     font-family: "Open Sans", sans-serif;
	color:#3c3c3b;
    text-transform: initial;
}
h5{
	font-size: 20px;
	line-height: 30px;
    font-weight: 400;
     font-family: "Open Sans", sans-serif;
	color:#3c3c3b;
    text-transform: initial;
}
h6{
	font-size: 18px;
    line-height: 24px;
    font-weight: 400;
     font-family: "Open Sans", sans-serif;
	color:#3c3c3b;
    text-transform: initial;
}
p{
	font-size: 16px;
    line-height: 26px;
    font-weight: 400;
     font-family: "Open Sans", sans-serif;
    color: #3c3c3b;
	padding-bottom: 20px;
}
p:last-child{
	padding-bottom: 0;
}
small, small a{
	font-size: 13px;
    line-height: 18px;
	display: inline-block;
    font-weight: 400;
     font-family: "Open Sans", sans-serif;
}
a{
	font-size: 16px;
    line-height: 26px;
    font-weight: 400;
     font-family: "Open Sans", sans-serif;
    color: #e53e30;
}
a:hover{
	text-decoration:none;
}

/* Buttons */

.btn{
	background-color: #0b405e;
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	 font-family: "Open Sans", sans-serif;
	font-weight: 400;
    height: auto;
    padding: 10px 30px;
    line-height: initial;
    text-align: center;
    margin-top: 10px;
    border-radius: 5px !important;
    box-shadow: none;
    border: 0;
}
.btn:hover{
    background-color: #3290b5!important;
	color: #fff;
}
.btn-second{
	background-color: #8f8f8f;
	color: #fff;
}
.btn-second:hover{
    background-color: #e53e30!important;
	color: #fff;
}
.btn-outline{
	color:#3c3c3b;
	background-color: transparent;
	border: 1px solid #3c3c3b;
}
.btn-outline:hover{
	color:#fff;
	background-color: #3c3c3b!important;
	border: 1px solid #3c3c3b;
}

@media (max-width:390px){
	.btn {
		font-size: 16px;
		padding: 5px 12px;
	}
}
@media (max-width:360px){
	.btn {
		font-size: 14px;
		padding: 5px 12px;
	}
}


@media (max-width:767px){
	h2 {
		font-size: 33px;
		line-height: 40px;
		font-weight: 700;
		padding-bottom: 10px;
	}
}


/* Main Blog Page */

.blog-page{
	margin:40px 0 30px 0;
}
.blog-page .col-md-3{
	margin-bottom:50px;
}
.blog h1{
	text-align:center;
}
.blog .date{
	color:#0b405e;
}
.blog-page .bg-image {
    min-height: 300px;
    margin-bottom:15px;
}
.blog-page .button{
    font-weight:700;
    margin-top:15px;
	color:#0b405e;
}
.blog-page h3{
	font-weight: 700;
    color: #0b405e;
    padding-bottom: 20px;
}
.blog-page #nav-below{
	display: flex;
    justify-content: center;
	margin-bottom: 80px;
}
.blog-page .nav-next a{
	display: flex;
    align-items: center;
}
.blog-page .nav-previous a{
	display: flex;
    align-items: center;
}
.blog-page .nav-next i{
	margin-left: 10px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    background-color: #3c3c3b;
    padding: 9px 14px 7px 15px;
    border-radius: 50px;
    line-height: 24px;
}
.blog-page .nav-previous i{
    margin-right: 10px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    background-color: #3c3c3b;
    padding: 9px 14px 7px 15px;
    border-radius: 50px;
    line-height: 24px;
}

/* Blog Page Responsive */
@media (max-width: 1536px){

}
@media (max-width: 1440px){

}
@media (max-width: 1366px){

}
@media (max-width: 1280px){

}
@media (max-width: 1024px){
	.blog-page .col-md-3{
		width:33.3333%;
		flex: 0 33.3333%;
		max-width:33.3333%;
		margin-bottom:30px;
	}
}
@media (max-width: 800px){
	.blog-page .col-md-3{
		width:50%;
		flex: 0 50%;
		max-width:50%;
		margin-bottom:30px;
	}
}
@media (max-width: 768px){
}
@media (max-width: 414px){
	.blog-page .col-md-3{
		width:100%;
		flex: 0 100%;
		max-width:100%
	}
}
@media (max-width: 390px){

}
@media (max-width: 360px){

}




/* Single Blog Post */
.single-blog{
	margin:80px auto;
}
.single-blog .left-col{
	padding-right:60px;
}
.single-blog h1{
	margin-top:0;
}
.single-blog img{
	width:100%;
	height:auto;
	margin-bottom:40px;
}
.single-blog .btn{
	margin-top:40px;
}
.single-blog .related{
	flex-flow:row wrap;
}
.single-blog .related-title{
	padding-bottom:20px;
}
.single-blog .related ul{
	width:100%;
	display: flex;
	margin-bottom:20px;
}
.single-blog .related ul li{
	width:100%;
	display: flex;
}
.single-blog .related ul a{
	width:100%;
	display: flex;
	flex-direction:row;
	align-items:center;
}
.single-blog .related .bg-image{
	min-height:100px;
	width:50%;
}	
.single-blog .related .content{
	padding-left:20px;
}


/* Single Blog Post Responsive */
@media (max-width: 1536px){

}
@media (max-width: 1440px){

}
@media (max-width: 1366px){

}
@media (max-width: 1280px){

}
@media (max-width: 1024px){
	.single-blog .left-col{
		width:100%;
		flex: 0 100%;
		max-width:100%;
		padding-right:15px;
	}
	.single-blog .right-col{
		width:100%;
		flex: 0 100%;
		max-width:100%;
		margin-top:40px;
	}
	.single-blog .right-col .row{
		margin:0;
	}
	.single-blog .right-col ul{
		width:50%;
		flex: 0 50%;
		max-width:50%;
	}
}
@media (max-width: 800px){

}
@media (max-width: 768px){

}
@media (max-width: 414px){
	.single-blog .right-col ul{
		width:100%;
		flex: 0 100%;
		max-width:100%;
	}
}
@media (max-width: 390px){

}
@media (max-width: 360px){

}



.alioth-page-nav .page-title{
	line-height: 150px;
}


#about h2{
    font-weight: 700;
    padding-bottom: 10px;
	color:#0b405e;
}


.join-box{
	padding:60px 0;
}

.join-box h4{
	color: #fff;
    font-size: 35px;
    font-weight: 700;
}
.join-box p{
	color: #fff;
	padding-top:20px;
	padding-bottom: 0;
}

.join-box .btn{
	background-color: #fff;
	color:#0b405e;
}

.join-box .btn:hover{
	background-color: #f1e6d5 !important;
}

.bg-alt {
	background-color: #f8f9fa;
}




.hero {
	background: url('https://wp.dev.calpecyclingclub.pirstack.com/wp-content/uploads/2025/07/20231203_1355500-1.jpg') no-repeat center center;
	background-size: cover;
	color: white;
	padding: 120px 0;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
	position: relative;
  }


  .hero::after{
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color:#000;
  opacity: 0.4;

}
.hero .container{
  position: relative;
  z-index: 9;
}

  .hero h1 {
	font-size: 3rem;
	font-weight: bold;
	color:#fff;
	margin-bottom:0;
  }
  .hero p{
	  color:#fff;
  }
  .section {
	padding: 60px 0;
  }
  .bg-light-gray {
	background-color: #f9f9f9;
  }
  
@media (max-width: 768px){
	.hero h1{
		line-height: 55px;
		padding-bottom: 20px;
	}

	.acf-map{
		height: 400px !important;
		position: relative;
		overflow: hidden;
	}


}


.booqable-product-list-notice{
	display: none !important
}



.single-post .content h3{
	padding-bottom: 9px;
    color: #0b405e;
    font-size: 25px;
}
.single-post .content ul{
	list-style: disc;
    padding-left: 20px;
    padding-bottom: 20px;
}