@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #ff0000;
  --secondary: #131313;
  --tertiary: #030303;
  --dark: #131313;
  --quarternary: #3b3b3b;
  --border-primary: #ff0000;
  --ff-primary: "Binson", sans-serif;
  --ff-secondary: "Inter", sans-serif;

  --section-divider-height: 60;
  --section-divider-width: 1920;
  --section-divider-ratio: calc(
    100% * var(--section-divider-height) / var(--section-divider-width)
  );
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ff-primary);
}
body {
  margin: 0;
  background-color: #000000;
}
.text-white-50 {
  color: #ffffff80 !important;
}
select,
option {
  font-family: var(--ff-secondary) !important;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1400px;
}
.navbar .badge {
  margin: 0 5px;
}
.-mt-65 {
  margin-top: -65px;
}
@media screen and (max-width: 767px) {
  .header {
    background-color: #000000;
  }
}
.h-8 {
  height: 64px !important;
}
.h-50xl {
  height: 500px !important;
}
.badge {
  font-size: 20px !important;
  border-radius: 0px;
  font-weight: 400 !important;
}
@media (max-width: 767px) {
  .topbar .border-left {
    border-left: 0 !important;
  }
  .navbar-brand img {
    width: 80px;
  }
}

@media (max-width: 430px) {
  .badge {
    font-size: 16px;
    border-radius: 0px;
    font-weight: 400 !important;
  }
}
.form-control {
  box-sizing: border-box;
  height: 60px;
  background: #333333;
  border: 1px solid #505050;
  font-family: Inter, sans-serif;
  color: #ffffff;

  font-size: 20px;
}
.form-control::placeholder {
  color: #979797;
}
.form-control:focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #ff0000;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(255 0 0 / 22%);
}
.navbar-toggler {
  color: var(--primary);
  background-color: #ffffff;
  border: var(--bs-border-width) solid var(--primary);
}
.bg-dark {
  background-color: var(--dark) !important;
}
.bg-secondary {
  background-color: #131313 !important;
}
.bg-secondary-100 {
  background-color: #e8ecee !important;
}
.bg-white {
  background-color: #ffffff !important;
}
.p-100 {
  padding: 100px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-bold {
  font-weight: 600 !important;
}
a.nav-link {
  text-transform: uppercase;
}

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
}
a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: var(--primary) !important;
}
a.text-primary:focus,
a.text-primary:hover {
  color: var(--primary) !important;
}
button {
  outline: 0;
  border: 0;
}
.mw-75 {
  max-width: 75% !important;
}
a:hover {
  opacity: 1 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  text-transform: uppercase;
  line-height: 1;
}
h1 {
  font-size: 72px;
  font-weight: 700;
}

h2 {
  font-size: 48px;
  font-weight: 700;
}
h3 {
  font-size: 36px;
  font-weight: 700;
}
h4 {
  font-size: 24px;
  font-weight: 600;
}
h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em !important;
}
h6 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 430px) {
  h1 {
    font-size: 60px;
    font-weight: 700;
  }
  h2 {
    font-size: 44px;
    font-weight: 700;
  }
  h3 {
    font-size: 30px;
    font-weight: 700;
  }
  h4 {
    font-size: 24px;
    font-weight: 700;
  }
  h5 {
    font-size: 20px;
    font-weight: 400;
  }
}

.rounded-5 {
  border-radius: 0.625rem !important;
}

p,
a,
label,
span,
li,
div {
  font-family: var(--ff-secondary);
}
.text-body {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

a {
  text-decoration: none;
  color: var(--primary);
  opacity: 1;
  transition: all 0.356s;
}
a:hover {
  opacity: 0.65;
  transition: all 0.356s;
}
label {
  font-size: 18px;
}
html,
body {
  overflow-x: hidden;
}

.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 10;
}
.z-2 {
  z-index: 20;
}

.z-9 {
  z-index: 999999;
}

.invert {
  filter: invert(100%) !important;
}

