@font-face {
  font-family: "Helvetica";
  src: url(assets/Bold-Condensed.otf);
}

@font-face {
  font-family: "Helvetica";
  src: url(assets/Medium.otf);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Helvetica", sans-serif;
  overflow-x: hidden;
}

/*NAVBAR*/


h1,
h2 {
  font-size: 2.1rem !important;
}
p{
  color: black !important;
}

.navbar {
  
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  width: 100%;
}

.nav {
  /* position: relative; */
  height: auto;
}

.navbar-nav {
  margin-left: auto;
  gap: 25px;
}

.nav-link {
  color: black;
  padding: 2px 0;
}

.nav-link:hover {
  color: #d40b04;
}

.dropdown-item:hover {
  background-color: #d40b04;
  color: #fff;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.nav-link i {
  display: inline-block;
  margin-left: 0.255em;
  content: "";
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  font-size: 14px;
}

.navbar-toggler {
  border: none;
  background: transparent;
  outline: none;
  position: relative;
}

.navbar-toggler-icon {
  width: 30px;
  height: 3px;
  background-color: black;
  display: block;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  width: 30px;
  height: 3px;
  background-color: black;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

/* Change icon to 'X' when navbar is open */
.navbar-toggler.open .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler.open .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler.open .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Ensure navbar items are visible when open */
.navbar-collapse {
  transition: all 0.3s ease-in-out;
}

/*BANNER*/

.item img {
  max-height: 600px;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.banner-area img {
  max-height: 700px;
}

.banner-area .content {
  color: #fff;
  text-align: center;
  /* padding: 300px; */
}

.banner-area .content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.content h2 {
  font-size: 40px;
  font-weight: 900;
}

.content p {
  font-size: 24px;
}

/*ABOUT-US*/

.about-section {
  padding: 40px 0;
  position: relative;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
}

.about-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  top: 175px;
  left: 210px;
  background: #dc3545;
  color: #fff;
  padding: 20px 15px;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-content {
  padding-left: 40px;
}

.about-title {
  font-size: 24px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 0;
}

.about-subtitle {
  font-size: 40px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 15px;
}

.about-text {
  font-size: 16px;
  /* color: #666; */
  line-height: 1.8;
}

/*SERVICES*/
.service-card-service {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.services-section {
  padding: 0 0 40px;
}

.services-title {
  text-align: center;
  margin-bottom: 25px;
}

.services-title h2 {
  font-size: 40px;
  font-weight: bold;
  color: #212529;
}

.services-title p {
  font-size: 16px;
  /* color: #666; */
}

.services-section .service-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  background-color: #fff;
  height: 100%;
}

.services-section .service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 20px;
  text-align: center;
}

.service-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #212529;
}

.services-section .service-card p {
  font-size: 0.95rem;
  color: #000000;
  margin: 0;
}

/*TYRE UPSIZE CALCULATOR*/

.tyre-section {
  padding: 0 0 40px;
}

.tyre-title {
  text-align: center;
  margin-bottom: 15px;
}

.tyre-title h2 {
  font-size: 40px;
  font-weight: bold;
  color: #212529;
}

.tyre-title p {
  font-size: 16px;
  /* color: #666; */
}

.tyre-section table {
  margin: auto;
  width: 90%;
  text-align: center;
  border-collapse: separate;
  border: solid grey 1px;
  border-radius: 20px;
}

.tyre-section th,
td {
  padding: 10px;
}

.tyre-section th {
  background-color: #f2f2f2;
}

.tyre-section input[type="text"],
select {
  padding: 5px;
}

.tyre-section img {
  margin: 5px;
}

.tyre-section .tyre-button {
  padding: 8px 12px;
  cursor: pointer;
  border: none;
  background-color: #dc3545;
  color: white;
  font-size: 14px;
}

.tyre-section .tyre-button:hover {
  background-color: #000;
  color: #fff;
}

.upsize-top-line {
  border-top: 1px solid grey;
}

.upsize-border-left {
  border-top-left-radius: 20px;
}

.upsize-border-right {
  border-top-right-radius: 20px;
}

.tyre-section .col-lg-7 {
  padding: 10px;
}

.tyre-section form {
  margin: 0 auto;
}

.tyre-section table {
  border-spacing: 5px;
  width: 100%;
}

.tyre-section table th,
table td {
  padding: 5px;
}

.tyre-section select,
input[type="text"],
input[type="button"] {
  height: 30px;
  font-size: 14px;
}

.tyre-section .tyre-button {
  padding: 5px 10px;
  font-size: 14px;
}

.tyre-section .upsize-top-line {
  padding: 10px 0;
}

.tyre-section td,
th {
  font-size: 14px;
}

/*BLOGS*/

.blog-tyre {
  padding: 0 40px 40px;
}

.blog-tyre p {
  text-align: center;
}

.blog-tyre h2 {
  font-weight: bold;
  font-size: 40px;
}

