/*====================
Cta css 
======================*/

.taxio-contact {
  /*background: var(--color-primary);*/
  position: relative;
  padding: 80px 0;
  z-index: 1;
}

/*.taxio-contact::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  background-image: url(./pics/shape-5.png);*/
/*  background-repeat: repeat-x;*/
/*  width: 100%;*/
/*  height: 40px;*/
/*  left: 0;*/
/*  top: 0;*/
/*  z-index: -1;*/
/*}*/

/*.taxio-contact::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  background-image: url(./pics/shape-5.png);*/
/*  background-repeat: repeat-x;*/
/*  width: 100%;*/
/*  height: 40px;*/
/*  left: 0;*/
/*  bottom: 0;*/
/*  z-index: -1;*/
/*}*/

.taxio-contact .mb-20 {
  margin-bottom: 20px;
}

.taxio-contact .cta-text h2 {
  color: #000;
  font-size: 36px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.taxio-contact .cta-text p {
  color: #000;
}

.taxio-contact .cta-number {
  font-size: 22px;
  color: #000 !important;
  font-weight: 700;
}

.taxio-contact .cta-number i {
  font-size: 32px;
  margin-right: 15px;
}

.taxio-contact .cta-btn .theme-btn {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  padding: 14px 25px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  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);
  font-family: var(--title-font-family);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}

.taxio-contact .cta-btn .theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: #fff;
  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;
}

.taxio-contact .cta-btn .theme-btn:hover {
  color: var(--text-color);
}

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

.taxio-contact .cta-btn .theme-btn i {
  margin-left: 5px;
}

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

.taxio-contact .cta-divider {
  position: relative;
  padding-right: 15%;
  text-align: left;
}

.taxio-contact .cta-divider::before {
  position: absolute;
  content: close-quote;
  width: 2px;
  bottom: 0;
  background-color: #fff;
  right: 0;
  top: 0;
}

.taxio-contact .cta-divider:after {
  width: 0px;
  position: absolute;
  content: close-quote;
  height: 0px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #fff;
  top: 50%;
  transform: translateY(-50%);
  right: -6px;
}

@media (max-width: 992px) {
  .taxio-contact .cta-divider:before,
  .taxio-contact .cta-divider:after {
    display: none;
  }
  .taxio-contact .cta-divider {
    padding-right: 0;
    text-align: center;
  }
  .taxio-contact .cta-text h2 {
  color: #000;
  font-size: 28px;
  text-transform: capitalize;
  margin-bottom: 15px;
}
}
