.help_center {
     background-image : url("../images/search_page_bg.png");
     background-repeat: no-repeat;
     background-size  : 100%;

     h3 {
          font-size  : 34px;
          font-weight: 700;
          line-height: 56.4px;
          color      : #0F172A;
          text-align : center;
     }

     .left_side_head {
          display        : flex;
          justify-content: center;

          .left_side {
               h4 {

                    font-size  : 37px;
                    font-weight: 700;
                    line-height: 42px;
                    color      : #333333;

                    span {
                         color: #02955F;
                    }
               }

               .mail_call_us {
                    label {
                         width      : 100%;
                         font-size  : 14px;
                         font-weight: 600;
                         line-height: 19.2px;
                         color      : #515151;
                    }

                    a {
                         width                : 316.47px;
                         height               : 50px;
                         border               : 1px solid #AFAFAF;
                         text-decoration      : none;
                         font-size            : 13px;
                         font-weight          : 500;
                         line-height          : 21px;
                         color                : #111928;
                         display              : flex;
                         align-items          : center;
                         padding              : 0 20px;
                         border-radius        : 6px;
                         -webkit-border-radius: 6px;
                         -moz-border-radius   : 6px;
                         -ms-border-radius    : 6px;
                         -o-border-radius     : 6px;
                    }
               }
          }
     }

     .right_side {
          .accordion {
               display       : flex;
               flex-direction: column;
               gap           : 20px;

               .accordion-item {
                    border               : 1px solid #AFAFAF;
                    overflow             : hidden;
                    border-radius        : 6px;
                    -webkit-border-radius: 6px;
                    -moz-border-radius   : 6px;
                    -ms-border-radius    : 6px;
                    -o-border-radius     : 6px;

                    .accordion-header {
                         .accordion-button {
                              font-size  : 14px;
                              font-weight: 700;
                              line-height: 22px;
                              color      : #333333;

                              &:focus,
                              &:not(.collapsed) {

                                   background-color: transparent;
                                   box-shadow      : none;
                              }

                         }
                    }

                    .accordion-collapse {
                         .accordion-body {
                              font-size  : 14px;
                              font-weight: 500;
                              line-height: 22px;
                              color      : #000000;
                              padding-top: 0;
                         }
                    }
               }
          }
     }
}

@media screen and (max-width:992px) {
     .help_center {
          .right_side {
               margin-top: 30px;
          }
     }
}