.pt-80 {

}

.pb-80 {
  padding-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-10 {
  margin-bottom: 10px;
}
/*====================
50. Partner css 
====================== */

.partner {
  position: relative;
}

.partner-slider {
  padding-top: 50px;

}

.partner-img img {
  -webkit-filter: grayscale(100%) invert(0.6);
  filter: grayscale(100%) invert(0.6);
  cursor: pointer;
}

.partner-img img:hover {
  filter: unset;
}

/*====================
42. Download css 
======================*/

.download-area {
  position: relative;
margin-top: 80px;
}

.download-wrapper {
  position: relative;
  background-image: url(images/taxio-download-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
  z-index: 1;
}

.download-btn {
  display: flex;
  gap: 15px;
}

.download-btn a {
  display: flex;
  align-items: center;width: 190px;
  gap: 10px;
  padding: 6px 20px;
  background: #ffb300;
  color: #ffffff;
  border-radius: 50px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.download-btn a:first-child {
  background: #1A449A;
}

.download-btn a:last-child {
  background: #71BA2B;
}

.download-btn a:hover {
  background: #71BA2B;
}

.download-btn a:last-child:hover {
  background: #1A449A;
}

.download-btn a i {
  font-size: 40px;
}

.download-btn-content {
  display: flex;
  flex-direction: column;
}

.download-btn-content span {
  font-weight: 500;
  font-size: 14px;
}

.download-img {
  position: absolute;
  right: 0px;
  bottom: -30px;
  width: 50%;
}

@media all and (max-width: 991px) {
  .download-img {
    position: relative;
    right: 35px;
    width: 150%;
  }
}

@media all and (max-width: 992px) {
  .download-btn {
    flex-direction: column;
  }

  .download-btn a {
    max-width: 180px;
  }
}

/*====================
7. Site title css
======================*/

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #1A449A;
}

.site-title-tagline::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  background: #1A449A;
  opacity: 0.2;
  left: -2px;
  bottom: 0;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 45px;
  color: #111111;
  margin-bottom: 0;
}

.site-title span {
  color: #ffb300;
}

.site-heading p {
  margin-top: 15px;
  color: #757f95;
}

.heading-divider {
  display: inline-block;
  position: relative;
  border: 3px solid #ffb300;
  width: 90px;
  height: 10px;
  border-radius: 50px;
}

.heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: 7px;
  width: 15px;
  border-radius: 50px;
  background: #ffb300;
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(72px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(72px);
  }
  100% {
    transform: translateX(-1px);
  }
}
@media screen and (max-width:992px){
.mb-120 {
    margin-bottom: 0;
}
}


@media screen and (max-width: 668px){
.site-title {
    font-size: 30px !important;
}
.site-heading p {
    margin-top: 10px !important;
    font-size: 14px !important;
}
.download-area {
    margin-top: 30px;
}
.indexB-arshine ul li h5::after {
    right: initial !important;
}

  }

/* RTL (Hebrew/Arabic): the content column flows to the right, so mirror the
   phone image to the LEFT — otherwise it sits on top of the heading/text. */
html[dir="rtl"] .download-img {
  right: auto !important;
  left: 0 !important;
}
 