/*
Theme Name: Twenty Twenty Child
Theme URI: https://wordpress.org/themes/twentytwenty/
Template: twentytwenty
Author: the WordPress team
Author URI: https://wordpress.org/
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
Version: 2.8.1742016556
Updated: 2025-03-15 05:29:16
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}
*,
*:before,
*:after {
    box-sizing: border-box;
}
:root {
    --base-transition: all 0.3s ease-in-out;
    --white: #ffffff;
    --black: #000;
}
body {
    font-family: "Inter", serif;
    font-size: 16px;
    line-height: 26px;
    color: var(--black);
    letter-spacing: -0.7px;
}
.container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
}
p {
    margin-bottom: 20px;
}
P:last-of-type {
    margin-bottom: 0 !important;
}
img,
svg {
    vertical-align: top;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
body a {
    color: var(--black);
}
p:empty {
    display: none;
}
/************************ GLobal ************************/
.footer-nav-widgets-wrapper.header-footer-group,
#site-header,
#site-footer {
	display: none;
}
/* home page */
.pdfs_listing_sec {
    padding: 80px 0;
}
.pdfs_listing_sec .main_wrapper {
    max-width: 462px;
    margin: auto;
}
.pdfs_listing_sec h1 {
	font-size: 40px;
	line-height: 44px;
	color: #808080;
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
}
.pdfs_listing_sec .pdf_open {
    background: #F8F8F8;
	border: 1px solid #EDEDED;
	border-radius: 4px;
	text-decoration: none;
	font-size: 14px;
	line-height: 18px;
	font-weight: 600;
	padding: 10px 15px 10px 22px;
	min-height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: calc(100% - 62px);
    transition: var(--base-transition);
}
.pdfs_listing_sec .pdf_open img {
    max-width: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--base-transition);
}
.pdfs_listing_sec .pdf_open:hover {
    border-color: var(--black);
}
.pdfs_listing_sec .pdf_open:hover img {
    opacity: 1;
    visibility: visible;
}
.pdfs_listing_sec .pdf_download {
    background: #F8F8F8;
	border: 1px solid #EDEDED;
	border-radius: 4px;
	width: 55px;
	display: flex;
	height: 54px;
	align-items: center;
	justify-content: center;
    transition: var(--base-transition);
}
.pdfs_listing_sec .pdf_download img {
    width: 100%;
    max-width: 22px;
    opacity: 0.4;
    transition: var(--base-transition);
}
.pdfs_listing_sec .pdf_download:hover {
    border-color: var(--black);
}
.pdfs_listing_sec .pdf_download:hover img {
    opacity: 1;
}
.pdfs_listing_sec .listing_wrap ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pdfs_listing_sec .listing_wrap ul li {
    display: flex;
	gap: 7px;
}
.pdfs_listing_sec .load_more {
    text-align: center;
    margin-top: 18px;
}
.pdfs_listing_sec .load_more a {
    color: #A8A8A8;
    font-size: 12px;
    line-height: 18px;
    text-decoration: none;
    letter-spacing: -0.6px;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #A8A8A8;
    border-radius: 2px;
    padding: 2px 14px;
    transition: var(--base-transition);
}
.pdfs_listing_sec .load_more a:hover {
	color: var(--black);
	border-color: var(--black);
	background-color: #f8f8f8;
}
.pdfs_listing_sec .load_more > img {
    display: none;
    margin: auto auto 15px;
}
.pdfs_listing_sec .processing .load_more > img {
    display: block;
}
/* home page */
/* error page */
.error404 .error404-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    text-align: center;
    background-color: #F8F8F8;
}
.error404 .error404-content h1 {
    font-size: 80px;
    line-height: 90px;
}
.error404 .error404-content .btn_wrap {
    margin-top: 30px;
}
.error404 .error404-content .main_wrapper {
	max-width: 600px;
	margin: auto;
}
.error404 .error404-content .btn_wrap a {
	border: 1px solid #222;
	background-color: #222;
	color: var(--white);
	text-decoration: none;
	font-size: 16px;
	line-height: 24px;
	padding: 10px 20px;
	transition: all 0.3s ease-in-out;
	display: inline-block;
	vertical-align: top;
}
.error404 .error404-content .btn_wrap a:hover {
    color: #222;
    background-color: #fff;
}
.error404 .error404-content h2 {
	margin-bottom: 20px;
	font-size: 30px;
	line-height: 40px;
}
/* error page */
/* responsive */
@media(max-width: 767px) {
    .pdfs_listing_sec h1 {
        font-size: 30px;
        line-height: 38px;
    }
}
@media(max-width: 575px) {
    .pdfs_listing_sec h1 {
        font-size: 20px;
        line-height: 30px;
    }
    .pdfs_listing_sec {
        padding: 30px 0 60px;
    }
    .pdfs_listing_sec .pdf_open img {
        display: none;
    }
    .pdfs_listing_sec .pdf_open {
        padding: 10px 22px;
    }
}
/* responsive */