@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;600&display=swap');
@font-face {
  font-family: 'Cornerstone';
  src: url('fonts/Cornerstone.eot');
  src: url('fonts/Cornerstone.eot?#iefix') format('embedded-opentype'), url('fonts/Cornerstone.woff2') format('woff2'), url('fonts/Cornerstone.woff') format('woff'), url('fonts/Cornerstone.svg#Cornerstone') format('svg');
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-007A;
}
:root {
  --color-yellow: 248 205 39; /* #f8cd27 in decimal RGB*/
  --color-black: 0 0 0; /* #000000 in decimal RGB*/
  --color-grey: 112 112 112; /* #707070 in decimal RGB*/
  --color-darkgrey: 15 15 15; /* #0f0f0f in decimal RGB*/
  --color-white: 255 255 255; /* #ffffff in decimal RGB*/
  --color-red: 238 36 36; /* #ee2424 in decimal RGB*/
}
body {
  font-family: 'Roboto Condensed', sans-serif;
  background: rgb(var(--color-black));
  color: rgb(var(--color-white));
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 26px;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: 'Cornerstone';
  letter-spacing: -.05em;
}
h1, .h1 {
  font-size: clamp(40px, 4vw, 48px);
}
h2, .h2 {
  font-size: clamp(36px, 4vw, 40px);
}
h3, .h3 {
  font-size: clamp(30px, 4vw, 36px);
}
h4, .h4 {
  font-size: clamp(24px, 4vw, 30px);
}
h5, .h5 {
  font-size: clamp(20px, 4vw, 24px);
}
h6, .h6 {
  font-size: 18px;
}
.font2 {
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: normal;
}

a {
	text-decoration: none;
	padding-bottom: 3px;
	box-shadow: inset 0 0 0 0;
	transition: all 0.3s ease-in-out;
}
a:hover{
	box-shadow: inset 0 -1px 0 0px;
}

#preloader {
  background: rgb(var(--color-black)) url(images/loading.gif) no-repeat center center;
  background-size: 5%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}
header {
  transition: background ease .2s;
}
.page-home header{
	background: rgb(var(--color-black)) / 0%;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}
.page-home #content{padding-top: 0;}
.page-home .navbar-brand{display: none;}

header, header.shrink {
  background: rgb(var(--color-black) / 80%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

#content{padding-top:140px;}



.hero-wraper {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}
/*.hero-wraper video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}*/
.hero-wraper .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  opacity: .5;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: clamp(24px, 4vw, 72px);
  line-height: 30px;
}
.hero-wraper-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(var(--color-black));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 100%);
  z-index: 1;
}
section, .section {
  padding-bottom: 6vw;
  padding-top: 6vw;
}
.logo-bg, .bg1, .bg2 {
  position: relative;
  isolation: isolate;
}
.logo-bg:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url(images/logo-white.png) no-repeat center -3rem;
  background-size: 50%;
  opacity: .05;
}
.bg1:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("images/vehicle-back.jpg") no-repeat center;
  background-size: cover;
  opacity: .1;
}
.bg1:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 100%);
}
.bg2:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("images/guitar-bg.png") no-repeat center;
  background-size: 100%;
  opacity: .1;
}



.navbar {
  z-index: 10;
}
.navbar-brand {
  max-width: 100px;
  width: 100%;
	    z-index: 1;
}
.nav{gap:30px;}
.nav-item a {
  color: rgb(var(--color-white));
  text-transform: uppercase;
  font-size: 16px;
	padding-inline: 0;
	box-shadow: inset 0 0 0 0;
	transition: all 0.3s ease-in-out;
}
.nav-item a:hover, .nav-link.active, .nav-link:focus, .nav-link:hover {
  color: rgb(var(--color-yellow));
	box-shadow: inset 0 -2px 0 0px;
}

.hamburger .line{
  width: 36px;
  height: 3px;
  background-color: #ecf0f1;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger:hover{
  cursor: pointer;
}
.hamburger.is-active .line:nth-child(2){
  opacity: 0;
}
.hamburger.is-active .line:nth-child(1){
  -webkit-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  -o-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}
.hamburger.is-active .line:nth-child(3){
  -webkit-transform: translateY(-12px) rotate(-45deg);
  -ms-transform: translateY(-12px) rotate(-45deg);
  -o-transform: translateY(-12px) rotate(-45deg);
  transform: translateY(-12px) rotate(-45deg);
}


