/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: Roboto-Medium;
  src: url('../fonts/Roboto-Medium.ttf');
}
@font-face {
  font-family: Roboto-Regular;
  src: url('../fonts/Roboto-Regular.ttf');
}
@font-face {
  font-family: Roboto-Bold;
  src: url('../fonts/Roboto-Bold.ttf');
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Roboto-Regular";
  background: #f1f1f1;
  overflow-x: hidden;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto-Medium";
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #106eea;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #106eea;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  position: absolute;
}

#header .logo img {
  max-height: 60px;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  background: url(../img/Main-Banner.jpg);
  background-size: cover;
  position: relative;
  background-position: center center;
}

.Hero-Content {
  text-align: center;
  color: #fff;
}

.Hero-Content p {
  font-size: 20px;
}

.Hero-Content h1 {
  font-size: 42px;
}

label {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

input,
button,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  border: none;
}

.header {
  padding: 0 0.625rem;
  margin-bottom: 1.875rem;
}

form {
  background: var(--color-darkblue-alpha);
  padding: 2.5rem 0.625rem;
  border-radius: 0.25rem;
}

.form-group {
  width: 100%;
  padding: 0.25rem;
}

.form-control {
  display: block;
  width: 100%;
  height: 2.375rem;
  padding: 0.375rem 0.75rem;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-radio,
.input-checkbox {
  display: inline-block;
  margin-right: 0.625rem;
  min-height: 1.25rem;
  min-width: 1.25rem;
}

button#submit {
  background: #fff;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: var(--color-green);
  color: inherit;
  border-radius: 2px;
  cursor: pointer;
}

.form-select:focus {
  border-color: transparent;
  outline: 0;
  border: 1px solid#000;
  box-shadow: unset;
}

.form-control:focus {
  border-color: transparent;
  outline: 0;
  border: 1px solid#000;
  box-shadow: unset;
}

.Ather-S {
  max-width: 45%;
  overflow: hidden;
  background: #fff;
  margin: 5px;
  position:relative;
}
.Ather-S-button {
    position: absolute;
    bottom: 25%;
    right: 5%;
}
.Ather-S-button p {
    font-size: 10px;
    background: #27c04d;
    border-radius: 5px;
    padding: 5px 10px;
    color: #fff;
}
.Ather-X {
  max-width: 45%;
  overflow: hidden;
  background: #fff;
  margin: 5px;
  position:relative;
}
.Ather-XS {
  max-width: 45%;
  overflow: hidden;
  background: #fff;
  margin: 5px;
}
.Ather-X-button {
    position: absolute;
    left: 5%;
    bottom: 25%;
}
.Ather-X-button p {
    font-size: 10px;
    background: #fff;
    border-radius: 57px;
    padding: 4px;
    opacity: 0.8;
}
.Bike-Image {
    position: relative;
    flex-wrap: wrap;
}

#AtherModel-error {
    position: absolute;
    bottom: -30px;
}

.Bike-Image span {
  margin: 0 10px;
}

#hero-thank-you {
    width: 100%;
    height: 100vh;
    background: url('../img/bg.png');
    background-size: cover;
    position: relative;
    background-position: center center;
}

/* Responsive CSS */
/* iPad Air & Pro */
@media screen and (max-width: 1199.98px){
  #hero {
    height: 35vh;
  }  
  .Hero-Content p {
    font-size: 33px;
  }
  .Hero-Content h1 {
    font-size: 62px;
  }
  .Ather-X-button {
    bottom: 40%;
  }
  .Ather-S-button {
    bottom: 40%;
  }
}

/* iPad Mini */
@media screen and (max-width: 991.98px){
  #hero {
    height: 50vh;
    background-size: unset;
  }
  .Ather-X {
    max-width: 45%;
  }
  .Ather-S {
    max-width: 45%;
  }
  .Ather-S-button {
    bottom: 30%;
  }
  .Ather-X-button {
    bottom: 30%;
  }
}

/* Mobile */
@media screen and (max-width: 767.98px){
  #hero {
    background-size: cover;
  }

  #header .logo img {
    max-height: 30px;
  }

  .Hero-Content p {
    font-size: 16px;
  }

  .Hero-Content h1 {
    font-size: 26px;
  }

  .Hero-Content p {
    margin: 0;
  }
  .Ather-S-button {
    bottom: 42%;
   }
  .Ather-X-button p {
    font-size: 9px;
  }
  .Ather-X-button {
    bottom: 41%;
  }
}