/* main style file */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@charset "UTF-8";
html {
  font-size: 16px; }

body {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  margin-top: 0; }

h2 {
  font-size: rem(28px);
  font-weight: 700;
  line-height: rem(42px);
  margin-bottom: 1.5rem; }

p {
  margin-top: 0; }

a {
  color: #f05b72; }

body {
  margin: 0;
  padding: 0; }

.button {
  background: linear-gradient(132.83deg, #6f6fb3, #996aad 93.12%);
  border: none;
  border-radius: 9px;
  color: #fff;
  cursor: pointer;
  height: 60px;
  width: 220px;
  display: block;
  line-height: 60px;
  text-decoration: none;
  text-align: center; }
  .button:hover {
    background-image: linear-gradient(134deg, #6f6fb3, #996aad, #734a95, #734a95);
    background-position: 99% 0;
    background-size: 300% 100%; }

.wrapper {
  display: flex;
  align-items: flex-start; }

#main {
  min-height: calc(100vh - 90px + 4rem);
  padding: 2rem;
  padding-top: calc(90px + 0.5rem);
  margin-left: calc(260px + 2rem);
  max-width: 1200px;
  flex: 1; }
@media (max-width: 62em) {
  #main {
    padding: 1rem;
    padding-top: calc(72px + 2rem);
    min-height: 1px;
    margin-left: 0; } }
#main .languages {
  display: flex;
  gap: 2rem; }
  #main .languages .language {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
    #main .languages .language img {
      display: block;
      width: 200px; }
    @media (max-width: 62em) {
      #main .languages .language img {
        width: 90px; } }
#main .platforms {
  display: flex;
  gap: 2rem; }
@media (max-width: 62em) {
  #main .platforms {
    display: block; } }
#main .platforms .platform {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center; }
@media (max-width: 62em) {
  #main .platforms .platform {
    margin-bottom: 1rem;
    align-items: center; } }
#main .platforms .platform img {
  display: block;
  width: 300px; }
@media (max-width: 62em) {
  #main .platforms .platform img {
    width: 150px; } }

.search-results .search-result {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ccc; }

.page-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem; }

.next-page a, .prev-page a {
  text-decoration: none;
  display: block;
  background: #f1f1f1;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: #000;
  font-weight: 500; }
  .next-page a:hover, .prev-page a:hover {
    text-decoration: underline; }

@media (max-width: 47.99em) {
  img {
    width: 100%;
    height: auto; } }

header {
  background: linear-gradient(221.43deg, #eff2f7 100%, rgba(223, 227, 233, 0) 78.81%);
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100; }
  header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    header .header-inner form {
      background-color: #424242;
      width: 275px;
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between; }
    @media (max-width: 62em) {
      header .header-inner form {
        width: calc(100%);
        position: absolute;
        top: 1rem;
        left: 0;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        header .header-inner form.open {
          opacity: 1;
          visibility: visible; } }
    header .header-inner form input {
      background-color: transparent;
      border: none;
      color: #fff;
      line-height: 3.375rem;
      padding: 0 1rem;
      color: #fff;
      font-size: 1.125rem;
      font-weight: 400;
      font-family: 'Raleway', sans-serif;
      width: 90%; }
      header .header-inner form input::placeholder {
        color: #fff; }
      header .header-inner form input:focus {
        outline: none; }
    header .header-inner form button {
      background-color: transparent;
      border: none;
      color: #fff;
      font-size: 1rem;
      font-weight: 400;
      font-family: 'Raleway', sans-serif;
      cursor: pointer;
      padding: 0 0.5rem; }
  @media (max-width: 62em) {
    header .logo {
      width: 120px;
      flex: 0 0 auto; } }
  header .logo img {
    max-width: 100%; }
  header #open-mobile-sidebar {
    display: none; }
    header #open-mobile-sidebar svg {
      width: 22px; }
      header #open-mobile-sidebar svg path {
        fill: #000; }
    @media (max-width: 62em) {
      header #open-mobile-sidebar {
        display: block; } }
  header #open-mobile-search {
    display: none;
    color: #000; }
  @media (max-width: 62em) {
    header #open-mobile-search {
      display: block; } }

.home header {
  background: none;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100; }