.mirror {
  transform: scaleX(-1) !important;
}

.min-h-inherit {
  min-height: inherit;
}

.o-cover {
  object-fit: cover;
}

.w-short {
  width: 75%;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 1200px) {
  .col-xl-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }
}

.rotate-45 {
  rotate: 45deg;
}

/****************************
  *************Form**************
  ****************************/

/****************************
  *************BG**************
  ****************************/
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-tertiary {
  background-color: var(--tertiary) !important;
}
.bg-quarternary {
  background-color: var(--quarternary) !important;
}
.bg-black {
  background-color: #000000 !important;
}

.bg-gradient {
  background: #ff0000;
  background: -moz-linear-gradient(
    90.01deg,
    #ff0000 20.69%,
    rgba(8, 177, 244, 0) 97.66%
  );
  background: -webkit-linear-gradient(
    90.01deg,
    #ff0000 20.69%,
    rgba(8, 177, 244, 0) 97.66%
  );
  background: linear-gradient(
    90.01deg,
    #ff0000 20.69%,
    rgba(8, 177, 244, 0) 97.66%
  ) !important;
}

/****************************
  *************BORDER**************
  ****************************/
.border-primary {
  border-color: #ff0000 !important;
}
.border-secondary {
  border-color: var(--secondary) !important;
}
.border-tertiary {
  border-color: var(--tertiary) !important;
}
.border-quarternary {
  border-color: var(--quarternary) !important;
}

/****************************
  ************FONT*************
  ****************************/
.font-primary {
  font-family: var(--ff-primary) !important;
}

.font-secondary {
  font-family: var(--ff-secondary) !important;
}

/****************************
  ************TEXT*************
  ****************************/
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-tertiary {
  color: var(--tertiary) !important;
}
.text-quarternary {
  color: var(--quarternary) !important;
}
.text-white {
  color: #ffffff !important;
}

/****************************
  **********DIVIDER************
  ****************************/
.has-divider {
  position: relative;
  padding-bottom: var(--section-divider-ratio);
}
.section-divider {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
}

/****************************
  *********NAVIGATION**********
  ****************************/
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #fff;
}
.navbar-light .navbar-nav .nav-link {
  color: #ffffff80;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:hover {
  color: #ffffff;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #ffffff !important;
}
.navbar-light .navbar-nav .nav-link.active {
  color: #ffffff !important;
  background: transparent;
  border-bottom: 2px solid #ff0000;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #ffffff !important;
  background: transparent;
  text-decoration: none;
  border-bottom: none !important;
}
.dropdown-menu {
  padding: 10px 20px;
}
nav li a {
  margin: 0;
  padding: 10px 15px !important;
  background-color: transparent;
  transition: background-color 0.25s, color 0.25s;
}
@media screen and (max-width: 888px) {
  .center-logo {
    width: 15%;
  }
  nav li a {
    padding: 10px 0px !important;
  }
}
@media screen and (max-width: 1065px) {
  .nav-link {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 1220px) {
  .center-logo {
    padding: 0 80px 0px 80px;
  }
}
.navbar-nav {
  justify-content: space-between;
}
.nav-link {
  font-family: var(--ff-primary);
  font-size: 24px;
  position: relative;
  letter-spacing: 1.1px;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent;
}

#navbarDropdown:hover + .dropdown-menu {
  display: block;
}
.dropdown-menu:hover {
  display: block;
}
.dropdown-menu {
  display: none;
}

.hero-section {
  padding-top: 101px;
}

