/* home banner */
.hero-banner-sec {
  background: linear-gradient(180deg, #0865FF 0%, #FFFFFF 100%);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding-block: 120px 0;
  overflow: hidden;
}

.hero-banner-sec:before,
.hero-banner-sec:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/lineborder.png");
  width: 100%;
  height: 100%;
  /* pointer-events: none; */
  background-size: cover;
  z-index: -1;
  content: "";
}

.innerpageheading h1{
  color: #0953E4;
  font-size: 40px;
  font-weight: 600;
}
.innerpageheading span{
  font-size: 16px;
  color: #666666;
}
.breadcrumb {
    width: 50%;
    text-align: right;
    justify-content: right;
    margin: 0;
}
.breadcrumb ul{
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb ul li {
  font-size: 16px;
}
.breadcrumb ul li a{
  color: #000;
  font-size: 14px;
}

p {
    margin-bottom: 10px;
    line-height: normal;
}

.list{padding-left: 20px;}
.list li{
  list-style-type: circle;
}
.sub-title{
  font-size: 18px;
  padding: 7px 0;
  font-weight: 700;
}
.title{
font-size: 28px;
font-weight: 500;
letter-spacing: 0;
line-height: 1.7em;
padding-bottom: 15px;
position: relative;
margin-bottom: 20px;
}
.title:before {
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 5px;
width: 55px;
background-color: #111;
}
.title:after {
content: "";
position: absolute;
left: 0;
bottom: 2px;
height: 1px;
width: 95%;
max-width: 255px;
background-color: #333;
}
.list ol {
  list-style: none;
  counter-reset: li;
}
.list li {
  counter-increment: li;
  line-height: 3;
}
.list li::before {
  content: counter(li);
  color: white;
  display: inline-block;
  width: 2em;
  margin-left: -1.5em;
  margin-right: 0.5em;
  text-align: center;
  direction: rtl;
  background: url("../img/download.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.privacy {
    position: relative;
    color: #323232;
}
.privacy:after {
  content: "";
  width: 184px;
  height: 164px;
  background-color: #D7F0E5;
  border-radius: 50%;
  opacity: 0.6;
  position: absolute;
  top: 4%;
  left: 95%;
}
.privacy::before {
  content: "";
  width: 137px;
  height: 183px;
  background-color: #0953e24a;
  border-radius: 50%;
  opacity: 0.6;
  position: absolute;
  top: 42%;
  left: -61px;
}
@media screen and (max-width: 768px){
.title {
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
}
.privacy li:before, .privacy:after {
  content: unset;
}
}

/* Inner page */
.sub-title {
  margin-top: 20px;
  margin-bottom: 14px;
  padding: 7px 0;
  color: #323232;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}
.sub-title-child{
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 20px;
  color: #323232;
}

ul.privacylist {
    margin-bottom: 20px;
}
ul.privacylist li {
    list-style: disc;
    padding: 3px 0px;
}
ul.list-unstyled li{
    padding: 3px 0px;
}

.underline{text-decoration:underline !important;}
.linkcolor{
  color: #0953e4;
  text-decoration: underline;
}

@media only screen and (max-width:640px){
  .sub-title {
    font-size: 20px;
    line-height: 30px;
  }
  .sub-title-child {
    font-size: 18px;
    line-height: 24px;
  }
  .innerpageheading h1{
    font-size: 20px;
  }
  .mobile-column{
    flex-direction: column;
  }
  .breadcrumb {
      width: 100%;
      justify-content: start;
      margin: 0;
      margin-top: 20px;
  }
  .breadcrumb ul{
    padding: 0px;
    margin: 0px;
  }
}