/*
	Theme Name: Nibavlifts
	Theme URI: https://www.nibavlifts.com/
	Description: Nibav theme
	Version: 1.0.0
	Author: vijayakumar
	Author URI: https://www.nibavlifts.com/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: Helvetica, sans-serif;
  margin: auto;
  overflow: auto;
  color: #fff;
  background: linear-gradient(315deg, rgb(0 22 101) 3%, rgb(0 22 101) 38%);
  /*background: linear-gradient(
    315deg,
    rgb(0 22 101) 3%,
    rgba(60, 132, 206, 1) 38%,
    rgba(48, 238, 226, 1) 68%,
    rgb(196 25 255) 98%
  );*/
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
}
.highlight .form-row:first-of-type input {
  border: 1px solid #ffcf32;
  width: 100%;
  box-shadow: 0px 0px 0px 2px red;
}
input#pincode {
  margin-left: -14px;
  margin-bottom: 0px;
}
.counter-p.certified-p {
  padding: 7px 10px !important;
}
b {
  font-weight: 900;
}
p {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 1rem;
}
@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
header {
  display: block;
  padding: 10px 0px;
  background-color: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  justify-content: center;
}
.logo img {
  height: 50px;
}
#desktop_btn {
  background-color: #ffffff;
  padding: 10px 10px;
  margin: 12px 0px;
  color: #000000;
}
#desktop_btn:hover {
  background-color: #ffffff;
  padding: 10px 10px;
  margin: 12px 0px;
  color: #000000;
}
#mobile_btn {
  background-color: #ffffff;
  padding: 8px 15px;
  border-radius: 4px;
  color: #000000;
}
#mobile_btn:hover {
  background-color: #ffffff;
  padding: 8px 15px;
  border-radius: 4px;
  color: #000000;
}
button.navbar-toggler {
  padding: 0px;
  border-radius: 36px;
}
.first_step {
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0px;
}
nav {
  margin-left: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #fff;
  left: 0;
  bottom: -5px;
  transition: all 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.btn-contact {
  margin-left: 30px;
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
}

.video-gallery {
  padding: 40px 20px;
  background-color: #000;
  text-align: center;
}

.filter-options {
  margin-bottom: 20px;
}

.filter-btn {
  background: none;
  border: none;
  color: #fff;
  margin: 0 10px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
}

.filter-btn.active {
  background-color: #fff;
  color: #000;
  border-radius: 20px;
}
.map_img {
  width: 80%;
  margin: auto;
}
.video-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.video-card {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  max-width: 400px;
}

.video-card img {
  max-width: 100%;
  border-radius: 10px;
}

.play-button {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background-image: url("img/play-icon.png");
  background-position: center;
  background-size: 35%;
  background-repeat: no-repeat;
}

.video-card:hover .overlay {
  opacity: 1;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 100%;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-container {
  max-width: 640px;
  margin: 0 auto;
}
iframe {
  width: 100%;
  height: 300px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  cursor: pointer;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 75px;
  padding-bottom: 56.25%;
  background-color: #000;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-icon {
  opacity: 1;
}

.video-iframe {
  border: none;
  display: none;
}

#loading img {
  width: 80px;
  height: 80px;
}

/* Footer Widgets Styling */
.site-footer {
  background-color: #f4f4f4;
  color: #333;
}

.footer-widgets .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-columns {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.footer-column {
  width: 23%; /* Four equal columns with some spacing */
}

.footer-widget-title {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding: 30px 0px 10px;
  background-color: #ddd;
  font-size: 0.9em;
  position: absolute;
  width: 100%;
}

h1 {
  font-size: 100px;
  font-weight: 900;
}
h2 {
  font-size: 38px;
  font-weight: 700;
}
h4.text-type {
  font-size: 65px;
  font-weight: 900;
}
.banner-sec {
  padding: 5rem 0rem;
  display: flex;
  justify-content: left;
}
.banner-row p {
  font-size: 28px;
  font-weight: 600;
}
.think-again {
  color: #ffcf32;
  border-right: 0.15em solid #ffcf32;
  white-space: nowrap;
  letter-spacing: 0.15em;
  animation: typing 3.3s steps(10, end), blink-caret 1s step-end infinite;
  width: 40%;
  font-size: 66px;
  font-weight: 600;
  overflow: hidden;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 40%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #fff;
  }
}

.image-container {
  width: 60%;
  text-align: center;
  border-radius: 94px;
  padding: 14px;
  background-color: #ffffff;
  margin: auto;
}
.certified-row2 {
  padding: 2rem 0rem 0rem;
}
.certified-p {
  text-align: center;
  padding: 1rem 0rem;
  color: #000000;
}
.certified-sec {
  padding: 3rem 0rem 1rem 0rem;
  background-color: #f4f0ea;
}
.counter-p {
  padding: 27px 0px !important;
  font-size: 30px;
  font-weight: 800;
  margin: 8px auto;
  color: #000000;
}
.certified-sec h2 {
  color: #000000;
}
.discount-sec {
  padding: 4rem 0rem 2rem;
  background-color: #000000;
}
.discount-row h2 {
  color: #fff;
}
.discount-row p {
  color: #fff !important;
}
.discount-row span {
  color: #ffcf32;
}
#timer {
  font-size: 50px;
  padding: 20px;
  display: flex;
  border-radius: 10px;
  justify-content: center;
  color: #fff;
}
.time {
  font-size: 50px;
  font-weight: bold;
  margin: 0 10px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.time span {
  color: #ff5733;
  animation: colorChange 1s infinite alternate;
}

/* Add some 3D text effect */
@keyframes colorChange {
  0% {
    color: #ff5733;
    text-shadow: 3px 3px 6px rgba(255, 0, 0, 0.6);
  }
  50% {
    color: #33ff57;
    text-shadow: 3px 3px 6px rgba(0, 255, 0, 0.6);
  }
  100% {
    color: #3357ff;
    text-shadow: 3px 3px 6px rgba(0, 0, 255, 0.6);
  }
}

.discount-btn {
  text-decoration: none;
  color: #000;
  margin: 15px auto;
  width: auto;
  display: inline-block;
  line-height: 40px;
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #ffcf32;
  border: 3px solid #fff;
  box-shadow: 1px 1px 0 #ffcf32, 2px 2px 0 #ffcf32, 3px 3px 0 #ffcf32,
    4px 4px 0 #ffcf32, 5px 5px 0 #ffcf32;
  position: relative;
}

.discount-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.discount-btn:hover {
  background-color: transparent;
  color: #ffcf32;
  top: 3px;
  left: 3px;
}

.discount-btn:hover:after {
  background-color: #f6d51e;
}

.discount-btn:active {
  top: 5px;
  left: 5px;
  box-shadow: 0 0 0 0;
}

/******************* Timeline  *****************/
.main-timeline5 {
  overflow: hidden;
  position: relative;
}
.main-timeline5 .timeline {
  position: relative;
  margin-top: -56px;
}
.main-timeline5 .timeline:first-child {
  margin-top: 0;
}

.main-timeline5 .timeline:nth-child(2) {
  margin-top: -57px;
}

.main-timeline5 .timeline:nth-child(3) {
  margin-top: -59px; /* Example value */
}

.main-timeline5 .timeline:nth-child(4) {
  margin-top: -57px; /* Example value */
}

.main-timeline5 .timeline:nth-child(5) {
  margin-top: -58px; /* Example value */
}
.main-timeline5 .timeline-icon,
.main-timeline5 .year {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.main-timeline5 .timeline:after,
.main-timeline5 .timeline:before {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
.main-timeline5 .timeline:before {
  content: "";
  width: 100%;
  height: 100%;
  /*box-shadow: -8px 0 5px -5px rgba(0, 0, 0, 0.5) inset;*/
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.main-timeline5 .timeline-icon {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 25px solid transparent;
  border-top-color: #f44556;
  border-right-color: #f44556;
  z-index: 1;
  transform: rotate(45deg);
}
.main-timeline5 .year {
  display: block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  font-size: 30px;
  font-weight: 700;
  color: #f44556;
  text-align: center;
  transform: rotate(-45deg);
}
.main-timeline5 .timeline-content {
  width: 35%;
  float: right;
  background: #f44556;
  padding: 30px 20px;
  margin: 50px 0;
  z-index: 1;
  position: relative;
}
.main-timeline5 .timeline-content:before {
  content: "";
  width: 20%;
  height: 15px;
  background: #f44556;
  position: absolute;
  top: 50%;
  left: -20%;
  z-index: -1;
  transform: translateY(-50%);
}
.main-timeline5 .title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}
.main-timeline5 .description {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  margin: 0;
}
/*.main-timeline5 .timeline:nth-child(2n):before {
 box-shadow: 8px 0 5px -5px rgba(0, 0, 0, 0.5) inset;
}*/
.main-timeline5 .timeline:nth-child(2n) .timeline-icon {
  transform: rotate(-135deg);
  border-top-color: #e97e2e;
  border-right-color: #e97e2e;
}
.main-timeline5 .timeline:nth-child(2n) .year {
  transform: rotate(135deg);
  color: #e97e2e;
}
.main-timeline5 .timeline:nth-child(2n) .timeline-content {
  float: left;
}
.main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
  left: auto;
  right: -20%;
}
.main-timeline5 .timeline:nth-child(2n) .timeline-content,
.main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
  background: #e97e2e;
}
.main-timeline5 .timeline:nth-child(3n) .timeline-icon {
  border-top-color: #13afae;
  border-right-color: #13afae;
}
.main-timeline5 .timeline:nth-child(3n) .year {
  color: #13afae;
}
.main-timeline5 .timeline:nth-child(3n) .timeline-content,
.main-timeline5 .timeline:nth-child(3n) .timeline-content:before {
  background: #13afae;
}
.main-timeline5 .timeline:nth-child(4n) .timeline-icon {
  border-top-color: #105572;
  border-right-color: #105572;
}
.main-timeline5 .timeline:nth-child(4n) .year {
  color: #105572;
}
.main-timeline5 .timeline:nth-child(4n) .timeline-content,
.main-timeline5 .timeline:nth-child(4n) .timeline-content:before {
  background: #105572;
}
.series4-sec {
  background: url(https://wordpress33.eliteelevators.click/lp4/wp-content/uploads/2025/03/compact-lift-model.webp);
  padding: 4rem 0rem;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-size: cover;
  background-color: rgb(7 7 7 / 30%);
  background-position: bottom;
  height: 530px;
  min-height: 530px;
}
.series4max-sec {
  background: url(https://wordpress33.eliteelevators.click/lp4/wp-content/uploads/2025/03/wheel-chair-model.webp);
  padding: 4rem 0rem;
  background-position: bottom;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-size: cover;
  background-color: rgb(7 7 7 / 30%);
  height: 530px;
}
span.price4 {
  font-size: 80px;
  font-weight: 500;
  color: #fff;
  font-style: unset;
  font-family: fangsong;
}
span.price4l {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  font-style: unset;
  font-family: fangsong;
}
.roadmap-sec {
  padding: 2rem 0rem;
}
.series4max-text p,
ul,
li {
  color: #fff;
}
.series4-text p,
ul,
li {
  color: #fff;
}
.series4max-text {
  /* direction: rtl; */
  text-align: right !important;
}
.two_person {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  font-family: fangsong;
}
.series4_btn {
  text-decoration: none;
  color: #ffffff;
  margin: 15px auto;
  width: auto;
  display: inline-block;
  line-height: 40px;
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: transparent;
  border: 3px solid #fff;
  box-shadow: 1px 1px 0 #ffcf32, 2px 2px 0 #ffcf32, 3px 3px 0 #ffcf32,
    4px 4px 0 #ffcf32, 5px 5px 0 #ffcf32;
  position: relative;
}

.series4_btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-color: #ffffff00;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.series4_btn:hover {
  background-color: transparent;
  color: #ffffff;
  top: 3px;
  left: 3px;
  box-shadow: 1px 1px 0 #ffcf32, 2px 2px 0 #ffcf32, 3px 3px 0 #ffcf32,
    4px 4px 0 #ffcf32, 5px 5px 0 #ffcf32;
}

.series4_btn:hover:after {
  background-color: #17161600;
}

.series4_btn:active {
  top: 5px;
  left: 5px;
  box-shadow: 0 0 0 0;
}
.slider_pro {
  position: relative;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background-color: transparent;
  border: none;
  color: #000;
  cursor: pointer;
  z-index: 10;
}
#prevBtn {
  left: 30px;
  color: #ffffff;
}

#nextBtn {
  right: 30px;
  color: #ffffff;
}
.modal-content {
  padding: 20px;
  background-color: #000;
}
.thumbnail-container {
  overflow: hidden;
}