.blog-tyre .service-details {
  padding: 20px;
}

.blog-tyre a {
  text-decoration: none;
  color: #212529;
}

.blog-tyre .owl-stage {
  display: flex;
}

.blog-tyre .item {
  height: 100%;
}

.blog-tyre .service-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  /* min-height: 500px; */
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-tyre .service-card p {
  text-align: left;
  margin-bottom: 0;
}

.contact-container h1 {
  font-weight: bold;
  margin-bottom: 30px;
}

.tyre-constructions h1 {
  font-weight: bold;
  margin-bottom: 10px;
}

.tyre-title h1 {
  font-size: 40px;
  font-weight: bold;
  color: #212529;
}

h3 {
  font-size: 1.5rem !important;
}

/* @media (min-width: 500px) {
  .blog-tyre .service-card {
    min-height: 570px;
  }
}

@media (min-width: 767px) {
  .blog-tyre .service-card {
    min-height: 500px;
  }
}

@media (min-width: 1200px) {
  .blog-tyre .service-card {
    min-height: 520px;
  }
}

@media (min-width: 1500px) {
  .blog-tyre .service-card {
    min-height: 460px;
  }
} */

.blog-tyre .offset-image {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog-tyre .col-md-4 {
  margin-top: 30px;
}

.blog-tyre .read-more-btn {
  background-color: #dc3545;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  /* margin: 10px auto; */
  margin-bottom: 20px;
  margin-left: 20px;
  width: fit-content;
  display: inline-block;
  /* position: absolute;
  bottom: 0; */
}

.blog-tyre .read-more-btn:hover {
  background-color: #d40b04;
  color: #fff;
}

.owl-prev,
.owl-next {
  width: 40px;
  height: 40px;
  background-color: #444;
  color: #fff;
  font-size: 24px;
  border: none;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  /* Ensures buttons are above cards */
}

/* Position the buttons outside the card area */
.owl-prev {
  left: -40px;
}

.owl-next {
  right: -40px;
}

/* Arrow icon size */
.owl-prev span,
.owl-next span {
  font-size: 40px;
  line-height: 1;
}

/* Hover effect */
.owl-prev:hover,
.owl-next:hover {
  background-color: #666;
  transform: translateY(-50%) scale(1.1);
}

/*BRANDS*/

.brands-section {
  text-align: center;
  background-color: #fff;
}

.brands-title h2 {
  font-size: 40px;
  font-weight: bold;
  color: #212529;
}

.brands-title p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.brand-logo img {
  width: 100%;
  max-width: 250px;
  height: 120px;
  margin: 0 auto;
  transition: transform 0.3s ease-in-out;
}

.brand-logo img:hover {
  transform: scale(1.1);
}

/*ENQUIRY AND CONTACT US*/

.contact-section {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  width: 100%;
}

.contact-info {
  background-color: #dc3545;
  color: #fff;
  padding: 40px;
  border-radius: 8px 0 0 8px;
}

.contact-info h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.contact-info h4 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-info i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
}

.contact-info a:hover {
  color: #eb8f98;
}

.contact-form {
  padding: 40px;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #dc3545;
  font-weight: bold;
}

.form-control {
  margin-bottom: 20px;
  border-radius: 4px;
}

.btn-submit {
  background-color: #dc3545;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1rem;
}

.btn-submit:hover {
  background-color: #000;
  color: #fff;
}

.contact-section .contact-info {
  order: 1;
  /* Move the contact info section to appear after the contact form */
}

.contact-section .contact-form {
  order: 2;
  /* Move the contact form section to appear first */
}

/*CONTACT*/

.contact-container {
  background-color: #fff;
  padding: 40px;
}

.contact-container h2 {
  font-weight: bold;
  margin-bottom: 30px;
}

.contact-container h3 {
  font-weight: bold;
}

.contact-container .contact-heading {
  font-size: 18px;
}

.contact-container .list-unstyled a {
  text-decoration: none;
  color: #212529;
}

.contact-container .list-unstyled a:hover {
  color: #dc3545;
}

.contact-container .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #dc3545;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
}

.contact-container .contact-list {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 20px;
}

.contact-container .btn-custom {
  background-color: #dc3545;
  color: #fff;
  border: none;
}

.contact-container .btn-custom:hover {
  background-color: #d40b04;
}

.contact-container select,
input[type="text"],
input[type="button"] {
  height: 40px;
  font-size: 14px;
}

.contact-container .form-control {
  margin-bottom: 10px;
  border-radius: 4px;
}

/*FOOTER*/

.footer {
  background-color: #dc3545;
  color: #ffffff;
  padding: 20px 0;
}

.footer a {
  text-decoration: none;
  color: #fff;
}

.footer a:hover {
  color: white !important;
}

.footer .icon {
  font-size: 15px;
  color: #fff;
  margin-right: 10px;
  margin-bottom: auto;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-bottom: 10px;
}
.newclasss
{
  min-width: 40px;
}
.footer .address {
  margin-bottom: 10px;
}

