/*
Theme Name: 1finance
Text Domain: twentytwenty
Version: 2.0
Tested up to: 6.0
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
Author: the WordPress team
Author URI: https://wordpress.org/
Theme URI: https://wordpress.org/themes/twentytwenty/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Menu Modal
	6. 	Search Modal
	7. 	Page Templates
		a. 	Template: Cover Template
		c. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Widgets
	16. Site Footer
	17. Media Queries

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


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

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */
html {
    -webkit-text-size-adjust: 100%; /* or  none */
}
body:has(.modal:has(.mobile-invisible)) {
    overflow-y: hidden !important;
  }

.navbar_container {
    background: var(--neutral-gray-grey-600, #525252);
     padding: 16px 0px;
     width: 100%;
     position: fixed;
     z-index: 999;
     top: 0px;
}

.navbar_content_container {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;

}
.navbar_content_container img{
    position: relative;
    z-index: 2;
}

.navbar_content {
    display: flex;
    gap: 22px;
    list-style-type: none;
    padding: 0px;
    margin-left: 53px;
    margin-right: 60px;
    align-items: center;
}

.nav_item {
    position: relative;
}

.submenu {
    list-style-type: none;
    padding: 0px;
    background: var(--neutral-gray-grey-600, #525252);
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 29px;
    padding-right: 29px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    position: absolute;
    z-index: 1;
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.show {
    opacity: 1;
    visibility: visible;
    /* transform: translateY(0); */
    overflow: hidden;
    overscroll-behavior: contain;

}

.title_child_link:hover {
    color: #FFFFFF;
}

.nav_item_content {
    display: flex;
    gap: 5px;
    cursor: pointer;
    height: 48px;
     display: flex;
     align-items: center;
     padding: 0px 10px;
}

.title_link {
    color: var(--neutral-gray-grey-white, #FFF);
    text-align: right;
    font-family: var(--font-family-Body, "Fira Sans");
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    cursor: pointer;
}

.title_link:hover {
    color: var(--neutral-gray-grey-white, #FFF);
}

.title_child_link {
    color: var(--neutral-gray-grey-white, #FFF);
    text-align: center;
    font-family: "Fira Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.active_class{
    border-radius: 4px;
background: rgba(217, 217, 217, 0.20);
}

.nav_item_content a{
    color: var(--neutral-gray-grey-white, #FFF);
    text-align: right;
    font-family: var(--font-family-Body, "Fira Sans");
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    cursor: pointer;
}
.all_cal_con{
    display: flex;
    align-items: center;
    gap: 5px;
}

.downarrow {
    rotate: 180deg;
}

.hamberger_con>img {
    cursor: pointer;
}

.mobile_menu {
    display: none;
}

/* Mobile hamburger button */
.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .nav_item_content a:hover{
        color: var(--neutral-gray-grey-white, #FFF);
   }
    .hamberger_con {
         display: flex;
         align-items: center;
         gap: 12px;
    }

    .navbar_container {
        background: rgba(10, 10, 10);
         padding: 12px 25px;
    }

    .navbar_content {
         display: none;
         /* hide desktop menu */
    }

    .hamburger {
         display: block;
         /* show hamburger */
    }

    .show {
         display: flex !important;
         opacity: 1;
         visibility: visible;
         transform: translateY(0);
    }

    .navbar_content_container {
         width: unset;
    }

    .submenu {
         padding: 0px;
         background: none;
         position: relative;
         align-items: start;
         top: 0px;
         display: none;
         left: 0%;


    }


    .navbar_mobile {
         padding: 0px;
         display: flex;
         flex-direction: column;
         gap: 20px;
    }

    .nav_item_content {
         padding: 8px 0px;
    }

    .nav_item_content>span {
         color: #FFF;
         text-align: center;
         font-family: var(--font-family-Body, "Fira Sans");
         font-size: 16px;
         font-style: normal;
         font-weight: 500;
         line-height: 24px;
    }

    .nav_item_content_link{
        color: #FFF;
        text-align: center;
        font-family: var(--font-family-Body, "Fira Sans");
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
   }

    .mobile_link {
         color: #FFF;
         text-align: center;
         font-family: var(--font-family-Body, "Fira Sans");
         font-size: 14px;
         font-style: normal;
         font-weight: 300;
         line-height: 20px;

    }

    .mobile_link:hover {
         color: #FFF;
    }

    /* Mobile menu (hidden by default) */
    .mobile_menu {
         position: fixed;
         top: 0;
         right: -100%;
         width: 100%;
         height: 100vh;
         background: #0A0A0A;
         padding: 20px;
         display: flex;
         flex-direction: column;
         gap: 20px;
         transition: right 0.8s ease-in-out;
         z-index: 200;
         top: 67px;
         padding: 25px;
         display: block;
    }

    .mobile_menu.open {
         right: 0;
         /* slide in */
         overflow: auto;
         height: calc(100vh - 50px);

    }

    /* Top bar inside mobile menu */
    .mobile_top {
         display: flex;
         justify-content: space-between;
         align-items: center;
    }

    .close_btn {
         font-size: 22px;
         color: white;
         background: none;
         border: none;
         cursor: pointer;
    }

    /* Download button below logo */
    .mobile_download {
         width: 140px;
         margin: 20px 0;
    }

    /* Menu items */
    .mobile_nav_item {
         display: flex;
         flex-direction: column;
         gap: 10px;
    }

    .mobile_nav_item>a {
         color: white;
         font-size: 18px;
         text-decoration: none;
    }

    .mobile_submenu {
         padding-left: 15px;
         display: flex;
         flex-direction: column;
         gap: 6px;
    }

    .mobile_submenu a {
         color: #ddd;
         font-size: 16px;
    }
}
li.nav_item ,ul.navbar_content {
	
	margin-inline-start: 0px !important;
    margin-inline-end: 0px !important;
}
*{
	box-sizing: border-box;
}



.downarrow {
	rotate: 180deg;
}

.uparrow {
	rotate: 180deg;
}
/* footer css */
.footer_container {
    padding: 64px 0px;
    background: var(--old-colours-Grey-8_Grey---Secondary-Dark, #212120);
}

.footer_child_container {
    max-width: 1160px;
    margin: 0 auto;
}

.logo_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.cin_number {
    color: #A0A09B;
    text-align: center;
    font-family: "Fira Sans", Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.footer_links_container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    max-height: 500px;
    transition: max-height 0.9s ease;
    overflow: hidden;
}

.open {
    max-height: 915px;
}

.footer_column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 170px;
}

.links_title {
    color: var(--neutral-gray-grey-white, #FFF);
    font-family: var(--font-family-Body, "Fira Sans");
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
}

.links_container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0px;
}

.linkItem {
    color: var(--neutral-gray-grey-400, #A3A3A3);
    font-family: var(--font-family-Body, "Fira Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.linkItem:hover {
    color: var(--neutral-gray-grey-400, #A3A3A3);
    font-family: var(--font-family-Body, "Fira Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.link_list {
    list-style-type: none;
}

.showmore_container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;

}

.showmore_con {
    display: flex;
    align-items: center;
    justify-content: center;
}

.showmore_container svg {
    margin-top: 6px;
    cursor: pointer;
}

.showMoreBtn {
    color: var(--neutral-gray-grey-white, #FFF);
    font-family: var(--font-family-Body, "Fira Sans");
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.footer_website_information {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-top: 40px;
}

.office_tag {
    color: var(--old-colours-Grey-4_Grey, #A0A09B);
    font-family: var(--font-family-Body, "Fira Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 12px;
}

.office_addres {
    color: var(--2_Grey, #DEDDD9);
    font-family: var(--font-family-Body, "Fira Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.information_col_address {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.security_title {
    color: var(--neutral-gray-grey-white, #FFF);
    font-family: var(--font-family-Title, "Spirits-Soft");
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 5px;
}

.security_code {
    color: var(--neutral-gray-grey-white, #FFF);
    font-family: var(--font-family-Body, "Fira Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.security_container {
    margin-bottom: 20px;
}

.security_imges {
    display: flex;
    gap: 10px
}

.security_imges img {
    width: 56px;
    height: 32px;
}

.fira_16px_400_A0A09B {
    color: var(--old-colours-Grey-4_Grey, #A0A09B);
    font-family: var(--font-family-Body, "Fira Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 10px;
}

.download_center {
    margin-bottom: 20px;
}

.horizontal_line {
    height: 2px;
    background: var(--6_Grey, #41423F);
    margin: 40px 0px;
}

.copyright_title {
    color: var(--old-colours-Grey-4_Grey, #A0A09B);
    text-align: center;
    font-family: var(--font-family-Body, "Fira Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 25px;
}

.copyright_title a {
    text-decoration: underline;
    color: var(--old-colours-Grey-4_Grey, #A0A09B);
    font-family: "Fira Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    text-decoration-line: underline !important;
    text-decoration-style: solid !important;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.copyright_discription {
    color: var(--old-colours-Grey-4_Grey, #A0A09B);
    text-align: center;
    font-family: var(--font-family-Body, "Fira Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.para_con p {
    color: var(--old-colours-Grey-4_Grey, #A0A09B);
    text-align: center;
    font-family: var(--font-family-Body, "Fira Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    width: 100%;
}

.copyright_container {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 1220px;
    margin: 0 auto;
}

.logo {
    width: 127px;
    height: 49px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .office_tag{
        width: 100%;
    }
    .security_title{
        width: 100%;
    }
    .showmore_con{
        display: none;
    }
    .copyright_title {
        margin-bottom: 0px;
        margin-top: 40px;
    }

    .footer_child_container {
        width: unset;
    }

    .footer_links_container {
        grid-template-columns: 1fr;
        margin-top: 60px;
        gap: 60px;
        max-height: unset;
    }

    .footer_column {
        align-items: center;
        gap: 10px;
        width: 300px;
        margin: 0 auto;
    }

    .links_container {
        align-items: center;
        gap: 10px;
        width: 60%;
        text-align: center;
    }

    .footer_container {
        padding: 80px 0px;
    }


    .links_title {
        color: var(--neutral-gray-grey-white, #FFF);
        text-align: center;
        /* -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #000; */
        font-family: var(--font-family-Body, "Fira Sans");
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px;
    }

    .linkItem {
        color: var(--old-colours-Grey-4_Grey, #A0A09B);
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }

    .footer_website_information {
        grid-template-columns: 1fr;
        margin-top: 60px;
        gap: 60px;
    }

    .information_col {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 32px 20px;
    }

    .information_col_app {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .security_container {
        text-align: center;
    }

    .security_title {
        color: var(--neutral-gray-grey-white, #FFF);
        text-align: center;
        font-family: var(--font-family-Title, "Spirits-Soft");
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
        margin-bottom: 5px;
    }

    .fira_16px_400_A0A09B {
        text-align: center;
    }

    .horizontal_line {
        margin: 60px 0px;
    }

    .copyright_container {
        width: unset;
        padding: 0 83px;
    }

    .information_col_address {
        text-align: center;
        gap: 25px;
        width: 68%;
        margin: 0 auto;
    }

    .office_tag {
        margin-bottom: 5px;
    }

    .logo_container {
        margin-bottom: 25px;
    }
}

.mobile-only { display: none; }
.desktop-only { display: block; }

@media (max-width: 768px) {
  .mobile-only { display: block; }
  .desktop-only { display: none; }
  .hidden-link {
    display: block !important;
  }
}

footer .social-icons img{
	width: 24px;
    margin-right: 6px;
}

.appstore-icon {
    width: 120px;
    margin-right: 11px;
}
.hidden{
    display: none;
}

body:has(.modal:not(.hide)) {
    overflow-y: hidden;
  }

  .hidden-link {
    display: none;
  }
  .hidden-link.show {
    display: list-item;
  }
  
  body:has(.mobile_menu.open) {
    overflow: hidden !important;
    
  }

  body:has(.submenu.show) {
    scroll-behavior: auto;
    overflow-y: hidden;
}
/* body:not(.submenu.show) {
    scroll-behavior: auto;
    overflow-y: visible;
} */


  