@media (min-width: 78.125em) {
  .home header {
    padding: 1.125rem 2.75rem; } }
.home header img {
  max-width: 120px; }
  .home header img.white {
    display: block; }
  .home header img.black {
    display: none; }
.home header.scrolled {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
  .home header.scrolled #open-mobile-menu svg path {
    fill: #000; }
.home header.scrolled img.white {
  display: none; }
.home header.scrolled img.black {
  display: block; }
.home header #open-mobile-menu {
  display: none;
  width: 22px; }
@media (max-width: 62em) {
  .home header #open-mobile-menu {
    display: block; } }
.home header #close-mobile-menu {
  display: none;
  width: 22px;
  margin-left: auto; }
@media (max-width: 62em) {
  .home header #close-mobile-menu {
    display: block; } }
@media (max-width: 62em) {
  .home header .header-menu {
    position: fixed;
    top: 0;
    right: calc(-320px - 2rem);
    background-color: #fff;
    z-index: 100;
    width: 320px;
    height: 100vh;
    padding: 1rem;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .home header .header-menu.open {
      right: 0; } }
.home header .header-menu ul {
  list-style: none inside none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center; }
@media (max-width: 62em) {
  .home header .header-menu ul {
    display: block; } }
.home header .header-menu ul li {
  margin-left: 1.25rem; }
@media (max-width: 62em) {
  .home header .header-menu ul li {
    margin-left: 0; } }
.home header .header-menu ul li a {
  border-radius: 9px;
  padding: 13px 23px;
  background: white;
  color: black;
  text-decoration: none;
  display: block; }
@media (max-width: 62em) {
  .home header .header-menu ul li a {
    font-weight: 600; } }
.home header .header-menu ul li:last-child a {
  background: linear-gradient(135.31deg, #faa85f 1.37%, #f05b72 97.26%);
  color: #fff; }
  .home header .header-menu ul li:last-child a:hover {
    background: #e84a60; }
.home header .header-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible; }
.home header .header-menu ul li .sub-menu {
  position: absolute;
  background: #fff;
  display: block;
  border-radius: 9px;
  margin-top: 0.625rem;
  padding: 7px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out; }
@media (max-width: 62em) {
  .home header .header-menu ul li .sub-menu {
    position: relative;
    margin-top: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    padding-left: 1rem; } }
.home header .header-menu ul li .sub-menu li {
  display: block;
  margin: 0; }
  .home header .header-menu ul li .sub-menu li a {
    padding: 7px 23px;
    background: transparent;
    color: #000; }
  @media (max-width: 62em) {
    .home header .header-menu ul li .sub-menu li a {
      font-weight: 400; } }
  .home header .header-menu ul li .sub-menu li a:hover {
    text-decoration: underline;
    background: transparent; }
.home header .header-menu ul li .sub-menu li:last-child a {
  background: transparent;
  color: #000; }

.home footer {
  paddding: 0; }
  .home footer .container {
    max-width: 1250px;
    padding: 0 1rem;
    margin: 0 auto; }

footer {
  background-color: #fff;
  padding: 2rem 1rem;
  position: relative;
  z-index: 2; }
@media (max-width: 47.99em) {
  footer {
    padding: 1.5rem 0; } }
footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 16px; }
@media (max-width: 47.99em) {
  footer .footer-inner {
    display: block;
    text-align: center; } }
footer .footer-inner .footer-left img {
  max-width: 120px; }
footer .footer-inner .footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: center; }
@media (max-width: 47.99em) {
  footer .footer-inner .footer-right {
    display: block; } }
footer .footer-inner .footer-right .footer-menu {
  margin-right: 4rem; }
@media (max-width: 47.99em) {
  footer .footer-inner .footer-right .footer-menu {
    margin-right: 0; } }
footer .footer-inner .footer-right .footer-menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none inside none;
  margin: 0;
  padding: 0; }
@media (max-width: 47.99em) {
  footer .footer-inner .footer-right .footer-menu ul {
    display: block; } }
footer .footer-inner .footer-right .footer-menu ul li {
  margin-left: 2rem; }
@media (max-width: 47.99em) {
  footer .footer-inner .footer-right .footer-menu ul li {
    margin-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem; } }
footer .footer-inner .footer-right .footer-menu ul li a {
  color: #000;
  font-weight: 700;
  text-decoration: none; }
  footer .footer-inner .footer-right .footer-menu ul li a:hover {
    text-decoration: underline; }

.sidebar-nav {
  border-right: 1px solid #dadada;
  position: fixed;
  z-index: 2;
  background: #fafafa;
  height: calc(100vh - 90px - 65px);
  width: 260px;
  flex: 0 0 260px;
  padding: 2rem 1rem;
  padding-left: 0.5rem;
  top: 90px;
  align-self: flex-start;
  overflow-y: auto; }
@media (max-width: 62em) {
  .sidebar-nav {
    left: calc(-260px - 2rem);
    top: 0px;
    height: 100vh;
    position: fixed;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 100;
    padding: 1rem; }
    .sidebar-nav.open {
      left: 0; } }
@media (max-width: 62em) {
  .sidebar-nav .sidebar-nav-inner {
    height: 100vh;
    overflow-y: scroll; } }
.sidebar-nav a {
  color: #1f2933;
  text-decoration: none;
  display: block; }
  .sidebar-nav a.sidebar-root-page-title {
    font-size: 1.125rem;
    line-height: 1.625rem;
    font-weight: 600;
    margin: 0;
    padding: 1rem 0rem 0.5rem 0rem; }
    .sidebar-nav a.sidebar-root-page-title i {
      margin-right: 0.5rem; }
  .sidebar-nav a.back-button {
    color: #f05b72;
    padding-bottom: 1rem; }
.sidebar-nav h3 {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #1f2933;
  padding: 0.5rem 0rem; }
  .sidebar-nav .sidebar-nav-links a {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    margin-top: 1px; }
    .sidebar-nav .sidebar-nav-links a:hover {
      background-color: #f3f6f8; }
    .sidebar-nav .sidebar-nav-links a.current {
      border-left: 4px solid #f05b72;
      background-color: #f3f6f8; }
.sidebar-nav #close-mobile-sidebar {
  display: none;
  width: 22px;
  margin-left: auto; }
@media (max-width: 62em) {
  .sidebar-nav #close-mobile-sidebar {
    display: block; } }

.wpb_wmca_accordion_wrapper_theme_transparent ul ul {
  margin: 5px 0 0 0px !important; }

.wpb_wmca_accordion_wrapper_theme_transparent > ul > li li:hover > a {
  border-color: transparent; }

.wpb_wmca_accordion_wrapper_theme_transparent > ul > li li.wpb-wmca-focus > a, .wpb_wmca_accordion_wrapper_theme_transparent > ul > li li.current-cat > a, .wpb_wmca_accordion_wrapper_theme_transparent > ul > li li.current-menu-item > a, .wpb_wmca_accordion_wrapper_theme_transparent li.current_page_item > a {
  border-color: #f05b72;
  background-color: #f3f6f8; }

.wpb_category_n_menu_accordion > ul > li > a {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #1f2933;
  margin-bottom: 2px; }

.wpb_category_n_menu_accordion li a {
  font-size: 13px; }

.wpb_category_n_menu_accordion ul {
  padding-left: 20px; }

.wpb-submenu-indicator {
  text-indent: -9999px;
  width: 20px;
  height: 20px; }
  .wpb-submenu-indicator:after {
    font-family: "Font Awesome 6 Free";
    content: "";
    font-size: 1rem;
    color: #1f2933;
    text-indent: 0;
    width: 20px;
    height: 20px;
    background: transparent; }

.wpb_category_n_menu_accordion li.wpb-submenu-indicator-minus > a > span.wpb-submenu-indicator {
  transform: rotate(180deg); }

#homepage_content .hero_holder {
  background: url("../images/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  padding-top: 178px;
  max-height: 550px;
  margin-bottom: 200px; }
@media (max-width: 62em) {
  #homepage_content .hero_holder {
    padding-top: 70px;
    margin-bottom: 100px; } }
@media (max-width: 47.99em) {
  #homepage_content .hero_holder {
    padding-top: 100px;
    margin-bottom: 70px;
    padding-bottom: 50px;
    max-height: 100%; } }
#homepage_content .hero_holder .hero-triangle {
  position: absolute;
  right: 0;
  top: 0;
  width: 43%;
  z-index: 1; }