.footer a:hover {
  color: #eb8f98;
}

.footer .logo {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.footer .social-icons a {
  text-decoration: none;
  border-radius: 50%;
  background: #fff;
  height: 27px;
  width: 27px;
  display: inline-grid;
  justify-content: center;
  align-items: center;
  margin-left: 0px;
}

.footer .social-icons a:hover {
  color: #000;
}

.footer .social-icons i {
  font-size: 16px;
  margin-right: 10px;
  color: #dc3545;
  cursor: pointer;
  display: contents;
  justify-content: center;
  align-items: center;
}

.footer .social-icons i:hover {
  color: #eb8f98;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

.company {
  margin: 0;
  padding-left: 40px;
  color: #fff;
}

.company:hover {
  /* color: #eb8f98; */
}

.copyrights {
  text-align: left;
  padding-right: 40px;
  margin: 0;
}

.disclaimer {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-right: 110px;
  font-size: 14px;
}

.disclaimer a {
  color: #fff;
}

.disclaimer a:hover {
  color: #eb8f98;
}

.disclaimer-content {
  display: block;
  /* Treats the span as a block element */
  text-align: center;
  /* Centers the text content */
  margin: 0 auto;
  /* Centers the block element itself */
  margin-top: 5px;
  font-size: 10px;
  /* Adjust font size as needed */
  line-height: 1.5;
  /* Adjust line height for better spacing */
  width: 65%;
  /* Optional: Restrict width for better readability */
}


.list-unstyled i {
  font-size: 16px;
}

.list-unstyled a {
  color: #fff;
  margin-bottom: 3px;
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 5px;
}

#contacts iframe {
  width: 100%;
  height: 500px;
}

@media (max-width: 1400px) {
  #contacts iframe {
    width: 100%;
    height: 550px;
  }
}

/*MEDIA QUERIES*/

/*NAVBAR*/

@media (max-width: 992px) {
  .navbar-collapse {
    max-height: 300px;
    /* Adjust height as needed */
    overflow-y: auto;
  }

  .dropdown-menu {
    border: none !important;
    box-shadow: none !important;
  }

  .navbar-toggler:focus,
  .navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }
}

@media (max-width: 768px) {
  .navbar-collapse {
    max-height: 300px;
    /* Adjust height as needed */
  }
}

@media (max-width: 576px) {
  .navbar-collapse {
    max-height: 300px;
    /* Adjust height as needed */
  }
}

@media (max-width: 480px) {
  .navbar-collapse {
    max-height: 300px;
    /* Adjust height as needed */
  }

  .navbar-brand img {
    width: 100px !important;
  }

  .banner-area .content {
    top: 65% !important;
  }
}

/*CONTENT-ALIGNMENT*/

/* Hide first h3 on 576px and 480px */
@media (max-width: 576px) {
  .hide-small {
    display: none;
  }

  .pcd-list span {
    margin-left: 24px !important;
  }

  .disclaimer-content {
    width: 100% !important;
  }
}

/* Hide second h3 on 1200px, 992px, and 768px */
@media (min-width: 768px) and (max-width: 2600px) {
  .hide-large {
    display: none;
  }
}

/*BANNER*/

/* Extra Small Devices (480px and below) */
@media (max-width: 480px) {
  #contacts iframe {
    width: 100%;
    height: 550px;
  }

  .item img {
    max-height: 300px;
  }

  .overlay {
    padding: 10px;
    flex-direction: column;
    justify-content: center;
  }

  .content {
    /* padding: 50px 10px; */
  }

  .content h2 {
    font-size: 24px;
  }

  .content p {
    font-size: 16px;
  }
}

/* Small Devices (576px and below) */
@media (max-width: 576px) {
  .item img {
    max-height: 400px;
  }

  .overlay {
    padding: 20px;
  }

  .content {
    /* padding: 70px 20px !important; */
  }

  .content h2 {
    font-size: 28px;
  }

  .content p {
    font-size: 18px;
  }
}

/* Medium Devices (768px and below) */
@media (max-width: 768px) {
  .item img {
    max-height: 450px;
  }

  .overlay {
    padding: 30px;
  }

  .content {
    /* padding: 100px 30px; */
  }

  .content h2 {
    font-size: 19px !important;
  }

  .content p {
    font-size: 20px;
  }
}

/* Large Devices (992px and below) */
@media (max-width: 992px) {
  .item img {
    max-height: 500px;
  }

  .overlay {
    padding: 40px;
  }

  .content {
    /* padding: 200px 50px; */
  }

  .content h2 {
    font-size: 36px;
  }

  .content p {
    font-size: 22px;
  }
}

/* Extra Large Devices (1200px and below) */
@media (max-width: 1200px) {
  .item img {
    max-height: 550px;
  }

  .overlay {
    padding: 50px;
  }

  .content {
    /* padding: 250px 70px; */
    width: 100%;
  }

  .content h2 {
    font-size: 38px;
  }

  .content p {
    font-size: 21px;
  }
}

