@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');


body{
    background-color: #f4f4f4;
    color: #333;
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    line-height: 1.6;
    font-size: 15px;
}

h1, h2, h3{
line-height: 1.2;
font-family: 'Raleway', sans-serif;
}

h1{
font-size: 36px;
margin: 0;
padding: 0;
}


h3{
font-size: 28px;
margin: 15px 0;
}

h2{
font-size: 32px;
}

html{
scroll-behavior: smooth;
width: 100%;
}

a, div, :hover, img{
transition: all 0.3s ease-out;
}

:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}


* { box-sizing: border-box; }

button {
    outline: 0;
    cursor: pointer;
}

a {
color: #333;
}
a:hover {
    text-decoration: none;
}

img, video{
max-width: 100%;
}

/*start from here*/

.container{
    max-width: 1200px;
}

.header img{
    width: 100%;
}

.header{
    background: #fff;
    padding: 10px 0;
}

.header--container{
    display: flex;
    align-items: center;
}

.header--link{
    display: flex;
    width: 80%;
    max-width: 240px;
}

#footer{
    padding: 20px 0;
    background: #ededed;
}

#footer .logo{
    width: 80%;
    max-width: 240px;
}

.list-unstyled{
    display: flex;
    list-style: none;
    gap: 10px;
    justify-content: end;
    font-size: 13px;
}

.terms{
    padding: 60px 0;
}

.opt{
    display: flex;
    justify-content: center;
}

table {
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
table {
border-spacing: 0;
border-collapse: collapse;
}
table th {
text-align: left;
}
table th, table td {
padding: 10px 20px;
}

.fixli{
    list-style: none;
    padding: 0;
    display: flex
}

@media (max-width: 767px){
.table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
}
.feature-box{
    margin-bottom: 15px;
}
.list-unstyled{
    padding: 0;
    flex-direction: column;
}
}

.header--container{
    justify-content: center;
}

.number-out{
    background-color: #333;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.feature-box-content{
    width: calc(100% - 60px);
}

.feature-box-content p{
    margin: 0;
}

.number{
    font-weight: bold;
    font-size: 24px;
    background-color: #333;
    color: #fff;
}

#features, .arp{
    padding: 30px 0;
}


.feature-box{
    display: flex;
}

.prehead{
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 5px 0;
}

.prehead p{
    font-size: 0.7em;
    padding: 0;
    margin: 0;
}


.modal-open {
    overflow: hidden;
  }
  
  .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
  }
  
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
  }
  
  .modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
  }
  
  .modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
  }
  
  .modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  
  .modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
  }
  
  .modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
  }
  
  .modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
  }
  
  .modal-backdrop.fade {
    opacity: 0;
  }
  
  .modal-backdrop.show {
    opacity: 0.5;
  }
  
  .modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
  }
  
  .modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
  }
  
  .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
  }
  
  .modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
  }
  
  .modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
  }
  
  .modal-footer > :not(:first-child) {
    margin-left: .25rem;
  }
  
  .modal-footer > :not(:last-child) {
    margin-right: .25rem;
  }
  
  .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
  }
  
  @media (min-width: 576px) {
    .modal-dialog {
      max-width: 500px;
      margin: 1.75rem auto;
    }
    .modal-dialog-centered {
      min-height: calc(100% - (1.75rem * 2));
    }
    .modal-sm {
      max-width: 300px;
    }
  }
  
  @media (min-width: 992px) {
    .modal-lg {
      max-width: 800px;
    }
  }
  