/* ------ large and medium devices (dekstops and laptops, 992px and up) -----*/
@media (min-width: 992px) {
  html {
    font-size: 0.694vw;
  }

  .container {
    max-width: 128rem;
  }

  .hamburger_btn {
    pointer-events: none;
  }

  .dropdown-toggle:hover,
  .dropdown-toggle.show {
    background: #f1f1f1;
  }

  /* ========== Contact details ========== */
  .contact_info_list p:last-child {
    grid-column: 1;
  }

  .contact_info_list p:nth-child(7) {
    grid-column: 2;
    grid-row: 2;
  }

  .contact_info_list p:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .contact_info_list p:nth-child(6) {
    grid-column: 1;
    grid-row: 4;
  }

}

/* ------ Medium devices (tablets, 991px and down) -----*/
@media (max-width: 991px) {
  html {
    font-size: 62.5%;
  }

  .container-fluid {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }

  .section_padding {
    padding: 9rem 0;
  }

  br {
    display: none;
  }

  /* row_gap_24 */
  .row_gap_24 {
    --bs-gutter-y: 2.4rem;
  }

  /* =========== Header area ========== */
  .primary_menu {
    position: fixed;
    width: 720px;
    height: calc(100% - calc(var(--menuHeight) + var(--menutop))) !important;
    left: 50%;
    top: calc(var(--menuHeight) + var(--menutop));
    align-items: flex-start !important;
    justify-content: flex-start;
    padding: 0;
    flex-direction: column;
    pointer-events: none;
    transform: translateY(3rem) translateX(-50%);
    opacity: 0;
    transition: 0.35s ease;
    transition-delay: 0.25s;
    padding-left: 0 !important;
    background: #f7fafd;
    overflow: auto;
    padding-right: 0 !important;
    justify-content: space-between;
  }

  .menu_active .primary_menu {
    pointer-events: all;
    transform: translateY(0) translateX(-50%);
    opacity: 1;
    transition-delay: 1s;
  }

  .main_menu {
    flex-direction: column;
    gap: 0;
    padding: 0 1.6rem;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    padding-top: 3.2rem;
  }

  .main_menu li a {
    font-size: 1.6rem;
    border-radius: 0;
  }

  body.menu_active {
    overflow: hidden !important;
  }

  .menu_overlay {
    width: 200vw;
    height: 200vh;
    content: "";
    background: #f7fafd;
    position: fixed;
    left: -200vw;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0 50% 50% 0;
    transition: all 1.5s cubic-bezier(0.68, 0, 0.27, 1.55);
    /* elastic wave effect */
    z-index: 1;
  }

  .menu_active .menu_overlay {
    left: -50vw;
  }

  .main_menu li {
    transition: 0.25s ease;
  }

  /* ============== Hamburger ============= */
  .hamburger img {
    width: 2rem;
    position: absolute;
    transition: 0.35s ease;
    filter: var(--black_img);
  }

  .hamburger .close_icon {
    width: 2rem;
    opacity: 0;
    transform: scale(0.5);
  }

  .hamburger {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 999;
  }

  .menu_active .hamburger .close_icon {
    opacity: 1;
    transform: scale(1);
  }

  .menu_active .hamburger .Hamburger_icon {
    opacity: 0;
    transform: scale(0.5);
  }

  /* =================== Main style start ================== */
  /* mobile_menu_bottom */
  .mobile_menu_bottom .header_left_links {
    margin-left: 0;
  }

  .mobile_menu_bottom .social_icons {
    flex-direction: row-reverse;
    width: fit-content;
    margin: 2rem auto;
  }

  .mobile_menu_bottom {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 5.3rem;
  }

  /* ============== Header =============== */
  .logo img {
    width: 14.5rem;
  }

  .dropdown-toggle,
  .main_menu>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    height: 4rem;
    text-align: left;
  }

  .dropdown {
    width: 100%;
  }

  .header_btns {
    flex-direction: column;
    width: 100%;
    gap: 1.6rem;
    padding-top: 3.2rem;
  }

  .mobile_menu_bottom {
    width: 100%;
    padding: 0 1.6rem;
  }

  .header_btns a {
    width: 100%;
    justify-content: center;
  }

  .dropdown-item {
    font-size: 1.6rem;
    padding: 1.1rem 1.6rem;
  }

  .dropdown-menu {
    width: calc(100%);
    position: relative;
    top: auto !important;
    box-shadow: none;
    border-radius: 0;
    left: 0 !important;
    padding: 2rem 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 1.2s ease;
    border-bottom: 0.1rem solid #e8cece;
    border-top: 0.1rem solid #e8cece;
  }

  .dropdown-menu.show {
    max-height: 400px;
  }

  /* ======= Titles ======= */
  .title_76 {
    font-size: 5.4rem;
    line-height: 6rem;
  }

  .title_40 {
    line-height: 4.2rem;
    font-size: 3.6rem;
  }

  .title_32 {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }

  /* =========== hero_area =========== */
  .hero_area {
    padding: 13rem 0 12.5rem;
  }

  .hero_content .text_lg {
    padding: 2.4rem 2rem;
  }

  .hero_content .text_lg br {
    display: none;
  }

  .hero_img img {
    width: 100%;
  }

  .hero_bottom .text_sm {
    width: 11.9rem;
  }

  .hero_btns {
    padding-bottom: 3rem;
  }

  /* ================= Number area ================= */
  .numbers_area {
    padding: 7rem 0 7rem;
  }

  .numbers_area .section_top {
    margin-bottom: 4rem;
  }

  .numbers_area .container {
    padding: 0;
  }

  .testimonial_box {
    gap: 3.6rem;
    padding: 4.8rem 4rem;
  }

  .slider-arrows {
    position: relative;
    width: 100%;
    top: auto;
    transform: translate(0, 0);
    left: 0;
    height: 4rem;
    justify-content: center;
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-direction: row-reverse;
  }

  .swiper-arrow {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
  }

  /* ================= Footer area ================== */
  .footer_contact .row {
    --bs-gutter-y: 4rem;
  }

  .footer_main .col-lg-3.pl_48 {
    padding-left: 0;
  }

  .footer_main {
    padding: 4.8rem;
  }

  .footer_main .row {
    --bs-gutter-x: 4rem;
    --bs-gutter-y: 4rem;
  }

  .footer_contact .section_top {
    margin-bottom: 0;
    padding-bottom: 4.5rem;
  }

  .footer_main {
    padding: 4rem 2.4rem;
  }

  .footer_main .row {
    padding: 0;
  }

  .footer_box:not(.footer_box1) ul {
    display: block;
    columns: 2;
    column-gap: 1.6rem;
  }

  .footer_box:not(.footer_box1) ul li {
    padding-bottom: 1.6rem;
  }

  .footer_bottom_contents p br {
    display: block;
  }

  .footer_bottom .row {
    --bs-gutter-x: 4rem;
  }

  .footer_bottom_contents.pl_48 {
    padding-left: 0;
  }

  .footer_box1.ml_48 {
    margin-left: auto;
  }

  /* asib khan */
  .from {
    padding-left: 0;
  }

  .finora-bank-area .container {
    padding: 0 1.6rem;
  }

  .finora-bank-area {
    padding: 7rem 0 7rem;
  }

  .multiple_box br {
    display: block;
  }

  .hero_content_right {
    padding-left: 3rem;
  }

  .bank_seeks_content {
    width: 32.9rem;
  }

  .story_area {
    margin-top: -14rem;
  }

  .hero_area.vv_2 .text_lg {
    padding-top: 0;
  }

  .story_area .pt_100.pb_100 {
    padding: 9rem 0;
  }

  .subscribe {
    display: inline-block !important;
    width: 100%;
  }

  .subscribe input,
  .subscribe .button {
    width: 100%;
  }

  .subscribe .button {
    justify-content: center;
  }

  .subscribe input {
    margin-bottom: 2rem;
  }

  .latest_news_tabs li {
    margin-left: 0.8rem;
  }

  /* =============== Step progress =============== */
  .progress_wrap {
    display: grid;
    grid-template-columns: 0fr 1fr;
    gap: 1.6rem;
    max-width: 55rem;
    margin: 0 auto;
  }

  .progress-container {
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr;
  }

  .progress-step-1 {
    grid-template-rows: 1fr;
  }

  .progress-step {
    grid-template-rows: 3rem 1fr;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .progress-step .line {
    height: 100%;
    width: 0.2rem;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .progress-step-1 {
    grid-template-rows: 1fr;
  }

  .progress_arrow {
    margin-left: 0;
  }

  .progress_arrow img {
    transform: rotate(90deg);
  }

  .progress_wrap .row.row_gap_24.pt_75 {
    padding-top: 0;
  }

  /* ============ modal ============ */
  .modal-content {
    width: calc(100% - 3rem);
    margin: 0 auto;
    padding: 5.7rem 2.3rem 4.3rem 2.3rem;
  }

  .modal-body .from .row .col-md-12 {
    margin-top: 1.6rem;
  }

  .modal-content .from .row {
    --bs-gutter-y: 1.6rem;
  }

  .modal-content .section_top {
    margin-bottom: 0;
    padding-bottom: 3rem;
  }

  .modal-body .from>p {
    padding: 2.4rem 0 3rem;
  }

  .popup_btn {
    right: 1.8rem;
    top: 1.8rem;
  }

  /* ============ Marquee ============== */
  .marquee_area {
    margin-top: -8rem;
  }

  .partner2 {
    width: 18.92rem;
    height: 25.2rem;
    margin-top: 12.4rem;
  }

  .partner1 {
    width: 18.9rem;
    height: 25rem;
    margin-top: 6rem;
  }

  .partner3 {
    width: 12.1rem;
    height: 16.2rem;
    margin-top: -5.2rem;
  }

  .partner4 {
    width: 24rem;
    height: 20rem;
    margin-top: 7rem;
  }

  .partner5 {
    width: 30rem;
    height: 26rem;
    margin-top: 3rem;
  }

  /* =============== blog_area =============== */
  .blog_info.pt_16 {
    padding: 1.6rem 0 4rem 0;
  }

  /* ============== contact_area =============== */
  .contact_details_wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact_info_list {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem 8rem;
  }

  .contact_info_list p br {
    display: block;
  }

  .contact_details_img img {
    width: 100%;
  }

  .contact_details_content {
    width: 100%;
  }

  .contact_details_wrap .section_top.mb_80 {
    margin-bottom: 5.3rem;
  }

  /* ================== finora_news_area ================== */
  .finora_news_area .blog_box {
    padding: 2rem;
  }

  .finora_news_area .blog_img {
    width: 45%;
  }

  .finora_news_area .blog_info {
    padding: 0;
  }

  .blog_box.v_2 .blog_info.pt_16 {
    padding-bottom: 0;
  }



  /* daily banking page started */

  .run_business_content {
    text-align: center;
    padding-bottom: 7rem;
  }

  .finance_area.section_padding.as-v2 .content br {
    display: block;
  }

  .finance_area.section_padding.as-v2 {
    padding: 6rem 0;
    background: url(../img/financing_bg.png) no-repeat scroll top right / cover !important;
  }

  .run_business_content br {
    display: block;
  }

  .run_business_content h2 {
    padding-bottom: 2.4rem;
  }

  .fees-pricing-area {
    padding: 8rem 0;
  }

  .account-oppening-from {
    padding-left: 0;
  }

  .as-need-help-content {
    padding-bottom: 4.5rem;
  }

  .as-need-help {
    padding: 10rem 0 10rem;
  }

  .shape_2 {
    width: 25rem;
  }

  .account_opening_area {
    padding: 10rem 0 10rem 0;
  }
}

/*----- sm devices (tablets, 767px and down) -----*/
@media (max-width: 767px) {

  /* ============ default styles ============ */
  html {
    font-size: 50%;
  }

  body {
    font-size: 1.6rem;
  }

  .primary_menu,
  .container-fluid {
    width: 540px;
  }

  .section_padding {
    padding: 6rem 0;
  }

  .section_top {
    margin-bottom: 5rem;
  }

  /* ======== titles ======== */
  .title_76 {
    line-height: 4.6rem;
    font-size: 3.6rem;
  }

  .title_40 {
    line-height: 3.4rem;
    font-size: 2.4rem;
  }

  .title_32 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }

  /* =============== numbers_area =============== */
  .numbers_area {
    padding: 5.5rem 0 7rem;
  }

  /* =============== hero_area =============== */
  .hero_btns {
    flex-direction: column;
    padding-bottom: 0;
  }

  .hero_content {
    text-align: center;
  }

  .hero_bottom {
    justify-content: center;
  }

  /* =============== finance_area =============== */
  .finance_area .content p {
    letter-spacing: -0.04em;
  }

  .finance_area {
    background: url(../img/financing_bg.png) no-repeat scroll top right -27rem / cover !important;
    position: relative;
  }

  .finance_area:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 1) 100%);
    opacity: 0.6;
  }

  .finance_area .container {
    position: relative;
    z-index: 1;
  }

  .btns {
    flex-direction: column;
  }

  .btns a {
    width: 29.2rem;
    justify-content: center;
  }

  /* ================== service_area ================ */
  .service_area .section_top {
    margin-bottom: 4rem;
  }

  .service_top p {
    width: 25.4rem;
    padding-top: 0.5rem;
  }

  .service_box .features_list.v2 {
    padding-bottom: 2.4rem;
  }

  /* ================== finora_area ================ */
  .finora_area .section_top {
    margin-bottom: 5rem;
  }

  .finora_area .section_top .title_40 {
    padding-bottom: 1.6rem;
  }

  /* ================== numbers_area ================ */
  .numbers_area .container {
    padding: 0 1.6rem;
  }

  .numbers_area .section_top {
    margin-bottom: 0;
    padding-bottom: 5.7rem;
  }

  /* ================ testimonial_area =============== */
  .testimonial_area {
    margin-top: 5rem;
  }

  .testimonial_box {
    flex-direction: column;
  }

  .testimonial_img {
    width: 100%;
    height: auto;
  }

  .Purple_circle {
    right: -13.2rem;
    bottom: -3.5rem;
    width: 34rem;
  }

  .Blue_circle {
    left: -15.2rem;
    top: -11.5rem;
    width: 34rem;
  }

  /* ==================== blog_area ================= */
  .blog_box_flex {
    flex-direction: column;
  }

  .section_top {
    margin-bottom: 5rem;
  }

  .blog_area .button {
    margin-top: 5.5rem;
  }

  /* ==================== footer_area ================= */
  .footer_main {
    padding: 4rem 1.6rem;
  }

  .footer_box1 ul {
    padding-bottom: 2.4rem;
  }

  .footer_bottom .row {
    --bs-gutter-y: 4rem;
    padding-bottom: 5.2rem;
  }

  .footer_bottom {
    padding: 7.3rem 0 5.4rem;
  }

  .bottom_text {
    text-align: left !important;
  }

  .progress-wrap {
    right: 1.6rem;
    bottom: 2.5rem;
  }

  /* asib khan */

  .hero_area.v-2 {
    padding: 13rem 0 6rem;
  }

  .from .button {
    margin: 0 auto;
  }

  .mul_bottom {
    padding-top: 3.6rem;
  }

  .progress_bar {
    padding-bottom: 0;
  }

  .progress_bar_items {
    height: auto;
  }

  .progress_bar_area .button {
    margin-top: 6rem;
  }

  .loan_from_shape {
    display: none;
  }

  .finora-bank-area .section_top {
    margin-bottom: 0;
    padding-bottom: 5.7rem;
  }

  .hero-content-icon {
    margin: 0 auto;
  }

  .hero_content_right {
    padding-left: 0;
    text-align: center;
    padding-top: 2.6rem;
  }

  .hero_content_right .button {
    margin: 0 auto;
  }

  .bank_seeks_area {
    padding: 7rem 0 7rem;
  }

  .sustainability_clients_area {
    padding-bottom: 7rem;
  }

  .hero_area.vv_2 .text_lg {
    padding: 2.4rem 0;
  }

  .hero_area.vv_2 .button {
    margin: 0 auto;
  }

  .hero_area.vv_2 {
    padding: 16rem 0 7.5rem;
  }

  .story_content h2 {
    text-align: center;
  }

  .story_area .pt_100.pb_100 {
    padding: 6rem 0;
  }

  .story_content .section_top {
    margin-bottom: 1.6rem;
  }

  .founder_about_content {
    margin-bottom: 6rem;
  }

  .teams_wrapper .title_24 {
    text-align: center;
  }

  .teams_wrapper.mb_80 {
    margin-bottom: 4rem;
  }

  .blog_box.v_2.vv_2 {
    height: auto;
  }

  .finora_news_area .blog_info {
    width: 100%;
    padding: 4rem 4rem 4rem 1.8rem;
  }

  .finora_news_area .blog_img {
    width: 100%;
  }

  .subscribe_newsletter_content {
    padding-bottom: 4.8rem;
  }

  .latest_news_area .section_top {
    margin-bottom: 4rem;
    text-align: center;
  }

  #myTab {
    float: none;
    text-align: center;
    padding-bottom: 2.4rem;
  }

  .hero_content.vvv_2 {
    text-align: center;
    margin-bottom: 5rem;
  }

  .hero_content.vvv_2 .blog_catagory {
    margin: 0 auto;
    margin-bottom: 4rem;
  }

  .hero_area_shape_v2 {
    top: 0;
    width: 21rem;
  }

  /* ============ Update ============== */
  .title_48 {
    font-size: 3.6rem;
    line-height: 4.2rem;
    letter-spacing: -0.05em;
  }

  .multiple-possibilities .section_top {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .bank_seeks_area .title_40 {
    padding-bottom: 4rem;
    text-align: center;
  }

  .benefits_box {
    padding: 4rem 2rem;
  }

  .finora-bank-area .row_gap_24 {
    padding: 0 1.6rem;
  }

  .talk_pepole .blog_box {
    flex-direction: column;
    flex-direction: column-reverse;
    text-align: center;
  }

  .talk_pepole .blog_info {
    width: 100%;
  }

  .talk_pepole .blog_img {
    width: 100%;
  }

  .open_positions_tabs {
    padding: 0 1.6rem;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }

  .open_positions .section_top {
    padding: 0 1.6rem;
  }

  .talk_pepole .link,
  .talk_pepole .button {
    margin: 0 auto;
  }

  .talk_pepole .link {
    margin-top: 1.6rem;
    margin-bottom: 4rem;
  }

  .talk_pepole .blog_box .blog_img img {
    height: 48.5rem;
    object-fit: cover;
  }

  .talk_pepole .blog_box img {
    border-radius: 1rem;
  }

  /* ================ tab_selection ================= */
  .tab_btn_style {
    height: 5.2rem;
    display: flex !important;
    align-items: center;
    width: 100%;
    background: #333333;
    justify-content: space-between;
    padding: 0 2.4rem;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    border-radius: 10rem;
  }

  .tab_options {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2rem;
    background: #fff;
    z-index: 99;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 0.5rem 0.1rem #00000015;
    transition: 0.25s ease;
    transform: scale(0.85);
    opacity: 0;
    pointer-events: none;
  }

  .tab_selection {
    position: relative;
    margin-bottom: 4rem;
  }

  .tab_options button {
    height: 5rem;
    padding: 0;
  }

  .open_positions_tabs_button .nav-link {
    padding-top: 0;
    padding-bottom: 0;
  }

  .tab_btn_style:hover {
    color: #fff;
  }

  .selection_active .tab_options {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
  }

  .selection_active .tab_btn_style img {
    transform: rotate(180deg);
  }

  .tab_btn_style img {
    transition: 0.25s ease;
  }

  .open_positions .open_positions_tabs {
    padding: 0;
  }

  /* ==================== Contact_area ===================== */
  .contact_info_list {
    grid-template-columns: 1fr;
    gap: 1.8rem 0rem;
  }

  .contact_details_wrap.mb_80 {
    margin-bottom: 6rem;
  }

  .subscribe_newsletter_box {
    padding: 4.8rem 2.4rem;
  }

  /* ==================== finora_news_area ===================== */
  .finora_news_area .blog_box {
    flex-direction: column;
    gap: 0;
  }

  .finora_news_area .blog_box .blog_info {
    padding: 2.4rem 1.6rem;
  }

  /* ==================== latest_news_area ===================== */
  .latest_news_area .blog_box .blog_info {
    padding-bottom: 0;
    padding-top: 2.4rem;
  }

  .latest_news_area .blog_box .blog_img img {
    height: 23.1rem;
    object-fit: cover;
  }

  .latest_news_area .tab_btn_style {
    padding: 0 1.4rem;
    background: transparent;
    font-weight: 400;
    color: var(--blue);
  }

  .latest_news_area .tab_btn_style img {
    filter: var(--blue_img);
  }

  .latest_news_tabs li {
    margin: 0;
  }

  .latest_news_area .tab_selection {
    margin-bottom: 0.8rem;
  }

  /* ================= story_area ================= */
  .hero_content.text-start {
    text-align: center !important;
  }

  .story_img img {
    height: 63.9rem;
    object-fit: cover;
  }

  .story_area .row {
    text-align: center;
  }

  .story_area .pt_90.pb_100 {
    padding: 6rem 0;
  }

  .founder_about_content .title_40 {
    text-align: center;
  }

  .founder-card img {
    height: 30rem;
    object-fit: cover;
  }

  /* ============= Article ============= */
  .article_content {
    padding: 0;
  }



  /* daily banking page started */


  .as_v3 .hero_content {
    text-align: left;
    padding-bottom: 4.8rem;
  }

  .hero_area.as-hero.as_v3 {
    padding-bottom: 4.8rem;
  }

  .run_business_area br {
    display: none;
  }

  .run_business_area {
    padding: 5.4rem 0;
  }

  .run_business_right-wrapper {
    padding-bottom: 2.4rem;
  }

  .fees-pricing-area {
    padding: 5.5rem 0;
  }

  .fees-title {
    padding-bottom: 5.5rem;
  }

  .pricing-wrap {
    padding-bottom: 5.5rem;
  }

  .finance_area.as-v2::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) -66.2%, rgba(0, 0, 0, 0.24) 1.06%, rgba(0, 0, 0, 0.6) 100%);
  }

  .finance_area .content p {
    padding: 1.6rem 0 5rem 0;
  }

  .shape_2 {
    width: 25rem;
  }

  .shape_3 {
    width: 25rem;
  }

  .as-hero-area {
    padding: 13rem 0 6rem 0;
  }

  .become-coustomer-button {
    display: block !important;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }

  .become-coustomer-button .button {
    width: 21.5rem;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1.6rem;
  }

  .account_opening_area {
    padding: 5.4rem 0 7rem 0;
  }

  .account-oppening-top-content h2 {
    font-size: 2.4rem;
    line-height: 2.272rem;
    padding-bottom: 2.4rem;
  }

  .account-oppening-top-content p {
    padding-bottom: 2.4rem;
  }

  .account-oppening-top-content p:last-child {
    padding-bottom: 0;
  }

  .account-oppening-top-content {
    padding-bottom: 5.5rem;
  }

  .as-need-help-content {
    text-align: center;
  }

  .as-need-help-content h2 {
    font-size: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .hero_content.as_v2 .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/*----- xs devices (landscape phones, 575px and down) -----*/
@media (max-width: 575px) {
  html {
    font-size: 2.66vw;
  }

  /* menu */
  .primary_menu,
  .container-fluid {
    width: calc(100%);
    padding: 0 1.6rem;
  }

  .container {
    padding: 0 1.6rem;
  }

  .dropdown-menu {
    width: calc(100% + 3.2rem);
    left: -1.6rem !important;
  }

  .story_area {
    margin-top: -10rem;
  }

  .hero_area.vv_2 {
    height: 82rem;
  }

  .founder_about_content .button {
    margin: 0 auto;
  }

  .finance_area.section_padding.as-v2 {
    background-size: 135rem !important;
    background-position: -71rem !important;
    padding: 6.7rem 0;
    text-align: center;
  }

}