@media (min-width: 62em) {
  #homepage_content .hero_holder .hero-triangle {
    width: 60%; } }
@media (min-width: 75em) {
  #homepage_content .hero_holder .hero-triangle {
    width: 800px; } }
#homepage_content .hero_holder h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 4.1875rem;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem; }
@media (max-width: 62em) {
  #homepage_content .hero_holder h1 {
    text-align: center;
    font-size: 2.8125rem;
    line-height: 3.125rem; } }
#homepage_content .hero_holder .cta_holder {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2; }
@media (max-width: 47.99em) {
  #homepage_content .hero_holder .cta_holder {
    flex-direction: column; } }
#homepage_content .hero_holder .cta_holder .box {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 3px 3px 15px 5px rgba(189, 189, 189, 0.18);
  padding: 5rem 5rem;
  width: 100%;
  text-align: center; }
@media (max-width: 62em) {
  #homepage_content .hero_holder .cta_holder .box {
    padding: 2rem 2rem; } }
@media (max-width: 47.99em) {
  #homepage_content .hero_holder .cta_holder .box {
    max-width: 275px;
    margin: 0 auto; } }
#homepage_content .hero_holder .cta_holder .box img {
  margin-bottom: 2rem; }
#homepage_content .hero_holder .cta_holder .box h2 {
  margin-bottom: 2rem; }