/*ABOUT-US*/

/* Up to 1200px */
@media (max-width: 1200px) {
  .about-section {
    padding: 35px 0;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .about-images img {
    height: 180px;
  }

  .experience-badge {
    top: 150px;
    left: 180px;
    font-size: 16px;
    padding: 15px 10px;
  }

  .about-content {
    padding-left: 30px;
  }

  .about-title {
    font-size: 22px;
  }

  .about-subtitle {
    font-size: 36px;
  }

  .about-text {
    font-size: 15px;
  }
}

/* Up to 992px */
@media (max-width: 992px) {
  .about-section {
    padding: 30px 0;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
  }

  .about-images img {
    height: 160px;
  }

  .experience-badge {
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-content {
    padding-left: 20px;
  }

  .about-title {
    font-size: 20px;
  }

  .about-subtitle {
    font-size: 32px;
    padding-top: 10px;

  }

  .about-text {
    font-size: 15px;
  }
  .content-welcome p
  {
    font-size: 15px;
  }

  .navbar-nav {
    gap: 10px;
  }
}

/* Up to 768px */
@media (max-width: 768px) {
  .about-section {
    padding: 25px 0;
  }

  .about-images {
    gap: 5px;
  }

  .about-images img {
    height: 150px;
  }

  .experience-badge {
    top: 130px;
    font-size: 16px;
    padding: 10px 8px;
  }

  .about-content {
    padding-left: 15px;
  }

  .about-title {
    font-size: 18px;
  }

  .about-subtitle {
    font-size: 28px;
  }

  .about-text {
    font-size: 15px;
  }
  p
  {
    font-size: 15px;
  }
}

/* Up to 576px */
@media (max-width: 576px) {
  .about-section {
    padding: 20px 0;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  .about-images img {
    height: 140px;
  }

  .experience-badge {
    font-size: 12px;
    padding: 8px 6px;
  }

  .about-content {
    padding-left: 10px;
    margin-top: 20px;
  }

  .about-title {
    font-size: 16px;
  }

  .about-subtitle {
    font-size: 24px;
  }

  .about-text {
    font-size: 15px;
  }
}

/* Up to 480px */
@media (max-width: 480px) {
  .about-section {
    padding: 15px 0;
  }

  .about-images img {
    height: 120px;
  }

  .experience-badge {
    top: 105px;
    font-size: 13px;
    padding: 6px 4px;
  }

  .about-content {
    padding-left: 5px;
  }

  .about-title {
    font-size: 14px;
  }

  .about-subtitle {
    font-size: 20px;
  }

  .about-text {
    font-size: 14px;
  }
}

/*SERVICES*/

/* Up to 1200px */
@media (max-width: 1200px) {
  .services-section {
    padding: 35px 0;
  }

  .services-title h2 {
    font-size: 36px;
  }

  .service-card img {
    height: auto;
  }

  .service-card-body {
    padding: 15px;
  }

  .service-card h5 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

/* Up to 992px */
@media (max-width: 992px) {
  .services-section {
    padding: 30px 0;
  }

  .services-title h2 {
    font-size: 32px;
  }

  .services-title p {
    font-size: 0.95rem;
  }

  .service-card img {
    height: auto;
  }

  .service-card h5 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }
}

/* Up to 768px */
@media (max-width: 768px) {
  .services-section {
    padding: 25px 0;
  }

  .services-title {
    margin-bottom: 30px;
  }

  .services-title h2 {
    font-size: 28px;
  }

  .services-title p {
    font-size: 0.9rem;
  }

  .service-card img {
    height: auto;
  }

  .service-card-body {
    padding: 10px;
  }

  .service-card h5 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.8rem;
  }
}

/* Up to 576px */
@media (max-width: 576px) {
  .services-section {
    padding: 20px 0;
  }

  .services-title h2 {
    font-size: 24px;
  }

  .services-title p {
    font-size: 0.85rem;
  }

  .service-card img {
    height: auto;
  }

  .service-card h5 {
    font-size: 0.95rem;
  }

  .service-card p {
    font-size: 0.75rem;
  }
}

/* Up to 480px */
@media (max-width: 480px) {
  .services-section {
    padding: 15px 0;
  }

  .services-title {
    margin-bottom: 20px;
  }

  .services-title h2 {
    font-size: 20px;
  }

  .services-title p {
    font-size: 16px;
  }

  .service-card img {
    height: auto;
  }

  .service-card h5 {
    font-size: 0.9rem;
  }

  .service-card p {
    font-size: 14px;
  }
}

/*TYRE UPSIZE CALCULATOR*/

/* Up to 1200px */
@media (max-width: 1200px) {
  .tyre-section {
    padding: 35px 0;
  }

  .tyre-title h2 {
    font-size: 36px;
  }

  .tyre-title p {
    font-size: 16px;
  }

  .tyre-section table {
    width: 95%;
  }

  .tyre-section th,
  .tyre-section td {
    padding: 8px;
  }

  .tyre-section button {
    padding: 7px 10px;
    font-size: 13px;
  }
}

/* Up to 992px */
@media (max-width: 992px) {
  .tyre-section {
    padding: 30px 0;
  }

  .tyre-title h2 {
    font-size: 32px;
  }

  .tyre-title p {
    font-size: 14px;
  }

  .tyre-section table {
    width: 100%;
  }

  .tyre-section th,
  .tyre-section td {
    padding: 7px;
    font-size: 14px;
  }

  .tyre-section img {
    width: 80px;
    height: auto;
  }

  .tyre-section input[type="text"],
  select {
    width: 100%;
  }
}

/* Up to 768px */
@media (max-width: 768px) {
  .tyre-section {
    padding: 25px 0;
  }

  .tyre-title h2 {
    font-size: 28px;
  }

  .tyre-title p {
    font-size: 13px;
  }

  .tyre-section th,
  .tyre-section td {
    padding: 6px;
    font-size: 13px;
  }

  .tyre-section img {
    width: 70px;
    height: auto;
  }

  .tyre-section button {
    font-size: 12px;
    padding: 6px 8px;
  }
}

/* Up to 576px */
@media (max-width: 576px) {
  .tyre-section {
    padding: 20px 0;
  }

  .tyre-title h2 {
    font-size: 24px;
  }

  .tyre-title p {
    font-size: 12px;
  }

  .tyre-section table {
    font-size: 12px;
  }

  .tyre-section th,
  .tyre-section td {
    padding: 5px;
  }

  .tyre-section img {
    width: 60px;
  }

  .tyre-section button {
    font-size: 11px;
    padding: 5px 6px;
  }
}

/* Up to 480px */
@media (max-width: 480px) {
  .tyre-section {
    padding: 15px 0;
  }

  .tyre-title h2 {
    font-size: 20px;
  }

  .tyre-title p {
    font-size: 15px;
    text-align: left;
    color: black;
  }

  .tyre-section table {
    font-size: 11px;
  }

  .tyre-section th,
  .tyre-section td {
    padding: 4px;
  }

  .tyre-section img {
    width: 50px;
  }

  .tyre-section button {
    font-size: 10px;
    padding: 4px 5px;
  }
}

/*BLOGS*/
@media (max-width: 1200px) {
  .blog-tyre {
    padding: 0 25px 35px;
  }

  .blog-tyre h2 {
    font-size: 36px;
  }

  .blog-tyre p {
    font-size: 16px;
  }

  .owl-prev,
  .owl-next {
    width: 38px;
    height: 38px;
  }

  .owl-prev span,
  .owl-next span {
    font-size: 36px;
  }

  .owl-prev {
    left: -35px;
  }

  .owl-next {
    right: -35px;
  }

  .blog-tyre .read-more-btn {
    padding: 6px 14px;
    font-size: 0.95rem;
    max-width: 110px;
    /* position: absolute !important; */
  }
}

@media (max-width: 992px) {
  .blog-tyre {
    padding: 0 20px 30px;
  }

  .blog-tyre h2 {
    font-size: 32px;
  }

  .blog-tyre p {
    font-size: 16px;
  }

  .owl-prev,
  .owl-next {
    width: 36px;
    height: 36px;
  }

  .owl-prev span,
  .owl-next span {
    font-size: 32px;
  }

  .owl-prev {
    left: -30px;
  }

  .owl-next {
    right: -30px;
  }

  .blog-tyre .read-more-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
    max-width: 95px;
    /* position: absolute !important; */
  }
}

@media (max-width: 768px) {
  .blog-tyre {
    padding: 0 15px 25px;
  }

  .blog-tyre h2 {
    font-size: 28px;
  }

  .blog-tyre p {
     font-size: 15px;
  color: black;
        text-align: left;
  }

  .owl-prev,
  .owl-next {
    width: 34px;
    height: 34px;
  }

  .owl-prev span,
  .owl-next span {
    font-size: 28px;
  }

  .owl-prev {
    left: -25px;
  }

  .owl-next {
    right: -25px;
  }

  .blog-tyre .read-more-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    max-width: 95px;
    /* position: absolute !important; */
  }
}