.swiper-button-prev,
.swiper-button-next {
  color: white;
  width: 15px;
  height: 30px;
}
.home-banner-section .col {
  width: 100%;
  height: 715px;
  overflow: hidden;
}
.bg-otbminimoto {
  background-image: url("../../images/otb-minimoto.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

img.logo-img {
  /* mix-blend-mode: luminosity;
  opacity: 0.3; */
  object-fit: contain;
  margin: 10px;
}
.required-sign {
  color: #ff0000;
}
.copywrite-text {
  font-size: 16px;
  color: #fff;
}
.social-icons-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .copywrite-text {
    text-align: center;
  }
  .social-icons-wrapper {
    justify-content: center;
    margin-top: 30px;
  }
}
.home-banner-section {
  background-image: url("../../images/home-banner-img.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.badge-white {
  position: relative;
  width: 100%;
  max-width: 200px;
  height: 60px;
  background: #ff0000;
  color: #fff;
  transform: translate3d(0px, 0%, 0px);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  transition-delay: 0.6s;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.badge-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 50% 50% 0 0;
  transform: translateY(100%) scaleY(0.5);
  transition: all 0.6s ease;
}

.badge-white::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--primary);
  background: #fff;
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition: all 0.6s ease;
}

.badge-white div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 20px;
  overflow: hidden;
  z-index: 999999;
}

.badge-white span {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  transition: transform 0.5s ease;
}

.badge-white span:first-child {
  color: #fff;
  transform: translateY(24px);
}

.badge-white span:last-child {
  color: #ff0000;
  transform: translateY(0);
}

.badge-white:hover {
  background: #ffffff;
  transition: background 0.2s linear;
  transition-delay: 0.6s;
}

.badge-white:hover::after {
  border-radius: 0 0 50% 50%;
  transform: translateY(-100%) scaleY(0.5);
  transition-delay: 0;
}

.badge-white:hover::before {
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition-delay: 0;
}

.badge-white:hover span:first-child {
  transform: translateY(0);
}

.badge-white:hover span:last-child {
  transform: translateY(-24px);
}

/* end badge-white */

.badge {
  position: relative;
  width: 100%;
  max-width: 200px;
  height: 60px;
  background: #fff;
  transform: translate3d(0px, 0%, 0px);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  transition-delay: 0.6s;
  overflow: hidden;
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50% 50% 0 0;
  transform: translateY(100%) scaleY(0.5);
  transition: all 0.6s ease;
}

.badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  background: var(--primary);
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition: all 0.6s ease;
}

.badge div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 20px;
  overflow: hidden;
  z-index: 999999;
}

.badge span {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  transition: transform 0.5s ease;
}

.badge span:first-child {
  color: #ff0000;
  transform: translateY(24px);
}

.badge span:last-child {
  color: #fff;
  transform: translateY(0);
}

.badge:hover {
  background: #ff0000;
  transition: background 0.2s linear;
  transition-delay: 0.6s;
}

.badge:hover::after {
  border-radius: 0 0 50% 50%;
  transform: translateY(-100%) scaleY(0.5);
  transition-delay: 0;
}

.badge:hover::before {
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition-delay: 0;
}

.badge:hover span:first-child {
  transform: translateY(0);
}

.badge:hover span:last-child {
  transform: translateY(-24px);
}
.web-list li::marker {
  color: #ff0000;
}

.foot-pages-section {
  background-image: url(../../images/Honda.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.chain-adjuster-section {
  background-image: url(../../images/chain-adjuster-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.shark-covers-section {
  background-image: url(../../images/shark-covers-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.swiper-button-prev.inner-btn,
.swiper-button-next.inner-btn {
  top: 50%;
  transform: translate(-50%, -50%);
}
.swiper-button-prev.inner-btn {
  left: 50px !important;
}
.swiper-button-next.inner-btn {
  right: 35px;
}

.cam-cover-section {
  background-image: url(../../images/cam-cover-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.kawasaki-section {
  background-image: url(../../images/kawasaki-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  .text-sm {
    font-size: 30px;
  }
}

.see-thru-section {
  background-image: url(../../images/Kawasaki.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.obt-transparent-section {
  background-image: url(../../images/obt-transparent-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.video-feature-section {
  background-image: url(../../images/video-feature-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.install-section {
  background-image: url(../../images/install-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.contact-section {
  background-image: url(../../images/contact-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.warranty-section {
  background-image: url(../../images/warranty-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
