@charset "UTF-8";

/*
Theme Name: Twenty Twenty-One
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.2
Requires PHP: 5.6
Version: 1.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */

/* Categories 01 to 03 are the basics. */

/* Variables */
* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: Source Sans Pro, sans-serif;
}

:root {
    --primary-text-color: #000000;
    --secondary-text-color: #333;
    --accent-color: #fd3955;
    --accent-color-dark: #fa1635;
}

a {
    text-decoration: none !important;
    display: inline-block;
  color: #000;
}
ul {
    list-style: none;
}

li {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 20px;
    overflow: hidden;
}

.flex {
    display: flex;
    align-items: center;
}

/* nav */
nav {
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-nav {
    justify-content: space-between;
}

.cmpny-logo img {
    width: 150px;
	height: auto;
    padding: 20px;
}

.nav-links ul {
    justify-content: end;
    gap: 20px;
}

.nav-toggle {
    display: none;
}

.hover-link {
    color: var(--primary-text-color);
    padding: 12px 20px;
    transition: 0.2s ease-out;
}

.actives {
    background-color: var(--accent-color);
    border-radius: 6px;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transform: translate(-180px, 10px);
	width:17rem;
}

.dropdown-content.show {
    display: block;
}

.dropdown {
    padding: 12px 20px;
    transition: 0.2s ease-out;
}


.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: var(--secondary-text-color);
}

#dropdownToggle i.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #e0e0e0;
    color: #000;
}

/* nav ends */

.bg_color {
    background-color: rgb(234, 234, 234);
}
.primary-menu-list
{
	display: flex;
}
/* blog-card */
.blog_container {
    padding: 20px;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
	margin-top:7rem;
}

.blogs {
    max-width: 350px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
	    height: 540px;
}

.blogs:hover {
    transform: scale(1.05);
}

.blog_img {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 300px;
}

.blog_content {
    padding: 20px;
}

.tag {
    background-color: var(--accent-color);
    width: fit-content;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
    cursor: pointer;
}

.tag:hover {
    background-color: var(--accent-color-dark);
}

.tag a {
    color: #fff;
    font-size: 0.9rem;
}

.blog_content h3 {
    margin-bottom: 10px;
}

h3 a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.blog_content p {
    color: #333;
    line-height: 1.5;
}


