
/** pricing-section **/

.pricing-section{
  position: relative;
}

.pricing-section .outer-container{
  position: relative;
  max-width: 1675px;
  width: 100%;
  margin: 0 auto;
  background: #FFF2E7;
  border-radius: 12px;
}

.pricing-section .tab-btn-box{
  position: absolute;
  top: 13px;
  right: 0px;
}

.pricing-section .tab-btns {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-section .tab-btns:before {
  position: absolute;
  left: 19px;
  right: 0;
  margin: 0 auto;
  height: 40px;
  width: 84px;
  content: "";
  border-radius: 30px;
  background: var(--theme-color);
}

.pricing-section .tab-btns li{
  position: relative;
  display: inline-block;
  min-width: 87px;
  text-align: right;
  font-size: 18px;
  line-height: 34px;
  cursor: pointer;
  padding-right: 70px;
  transition: all 500ms ease;
}

.pricing-section .tab-btns li.active-btn{
  color: var(--title-color);
}

.pricing-section .tab-btns li:last-child{
  padding-right: 0;
  padding-left: 37px;
  text-align: left;
}

.pricing-section .tab-btns li.active-btn:before {
  right: 24px;
}

.pricing-section .tab-btns li:before {
  position: absolute;
  top: 3px;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  content: "";
  right: -20px;
  background: #fff;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.pricing-section .tab-btns li:last-child:before{
  display: none;
}

.pricing-block-one .pricing-table{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 60px 50px;
  margin-bottom: 30px;
}

.pricing-block-one .pricing-table .table-header{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 35px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 35px;
}

.pricing-block-one .pricing-table .table-header .icon-box{
  position: relative;
  display: inline-block;
  width: 83px;
  height: 83px;
  line-height: 83px;
  background: rgba(150, 128, 239, 0.20);
  border-radius: 50%;
  text-align: center;
  font-size: 40px;
  color: #9B6CFF;
}

.pricing-block:nth-child(2) .pricing-block-one .pricing-table .table-header .icon-box{
  background: rgba(0, 196, 220, 0.20);
  color: #00C4DC;
}

.pricing-block:nth-child(3) .pricing-block-one .pricing-table .table-header .icon-box{
  background: rgba(63, 217, 83, 0.20);
  color: #3FD953;
}

.pricing-block-one .pricing-table .table-header h3{
  display: block;
  font-size: 22px;
  line-height: 31px;
}

.pricing-block-one .pricing-table .table-content h2{
  display: block;
  font-size: 65px;
  line-height: 75px;
  margin-bottom: 17px;
}

.pricing-block-one .pricing-table .table-content h2 span{
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
}

.pricing-block-one .pricing-table .table-content p{
  margin-bottom: 50px;
}

.pricing-block-one .pricing-table .table-content .theme-btn{
  background: #9680EF;
  width: 100%;
  margin-bottom: 50px;
}

.pricing-block:nth-child(2) .pricing-block-one .pricing-table .table-content .theme-btn{
  background: #00C4DC;
}

.pricing-block:nth-child(3) .pricing-block-one .pricing-table .table-content .theme-btn{
  background: #3FD953;
}

.pricing-block-one .pricing-table .table-content .list-style-one li{
  margin-bottom: 7px;
}

.pricing-block-one .pricing-table .table-content .list-style-one li:last-child{
  margin-bottom: 0px;
}


/** pricing-style-two **/

.pricing-style-two{
  position: relative;
}

.pricing-block-two .pricing-table{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 45px;
  box-shadow: 0px 4px 45px 0px rgba(69, 51, 187, 0.10);
  margin-bottom: 30px;
  z-index: 1;
}

.pricing-block-two .pricing-table:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(0deg, #664DFF 0%, #2E0B8E 100%);
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scale(.9) translateY(20px);
  -ms-transform: scale(.9) translateY(20px);
  transform: scale(.9) translateY(20px);
  transition: all 500ms ease;
}

.pricing-block-two .pricing-table:hover:before{
  opacity: 1;
  -webkit-transform: scale(1) translateY(0px);
  -ms-transform: scale(1) translateY(0px);
  transform: scale(1) translateY(0px);
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

.pricing-block-two .pricing-table .table-header{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 31px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 38px;
}

.pricing-block-two .pricing-table .table-header .text-box{
  max-width: 210px;
}

.pricing-block-two .pricing-table .table-header .text-box p{
  font-size: 14px;
  line-height: 25px;
  transition: all 500ms ease;
}

.pricing-block-two .pricing-table .table-header .title-box h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 31px;
  transition: all 500ms ease;
}

.pricing-block-two .pricing-table:hover .table-header .text-box p,
.pricing-block-two .pricing-table:hover .table-header .title-box h3,
.pricing-block-two .pricing-table:hover .table-header .title-box h2,
.pricing-block-two .pricing-table:hover .table-header .title-box h2 span{
  color: #fff;
}

.pricing-block-two .pricing-table .table-header .title-box h2{
  display: block;
  font-size: 37px;
  line-height: 58px;
  transition: all 500ms ease;
}

.pricing-block-two .pricing-table .table-header .title-box h2 span{
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color);
  transition: all 500ms ease;
}

