/* -------------------------------- 

Primary style

-------------------------------- */


body {
    font-size: 100%;
    color: #4e5359;
    background-color: #f3f3f5;
  }
  @media only screen and (min-width: 768px) {
    body::after {
      display: none;
    }
  }
  
  
  /* -------------------------------- 
  
  Main components 
  
  -------------------------------- */
  .faq-band {
    position: relative;
    display: block;
    height: auto;
    padding: 20px 10px;
    line-height: auto;
    text-align: center;
    background-color: #fff;
  }
  header h1 {
    color: #36454F;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 20px;
    font-size: 1.25rem;
  }
  @media only screen and (min-width: 1024px) {
   
    header h1 {
      font-size: 36px;
      font-size: 2.25rem;
      font-weight: 300;
    }
  }
  
  .cd-faq {
    width: 90%;
    max-width: 1024px;
    margin: 2em auto;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  }
  .cd-faq:after {
    content: "";
    display: table;
    clear: both;
  }
  @media only screen and (min-width: 768px) {
    .cd-faq {
      position: relative;
      margin: 4em auto;
      box-shadow: none;
    }
  }
  
  .cd-faq-categories a {
    position: relative;
    display: block;
    overflow: hidden;
    height: 50px;
    line-height: 50px;
    padding: 0 28px 0 16px;
    background-color: #2a80b9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #FFEB3B;
    white-space: nowrap;
    border-bottom: 1px solid #2d3e50;
    text-overflow: ellipsis;
  }
  .cd-faq-categories a::before, .cd-faq-categories a::after {
    /* plus icon on the right */
    position: absolute;
    top: 50%;
    right: 16px;
    display: inline-block;
    height: 1px;
    width: 10px;
    background-color: #FFEB3B;
  }
  .cd-faq-categories a::after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .cd-faq-categories li:last-child a {
    border-bottom: none;
  }
  @media only screen and (min-width: 768px) {
    .cd-faq-categories {
      width: 20%;
      float: left;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    }
    .cd-faq-categories a {
      font-size: 13px;
      font-size: 0.8125rem;
      font-weight: 600;
      padding-left: 24px;
      padding: 0 24px;
      -webkit-transition: background 0.2s, padding 0.2s;
      -moz-transition: background 0.2s, padding 0.2s;
      transition: background 0.2s, padding 0.2s;
    }
    .cd-faq-categories a::before, .cd-faq-categories a::after {
      display: none;
    }
    .no-touch .cd-faq-categories a:hover {
      background: #2c91d5;
    }
    .no-js .cd-faq-categories {
      width: 100%;
      margin-bottom: 2em;
    }
  }
  @media only screen and (min-width: 1024px) {
    .cd-faq-categories {
      position: absolute;
      top: 0;
      left: 0;
      width: 200px;
      z-index: 2;
    }
    .cd-faq-categories a::before {
      /* decorative rectangle on the left visible for the selected item */
      display: block;
      top: 0;
      right: auto;
      left: 0;
      height: 100%;
      width: 3px;
      background-color: #FFEB3B;
      opacity: 0;
      -webkit-transition: opacity 0.2s;
      -moz-transition: opacity 0.2s;
      transition: opacity 0.2s;
    }
    .cd-faq-categories .selected {
      background: #2d3e50 !important;
    }
    .cd-faq-categories .selected::before {
      opacity: 1;
    }
    .cd-faq-categories.is-fixed {
      /* top and left value assigned in jQuery */
      position: fixed;
    }
    .no-js .cd-faq-categories {
      position: relative;
    }
  }
  
  .cd-faq-items {
    /*position: fixed;*/
    height: auto;
    width: 95%;
    top: 0;
    right: 0;
    background: #ffffff;
    padding: 0 5% 1em;
    overflow: auto;
    /*
    -webkit-overflow-scrolling: touch;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0) translateX(100%);
    -moz-transform: translateZ(0) translateX(100%);
    -ms-transform: translateZ(0) translateX(100%);
    -o-transform: translateZ(0) translateX(100%);
    transform: translateZ(0) translateX(100%);
    -webkit-transition: -webkit-transform .3s;
    -moz-transition: -moz-transform .3s;
    transition: transform .3s;
    */
  }
  .cd-faq-items.slide-in {
    -webkit-transform: translateZ(0) translateX(0%);
    -moz-transform: translateZ(0) translateX(0%);
    -ms-transform: translateZ(0) translateX(0%);
    -o-transform: translateZ(0) translateX(0%);
    transform: translateZ(0) translateX(0%);
  }
  .no-js .cd-faq-items {
    position: static;
    height: auto;
    width: 100%;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  @media only screen and (min-width: 768px) {
    /*.cd-faq-items {
      position: static;
      height: auto;
      width: 80%;
      float: right;
      overflow: visible;
      -webkit-transform: translateZ(0) translateX(0);
      -moz-transform: translateZ(0) translateX(0);
      -ms-transform: translateZ(0) translateX(0);
      -o-transform: translateZ(0) translateX(0);
      transform: translateZ(0) translateX(0);
      padding: 0;
      background: transparent;
    } */
  }
  @media only screen and (min-width: 1024px) {
    /*
    .cd-faq-items {
      float: none;
      width: 100%;
      padding-left: 220px;
    }
    */
    .no-js .cd-faq-items {
      padding-left: 0;
    }
  }
  
  .cd-close-panel {
    position: fixed;
    top: 50px;
    right: -100%;
    display: block;
    height: 40px;
    width: 40px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    z-index: 2;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: right 0.4s;
    -moz-transition: right 0.4s;
    transition: right 0.4s;
  }
  .cd-close-panel::before, .cd-close-panel::after {
    /* close icon in CSS */
    position: absolute;
    top: 16px;
    left: 12px;
    display: inline-block;
    height: 3px;
    width: 18px;
    background: #6c7d8e;
  }
  .cd-close-panel::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .cd-close-panel::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .cd-close-panel.move-left {
    right: 2%;
  }
  @media only screen and (min-width: 768px) {
    .cd-close-panel {
      display: none;
    }
  }
  
  /*.cd-faq-group {
     hide group not selected
    display: none;
  } */
  .cd-faq-group.selected {
       margin-top:120px;
    display: block;
  }
  .cd-faq-group .cd-faq-title {
    background: transparent;
    box-shadow: none;
    margin: 1em 0;
  }
  .no-touch .cd-faq-group .cd-faq-title:hover {
    box-shadow: none;
  }
  .cd-faq-group .cd-faq-title h2 {
    text-transform: uppercase;
    font-size: 300px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2a80b9;
  }
  .no-js .cd-faq-group {
    display: block;
  }
  @media only screen and (min-width: 768px) {
    .cd-faq-group {
      /* all groups visible */
      display: block;
    }
    .cd-faq-group > li {
      background: #ffffff;
      margin-bottom: 6px;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
      -webkit-transition: box-shadow 0.2s;
      -moz-transition: box-shadow 0.2s;
      transition: box-shadow 0.2s;
    }
    .no-touch .cd-faq-group > li:hover {
      box-shadow: 0 1px 10px rgba(108, 125, 142, 0.3);
    }
    .cd-faq-group .cd-faq-title {
      margin: 2em 0 1em;
    }
    .cd-faq-group:first-child .cd-faq-title {
      margin-top: 0;
    }
  }
  
  .cd-faq-trigger {
    position: relative;
    display: block;
    padding: 10px 5px;
    margin: 0;
    line-height: 1.2;
  }
  @media only screen and (min-width: 768px) {
    .cd-faq-trigger {
      font-size: 24px;
      font-size: 1.5rem;
      font-weight: 300;
      margin: 0;
    }
    .cd-faq-trigger::before, .cd-faq-trigger::after {
      /* arrow icon on the right */
      position: absolute;
      right: 24px;
      top: 50%;
      height: 2px;
      width: 13px;
      background: #cfdca0;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-transition-property: -webkit-transform;
      -moz-transition-property: -moz-transform;
      transition-property: transform;
      -webkit-transition-duration: 0.2s;
      -moz-transition-duration: 0.2s;
      transition-duration: 0.2s;
    }
    .cd-faq-trigger::before {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      right: 32px;
    }
    .cd-faq-trigger::after {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    .content-visible .cd-faq-trigger::before {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    .content-visible .cd-faq-trigger::after {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
  
  .cd-faq-content {
    display: none;
  }
  .cd-faq-content p {
    font-size: 16px;
    font-size: 0.9em;
    font-weight:520;
    line-height: 1.4;
    padding: 10px 5px;
  }
  @media only screen and (min-width: 768px) {
    .cd-faq-content {
      padding: 0;
    }
    .no-js .cd-faq-content {
      display: block;
    }
  }
  
  /*policy and terms of use*/
  
  
  
  
  
  .main-ttl-categs {
      display: inline-block;
      vertical-align: top;
      width: 100%;
  }
  
  .main-ttl {
      font-size: 18px;
      text-transform: uppercase;
      color: #2d3e50;
      margin: 0 0 35px;
      font-weight: 200;
      position: relative;
      letter-spacing: 2px;
  }
  h1.main-ttl {
      font-size: 22px;
      margin: 0 0 35px;
  }
  .main-ttl span {
      position: relative;
      display: inline-block;
      padding: 0 0 8px;
  }
  .main-ttl span:before {
      display: block;
      position: absolute;
      content: "";
      bottom: 0;
      height: 2px;
      left: 0;
      right: 0;
      background: #f8fafc;
  }
  .main-ttl span:after {
      display: block;
      position: absolute;
      content: "";
      bottom: 0;
      height: 2px;
      left: 0;
      width: 60px;
      background: #FFA500;
  }
  .maincont-ct .main-ttl {
      text-align: center;
  }
  .maincont-ct .main-ttl span:after {
      left: 50%;
      margin: 0 0 0 -30px;
  }
  
  .policy-data{
      position: relative;
      padding: 0;
      font-weight: 300;
      color: #616161;
      line-height: 1.7;
      font-size: 14px;
      margin: 0 0 30px;
      padding: 0 0 5px;
      border-bottom: 1px solid #eee;
      }
      
      .component-desc {
      margin: 0 0 45px;
      font-size: 18px;
      font-family: 'PT Serif';
      font-style: italic;
      letter-spacing: 0.05em;
      text-align:center;
      color:#2a80b9;
  }
  
  .component-desc-ct {
      margin: 0 0 45px;
      font-size: 18px;
      font-family: 'PT Serif';
      letter-spacing: 0.05em;
      color:#2a80b9;
  }
  
  
  .section-i-ttl {
      margin: 0 0 16px;
      padding: 0 0 17px;
      font-weight: 500;
      font-size: 15px;
      position: relative;
      text-transform: uppercase;
      letter-spacing: 1px;
      color:#2d3e50;	
  }
  .frikmatlink
  {
  color:#2a80b9;		
  }
  .item-bold
  {
      color:#000;
  }
  
  ul.pol-list {
    list-style-type: circle;
  
  }
  
  
      
  body .component-ttl {
      font-size: 22px;
      text-transform: uppercase;
      color: #36454F;
      margin: 0 0 50px;
      font-weight: 900;
      position: relative;
      letter-spacing: 2px;
  }
  body .component-ttl-hasdesc {
      margin: 0 0 18px;
  }
  body .component-ttl span {
      position: relative;
      display: inline-block;
      padding: 0 0 8px;
  }
  body .component-ttl span:before {
      display: block;
      position: absolute;
      content: "";
      bottom: 0;
      height: 2px;
      left: 0;
      right: 0;
      background: #f8fafc;
  }
  body .component-ttl span:after {
      display: block;
      position: absolute;
      content: "";
      bottom: 0;
      height: 2px;
      left: 0;
      width: 60px;
      background: #373d54;
  }
  body .component-ttl-ct {
      text-align: center;
  }
  body .component-ttl-ct span:after {
      left: 50%;
      margin: 0 0 0 -30px;
  }
  
  body .component-ttl-hasdesc {
      margin: 0 0 18px;
  }
   
      
     /* NEW CSS STYLING*/
.accordion-style .card {
    background: transparent;
    box-shadow: none;
    margin-bottom: 15px;
    margin-top: 0 !important;
    border: none;
}
.accordion-style .card:last-child {
    margin-bottom: 0;
}
.accordion-style .card-header {
    border: 0;
    background: none;
    padding: 0;
    border-bottom: none;
}
.accordion-style .btn-link {
    color: #ffffff;
    position: relative;
    background: #36454F;
    border: 1px solid #36454F;
    display: block;
    width: 100%;
    font-size: 18px;
    border-radius: 3px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    padding: 15px 55px;
    text-decoration: none;
}
.accordion-style .btn-link:hover {
    text-decoration: none;
}
.accordion-style .btn-link.collapsed {
    background: #ffffff;
    border: 1px solid #15395a;
    color: #1e2022;
    border-radius: 3px;
}
.accordion-style .btn-link.collapsed:after {
    background: none;
    border-radius: 3px;
    content: "+";
    left: 16px;
    right: inherit;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    height: 26px;
    transform: none;
    width: 26px;
    top: 15px;
    text-align: center;
    background-color: #FFA500;
    color: #fff;
}
.accordion-style .btn-link:after {
    background: #fff;
    border: none;
    border-radius: 3px;
    content: "-";
    left: 16px;
    right: inherit;
    font-size: 20px;
    font-weight: 600;
    height: 26px;
    line-height: 26px;
    transform: none;
    width: 26px;
    top: 15px;
    position: absolute;
    color: #15395a;
    text-align: center;
}
.accordion-style .card-body {
    padding: 20px;
    border-top: none;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-left: 1px solid #15395a;
    border-right: 1px solid #15395a;
    border-bottom: 1px solid #15395a;
}
@media screen and (max-width: 767px) {
    .accordion-style .btn-link {
        padding: 15px 40px 15px 55px;
    }
}
@media screen and (max-width: 575px) {
    .accordion-style .btn-link {
        padding: 15px 20px 15px 55px;
    }
}
.card-style1 {
    box-shadow: 0px 0px 10px 0px rgb(89 75 128 / 9%);
}
.border-0 {
    border: 0!important;
}
