.taxio-about {
  padding: 120px 0;
}
.taxio-about .about-left {
  position: relative;
}
.taxio-about .about-img img {width: 100%;}
.taxio-about .about-img .video-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 90px;
  height: 90px;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.taxio-about .about-img .video-btn i {
  color: #ffffff;
  font-size: 22px;
}

.taxio-about .about-img .video-btn::after,
.taxio-about .about-img .video-btn::before {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: ripple 3s linear infinite;
  animation: ripple 3s linear infinite;
  opacity: 0;
  border-radius: 50%;
  background: var(--color-primary);
}

.taxio-about .about-img .video-btn::before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
.taxio-about .about-experience {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  top: 0px;
  left: 0px;
  background: var(--color-second);
  border-radius: var(--button-radius);
  padding: 10px 30px 10px 10px;
  color: #ffffff;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
}
.taxio-about .about-experience b {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.8;
  font-family: var(--title-font-family);
}
.taxio-about .about-experience-icon {
  color: #ffffff;
  font-size: 45px;
  width: 70px;
  height: 70px;
  line-height: 63px;
  text-align: center;
  background: var(--color-primary);
  border-radius: var(--button-radius);
}

.taxio-about .about-experience-icon img {
  width: 50px;
  filter: brightness(0) invert(1);
}

.taxio-about .about-right {
  position: relative;
  display: block;
  padding-left: 30px;
}

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

.taxio-about .about-right .site-title-tagline {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--title-font-family);
}

.taxio-about .about-right .site-title-tagline::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  background: var(--color-primary);
  opacity: 0.2;
  left: -2px;
  bottom: 0;
}

.taxio-about .about-right .site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 48px;
  color: #000;
  margin-bottom: 0;
}

.taxio-about .about-right .site-title span {
  color: var(--color-primary);
}

.taxio-about .about-text {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.8;
}
.taxio-about .about-list-wrapper {
  position: relative;
  display: block;
  margin-top: 20px;
  margin-bottom: 10px;
}

.taxio-about .about-list {
  position: relative;
  display: block;
  font-family: var(--title-font-family);
}

.taxio-about .about-list li {
  position: relative;
  padding-left: 25px;
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.8;
  font-weight: 500;
}

.taxio-about .about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--color-primary);
}

.taxio-about .about-list i {
  position: absolute;
  left: 4px;
  top: 4px;
  color: #fff;
  font-size: 10px;
}


.taxio-about .about-right .theme-btn {
  color: #333;
  display: inline-block;
  padding: 14px;
  font-size: 14px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  border-radius: var(--button-radius);
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--color-primary);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.taxio-about .about-right .theme-btn::before {
  background: #fff;
  content: "";
  height: 600px;
  width: 600px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.taxio-about .about-right .theme-btn:hover {
   color: var(--color-primary);
}

.taxio-about .about-right .theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.taxio-about .about-right .theme-btn i {
  margin-left: 5px;
}

.taxio-about .about-right .theme-btn span {
  margin-right: 5px;
}

@media all and (max-width: 991px) {
  .taxio-about .about-right {
    margin-top: 30px;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .taxio-about{
  padding: 40px 0;}

}
@media screen and (max-width: 480px) {
.taxio-about{
  padding: 30px 0;}
}


@media screen and (max-width: 1440px) {
  .taxio-about .about-right .site-title {font-size: 36px;}
}
@media screen and (max-width: 1281px) {
  .taxio-about .about-right .site-title {font-size: 34px;}
}
@media screen and (max-width: 1171px) {
  .taxio-about .about-right .site-title {font-size: 30px;}
}
@media screen and (max-width: 992px) {
  .taxio-about .about-right .site-title {font-size: 26px;}
  .taxio-about .about-img .video-btn {width: 60px;height: 60px;}
  .taxio-about {padding: 30px 0;}
}
@media screen and (max-width: 768px) {
  .taxio-about .about-right .site-title {font-size: 24px;}
}
@media screen and (max-width: 480px) {
  .taxio-about .about-right .site-title {font-size: 22px;}
}