.pricing-block-two .pricing-table .table-content{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.pricing-block-two .pricing-table .feature-list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.pricing-block-two .pricing-table:hover .feature-list li{
  color: #fff;
}

.pricing-block-two .pricing-table .feature-list li i{
  position: relative;
  display: inline-block;
  width: 21px;
  height: 21px;
  line-height: 21px;
  background: rgba(101, 77, 255, 0.20);
  text-align: center;
  border-radius: 50%;
  font-size: 9px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.pricing-block-two .pricing-table:hover .feature-list li i{
  color: #fff;
  background: rgba(150, 128, 239, 0.20);
}

.pricing-block-two .pricing-table .theme-btn{
  background: #1D1D1D;
  padding: 15px 60px;
}

.pricing-block-two .pricing-table:hover .theme-btn,
.pricing-block-two .pricing-table:hover .theme-btn{
  background: var(--theme-color);
}

.pricing-style-two .tab-btn-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  direction: ltr;
}

.pricing-style-two .tab-btns {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-style-two .tab-btns:before {
  position: absolute;
  left: 0px;
  right: 0;
  margin: 0 auto;
  height: 16px;
  width: 48px;
  content: "";
  border-radius: 30px;
  background: var(--theme-color);
  opacity: 0.2;
}

.pricing-style-two .tab-btns li{
  position: relative;
  display: inline-block;
  min-width: 87px;
  text-align: right;
  font-size: 17px;
  line-height: 31px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  padding-right: 70px;
  transition: all 500ms ease;
}

.pricing-style-two .tab-btns li:last-child{
  padding-right: 0;
  padding-left: 37px;
  text-align: left;
}

.pricing-style-two .tab-btns li.active-btn:before {
  right: 20px;
}

.pricing-style-two .tab-btns li:before {
  position: absolute;
  top: 3px;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  content: "";
  right: -16px;
  background: var(--theme-color);
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.pricing-style-two .tab-btns li:last-child:before{
  display: none;
}


/** pricing-style-three **/

.pricing-style-three{
  position: relative;
  background: #F9F9FF;
}

.pricing-style-three .tab-btn-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  direction: ltr;
}

.pricing-style-three .tab-btns {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-style-three .tab-btns:before {
  position: absolute;
  left: 0px;
  right: 0;
  margin: 0 auto;
  height: 30px;
  width: 60px;
  content: "";
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.pricing-style-three .tab-btns li{
  position: relative;
  display: inline-block;
  min-width: 87px;
  text-align: right;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  padding-right: 70px;
  transition: all 500ms ease;
}

.pricing-style-three .tab-btns li:last-child{
  padding-right: 0;
  padding-left: 25px;
  text-align: left;
}

.pricing-style-three .tab-btns li.active-btn:before {
  right: 27px;
}

.pricing-style-three .tab-btns li:before {
  position: absolute;
  top: 3px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  content: "";
  right: -2px;
  background: #211087;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.pricing-style-three .tab-btns li:last-child:before{
  display: none;
}

.pricing-block-three .pricing-table{
  position: relative;
  display: block;
  box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 60px;
}

.pricing-block-three .pricing-table .title-list li{
  position: relative;
  display: block;
  float: left;
  width: 20%;
  text-align: center;
  font-size: 17px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  padding: 21px 10px;
  background: #9680EF;
}

.pricing-block-three .pricing-table .title-list li:nth-child(even){
  background: #A58EFF;
}

.pricing-block-three .pricing-table .table-content .title-box{
  position: relative;
  display: block;
  float: left;
  width: 20%;
  text-align: center;
  background: #15095E;
  padding: 84px 15px 82px 15px;
}

.pricing-block-three .pricing-table .table-content .title-box .icon-box{
  position: relative;
  display: inline-block;
  width: 67px;
  height: 67px;
  line-height: 67px;
  text-align: center;
  border-radius: 50%;
  background: #2F1DA0;
  font-size: 30px;
  color: var(--theme-color);
  margin-bottom: 30px;
}

.pricing-block-three .pricing-table .table-content .title-box h3{
  display: block;
  font-size: 22px;
  line-height: 31px;
  color: #fff;
}

.pricing-block-three .pricing-table .table-content .content-box{
  position: relative;
  display: block;
  float: left;
  width: 80%;
  padding-bottom: 40px;
}

.pricing-block-three .pricing-table .table-content .content-box .upper-box,
.pricing-block-three .pricing-table .table-content .content-box .lower-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-block-three .pricing-table .table-content .single-item{
  position: relative;
  display: block;
  padding: 24px 15px 46px 25px;
}

.pricing-block-three .pricing-table .table-content .single-item .text{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 31px;
  text-align: center;
  margin-bottom: 12px;
}

.pricing-block-three .pricing-table .table-content .single-item .feature-list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  line-height: 31px;
  color: var(--title-color);
  margin-bottom: 10px;
}

.pricing-block-three .pricing-table .table-content .single-item .feature-list li:last-child{
  margin-bottom: 0px;
}

.pricing-block-three .pricing-table .table-content .single-item .feature-list li del{
  color: var(--text-color);
}

.pricing-block-three .pricing-table .table-content .content-box .lower-box h2{
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 56px;
}

.pricing-block-three .pricing-table .table-content .content-box .lower-box h2 span{
  font-size: 14px;
  font-weight: 500;
  font-family: var(--text-font);
  color: var(--text-color);
  margin-left: 10px;
}

.pricing-block-three .pricing-table .table-content .content-box .lower-box .theme-btn{
  width: 540px;
  padding: 18px 50px;
  border-radius: 100px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color) !important;
  background: transparent;
}

.pricing-block-three .pricing-table .table-content .content-box .lower-box .theme-btn:hover{
  color: #fff !important;
}

.pricing-block-three .pricing-table .table-content .content-box .lower-box .theme-btn:before,
.pricing-block-three .pricing-table .table-content .content-box .lower-box .theme-btn:after{
  background: var(--theme-color);
}


.service_agency .pricing-block-one .pricing-table{
  background: #F9F9F9;
}





/** rtl-css **/

.rtl .pricing-section .tab-btn-box{
  right: inherit;
  left: 0px;
  direction: ltr;
}

.rtl .pricing-style-three .tab-btn-box{
  direction: ltr;
}

.rtl .pricing-block-three .pricing-table .title-list li{
  float: right;
}

.rtl .pricing-block-three .pricing-table .table-content .title-box{
  float: right;
}

.rtl .pricing-block-three .pricing-table .table-content .content-box{
  float: right;
}


/** responsive-css **/

@media only screen and (max-width: 1300px){
  .pricing-style-three .tabs-box{
    position: relative;
    overflow-x: auto;
    width: 100%;
  }

  .pricing-style-three .tabs-box .tabs-content{
    min-width: 1290px;
    width: 100%;
  }
}

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .pricing-section .tab-btn-box{
    position: relative;
    top: 0px;
    margin-bottom: 60px;
  }

  .pricing-section .outer-container{
    padding: 60px 0px 40px 0px;
  }

  .pricing-block-two .pricing-table{
    padding-left: 30px;
    padding-right: 30px;
  }

  .pricing-style-two{
    padding-bottom: 40px;
  }

  .pricing-style-three{
    padding: 65px 0px 10px 0px;
  }

}

@media only screen and (max-width: 599px){
  .pricing-block-one .pricing-table{
    padding-left: 30px;
    padding-right: 30px;
  }

  .pricing-block-two .pricing-table .table-header{
    display: block;
  }

  .pricing-block-two .pricing-table .table-header .text-box{
    text-align: left;
  }

  .pricing-block-two .pricing-table .table-content{
    display: block;
  }

  .pricing-block-two .pricing-table .feature-list{
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 499px){

}











