@media screen and (max-width: 767px) {
	.blog_container{
		margin-top:5rem;
	}
	h2.wp-block-heading {
    font-size: 22px !important;
    margin: 3% 0% !important;
}
    .nav-toggle {
        display: block;
        padding-right: 20px;
    }

    .main-nav {
        overflow: initial;
    }

    .nav-links {
        position: absolute;
        background-color: white;
        top: 60px;
        left: -100%;
        width: 100%;
        padding-block: 20px;
        transition: 0.2s ease-in-out;
        z-index: 100;

    }

    .nav-links.active {
        left: 0;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .dropdown-content {
        position: absolute;
        background-color: #f9f9f9;
        width: 100%;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
        transform: translate(-20px, 15px);
    }

    li {
        list-style: none;
/*         background-color: #9d9d9d0f; */
        width: 100%;
    }

	.wp-block-table td
	{
		font-weight: normal !important;
	}
    .cmpny-logo {
        align-items: center;
    }

    .down {
        display: flex;
        justify-content: space-between;
    }

    .cmpny-logo img {
        width: 100px;
		height: auto;
        padding: 10px;
    }

    .blogs {
        max-width: 100%;
		height: auto !important;
    }

    .blog_content h3 {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 479px) {
    .blog_container {
        padding-inline: 0px;
    }

    .blog_content {
        padding-inline: 10px;
    }

    .blog_content h3 {
        margin-bottom: 5px;
    }

    .blog_img {
        height: 250px;
    }
}
/* Individual post css */

.fl_ex {
    display: flex;
    align-items: center;
}



.background_color {
    background-color: rgb(234, 234, 234);
}

.tags {
    gap: 10px;
    margin-top: 7rem;
}

.red_tag {
    background-color: var(--accent-color);
    width: fit-content;
    padding: 3px 10px;
    border-radius: 2px;
    cursor: pointer;
}

.red_tag:hover {
    background-color: var(--accent-color-dark);
}

.red_tag a {
    color: #fff;
    font-size: 0.9rem;
}

.comment {
    align-items: center;
    padding: 3px 10px;
    border-radius: 2px;
    background-color: #767676;
}

.comment:hover {
    background-color: #242424;

}

.comment a {
    font-size: 0.9rem;
    color: #fff;
}

.blogcontainer {
    max-width: 1150px;
    background-color: #fff;
    margin-inline: auto;
    padding-inline: 20px;
    overflow: hidden;
}

.heading {
    margin-block: 15px;
}

.heading h1 {
    font-size: 2.2rem;
}

.contents {
    padding-inline: 10px;
}

.contents p {
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.blog_imgs img {
/*     width: 650px;
    height: 350px; */
    border-radius: 2px;
/*     margin-left: 50px; */
}

.info {
    margin-block: 20px;
}

.info p {
    color: #333;
    line-height: 1.5;
}






@media screen and (max-width: 767px) {
    .red_tag a {
        color: #fff;
        font-size: 0.8rem;
    }

    .red_tag {
        padding: 1px 6px;
    }

    .comment {
        padding: 1px 6px;
    }

    .comment a {
        font-size: 0.8rem;
    }

    .contents {
        padding-inline: 1px;
    }

    .contents p {
        width: 100%;
    }

    .blog_imgs img {
        margin-left: 0;
        width: 100%;
        height: 100%;
    }

    .blog_imgs {
        width: 100%;
/*         overflow: hidden; */
    }

    .heading h1 {
        font-size: 1.8rem;
    }
	.tags {
    margin-top: 5rem;
}
}

@media screen and (max-width: 479px) {
    .heading h1 {
        font-size: 1.5rem;
    }
}
/* Individual Post */
nav.navigation.post-navigation >.nav-links {
    width: 1150px;
    margin: auto;
    padding: 2% 0%;
}
.nav-previous, .nav-next
{
	line-height: 34px;
}
p.post-title {
    font-weight: 600;
    font-size: 23px;
}
@media screen and (max-width: 767px) {

    nav.navigation.post-navigation>.nav-links {
        display: block !important;
        top: 2%;
        left: 0px;
    }

    nav.navigation.post-navigation>.nav-links {
        margin: auto;
        padding: 10px;
        width: 100%;
    }

    p.post-title {
        font-size: 1.2rem;
        margin-left: 7px;
    }

    .nav-previous,
    .nav-next {
        line-height: 1.5;
        font-size: 1rem;
    }
	.nav-next
	{
		margin-bottom: 15%;
	}
}

nav.navigation.post-navigation>.nav-links {
    display: flex;
    justify-content: space-around;
}

	h2.wp-block-heading {
    font-size: 30px;
    margin: 1% 0%;
}
.info ul
	{
	list-style-type: disc;
    padding-left: 25px;
    line-height: 34px;
	}
.info li
	{
	list-style-type: disc;  
	}
.fl_ex {
    display: flex;
    align-items: center;
}
.background_color {
    background-color: rgb(234, 234, 234);
}
.info ol {
    list-style-type: decimal !important;
    padding-left: 25px;
    line-height: 34px;
}
.info ol li {
    list-style-type: auto;
}

.tags {
    gap: 10px;
    margin-top: 15px;
}

.red_tag {
    background-color: var(--accent-color);
    width: fit-content;
    padding: 3px 10px;
    border-radius: 2px;
    cursor: pointer;
}

.red_tag:hover {
    background-color: var(--accent-color-dark);
}

.red_tag a {
    color: #fff;
    font-size: 0.9rem;
}

.comment {
    align-items: center;
    padding: 3px 10px;
    border-radius: 2px;
    background-color: #767676;
}

.comment:hover {
    background-color: #242424;

}

.comment a {
    font-size: 0.9rem;
    color: #fff;
}

.blogcontainer {
    max-width: 1150px;
    background-color: #fff;
    margin-inline: auto;
    padding-inline: 20px;
    overflow: hidden;
}

.heading {
    margin-block: 15px;
}

.heading h1 {
    font-size: 2.2rem;
}

.contents {
    padding-inline: 10px;
}

.contents p {
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.blog_imgs img {
/*     width: 650px !important;
    height: 350px !important; */
    border-radius: 2px;
/*     margin-left: 50px; */
}

.info {
    margin-block: 20px;
}

.info p {
    color: #333;
    line-height: 1.8;
	margin: 1% 0%;

}

@media screen and (max-width: 767px) {
    .red_tag a {
        color: #fff;
        font-size: 0.8rem;
    }

    .red_tag {
        padding: 1px 6px;
    }

    .comment {
        padding: 1px 6px;
    }

    .comment a {
        font-size: 0.8rem;
    }

    .contents {
        padding-inline: 1px;
    }

    .contents p {
        width: 100%;
    }

    .blog_imgs img {
        margin-left: 0;
        width: 100%;
        height: 100%;
    }

    .blog_imgs {
        width: 100%;
/*         overflow: hidden; */
    }

    .heading h1 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 479px) {
    .heading h1 {
        font-size: 1.5rem;
    }
}

button#dark-mode-toggler {
    display: none;
}
/* category */

/* pagination */
nav.navigation.pagination {
    text-align: center;
    margin-block: 1rem;
    width: fit-content;
    margin-inline: auto;
    box-shadow: none;
}

.pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links .prev,
.nav-links .next {
    display: flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
}

.page-numbers {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.current {
    background: #fd3955;
    border-radius: 50%;
    color: #ffffff;
}

@media screen and (max-width: 767px) {
   nav.navigation.post-navigation>.nav-links  {
         position: revert !important; 
        background-color: white;
        top: 60px;
        left: -100%;
        width: 100%;
        padding-block: 20px;
        transition: 0.2s ease-in-out;
        z-index: 100;
    }
}
/* second page css starts */
/* main {
    margin-bottom: 5rem;
} */

.meta-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-next .meta-nav {
    justify-content: flex-end;
}

p.post-title {
    font-weight: 600;
    font-size: 20px;
}

.nav-previous,
.nav-next {
    line-height: 1.5;
    width: 30%;
}

.nav-next {
    text-align: end;
}

nav.navigation.post-navigation>.nav-links {
    /* width: 1150px; */
    margin: auto;
    padding: 2% 0%;
}

@media screen and (max-width: 767px) {
    .pagination .nav-links {
        display: flex;
        justify-content: space-between;
        padding-inline: 10px;
    }
}

@media screen and (max-width: 767px) {
    main {
        margin-bottom: 3rem;
    }

     .pagination .nav-links {
        position: revert !Important;
        background-color: white;
        top: 60px;
        left: -100%;
        width: 100%;
        padding-block: 20px;
        transition: 0.2s ease-in-out;
        z-index: 100;
        gap: 20px;
    }

    .nav-previous,
    .nav-next {
        width: 100% !important;

    }

    p.meta-nav {
        font-size: 14px;
    }

    .nav-next {
        margin-bottom: 2rem;
    }
}


@media screen and (max-width: 650px) {
    .bottomCta {
        /* bottom: 7%; */
        bottom: 0;
    }
}

.nav-previous,
.nav-next {
    line-height: 1.5;
    width: 30%;
}

/* thumbnail */
.attachment-post-thumbnail.size-post-thumbnail.wp-post-image
{
	height: auto !important;
}