.thumbnail-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

.thumbnail {
  margin: 0 10px;
}

.card {
  position: relative;
}

.card-img-top {
  width: 100%;
}

.play-button-custom {
  width: 50px;
  height: 50px;
  background-color: #fff !important;
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background-image: url("https://wordpress33.eliteelevators.click/lp4/wp-content/uploads/2025/03/play-icon.png");
  background-position: center;
  background-size: 35%;
  background-repeat: no-repeat;
}
.testimonial-sec {
  padding: 3rem 0rem;
}
.bottom-sec {
  padding: 2rem 0rem 2rem;
  backdrop-filter: grayscale(1);
}
.Demo-btn {
  margin-top: 0px;
}

.booknow-btn {
  text-decoration: none;
  color: #ffffff;
  margin: 15px auto;
  width: auto;
  display: inline-block;
  line-height: 40px;
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: transparent;
  border: 3px solid #fff;
  box-shadow: 1px 1px 0 #ffcf32, 2px 2px 0 #ffcf32, 3px 3px 0 #ffcf32,
    4px 4px 0 #ffcf32, 5px 5px 0 #ffcf32;
  position: relative;
}

.booknow-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-color: #ffffff00;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.booknow-btn:hover {
  background-color: transparent;
  color: #ffffff;
  top: 3px;
  left: 3px;
  box-shadow: 1px 1px 0 #ffcf32, 2px 2px 0 #ffcf32, 3px 3px 0 #ffcf32,
    4px 4px 0 #ffcf32, 5px 5px 0 #ffcf32;
}

