/*===================
Taxi Rate css 
=====================*/

.taxi-rate {
  padding: 120px 0;
}

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

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

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

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

.taxi-rate .site-title span{
  color: var(--color-primary);
}

.rate-item{
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: white;
  margin-bottom: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgb(6 22 58 / 10%);
  transition: all .9s ease-in-out;
  z-index: 1;
}

.rate-item:hover{
  transform: translateY(-10px);
}

.rate-header-content{
  margin: 30px 0 80px 0;
  text-align: center;
}

.rate-header-content h4{
  margin-bottom: 0px;
  font-size: 22px;
  text-transform: uppercase;
}

.rate-header-content p{
  color: var(--color-primary);
  font-weight: 500;
}

.rate-content{
  background: var(--bg-color);
  padding: 30px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.rate-bg{
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .15;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.rate-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  border-radius: 50px;
  font-size: 56px;
  color: white;
  background: var(--color-primary);
  position: relative;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  margin: -80px auto 0 auto;
}

.rate-icon::before{
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: -6px;
  bottom: -6px;
  border: 2px dashed var(--color-primary);
  border-radius: 50%;
  animation: rotate 9s linear infinite;
}

@keyframes rotate {
  100%{
    transform: rotate(180deg);
  }
}

.rate-icon img{
  width: 55px;
}

.rate-feature{
  margin-top: 30px;
}

.rate-feature ul{
  margin-bottom: 25px;
}

.rate-feature ul li{
  position: relative;
  margin: 10px 0;
  color: #fff;
}

.rate-feature ul li i{
  color: var(--color-primary);
  margin-right: 5px;
}

.rate-feature ul li span{
  float: right;
}

.rate-item .theme-btn {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  color: var(--text-color-dark);
  padding: 14px 25px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--btn-bg);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}

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

.rate-item .theme-btn:hover {
  color: var(--text-color-dark);
}

.rate-item .theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.rate-item .theme-btn i {
  margin-left: 5px;
}

.rate-item .theme-btn span {
  margin-right: 5px;
}