@media (max-width: 576px) {
  .blog-tyre {
    padding: 0 10px 20px;
  }

  .blog-tyre h2 {
    font-size: 24px;
  }

  .owl-prev,
  .owl-next {
    width: 32px;
    height: 32px;
  }

  .owl-prev span,
  .owl-next span {
    font-size: 24px;
  }

  .owl-prev {
    left: -20px;
  }

  .owl-next {
    right: -20px;
  }

  .blog-tyre .read-more-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
    max-width: 85px;
  }
}

@media (max-width: 480px) {
  .blog-tyre {
    padding: 0 20px 15px;
  }

  .blog-tyre h2 {
    font-size: 20px;
  }

  .owl-prev,
  .owl-next {
    width: 30px;
    height: 30px;
  }

  .owl-prev span,
  .owl-next span {
    font-size: 26px;
  }

  /* 
  .owl-prev {
    left: -25px;
  } */

  /* .owl-next {
    right: -25px;
  } */

  .blog-tyre .read-more-btn {
    padding: 8px 15px;
    font-size: 0.75rem;
    max-width: 95px;
  }
}

/*BRANDS*/

/* Up to 1200px */
@media (max-width: 1200px) {
  .brands-section {
    padding: 35px 0;
  }

  .brands-title h2 {
    font-size: 36px;
  }

  .brands-title p {
    font-size: 15px;
  }

  .brand-logo img {
    max-width: 200px;
    height: 90px;
  }
}