.ban-img {
  position: relative;
  margin-bottom: 4vw;
  border-radius: 50%;
  border: 6px solid rgb(var(--color-red));
  overflow: hidden;
  aspect-ratio: 1/1;
}
.ban-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ban-img:before {
  content: '';
  position: absolute;
  inset: 50% 0;
  background: red;
  height: 6px;
  transform: rotate(-45deg);
}
.btn {
  border: 0;
	border-radius: 0;
  position: relative;
  text-transform: uppercase;
  isolation: isolate;
  font-size: 24px;
  font-weight: 600;
  padding: 15px 50px;
  line-height: normal;
}
.btn, .btn:hover, .btn:focus-visible, :not(.btn-check)+.btn:active {
  background: transparent;
box-shadow: none;
	
}
.btn:before {
  content: '';
  position: absolute;
  inset: 0;
  transform: skew(-21deg);
  z-index: -1;
}
.btn:after {
	content: '\F138';
	font-family: bootstrap-icons;
	font-weight: 400;
	position: absolute;
    inset: 0;
    transform: skew(-21deg);
    display: grid;
    place-content: center;
	width: 0;
	transition: all .2s ease-out;
	font-size: 0;
}
.btn:hover:after {
    width: 100%;
	font-size: inherit;;
}
input.btn:after,input.btn:before{display: none;}
.btn-primary, .btn-primary:hover{
  color: rgb(var(--color-black));
}
.btn-primary:before {
  background: rgb(var(--color-yellow));
}
.btn-primary:hover:before {
  background: rgb(var(--color-yellow));
}
.btn-primary:after {
  background: rgb(var(--color-grey));
	color: rgb(var(--color-white))
}
input.btn-primary{background: rgb(var(--color-yellow));}
input.btn-primary:hover{background: rgb(var(--color-grey)); color: white!important;}
.btn.active{background: rgb(var(--color-grey));}
.btn:first-child:active{background: rgb(var(--color-grey))!important; border-color:rgb(var(--color-grey))!important;}

.btn-lg { font-size: 36px; }
.btn-sm { font-size: 18px; }
.btn-xs { font-size: 18px; padding:10px 40px;}
.text-primary {
  color: rgb(var(--color-yellow)) !important
}
.text-secondary {
  color: rgb(var(--color-grey)) !important
}
.bg-dark {
  background: rgb(var(--color-black)) !important;
}
.bg-secondary {
  background: rgb(var(--color-darkgrey)) !important;
}
.social {
  display: flex;
  gap: 15px;
}
.social a {
  color: rgb(var(--color-white));
  transition: 0.2s;
}
.social a:hover {
  color: rgb(var(--color-yellow));
}


/*--------Global swiper slider start---------*/

.swiper-container-wrapper {
	display: flex;
	flex-flow: column nowrap;
	height: 400px;
	gap:15px;
}
.swiper-slide {
	background: rgb(var(--color-black));
}
.swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper-button-next, .swiper-button-prev {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='' height='' fill='' class='bi bi-arrow-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8'/%3E%3C/svg%3E");
  -webkit-mask: var(--svg);
  mask: var(--svg);
  background-color: rgb(var(--color-yellow));
  transition: background-color 0.2s;
  width: 50px;
  height: 50px;
  background-size: 100%;
  -moz-background-size: 100%;
  -webkit-background-size: 100%;
}
.swiper-button-next {
  right: 30px;
  left: auto;
}
.swiper-button-prev {
  left: 30px;
  right: auto;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: rgb(var(--color-white));
}
.swiper-button-next:after, .swiper-button-prev:after {display: none;}


/*--------Home slider start---------*/

