@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');
body{
  box-sizing:border-box; 
  font-family: 'Montserrat', sans-serif;
  margin: 0px;
  padding:0px;
}
body::-webkit-scrollbar {
  width: .5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: #000;
  outline: 1px solid #000;
}
html{
  scroll-behavior: smooth;
}
:root {
  --primary-color:#3b2b98;
  --secondary-color:#ab1ea8;
  --cyan-color:#15a7ce;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p{
    font-size: 16px;
    color: #222;
}
ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
a, button {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
a:hover
{
  text-decoration: none;
}
button:focus, input:focus, textarea:focus, select:focus, a:hover
{
  outline: none; box-shadow: none;
}
section{
  padding:70px 0 70px;
}
.fontHeading{
  font-family: 'Libre Franklin', sans-serif;
}
.inlineHeader{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.large_heading{
  font-size:55px;
  line-height: 70px;
}
.heading{
  font-size: 40px;
  line-height: 55px;
}
.sub_heading{
  font-size: 34px;
}
.small_heading{
  font-size: 24px;
}
.title{
  font-size: 20px;
}
.text{
  font-size: 18px;
}
.fontWeight300{
  font-weight: 300;
}
.fontWeight400{
  font-weight: 400;
}
.fontWeight500{
  font-weight: 500;
}
.fontWeight600{
  font-weight: 600;
}
.fontWeight700{
  font-weight: 700;
}
.fontWeight800{
  font-weight: 800
}
.fontWeight900{
  font-weight: 900;
}
.leftLogo{
  width: 325px;
  transition: all 0.3s ease-in-out;
}
.leftLogo img{
  max-width: 100%;
}
.header{
  padding: 0px 0 10px;
}
.rightMenu ul{
  display: flex;
  align-items: center;
}
.rightMenu ul li a{
    font-size: 15px;
    display: inline-flex;
    color: #333;
    font-weight: 600;
    /* text-transform: uppercase; */
    padding: 15px 15px;
    vertical-align: middle;
}
.rightMenu ul li:last-child a{
  padding-right: 0px;
}
.rightMenu ul li a i{
  vertical-align: middle;
  font-size: 10px;
  padding-left: 5px;
  transform: translateY(6px);
}
.rightMenu ul li a:hover{
  color: var(--primary-color);
}
.btnOtherMenu{
  background: none;
  border:none;
  font-size: 18px;
}
.otherMenus{
  position: fixed;
  top: 0px;
  right: -100%;
  transition: all 0.4s ease-in-out;
  width: 25vw;
  z-index: 9;
  background:#fff;
  height: 100%;
  padding: 20px;
}
.closeBtn{
  font-size: 20px;
  font-weight: 700;
  background: none;
  border:none;
}
.innerMenu ul li a{
  display: inline-block;
  color: #fff;
  font-size:15px;
  padding:10px;
  font-weight: 600;
}
.innerMenu ul li a:hover{
  color: var(--secondary-color);
}
.topHeader{
  background: var(--primary-color);
}
.rightMenuNumber ul {
  display: flex;
}
.rightMenuNumber ul li{
  position: relative;
  padding-left: 15px;
}
.rightMenuNumber ul li:before{
  content: '';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size:15px;
  color: #fff;
}
.rightMenuNumber ul li.phone:before{
  content: '\f879';
}
.rightMenuNumber ul li.email:before{
  content: '\f0e0';
}
.rightMenuNumber ul li a{
  color: #fff;
  font-size: 14px;
  display: inline-block;
  padding:7px 10px;
  font-weight: 500;
}
.rightMenu ul li:last-child ul{
  left: auto;
  right: 0px;
}
.rightMenuNumber ul li:hover a, .rightMenuNumber ul li:hover:before, .rightHeaderMenu ul li:hover a {
  color: #a2dceb;
}
.rightHeaderMenu ul{
  display: flex;
  align-items: center;
}
.rightHeaderMenu ul li a{
  color: #fff;
  display: inline-block;
  padding: 7px 10px;
  font-size: 14px;
  font-weight: 500;
}
.followUs{
  margin-top: 30px;
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
  padding-left: 15px;
}
.followUs ul{
  display: flex;
  margin-top: 10px;
}
.followUs ul li a{
  display: inline-block;
  padding:10px;
  font-size: 18px;
  color: #333;
}
.otherMenus.active{
  right: 0px;
}
.followUs ul li a:hover{
  color: var(--secondary-color);
}
.sliderBlock{
  position: relative;
  z-index: 1;
  background:#f6f6f6;
}
.leftSlider{
    padding:40px;
    padding-right:0px;
}
.carousel-caption{
  z-index: 2;
}
.carousel-caption h1{
    color:#fff;
}
/*.sliderBlock img{*/
/*  height: 100vh;*/
/*  object-fit: cover;*/
/*}*/
.rightMenu ul li{
  position: relative;
}
.rightMenu ul li ul{
  position: absolute;
  top: 60px;
  opacity: 0;
  transition: all .2s ease-in-out;
  left: 0px;
  padding:10px 0;
  width: 300px;
  display: block;
  visibility: hidden;
  z-index: 2;
  background: #fff;
  border-radius: 10px;
  border-top:2px solid var(--cyan-color);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.rightMenu ul li:hover ul{
  visibility: visible;
  top: 50px;
  opacity: 1;
}
.rightMenu ul li ul li a{
  padding: 12px 15px;
  font-size: 14px;
  display:block;
}
.rightMenu ul li ul li a:hover{
  background: #e7f6fa;
  color: var(--cyan-color);
}
.sticky{
  position: sticky;
  position: -webkit-sticky;
  top:0px;
  background:#fff;
  z-index: 9;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.sticky .leftLogo{
  width: 290px;
}
.sticky .topHeader{
  display: none;
}
.carousel-caption{
  width: 65%;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  left: 8%;
}
.itemRegister{
  margin-top: 20px;
}
.itemRegister ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.itemRegister ul li {
  width: calc(100%/2 - 20px);
  margin:5px 15px;
  margin-left:0;
  border:1px solid var(--primary-color);
  color:var(--primary-color);
  font-weight: 700;
  font-size: 15px;
  position: relative;
  border-radius: 5px;
  padding:8px 12px;
  padding-left: 25px;
}
.itemRegister  ul li:before{
  content: '\f069';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 19px;
  left: 7px;
  font-size: 13px;
  animation: rotate infinite 5s linear;
  color: var(--primary-color);
}
@keyframes rotate{
  0%{
    transform: translateY(-50%) rotate(0deg);
  }
  100%{
    transform: translateY(-50%) rotate(360deg);
  }
}
.bannerBtn{
  display: inline-block;
  padding:15px 25px;
  letter-spacing: 1px;
  background:var(--cyan-color);
  color: #fff;
  border:1px solid transparent;
  font-weight: 600;
  text-transform: uppercase;
  font-size:15px;
}
.bannerBtn i{
  transform: rotate(-45deg);
  font-size:14px;
}
.bannerBtn:hover{
  border-color:var(--cyan-color); 
  color: var(--cyan-color);
  background: transparent;

}
.textCenter{
  position: absolute;
  bottom: 60px;
  text-transform: uppercase;
  text-align: center;
  width: 30%;
  left:50%;
  transform:translateX(-50%);
  z-index: 9;
}
.textCenter p{
  font-size: 13px;
}
.textCenter a{
  font-size: 27px;
}
.textCenter a i{
  animation: translate infinite 2s linear;
}
@keyframes translate{
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(10px);
  }
  100%{
    transform: translateY(0px);
  }
}
.borderText{
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}
.borderText2{
  color: var(--cyan-color);
  border-bottom: 2px solid var(--cyan-color);
}
.leftBorder{
  position: relative;
  z-index: 1;
}
.leftBorder:after{
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 100%;
  z-index: -2;
  background: var(--secondary-color);
}
.leftBorder:before{
  content: '';
  position: absolute;
  top: 0px;
  right: 20px;
  width: 10px;
  height: 100%;
  background: url(../images/icons/arrow-bg2.png);
  z-index: -1;
}
.leftCustomer{
  padding:10px;
  border-radius: 10px;
  background: #fff;
}
.leftCustomer img{
  max-width: 100%;
  border-radius: 10px;
}
.bgLightBlue{
    background: #f0f9fc;
}
.iconCustomer{
  width: 90px;
  padding:20px;
  background:#ebe9f4;
  border-radius: 50px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iconCustomer img{
  max-width: 100%;
}
.itemCustomer{
  background:#fff;
  padding:30px;
  border-radius: 10px;
  -webkit-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
  margin-bottom: 20px;
}
/*.itemCustomer h3{
  min-height: 50px;
}*/
.translateY{
  transform: translateY(25px);
}
.leftCustomer{
  position: sticky;
  position: -webkit-sticky;
  top: 110px;
}
.broderBlue{
  position: relative;
  z-index: 1; 
}
.broderBlue:after{
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 100%;
  z-index: -2;
  background: var(--primary-color);
}
.broderBlue:before{
  content: '';
  position: absolute;
  top: 0px;
  right: 20px;
  width: 10px;
  height: 100%;
  background: url(../images/icons/arrow-bg3.png);
  z-index: -1;
}
.leftService ul{
  margin-top: 40px;
}
.leftService ul li {
  padding:15px;
  font-size: 22px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.leftService ul li.active:before{
  content: '';
  position:absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:var(--primary-color);
  z-index: -1;
}
.leftService ul li.active{
  color: #fff;
}
.leftService ul li.active:after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 63px;
  height: 100%;
  right: -17px;
  background: var(--primary-color);
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0 52%, 0% 0%);
}
.innerItems{
  border-radius: 10px;
  padding:30px;
  margin-bottom: 30px;
}
.itemTabRight{
  border-left:1px solid #e0e0e0;
  padding-left: 25px;
}
.text_cyan{
  color: var(--cyan-color);
}
.text_primary{
  color: var(--primary-color);
}
.text_secondary{
  color: var(--secondary-color);
}
.btnCyan{
  display: inline-block;
  padding:12px 30px;
  font-size: 14px;
  color: #fff;
  position: relative;
  border:none;
  z-index: 1;
  font-weight: 600;
  border-radius: 3px;
}
.btnCyan:after{
  content: '';
  position: absolute;
  bottom:0px;
  right: 0px;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: #08062a;
  z-index: -1;
}
.btnCyan:before{
  content: '';
  position: absolute;
  bottom:-5px;
  right: -5px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  height: 100%;
  background: var(--cyan-color);
  border-radius: 3px;
  z-index: -2;
}
.btnCyan:hover{
  color: #fff;
}
.btnCyan:hover:before{
  bottom: 5px;
  right: 5px;
  display: none;
}
.btnCyan:hover:after{
  background:var(--primary-color);
}
.itemTabIcon img{
  max-width: 40%;
}
.itemTabIcon{
  text-align: center;
}
.stickyItem{
  position: sticky;
  position: -webkit-sticky;
  top: 112px;
}
.borderPurple{
  position: relative;
  z-index: 1;
}
.borderPurple:after
{
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 100%;
  z-index: -2;
  background: var(--cyan-color);
}
.borderPurple:before {
  content: '';
  position: absolute;
  top: 0px;
  right: 20px;
  width: 10px;
  height: 100%;
  background: url(../images/icons/arrow-bg2.png);
  z-index: -1;
}
.typeBussiness{
  margin-top: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.itemBusines ul li{
  padding:15px;
  font-weight: 500;
  height: 80px;
  border-bottom:1px solid #e0e0e0;
  font-size: 15px;
  display: flex;
  align-items: center;
}
.itemBusines{
  background: #fff;
}
.bg1{
  background:var(--primary-color);
  position: relative;
  z-index: 1;
}
.bg2{
  background:var(--secondary-color);
  position: relative;
  z-index: 1;
}
.bg3{
  background:var(--cyan-color);
  position: relative;
  z-index: 1;
}
.bg4{
  background: #08062a;
  position: relative;
  z-index: 1;
}
.itemBusines h3{
  color: #fff;
}
.itemBusines{
  width: calc(100% / 5);
}
.headerType{
  padding:25px;
  text-align: center;
}
.itemBusines ul{
  margin-top: 20px;
}
.fontBold ul li{
  font-weight: 800;
}
.bg1:after{
  content: '';
  position: absolute;
  bottom: -17px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  transform: rotate(45deg) translateX(-50%);
}
.bg2:after{
  content: '';
  position: absolute;
  bottom: -17px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  transform: rotate(45deg) translateX(-50%);
}
.bg3:after{
  content: '';
  position: absolute;
  bottom: -17px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--cyan-color);
  transform: rotate(45deg) translateX(-50%);
}
.bg4:after{
  content: '';
  position: absolute;
  bottom: -17px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #08062a;
  transform: rotate(45deg) translateX(-50%);
}
.itemBusines ul li:nth-child(2n){
  background: #f5f5f5;
}
.numberRatio{
  background: url(../images/bg/number-bg.jpg) no-repeat;
  background-attachment: fixed;
  background:cover;
  position: relative;
  z-index: 1;
}
.numberRatio:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:rgb(5 63 101 / 85%);
  z-index: -1;
}
.iconRatio{
  width: 100px;
  margin: 0 auto;
}
.iconRatio img{
  max-width: 100%;
}
.itemRation{
  text-align: center;
  padding:20px;
}
.itemRation h4{
  margin-top: 10px;
}
.testimonial{
  position: relative;
  padding:40px;
  background:var(--primary-color);
  margin-top: 70px;
  z-index: 1;
}
.iconQoute{
  width: 40px;
  margin: 0 auto;
}
.iconQoute img {
  max-width: 100%;
}
.slidertestimonial{
  margin-top: 30px;
  text-align: center;
}
.slidertestimonial p{
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}
.iconUser{
  width: 70px;
  border:3px solid #756ab6;
  border-radius: 50%;
  padding:15px;
}
.iconUser img{
  max-width: 100%;
}
.userDet{
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rightUser{
  margin-left: 30px;
  text-align: left;
}
.italic{
  font-style: italic;
}
.rightUser p, .rightUser h5{
  font-size: 14px;
}
.testimonial:after{
  content: '';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  height: 13px;
  width: 97%;
  z-index: -1;
  background: #756ab6;
}
.testimonial:before{
  content: '';
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  height: 13px;
  width: 94%;
  z-index: -1;
  background: #c4bfe0;
}
.slick-arrow i{
    font-size:24px;
}
.slick-next:before, .slick-prev:before{
    display:none;
}
.slick-next, .slick-prev{
  width:40px !important;
  height:40px !important;
  border-radius:50%;
  background:var(--cyan-color) !important;
  color:#fff !important;
  z-index:1 !important;
}
.slick-next {
    right: -65px !important;
}
.slick-prev {
    left: -65px !important;
}
.itemContact{
  display: flex;
  margin: 40px 0;
  align-items: center;
}
.iconContact{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background:var(--cyan-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size:20px;
}
.rightIcon{
  padding-left: 20px;
}
.rightIcon a{
  display: block;
  font-weight: 600;
  color: var(--primary-color);
}
.form-floating>.form-control:focus, .form-select:focus, .form-control:focus{
  box-shadow:0px 2px 10px rgb(102 102 104 / 65%);
  border-color: #999;
  outline: none;
}
.formItem input, .form-select, .form-control{
  height:60px !important;
  padding: 1.2rem 1.1rem;
  font-size: 14px;
}
.formItem .textHeight{
  height: 130px !important;
  padding: 1.7rem 1.1rem;
}
.form-floating>label{
  padding: 1.2rem 1rem;
  font-weight: 700;
  font-size: 14px;
}
.form-floating>.form-select{
  padding: 1.2rem 1rem 0rem;
  padding-top: 1.5rem;
}
.formItem{
  margin-bottom: 20px;
}
.form-floating>.form-control{
  padding:1rem 1rem;
}
.footer{
  background: #08062a;
  padding:50px 0;
  padding-bottom:0;
}
.footerItem  h3{
  color: #eee;
}
.footerItem ul{
  margin-top: 20px;
}
.footerItem ul li a{
  display: inline-block;
  padding:7px 15px;
  position: relative;
  font-weight: 500;
  color: #999;
}
.footerItem ul li a:after{
  content: '\f054';
  position: absolute;
  top:10px;
  left: 0px;
  color: #999;
  font-size: 11px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.footerItem ul li a:hover{
  color: #fff;
}
.footerItem ul li a:hover:after{
  color: #fff;
}
.footerLogo{
  border-top:1px solid #393754;
  margin-top: 40px;
  padding-top: 40px;
}
.leftFooter p{
  color: #eee;
}
.leftFooter img{
  margin-top: 5px;
}
.footerRight{
    width:130px;
    margin:0 auto;
}
.footerRight img{
  max-width: 100%;
}
.copright{
  background:#fff;
  padding:10px 0;
  margin-top: 40px;
}
.copright p{
  font-weight: 600;
}
.shortBanner{
  height: 55vh;
  background:#f1f1f1;
  position: relative;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  z-index: 1;
}
.leftShort{
    height:100%;
    display:flex;
    align-items:center;
}
/*.shortBanner:after{*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 0px;*/
/*  left: 0px;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: rgb(59 43 152 / 85%);*/
/*  z-index: -1;*/
/*}*/
.shortBanner .text-white{
    color:#333 !important;
}
.shortBanner .text-center{
    text-align:left !important;
}
.partnerBlock{
  background:#d7d4ea;
  display: inline-block;
  color: var(--primary-color);
  padding:10px 15px;
  border-radius: 10px;
  font-weight: 600;
}
.innerPagePrivate .itemCustomer{
  height: 100%;
}
.leftProcess{
  padding-left: 80px;
  border-left: 2px solid var(--primary-color);
}
.itemProcess{
  border-radius: 10px;
  padding:25px;
  border:1px solid #e0e0e0;
  margin-bottom: 20px;
  background: #fff;
  position: relative;
}
.itemProcess:after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width:45px;
  height: 2px;
  background: var(--primary-color);
  left: -60px;
  z-index: -2;
}
.itemProcess:before{
  content: '01';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 32px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  border:4px solid #fff;
  left: -101px;
  z-index: 1;

}
.two:before{
  content: '02';
}
.three:before{
  content: '03';
}
.four:before{
  content: '04';
}
.five:before{
  content: '05';
}
.six:before{
  content: '06';
}
.processElement, .processElement2{
  position: relative;
  z-index: 1;
}
.processElement:after, .processElement2:after{
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 190px;
  height: 100%;
  background: var(--secondary-color);
  z-index: -2;
}
.processElement:before, .processElement2:before{
  content: '';
  position: absolute;
  top: 0px;
  right: 180px;
  width: 10px;
  height: 100%;
  background: url(../images/icons/arrow-bg3.png);
  z-index: -1;
}
.processElement2:before{
  background: url(../images/icons/arrow-bg2.png);
}
.videoRight{
  padding:20px;
  background:#fff;
  border-radius: 10px;
  position: sticky;
  position: -webkit-sticky;
  top: 106px;
}
.priceHeader{
  padding:40px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.itemPrice{
  background:#fff;
  border-radius: 10px;
}
.priceHeader img{
  width: 50px;
}
.white{
  filter: brightness(0) invert(1);
}
.bodyPrice{
  padding:0 40px 40px;
}
.bodyPrice ul{
  margin-top: 30px;
}
.bodyPrice ul li{
  padding:10px;
  font-weight: 600;
  padding-left: 25px;
  border-bottom: 1px dotted #e0e0e0;
  color: #555;
  position: relative;
}
.bodyPrice ul li:before{
  content: '\f00c';
  position: absolute;
  top: 10px;
  left: 0px;
  font-size: 15px;
  color: var(--secondary-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.bodyPrice ul li.crossIcon:before{
  content: '\f00d';
}
.bodyPrice ul li small{
  font-size: 13px;
}
.fontItalic{
  font-style: italic;
}
.textGrey{
  color: #555;
}
.leftWhat{
  padding-right: 40px;
}
.rightWhat{
  background:#08062A;
  padding:30px;
  border-radius: 20px;
}
.rightWhat ul{
  margin-top: 30px;
}
.rightWhat ul li{
  padding:20px 10px;
  border-bottom: 1px dashed #525069;
  font-size: 15px;
  font-weight: 600;
  padding-left: 40px;
  color: #ccc;
  position: relative;
  z-index: 1;
}
.rightWhat ul li:before{
  content: '\f058';
  position: absolute;
  top: 15px;
  left: 0px;
  font-size: 22px;
  color: var(--cyan-color);
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
.rightWhat ul li i{
  padding-right: 10px;
  display: none;
  font-size: 22px;
  color: var(--cyan-color);
}
.tabItems{
  background: #fff;
}
.advantageItem{
  border-top:5px solid var(--cyan-color);
  height: 100%;
}
.advantageColor{
  background: #08062a;
  color: #fff;
}
.advantageColor p{
  color: #fff;
}
.faqInner{
  margin-top: 40px;
}
.itemFaq{
  border:1px solid #ccc;
  padding:20px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #fff;
}
.faqHeader{
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faqBody{
  margin-top: 20px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  display: none;
}
.faqHeader .small_heading{
  font-size: 22px;
  padding-right: 15px;
}
.rightWhat ul li span{
  font-size: 12px;
}
.centerWh ul{
  list-style-type: disc;
  margin-left: 30px;
}
.centerWh ul li{
  padding:10px;
  font-weight: 600;
}
.bgDarkBlue{
  background: #08062A;
}
.textwhite{
  color: #ccc;
}
.itemRequired{
  background: #201e3f;
  border-radius: 20px;
  padding:30px;
}
.itemRequired h4{
  color: var(--cyan-color)
}
.itemRequired p{
  color: #ccc;
}
.iconFont{
  font-size: 13px;
  margin-top: 6px;
}
.itemGst{
  font-weight: 500;
  padding:20px 40px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
}
.itemGst ul{
  margin-top: 20px;
}
.itemGst ul li{
  padding:5px 0;
  font-size: 15px;
}
.faqBody ul{
  margin-top: 15px;
  list-style-type: disc;
  margin-left: 25px;
  padding:5px 0;
}
.textFund ul{
  margin-top: 15px;
  list-style-type: disc;
  margin-left: 25px;
  padding:5px 0;
}
.textFund ul li{
  padding: 5px 0;
  font-weight: 500;
}
.textFund{
  background: #201e3f;
  padding:30px;
  border-left: 2px solid var(--cyan-color);
  border-radius: 20px;
  margin-top: 20px;
}
.textFund ul li{
  color: #ccc;
}
.bodyPrice h3 small{
  font-size: 13px;
}
.tableGst th{
  background:#b4eefd;
  padding:15px;
}
.tableGst td{
  padding:15px;
}
.iconItemreturn{
  width: 60px;
  margin-bottom: 15px;
}
.iconItemreturn img{
  max-width: 100%;
}
.heightEqual{
  height: 100%;
}
.leftPrivate ul{
  list-style-type: disc;
  margin-top: 20px;
  margin-left: 20px;
}
.leftPrivate ul li{
  padding:5px 10px;
  font-weight: 600;
}
.popularTag{
  position: absolute;
  top: 20px;
  left: 0px;
  background:var(--cyan-color);
  color: #fff;
  padding:8px 25px;
  padding-left: 20px;
  font-size: 12px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  text-transform: uppercase;
}
.textGrey{
  color: #666;
}
.yearly{
  padding:0 20px 40px;
}
.listBullet{
    list-style-type:disc;
    margin:15px 0 0 20px;
}
.listBullet li {
    font-weight:500;
    padding:5px 0;
}

/* blog */
.blogBanner{
  background: url(../images/bg/blog-bg.jpg) no-repeat;
  background-size: cover;
  height: 450px;
  position: relative;
  z-index: 1;
}
.blogBanner:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgb(59 43 152 / 85%);
}
.itemBlog{
  border-radius: 10px;
  padding:10px;
}
.blogImg img{
  max-width: 100%;
  height:258px;
  object-fit:cover;
}
.blogDetails{
  padding:10px;
}
.blogDetails h4{
  color: #000;
  height: 60px;
}
.blogDetails ul {
    display: flex;
}
.blogDetails ul li {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  padding: 0 10px;
  position: relative;
}
.blogDetails ul li:first-child{
  padding-left: 0px;
}
.blogDetails ul li:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0px;
  width: 1px;
  height: 12px;
  background: #666;
  transform: translateY(-50%);
}
.itemBlog{
  margin-bottom: 25px;
}
.singleBlog img{
  max-width: 100%;
}
.blogDetails ul li:last-child:after{
  display: none;
}
.singleBlog p{
  margin-bottom: 15px;
}
.singleBlog ol li{
  padding:5px 0;
}
.sidebarHeader {
  background: var(--primary-color);
  padding: 20px;
}
.sidebarBlogItem {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
}
.sidebarBlogItem {
  margin-top: 15px;
}
.sidebarImg {
    width: 150px;
}
.sidebarImg img {
    max-width: 100%;
}
.rightSidebar {
  width: calc(100% - 200px);
  margin-left: 16px;
}
.rightSidebar a {
    color: #333;
}
.reviewIcon{
    width:50px;
    margin-right:15px;
}
.reviewIcon img{
    max-width:100%;
    height:auto;
}
.googleReview{
    margin-top:20px;
}
.rightTextReview h5{
    color:#000;
}
.rightTextReview h5 i{
    color:#F3B604;
    font-size:16px;
}
.googleReview{
    display:flex;
}
.rightTextReview p{
    font-size:13px;
}
.itemProcess ul{
    list-style-type:disc;
    margin-left:20px;
}
.itemProcess ul li{
    padding:5px 0;
}
.h-lg-100{
    height:100%;
}
.udhyamTable {
    width:100%;
}
.udhyamTable th{
    padding:15px;
    text-align:center;
    font-size:15px;
}
.udhyamTable td{
    padding:15px;
    font-size:14px;
    font-weight:500;
}
.udhyamTable th, .udhyamTable td:nth-last-child(2){
    background:#f7fcfd;
}
.advantageItem ul{
    list-style-type:disc;
    padding-left:22px;
}
.advantageItem ul li{
    padding:5px 0;
}
.itemCustomer ul li{
    border-bottom:none;
}
.rightHeaderMenu{
    display:flex;
    align-items:center;
}
.socialLinkHeader ul{
    display:flex;
    margin-left:20px;
}
.socialLinkHeader ul li a{
    color:#fff;
    display:inline-block;
    font-size:16px;
    padding:0 7px;
}
.itemSoftware{
    border:1px solid #999;
    padding:10px;
    background:#fff;
    margin-bottom:15px;
}
.itemSoftware img{
    max-width:100%;
}
.tablePad td, .tablePad th{
    padding:15px;
}
.stateIndia ul{
    display:flex;
    flex-wrap:wrap;
    margin-top:10px;
}
.stateIndia ul li{
    padding:10px 5px;
    cursor:pointer;
    width:calc(100% / 4 - 10px);
    font-weight:600;
    color:var(--primary-color);
    position:relative;
    font-size:16px;
}
.stateTax{
    padding:15px;
    background:#eed2ed;
    display:none;
    width:380px;
}
.stateIndia ul li:hover .stateTax{
    display:block;
}
.stateIndia ul li .stateTax{
    position:absolute;
    bottom:45px;
    left:50%;
    transform:translateX(-50%);
    z-index:999;
}
.stateTax:after{
    content:'';
    position:absolute;
    bottom:-12px;
    width:15px;
    left:19%;
    height:15px;
    transform:rotate(45deg) translateX(-50%);
    background:#eed2ed;
}
.stateTax table th, .stateTax table td{
    font-size:11px;
}
.stateIndia .table{
    border-color: #333;
    margin-bottom:0;
}
.footerItem h3.title{
    font-size:19px;
}
.stateIndia{
    border:1px solid #c4bfe0;
    padding:10px;
}
.headerTabele{
    padding:15px;
    padding-top:5px;
    border-bottom:1px solid #c4bfe0;
}
.width250{
    width:145px;
}
.nonTx ul li {
    cursor:auto;
    color:#333;
}

/*about us*/
.rightAbout{
    padding-left:25px;
}
.rightAbout p{
    margin-bottom:10px;
}
.leftAboutWedo{
    padding-right:15px;   
}
.leftAboutWedo p{
    margin-bottom:10px;
}
.teamImg{
    width:250px;
    margin:0 auto;
}
.teamImg img{
    max-width:100%;
    border-radius:5px;
    box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.itemTeam{
    text-align:center;
}
.whatChat {
    position: fixed;
    right: 15px;
    bottom: 10px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    width:215px;
    background:#fff;
    border:1px solid #e0e0e0;
    border-radius:10px;
    padding:4px 12px;
    z-index:99;
}
.whatChat a{
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.whatChat p{
    animation:hideShow 1s infinite ease-in-out ;
}
@keyframes hideShow{
    0%{
        opacity:1;
    }
    50%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}
.whatChat img {
    width: 50px;
}
.error{
    font-size:13px;
    font-weight:500;
    margin-top:5px;
    color:#ff0000;
}
.noBg{
    background:none;
}
.noBg p{
    color: #222;
}
.noBg ul li{
    color:#222;
}
.borderCustom{
    border-top:1px solid #e0e0e0;
    border-right:1px solid #e0e0e0;
    border-bottom:1px solid #e0e0e0;
}
.bulletList{
    list-style-type:disc;
    margin-left:20px;
}
.bulletList li{
    padding:5px 0;
}
.tableBlog{
    border:1px solid var(--primary-color);
}
.tableBlog tr:nth-child(2n){
    background:#ebe9f4;
}
.tableBlog td, .tableBlog th{
    text-align:center;
    font-size:15px;
    color:var(--primary-color);
    padding:15px;
    border:1px solid var(--primary-color);
}
.bannerBtns{
    margin-top:15px;
}
.height100{
    height:100%;
}
.bodyPrice .title{
    font-size:17px;
}
.listBullet ul {
    margin-left:20px;
    list-style-type:disc;
}
.listBullet ul li{
    font-size: 16px;
    padding:5px;
    color: #222;
}
.bottomMenu ul{
    display:flex;
    flex-wrap:wrap;
}
.bottomMenu ul li a{
    font-size:15px;
    display:inline-block;
    padding:5px;
    padding-bottom:0px;
    color:#999;
    font-weight:500;
}
.textColor{
    color:#ccc;
}
.bottomMenu ul li a:hover{
    color:#fff;
}