/* Up to 992px */
@media (max-width: 992px) {
  .brands-section {
    padding: 30px 0;
  }

  .brands-title h2 {
    font-size: 32px;
  }

  .brands-title p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .brand-logo img {
    max-width: 180px;
    height: 80px;
  }
}

/* Up to 768px */
@media (max-width: 768px) {
  .brands-section {
    padding: 25px 0;
  }

  .brands-title h2 {
    font-size: 28px;
  }

  .brands-title p {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .brand-logo img {
    max-width: 150px;
    height: 70px;
  }
}

/* Up to 576px */
@media (max-width: 576px) {
  .brands-section {
    padding: 20px 0;
  }

  .brands-title h2 {
    font-size: 24px;
  }

  .brands-title p {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .brand-logo img {
    max-width: 140px;
    height: 80px;
  }

  .brands {
    justify-content: left !important;
  }
}

/* Up to 480px */
@media (max-width: 480px) {
  .brands-section {
    padding: 15px 0;
  }

  .brands-title h2 {
    font-size: 20px;
  }

  .brands-title p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .brand-logo img {
    max-width: 120px;
    height: 70px;
  }
}

/*ENQUIRY AND CONTACT US*/

/* Media Queries */

/* Up to 1200px */
@media (max-width: 1200px) {
  .contact-section {
    margin: 30px auto;
  }

  .contact-info {
    padding: 30px;
  }

  .contact-info h1 {
    font-size: 1.8rem;
  }

  .contact-info h4 {
    font-size: 22px;
  }

  .contact-form {
    padding: 30px;
  }

  .contact-form h2 {
    font-size: 1.8rem;
  }
}

/* Up to 992px */
@media (max-width: 992px) {
  .contact-section {
    margin: 25px auto;
  }

  .contact-info {
    padding: 25px;
  }

  .contact-info h1 {
    font-size: 1.6rem;
  }

  .contact-info h4 {
    font-size: 20px;
  }

  .contact-form {
    padding: 25px;
  }

  .contact-form h2 {
    font-size: 1.6rem;
  }
}

/* Up to 768px */
@media (max-width: 768px) {
  .contact-section {
    margin: 20px auto;
  }

  .contact-info {
    padding: 20px;
  }

  .contact-info h1 {
    font-size: 1.4rem;
  }

  .contact-info h4 {
    font-size: 18px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form h2 {
    font-size: 1.4rem;
  }
}

/* Up to 576px */
@media (max-width: 576px) {
  .contact-section {
    margin: 15px auto;
  }

  .contact-info {
    padding: 15px;
    border-radius: 0 0 8px 8px;
    /* margin-top: 1rem; */
  }

  .contact-info h1 {
    font-size: 1.2rem;
  }

  .contact-info h4 {
    font-size: 16px;
  }

  .contact-form {
    padding: 15px;
  }

  .contact-form h2 {
    font-size: 1.2rem;
  }

  .btn-submit {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .contact-section .contact-info {
    order: 2;
    /* Reset the order for desktop view */
  }

  .contact-section .contact-form {
    order: 1;
    /* Reset the order for desktop view */
  }
}

/* Up to 480px */
@media (max-width: 480px) {
  .contact-section {
    margin: 15px auto;
  }

  .contact-info {
    padding: 10px;
  }

  .contact-info h1 {
    font-size: 1rem;
  }

  .contact-info h4 {
    font-size: 16px;
  }

  .contact-form {
    padding: 10px;
  }

  .contact-form h2 {
    font-size: 1rem;
  }

  .btn-submit {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/*CONTACT*/

/* Extra Large Screens (1200px and below) */
@media (max-width: 1200px) {
  .contact-container {
    padding: 35px;
  }

  .contact-container .contact-heading {
    font-size: 17px;
  }

  .contact-container .location-circle {
    width: 49px;
  }
}

/* Large Screens (992px and below) */
@media (max-width: 992px) {
  .contact-container {
    padding: 30px;
  }

  .contact-container h2 {
    font-size: 1.8rem;
  }

  .contact-container .contact-list {
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }

  .contact-container .icon-circle {
    width: 35px;
    height: 35px;
    font-size: 18px;
    margin-right: 10px;
  }

  .contact-container .location-circle {
    width: 52px;
  }
}

/* Medium Screens (768px and below) */
@media (max-width: 768px) {
  .contact-container {
    padding: 25px;
  }

  .contact-container h2 {
    font-size: 24px;
  }

  .contact-container .contact-heading {
    font-size: 16px;
  }

  .contact-container .contact-list {
    gap: 8px;
  }

  .contact-container .icon-circle {
    width: 35px;
    height: 35px;
    font-size: 18px;
    margin-right: 10px;
  }

  .contact-container .location-circle {
    width: 70px !important;
  }

  .contact-container select,
  input[type="text"],
  input[type="button"] {
    font-size: 16px;
  }
}

/* Small Screens (576px and below) */
@media (max-width: 576px) {
  .contact-container {
    padding: 20px 20px 0;
  }

  .contact-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .contact-container h3 {
    font-size: 21px;
    margin-bottom: 20px;
  }

  .contact-container .icon-circle {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .contact-container .location-circle {
    width: 37px !important;
  }

  .contact-container select,
  input[type="text"],
  input[type="button"] {
    height: 36px;
  }

  .contact-container .contact-container-form {
    order: 1;
  }

  .contact-container .contact-container-info {
    order: 2;
    padding-top: 40px;
  }

  .contact-container .border-mail {
    border-bottom: none !important;
  }
}

/* Extra Small Screens (480px and below) */
@media (max-width: 480px) {
  .contact-container {
    padding: 15px 15px 0;
  }

  .contact-container h2 {
    font-size: 24px;
  }

  .contact-container h3 {
    font-size: 21px;
  }

  .contact-container .icon-circle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .contact-container .location-circle {
    width: 45px !important;
  }

  .contact-container .contact-list {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }

  .contact-container select,
  input[type="text"],
  input[type="button"] {
    height: 34px;
  }
}

@media screen and (min-width: 360px) and (max-width: 479px) {
  .contact-container .icon-circle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .contact-container .location-circle {
    width: 50px !important;
  }
}

/*FOOTER*/

/* Up to 1200px */
@media (max-width: 1200px) {
  .footer {
    padding: 30px 0;
  }

  .footer .social-icons i {
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 16px;
  }

  .company {
    padding-left: 30px;
  }

  .copyrights {
    padding-right: 30px;
  }

  .disclaimer {
    flex-direction: row;
    justify-content: center;

    font-size: 14px;
  }

  .footer .icon {
    font-size: 22px;
  }

  .footer .address {
    margin-bottom: 8px;
  }

  .address {
    justify-content: center;
  }

  .address .col-md-4 {
    min-width: 280px;
  }

  .address .icon {
    font-size: 12px;
  }

  .footer .logo {
    width: 150px;
  }
}

/* Up to 992px */
@media (max-width: 992px) {
  .footer {
    padding: 25px 0;
  }

  .footer .social-icons i {
    font-size: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    font-size: 15px;
  }

  .company,
  .copyrights,
  .social-icons {
    padding: 10px 0;
    text-align: center;
  }

  .company {
    padding-left: 0;
  }

  .copyrights {
    padding-right: 0;
    margin: 0;
  }

  .social-icons {
    padding-left: 0;
  }

  .footer a {
    order: 3;
    /* margin-left: 15px; */
  }

  .footer:nth-child(even) .company {
    order: 2;
    /* padding-left: 20px; */
  }

  .footer:nth-child(odd) .company {
    padding-right: 20px;
  }

  .disclaimer {
    flex-direction: row;
    justify-content: center;
    margin-right: 0;
    font-size: 14px;
    margin-top: 8px;
  }

  .footer .icon {
    font-size: 20px;
  }

  .footer .address {
    margin-bottom: 6px;
  }

  .address {
    /* justify-content: center; */
    text-align: left;
  }

  .address .col-md-4 {
    /* flex-direction: column; */
    flex: 1 1 100%;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 10px;
  }

  .address .icon {
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 8px;
  }

  .footer .logo {
    width: 130px;
  }
}

/* Up to 768px */
@media (max-width: 768px) {
  .footer {
    padding: 20px 0;
  }

  .footer .social-icons i {
    font-size: 16px;
    margin-right: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    font-size: 15px;
  }

  .company,
  .copyrights {
    padding: 5px;
    text-align: center;
  }

  /* .footer a {
    margin-left: 15px;
  } */

  .disclaimer {
    flex-direction: row;
    justify-content: center;
    margin-right: 0px;
    font-size: 13px;
  }

  .footer .icon {
    font-size: 18px;
  }

  .footer .address {
    margin-bottom: 5px;
  }

  .address {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .address .col-md-4 {
    flex: 1 1 100%;
    /* justify-content: center;
    text-align: center; */
  }

  .address .icon {
    font-size: 12px;
  }

  .footer .logo {
    width: 120px;
  }
}

/* Up to 576px */
@media (max-width: 576px) {
  .footer {
    padding: 15px 0;
  }

  .footer .social-icons i {
    font-size: 14px;
    margin-right: 6px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    font-size: 14px;
  }

  .company,
  .copyrights,
  .social-icons {
    padding: 5px 0;
  }

  /* .footer a {
    margin-left: 10px;
  } */

  .disclaimer {
    flex-direction: column;
    text-align: center;
    margin-right: 0;
    font-size: 12px;
  }

  .footer .icon {
    font-size: 16px;
    margin-right: 8px;
  }

  .footer .address {
    margin-bottom: 4px;
  }

  .address .icon {
    font-size: 12px;
    margin-right: 6px;
  }

  .address p,
  .address a {
    font-size: 14px;
  }

  .footer .logo {
    width: 100px;
  }

  .footer .footer-links {
    text-align: left;
  }
}

/* Up to 480px */
@media (max-width: 480px) {
  .footer {
    padding: 10px 0;
    text-align: left;
  }

  .footer .social-icons i {
    font-size: 14px;
    margin-right: 5px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    font-size: 14px;
  }

  .company,
  .copyrights,
  .social-icons {
    padding: 5px 0;
    text-align: center;
  }

  .company {
    padding-left: 0;
  }

  .copyrights {
    padding-right: 0;
    padding-bottom: 0;
  }

  .social-icons {
    padding-left: 0;
  }

  /* .footer a {
    margin-left: 10px;
  } */

  .disclaimer {
    flex-direction: column;
    text-align: center;
    margin-right: 0;
    font-size: 12px;
  }

  .footer .icon {
    font-size: 14px;
    margin-right: 6px;
  }

  .footer .address {
    margin-bottom: 3px;
  }

  .address {
    padding: 10px;
  }

  .address .icon {
    font-size: 12px;
    margin-right: 5px;
  }

  .address p,
  .address a {
    font-size: 14px;
  }

  .footer .logo {
    width: 90px;
  }
}

/*disclaimer content*/

/* @media (max-width: 480px) {
  .disclaimer-content {
    font-size: 10px !important;
    width: 90%;
  }
}


@media (max-width: 576px) {
  .disclaimer-content {
    font-size: 11px !important;
    width: 85%;
  }
}


@media (max-width: 768px) {
  .disclaimer-content {
    font-size: 12px !important;
    width: 80%;
  }
}


@media (max-width: 992px) {
  .disclaimer-content {
    font-size: 14px !important;
    width: 75%;
  }
}


@media (max-width: 1200px) {
  .disclaimer-content {
    font-size: 16px ;
    width: 70%;
  }
} */


.contact-us-button a {
  text-decoration: none;
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;

}


.brand-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.brand-image img {
  width: 80% !important;
  /* width: 200px !important; */
}



/* faq */

.container {
  margin: 0 auto;
  padding: 4rem;
  width: 48rem;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #000;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 20px;
  color: #000;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #000;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #000;
  border: 1px solid #000;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 20px;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #000;
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
  opacity: 1;
  max-height: 15em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
  padding: 0 20px;
}

.content-welcome .services-title h2 {
  font-size: 30px !important;
}

.faq .services-title h2 {
  font-size: 30px !important;
}


/* whatsapp  */
.location-btn i,
.whatsapp-btn i {
  position: fixed;
  bottom: 145px;
  right: 0;
  cursor: pointer;
  /* display: none; */
  z-index: 10;
  /* background: var(--main-color); */
  background: #25d366;
  color: #ffffff;
  height: 50px;
  width: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  font-size: 25px;
  border-radius: 50%;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  margin-right: 28px;
  -webkit-box-shadow: 0px 0px 14px 0px #25d366;
  box-shadow: 0px 0px 14px 0px #25d366;
}

.content-welcome .color {
  color: #d40b04 !important;
}

.content-welcome p {
  color: #000;
}

.about-content p {
  color: #000;
  font-size: 16px;
}
.content-welcome h1
{
  font-size: 35px;
  font-weight: 600;

}




@media (max-width:576px) {
  .accordion button {
    padding-right: 3.5rem;
  }

  .accordion button[aria-expanded='true']+.accordion-content {
    max-height: 25em !important;
  }

  h1,
  h2 {
    font-size: 1.4rem !important;
  }

  .content-welcome .services-title h2 {
    font-size: 24px !important;
  }

  .faq .services-title h2 {
    font-size: 25px !important;
  }

  h3 {
    font-size: 1.3rem !important;
  }
}
#btn-back-to-top {
  position: fixed;
  bottom: 40px;
  right: 20px;
  display: none;
  z-index: 9999;
  border:1px solid white;
}
.maping
{
  padding-left: 45px;
}
.responsive-iframe {
    width: 100%;
    max-width: 100%;
    height: 400px; /* fixed height */
    overflow: hidden;
    position: relative;
}

.responsive-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.footer p{
  color: white !important;
}