#homepage_content .hero_holder .cta_holder .box .button {
  margin: 3rem auto 0; }
#homepage_content .container {
  max-width: 1250px;
  padding: 0 1rem;
  margin: 0 auto; }
#homepage_content .benefits_holder {
  background: url("../images/triangle-bg.png") top center / cover no-repeat transparent; }
  #homepage_content .benefits_holder h2 {
    text-align: center;
    margin-bottom: 8rem; }
  @media (max-width: 62em) {
    #homepage_content .benefits_holder h2 {
      margin-bottom: 4rem; } }
  #homepage_content .benefits_holder .benefits {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem; }
  @media (max-width: 62em) {
    #homepage_content .benefits_holder .benefits {
      flex-wrap: wrap;
      gap: 1rem; } }
@media (max-width: 47.99em) {
  #homepage_content .benefits_holder .benefits {
    display: block; } }
#homepage_content .benefits_holder .benefits .benefit {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 3px 3px 15px 5px rgba(189, 189, 189, 0.18);
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-bottom: 4rem;
  text-decoration: none;
  position: relative; }
@media (max-width: 62em) {
  #homepage_content .benefits_holder .benefits .benefit {
    width: 40%;
    flex: 0 0 40%; } }
@media (max-width: 47.99em) {
  #homepage_content .benefits_holder .benefits .benefit {
    width: 100%;
    max-width: 275px;
    margin: 0 auto 1rem; } }
#homepage_content .benefits_holder .benefits .benefit img {
  margin-bottom: 2rem; }
#homepage_content .benefits_holder .benefits .benefit:after {
  border-radius: 6px;
  height: 6px;
  transition: width 2s;
  width: 39px;
  content: '';
  position: absolute;
  bottom: 2rem; }
  #homepage_content .benefits_holder .benefits .benefit:hover:after {
    background: linear-gradient(135.31deg, #faa85f 1.37%, #f05b72 97.26%);
    display: block;
    transition-timing-function: ease-in-out; }
#homepage_content .text-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9rem;
  padding-bottom: 9rem; }
  #homepage_content .text-holder .text-holder-inner {
    width: 45%; }
  @media (max-width: 47.99em) {
    #homepage_content .text-holder .text-holder-inner {
      width: 100%;
      text-align: center; } }
@media (max-width: 47.99em) {
  #homepage_content .text-holder {
    display: block;
    padding-top: 3rem;
    padding-bottom: 3rem; } }
#homepage_content .text-holder h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  line-height: 3rem;
  text-align: left; }
@media (max-width: 47.99em) {
  #homepage_content .text-holder h2 {
    text-align: center; } }
#homepage_content .text-holder p {
  margin-bottom: 2rem; }
@media (max-width: 47.99em) {
  #homepage_content .text-holder .button {
    margin: 0px auto; } }
#homepage_content .text-holder img {
  width: 50%;
  border-radius: 1rem; }