/*.home-slider{height: 580px;}*/
.home-slider .swiper-slide {
  cursor: url(http://localhost/thebikebuckle/images/gallery1.jpg) 36 36, auto;
}

.home-slider .swiper-slide img {
  opacity: .4;
  aspect-ratio: 4/5;
}
.home-slider .swiper-slide.swiper-slide-active img {
  opacity: 1;
}


.contactaddress{
  display: flex;
  gap: 10px;
  margin: 30px 0;
  line-height: 24px;
  justify-content: center;
  align-items: center;
}
.contactaddress i{
  font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 2px solid #fff;
}

/*--------Home slider end---------*/

.form-control{margin-bottom:30px; font-size: 14px; background:#fff; border: 0; border-bottom:1px solid #ccc;border-radius: 0;}
textarea.form-control{height:150px!important;}
textarea.form-control{height:140px!important;}
.form-control:focus{box-shadow:none; border-color:#2e8b5b;}
.error{color:#F10307; display:block; margin-top:10px;}
.form-floating>.form-control{padding-left:0;color: #000;}
.form-control::placeholder { color: #3a3a3a !important; opacity: 1;}


input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 50px white inset !important;
}

.accessory-box{
	border: 1px solid #3c3c3c;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    padding-left: 40px;
}
.accessory-box .form-check-label{ display: flex; gap: 15px;}
.accessory-box .form-check-label img{max-width: 80px;}

/*--------Product page slider start---------*/

.gallery-top, .gallery-thumbs {
	width: 100%;
	height: 100%;
}
.gallery-thumbs{
	height: 150px;
}
.gallery-thumbs .swiper-wrapper {
	flex-direction: row;
}
.gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

/*--------Product page slider end---------*/

/*--------Global swiper slider end---------*/


.accordion-item{
	color: #FFFFFF;
	border-color: rgb(222 226 230 / 45%);
}
.accordion-button{
	color: #fff;
    padding-inline: 0;
}
.accordion-item, .accordion-button, .accordion-button:not(.collapsed){background-color: transparent;}
.accordion-button:not(.collapsed){color: #f8cd27; -webkit-box-shadow: inset 0 -1px 0 0#f8cd27;
box-shadow: inset 0 -1px 0 0 #f8cd27;}
.accordion-body{padding-inline:0}
.accordion-button::after{
	filter: invert(100%) sepia(5%) saturate(0%) hue-rotate(94deg) brightness(100%) contrast(100%);
}

.box-dimension {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 6vw;
  position: relative;
}
ul.box-dimension:before {
  content: '';
  position: absolute;
  height: 3px;
  background: rgb(var(--color-yellow));
  inset: calc(50% - 32px) 0 0 0;
}
.box-dimension li {
  z-index: 1;
}
.box-dimension li img {
  --shadow-color:rgb(var(--color-yellow));
  aspect-ratio: 1/1;
  width: 100%;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--shadow-color);
  padding: 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}
.box-dimension li:hover img {
  box-shadow: inset 0 0 0 15px var(--shadow-color);
}

.center-xy {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.cb-video-container {
  position: relative;
}

.video {
  display: block;
}

.play-pause--click-area {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
}

.play-pause--container {
  position: relative;
  width: 30px;
  height: 30px;
}
.play-pause--container .play-pause--icon {
  margin: auto;
  right: 0;
  left: 0;
  position: absolute;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}
.play-pause--container .play-icon {
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-bottom-width: 15px;
  border-top-width: 15px;
  border-left: 25px solid #fff;
}
.play-pause--container .pause-icon {
  background-color: #fff;
  width: 10px;
  height: 30px;
  left: -10px;
  position: absolute;
}
.play-pause--container .pause-icon:after {
  content: "";
  background: inherit;
  width: 10px;
  height: 30px;
  left: 15px;
  position: absolute;
}




footer {
  font-size: 14px;
	border-top: 1px solid rgb(var(--color-darkgrey));
}
footer a {
  text-decoration: none;
  color: rgb(var(--color-white));
}
footer a:hover {
  text-decoration: none;
  color: rgb(var(--color-yellow));
}



@media (min-width: 576px) {
	.swiper-container-wrapper { flex-flow: row-reverse nowrap; height: 500px; }
	.gallery-top { width: 80%; }
	.gallery-thumbs { width: 20%; height: 100%; }
	.gallery-thumbs .swiper-wrapper { flex-direction: column; }
}
/* @media (min-width: 768px) {
	.page-home #topnav{position: relative;}
} */
@media (min-width: 992px) {
	#topnav{ position: absolute; inset: 0; }
}
/*`sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.home-slider { height: 300px; }
		.box-dimension{flex-flow: column;}
	ul.box-dimension:before{display: none;}
}

/*`md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
	.page-home header, .page-home header.shrink {
  background: rgb(var(--color-black) / 80%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
	.hero-wraper{height: inherit; padding-bottom: 10vw; padding-top: 150px;}
	.home-slider { height: 400px; }
		.nav { gap:0; }
	.nav-item { width: 100%; border-top: 1px solid rgb(var(--color-yellow)); }

	#preloader { background-size: 15%; }
	.btn{font-size: 14px;}
	.btn-lg{font-size: 24px;}
	footer{text-align: center;}
	.social {justify-content: center;}
}

/*`lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
  .nav{gap:15px;}
	.nav-item a {font-size: 12px;}
  .buynow{padding:8px 20px!important;}
}

/*`xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
	
}

/*`xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
	
}