:root {
   --blue1: #06629b;
 }
/* banner1 */
.main_heading{
   font-size: 40px;
   font-weight: bold;
}
.banner1 p{
   text-align: justify;
}
.banner1 .fs{
   font-size: 15px !important;
}
/* radio button */
.tabset > input[type="radio"] {
   position: absolute;
   left: -200vw;
}
.tabset .tab-panel {
   display: none;
}
.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child, .tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2) {
   display: block;
}
.tabset > label {
   position: relative;
   display: inline-block;
   padding: 15px 25px;
   border: 2px solid transparent;
   border-bottom: 0;
   cursor: pointer;
   font-weight: 600;
}
.tabset > label:hover, .tabset > input:focus + label {
   color:  var(--blue1);
}
.tabset > label:hover::after, .tabset > input:focus + label::after, .tabset > input:checked + label::after {
   background: #c45511;
}
.tabset > input:checked + label {
   border-color:  var(--blue1);
   border-radius: 10px 10px 0 0;
   border-bottom: 2px solid #f6fafd;
   margin-bottom: -2px;
}
.tab-panel {
   padding: 30px 0;
   border-top: 2px solid  var(--blue1);
}
.tabset{
  /* border: 2px solid green;
   */
   border-radius: 20px;
  /* box-shadow: 0 3px 4px 0 #c45611b7;
   */
}
/* Demo purposes only */
*, *:before, *:after {
   box-sizing: border-box;
}
.tabset {
   max-width: 28em;
}
/* Download and Buy button */
.btn-download {
   display: inline-block;
   align-items: center;
   font-size: 16px;
}
.btn-download .btn-tagline {
   display: flex;
   align-items: center;
   width: auto;
   overflow: hidden;
   font-size: 10px;
   margin-left: 20px;
}
.btn-d {
   background:  var(--blue1);
   color: #fff;
   margin: 0 0.5rem;
   border-radius: 10px;
   border: 2px solid #f1f6fd;
   padding: 0.4rem 1.2rem;
   box-shadow: 0 3px 5px 0 rgb(47 85 212 / 30%);
   text-decoration: none;
   transition: ease 0.5s;
   display: inline-block;
}
.btn-d:hover {
   background: #edf7f4;
   color:  var(--blue1);
   border-radius: 10px;
   border: 2px solid  var(--blue1);
   margin: 0 0.5rem;
   padding: 0.4rem 1.2rem;
   box-shadow: 0 3px 5px 0 rgb(47 85 212 / 30%);
   text-decoration: none;
   transition: ease 0.5s;
}
.btn-p {
   background: #f9fbff;
   color:  var(--blue1);
   border-radius: 10px;
   border: 2px solid  var(--blue1);
   margin: 0 0.5rem;
   padding: 0.4rem 1.2rem;
   box-shadow: 0 3px 5px 0 rgb(47 85 212 / 30%);
   text-decoration: none;
   transition: ease 0.5s;
   display: inline-block;
}
.btn-p:hover {
   background:  var(--blue1);
   color: #fff;
   margin: 0 0.5rem;
   border-radius: 10px;
   border: 2px solid #f1f6fd;
   padding: 0.4rem 1.2rem;
   box-shadow: 0 3px 5px 0 rgba(245, 247, 255, 0.3);
   text-decoration: none;
}
.btn-purchase {
   display: inline-block;
   align-items: center;
   font-size: 16px;
}
.btn-purchase .btn-tagline {
   display: flex;
   align-items: center;
   width: auto;
   overflow: hidden;
   font-size: 10px;
   margin-left: 20px;
}
/* Youtube-thumbnail */
.youtube-video {
   min-height: 190px;
   /* width: 400px; */
   background-repeat: no-repeat;
   background-size: cover;
   border-radius: 1rem;
   position: relative;
   /* box-shadow: 0 0 10px #ddd; */
   margin: 1rem;
}
.youtube-video a {
   background-color: rgb(255, 228, 228);
   border-radius: 50%;
   text-align: center;
   line-height: 97px;
   animation: animate 2s linear infinite;
   cursor: pointer;
   width: 35px;
   height: 35px;
   position: absolute;
   left: 42%;
   top: 50%;
   transform: translate(-50%, -50%);
   animation: animate-sm 2s linear infinite;
}
@keyframes animate-sm{0%{box-shadow: 0 0 0 0 rgba(96, 39, 31, 0.7);}40%{box-shadow: 0 0 0 25px rgba(96, 31, 31, 0);}80%{box-shadow: 0 0 0 25px rgba(96, 33, 31, 0);}100%{box-shadow: 0 0 0 rgba(255, 25, 25, 0);}}
.youtube-video a .fa {
   position: absolute;
   left: 13%;
   top: 18%;
   font-size: 1.5rem;
   color: #f00;
   transition: ease-in-out 300ms;
}
.youtube-video a .fa:hover{
   transform: scale(1.3);
   transition: ease-in-out 300ms;
}
/* rating */
.banner-rating .option {
   display: inline-block;
   padding: .8rem 0 0 1rem;
   background: rgb(255, 255, 255);
   border-radius: 8px;
   margin: 0.5rem 0;
   box-shadow: 0 8px 32px 0 rgba(31, 85, 135, 0.37);
}
.banner-rating .option .img-2 {
   background: url(../resource/icons/rating-icon.svg);
   height: 34px;
   width: 40px;
   background-position: 0 -34px;
   display: inline-block;
}
.banner-rating .option .img-text {
   font-weight: 500;
   display: inline-block;
   position: relative;
   top: -20px;
   left: 5px;
   color: rgb(32, 32, 32);
}
.banner-rating .option .img-star {
   font-weight: 500;
   display: inline-block;
   position: relative;
   left: -70px;
   color: #ffd30b;
}
.banner-rating .option .count {
   font-size: 30px;
   position: relative;
   left: -55px;
   display: inline-block;
   top: -5px;
   color: rgb(0, 0, 0);
}
.banner-rating .option .img-3 {
   background: url(../resource/icons/rating-icon.svg);
   height: 34px;
   width: 40px;
   background-position: 0 34px;
   display: inline-block;
}
/* sticky bar */
.sticky-bar{
   position: sticky;
   top: 0;
   z-index: 1020;
   background-color:  var(--blue1);
}
.box-bottom-btn ul{
  list-style: none;
  padding: 0;
  overflow: hidden;
  display: inline-block;
  margin: 0 0 -5px 0;
}
.box-bottom-btn ul li{
  float: left;
  padding: 0.5rem 0;
}
.box-bottom-btn ul li a{
  color: #ffffff;
  border-radius: 1rem;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
}
/* Features */
#features p{
   text-align: justify;
}
#features .col-md-6 .col-md-10{
  /* box-shadow: 0 0 10px rgb(226, 176, 176);
   */
   border-radius: 15px;
   transition: ease 0.9s;
}
#features .col-md-6:hover{
   background-color: #e0ebf3;
   border-radius: 10px;
   transition: ease 0.9s;
  /* padding: 10px 0; */
}
#features .col-md-6:hover .solution-img{
   /* background-color: #e6894f; */
   transition: ease .5s;
}
.sub-head2{
   font-size: 35px;
   color: #c45511;
}
.features-subheading{
   font-size: 22px !important;
   font-weight: 600;
   color: #c45511;
}
.advantage{
   box-sizing: border-box;
}
.solution-box h5, p {
   transition: ease 0.5s;
}
.solution-box:hover h5{
   color: #c45511;
}
/* .solution-img{background: #067ac286; border-radius: 20%;transition: ease .5s;} */
/* software download */
.sub-head{
   font-size: 22px;
   font-weight: 600;
   color: #a7490f;
   /* background-color: #ffffff; */
   display: inline-block;
   border-radius: 5px;
}
.user{
   border:1px solid #0202022d;
   box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
}
.user .col-6{
   overflow:hidden;
}
.user .col-6:hover{
   background-color: #fff7f7;
   transition: .8s;
   box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
}
.software .dwnld a, .tab-panels a, .download1 a{
   box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
}
.border-t{
   border-top:1px solid #0202022d;
}
.border-r{
   border-right:1px solid #0202022d;
}
.sub-heading{
   font-weight: 600;
}
.software p{
   text-align: justify;
}
.dwnld{
   margin-left: -10px;
}
.btns a{
   display: inline-block;
   margin: 5px;
}
.btn-s{
   background-color: white;
   border: 2px solid  var(--blue1);
   border-radius: 10px;
   color:  var(--blue1);
   transition: all 0.5s;
}
.btn-s:hover{
   background-color:  var(--blue1);
   border: 2px solid white;
   transition: all 0.5s;
}
/* screenshots */
.screenshot .nav-pills .nav-link.active{
   background-color: #f3f2f279;
   color: rgb(51, 51, 51);
   /* box-shadow: 0 0 10px rgb(6, 123, 194); */
   box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
}
.screenshot .nav-pills .nav-link{
   color: #2e2e2e;
}
.screenshot .nav-pills .nav-link {
   background: 0 0;
   border: 0;
  /* border-radius: 0.5em 2.25rem 0.5em 2.25rem;
   */
   border-radius: 5px;
}
.screenshot .border-bottom1{
   display: inline-block;
   width: max-content;
   border-bottom: 2px solid black;
   margin-bottom: 8px;
}
.screenshot .img-fluid{
   border-radius: 5px;
}
.customer_review1{
   background-color: #e9f5ff;
}
.customer_review1 .sub-head2{
   font-size: 35px !important;
}
/* FAQ */
.faq .accordion-button {
   color: #252525;
   background-color: #00564d07;
  /* box-shadow: inset 0 2px 0 rgba(19, 18, 18, 0.562);
   */
   padding: 20px;
   box-shadow: none;
   border-left: 4px solid  var(--blue1);
   box-shadow: 0 5px 5px rgba(6, 123, 194, 0.322);
}
.faq .accordion-body{
   border-left: 4px solid #c45511;
   background-color: #e2895109;
}
.accordion-button:focus {
   z-index: 3;
  /* border-color: #86b7fe;
   */
   outline: 0;
  /* box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
   */
   box-shadow: none;
}
.faq .accordion-button:not(.collapsed)::after {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
   transform: rotate(-180deg);
}
.faq .accordion-h{
   font-size: large;
   font-weight: 600;
}
.faq .accordion-body{
   line-height: 1.5;
   text-align: justify;
   text-indent: 1.2;
}
.faq .accordion-button:not(.collapsed){
   box-shadow: 0 5px 5px rgba(6, 123, 194, 0.322);
}
.faq .accordion-button.collapsed{
   box-shadow: 0 5px 5px rgba(6, 123, 194, 0.322);
}
/* download */
.download1 .container{
   border-radius: 15px;
}
/* comparison table */
/* .table{
   border: 1px solid #00564e;
} */
.table>:not(caption)>*>* {
   padding: 1rem 0.5rem;
   background-color: var(--bs-table-bg);
   border-bottom-width: 1px;
   box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table-striped>tbody>tr:nth-of-type(even) {
   --bs-table-accent-bg: rgb(228, 253, 249);
   color: var(--bs-table-striped-color);
}
.table-striped>tbody>tr:nth-of-type(odd) {
   --bs-table-accent-bg: rgb(228, 253, 249);
   color: var(--bs-table-striped-color);
}
.table tbody tr {
   --bs-table-accent-bg: rgb(236, 248, 255);
   color: var(--bs-table-striped-color);
}
table tr td, table tr th{
   border: 1px solid  var(--blue1);
}
table tr th:nth-child(1){
   text-align: left;
}
.banner1{
   background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(6, 123, 194, 0.161));
  /* background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,168,140,0.5));
   */
   background-size: cover;
}
p{
   font-size: 17px !important;
   line-height: 1.5;
}
li{
   font-size: 16px !important;
}
@media only screen and (max-width:602px){
   .banner-list{
       text-align: left;
  }
}
@media only screen and (max-width:768px){
   .solution-img{background: none;}
   #features .col-md-6:hover .solution-img{
      background-color: transparent;
      transition: ease .5s;
   }
}
@media only screen and (max-width:992px){
   .sticky-top ul li a span{
       display: none;
  }
}
@media only screen and (max-width:512px){
   .download1 .text-end{
       text-align: center !important;
  }
}
@media (min-width:768px) and (max-width:992px){
   .banner-rating .option .img-star {
      font-weight: 500;
      display: inline-block;
      position: relative;
      left: -30px;
      color: #ffd30b;
      top:-10px;
  }
  .banner-rating .option .count {
   font-size: 30px;
   position: relative;
   left: -5px;
   display: inline-block;
   top: -5px;
   color: rgb(0, 0, 0);
}
}
/* comparison table */
.fa-check-circle:before, .fa-circle-check:before {
   content: "\f058";
   color:  var(--blue1);
}
/* footer */
footer p{
   font-size: 16px !important;
}
.footer-bottom p{
   font-size: 16px !important;
}
/* products page */
.products-card .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
   color: #495057;
   background-color: #caeafb;
   /* border-color: #dee2e6 #dee2e6 #fff; */
   /* box-shadow: 0 8px 32px 0 rgb(31 38 135 / 37%); */
}
.products-card .nav-link{
   color: var(--blue1);
}