.booknow-btn:hover:after {
  background-color: #17161600;
}

.booknow-btn:active {
  top: 5px;
  left: 5px;
  box-shadow: 0 0 0 0;
}
/**************************************************   Media Query (max-width: 1199px) ****************************************************/
@media only screen and (max-width: 1199px) {
  .counter-p.certified-p {
    padding: 22px 0px !important;
  }
  .main-timeline5 .timeline {
    margin-top: -103px;
  }
  .main-timeline5 .timeline-content:before {
    left: -18%;
  }
  .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
    right: -18%;
  }
}
/* Portrait and Landscape */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .image-container {
    width: 80%;
    text-align: center;
    border-radius: 100px;
    padding: 20px;
    background-color: #ffffff;
    margin: auto;
  }
  .counter-p.certified-p {
    padding: 12px 10px !important;
  }
  .counter-p {
    padding: 12px 0px;
    font-size: 18px;
    font-weight: 800;
    margin: 10px auto;
    color: #000000;
  }
}
/**************************************************   Media Query (max-width: 990px) ****************************************************/
@media only screen and (max-width: 990px) {
  input#pincode {
    margin-left: 0px;
    margin-bottom: -15px;
  }
  .main-timeline5 .timeline {
    margin-top: -127px;
  }
  .main-timeline5 .timeline-content:before {
    left: -2%;
  }
  .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
    right: -2%;
  }
}
/* Portrait and Landscape */
@media only screen and (min-device-width: 834px) and (max-device-width: 1112px) and (-webkit-min-device-pixel-ratio: 2) {
  input#pincode {
    margin-left: 0px;
    margin-bottom: 0px;
  }
  h1 {
    font-size: 50px;
    font-weight: 900;
  }
  .think-again {
    color: #ffcf32;
    border-right: 0.15em solid #ffcf32;
    white-space: nowrap;
    letter-spacing: 0.15em;
    animation: typing 3.3s steps(10, end), blink-caret 1s step-end infinite;
    width: 45%;
    font-size: 40px;
    font-weight: 600;
    overflow: hidden;
  }
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 45%;
    }
  }
  .main-timeline5 .timeline {
    margin-top: 0;
    overflow: hidden;
  }
  .main-timeline5 .timeline:before,
  .main-timeline5 .timeline:nth-child(2n):before {
    box-shadow: none;
  }
  .main-timeline5 .timeline-icon,
  .main-timeline5 .timeline:nth-child(2n) .timeline-icon {
    margin-top: -30px;
    margin-bottom: 20px;
    position: relative;
    transform: rotate(135deg);
  }
  .main-timeline5 .timeline:nth-child(2n) .year,
  .main-timeline5 .year {
    transform: rotate(-135deg);
  }
  .main-timeline5 .timeline-content,
  .main-timeline5 .timeline:nth-child(2n) .timeline-content {
    width: 100%;
    float: none;
    border-radius: 0 0 20px 20px;
    text-align: center;
    padding: 25px 20px;
    margin: 0 auto;
  }
  .main-timeline5 .timeline-content:before,
  .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
    width: 15px;
    height: 25px;
    position: absolute;
    top: -22px;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 0);
  }
  .main-timeline5 .timeline:first-child {
    margin-top: 0;
  }

  .main-timeline5 .timeline:nth-child(2) {
    margin-top: 0px; /* Example value */
  }

  .main-timeline5 .timeline:nth-child(3) {
    margin-top: 0px; /* Example value */
  }

  .main-timeline5 .timeline:nth-child(4) {
    margin-top: 0px; /* Example value */
  }

  .main-timeline5 .timeline:nth-child(5) {
    margin-top: 0px; /* Example value */
  }
  button.navbar-toggler.mobile {
    display: none;
  }
  .counter-p {
    padding: 12px 0px;
    font-size: 18px;
    font-weight: 800;
    margin: 10px auto;
    color: #000000;
  }
}
/**************************************************   Media Query (max-width: 767px) ****************************************************/
@media only screen and (max-width: 767px) {
  input#pincode {
    margin-left: 0px;
    margin-bottom: -15px;
  }
  .main-timeline5 .timeline {
    margin-top: 0;
    overflow: hidden;
  }
  .main-timeline5 .timeline:before,
  .main-timeline5 .timeline:nth-child(2n):before {
    box-shadow: none;
  }
  .main-timeline5 .timeline-icon,
  .main-timeline5 .timeline:nth-child(2n) .timeline-icon {
    margin-top: -30px;
    margin-bottom: 20px;
    position: relative;
    transform: rotate(135deg);
  }
  .main-timeline5 .timeline:nth-child(2n) .year,
  .main-timeline5 .year {
    transform: rotate(-135deg);
  }
  .main-timeline5 .timeline-content,
  .main-timeline5 .timeline:nth-child(2n) .timeline-content {
    width: 100%;
    float: none;
    border-radius: 0 0 20px 20px;
    text-align: center;
    padding: 25px 20px;
    margin: 0 auto;
  }
  .main-timeline5 .timeline-content:before,
  .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
    width: 15px;
    height: 25px;
    position: absolute;
    top: -22px;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 0);
  }
  button.navbar-toggler.mobile {
    display: none;
  }
  .image-container {
    width: 30%;
    text-align: center;
    border-radius: 100px;
    padding: 20px;
    background-color: #ffffff;
    margin: auto;
  }
}
@media only screen and (min-device-width: 280px) and (max-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
  h1 {
    font-size: 35px;
    font-weight: 900;
  }
  .think-again {
    width: 80%;
    font-size: 28px;
  }
}
/**************************************************   Media Query  (max-device-width: 480px) ****************************************************/
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
  .counter-p {
    padding: 17px 0px !important;
    font-size: 30px;
    font-weight: 800;
    margin: 8px auto;
    color: #000000;
  }
  .counter-p.certified-p {
    padding: 0px 0px !important;
  }
  #banner-form {
    width: 100%;
    margin: auto;
  }
  .highlight .form-row:first-of-type input {
    border: 1px solid #ffcf32;
    margin: auto;
    box-shadow: 0px 0px 0px 2px red;
  }
  .image-container {
    width: 40%;
    text-align: center;
    border-radius: 94px;
    padding: 20px;
    background-color: #ffffff;
    margin: auto;
  }
  .main-timeline5 .timeline:nth-child(2) {
    margin-top: 0px;
  }
  .main-timeline5 .timeline:nth-child(3) {
    margin-top: 0px;
  }
  .main-timeline5 .timeline:nth-child(4) {
    margin-top: 0px;
  }
  .main-timeline5 .timeline:nth-child(5) {
    margin-top: 0px;
  }
  h2 {
    font-size: 30px;
    font-weight: 600;
  }
  .discount-row p {
    color: #ffcf32;
    font-size: 18px;
    margin-top: 20px;
  }
  .time {
    font-size: 40px;
    font-weight: bold;
    margin: 0 10px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  #timer {
    padding: 20px 0px;
    display: flex;
    border-radius: 10px;
    justify-content: center;
    color: #ffcf32;
  }
  .discount-sec {
    padding: 4rem 0rem 2rem;
    background-color: #000000;
  }
  .bottom-sec {
    padding: 2rem 0rem 2rem;
  }
  .Demo-btn {
    margin-top: 0px;
  }
  .banner-sec {
    padding: 2rem 0rem;
    display: flex;
    justify-content: left;
  }
  button.navbar-toggler.mobile {
    display: none;
  }
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 80%;
    }
  }
  h1 {
    font-size: 32px;
    font-weight: 900;
  }
  .think-again {
    width: 90%;
    font-size: 32px;
  }
  input#pincode {
    margin-left: 0px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
  .think-again {
    width: 80%;
    font-size: 40px;
  }
}
@media only screen and (min-device-width: 481px) and (max-device-width: 600px) and (-webkit-min-device-pixel-ratio: 2) {
  h1 {
    font-size: 40px;
    font-weight: 900;
  }
  .think-again {
    width: 62%;
    font-size: 40px;
  }
}