@media (max-width: 47.99em) {
  #homepage_content .text-holder img {
    width: 100%;
    margin-top: 2rem; } }
#homepage_content .video_holder {
  background: linear-gradient(132.83deg, #6f6fb3, #996aad 93.12%);
  padding-top: 20px;
  position: relative;
  padding-bottom: 8rem;
  overflow: hidden; }
  #homepage_content .video_holder .triangle-left {
    left: 0;
    position: absolute;
    top: -60px;
    width: auto;
    z-index: 1; }
  #homepage_content .video_holder .triangle-right {
    bottom: -60px;
    position: absolute;
    right: 0;
    width: auto;
    z-index: 1; }
  #homepage_content .video_holder h2 {
    margin: 40px auto 60px;
    color: white;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3rem; }
  #homepage_content .video_holder .video_holder_inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 2; }
  @media (max-width: 47.99em) {
    #homepage_content .video_holder .video_holder_inner {
      display: block; } }
  #homepage_content .video_holder .video_holder_inner .video {
    width: 100%; }
  @media (max-width: 47.99em) {
    #homepage_content .video_holder .video_holder_inner .video {
      margin-bottom: 2rem; } }
  #homepage_content .video_holder .video_holder_inner .video a {
    display: block;
    width: 100%;
    padding-top: 56.25%;
    position: relative; }
    #homepage_content .video_holder .video_holder_inner .video a img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0; }
      #homepage_content .video_holder .video_holder_inner .video a:hover .leanpay-video-playbutton .circle-btn {
        background: linear-gradient(134.31deg, #faa85f 1.18%, #f05b72 99.17%); }
        #homepage_content .video_holder .video_holder_inner .video a:hover .leanpay-video-playbutton .circle-btn span {
          border-left-color: #fff; }
    #homepage_content .video_holder .video_holder_inner .video a .leanpay-video-playbutton {
      left: 50%;
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      display: block; }
      #homepage_content .video_holder .video_holder_inner .video a .leanpay-video-playbutton .circle-btn {
        background-color: #fff;
        border-radius: 50%;
        height: 80px;
        width: 80px;
        display: block; }
        #homepage_content .video_holder .video_holder_inner .video a .leanpay-video-playbutton .circle-btn span {
          border-bottom: 20px solid transparent;
          border-left: 30px solid #f05b72;
          border-radius: 6px;
          border-top: 20px solid transparent;
          height: 0;
          left: 55%;
          position: absolute;
          top: 50%;
          transform: translate(-50%, -50%);
          width: 0; }
  #homepage_content .video_holder .video_holder_inner .video .video_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    color: #fff; }
#homepage_content .faqs_holder {
  padding-bottom: 4rem; }
  #homepage_content .faqs_holder .container {
    max-width: 845px; }
  #homepage_content .faqs_holder h2 {
    margin: 50px auto;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3rem; }
  #homepage_content .faqs_holder .faq {
    border-bottom: 1px solid #dfe3e9;
    border-top: 1px solid #dfe3e9;
    padding: 1.25rem;
    cursor: pointer; }
    #homepage_content .faqs_holder .faq .title {
      align-items: center;
      cursor: pointer;
      display: flex;
      justify-content: space-between; }
      #homepage_content .faqs_holder .faq .title h3 {
        margin-bottom: 0; }
    #homepage_content .faqs_holder .faq .circle-button {
      background-image: linear-gradient(90deg, #fba860 0, #f15c73);
      border-radius: 40px;
      box-sizing: border-box;
      color: #f15c73;
      display: block;
      font: 1.125rem Oswald, Arial, sans-serif;
      height: 50px;
      letter-spacing: 1px;
      padding: 3px;
      position: relative;
      text-decoration: none;
      text-transform: uppercase;
      width: 50px;
      z-index: 2;
      flex: 0 0 auto; }
    #homepage_content .faqs_holder .faq .circle-button-inner {
      align-items: center;
      background: #fff;
      border-radius: 40px;
      display: flex;
      font-size: 30px;
      height: 100%;
      justify-content: center;
      transition: background 0.5s ease;
      width: 100%; }
    #homepage_content .faqs_holder .faq .answer {
      padding-right: 100px;
      display: none; }
