@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--pri: #ec1252;
	--pridim: #ef4444;
	--prigri: linear-gradient(45deg, #ec1252, #ff593e);
	--btnpri: linear-gradient(45deg, #218be1, #11bdea);
	--brclr: #a3aab2;
	--sec: #ffffff;
	--bgdim: #21313C;
	--ter: #ffffff;
	--sha: rgb(196 196 196 / 12%) 0px 8px 24px;
	--bg: hsl(0deg 0% 18.04%);
	--hoversha:rgb(214 239 255 / 21%) 0px 8px 24px 7px;
	--font: "Work Sans", sans-serif;
	--bor: 1px solid gainsboro;
	--basefontsz: 10px;
	--h1fontsz: 30px;
	--h2fontsz: 25px;
	--h3fontsz: 20px;
	--txtcolor: black;
	--spacing-small: 8px;
	--spacing-medium: 16px;
	--spacing-large: 24px;
	--borrad: 9px;
	--gtcw: 366px;
	--curve: 22px;
	--asgtc: 250px;
	--txtsz: 18px;
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

html {
	margin: 0px;
	padding: 0px;
	min-width: 100%;
	overflow-x: hidden;
	scroll-behavior: smooth;
	box-sizing: border-box;
	font-size: 10px;
}

body {
	margin: 0px;
	padding: 0px;
	min-width: 100%;
	min-height: 100vh;
	background: #f2f2f2;
	background: white;
	overflow-x: initial;
	box-sizing: border-box;
	font-family: var(--font);
	overflow-x: hidden;
	font-size: 10px;

}

/*Utility Design*/

p {
	text-transform: capitalize;
	line-height: 1.6;
}

a {
	text-decoration: none;
}

h2 {
	font-size: 2rem;
	color: var(--bgdim);
	font-weight: 600;
	margin: 10px;
	text-transform: capitalize;
}

h3 {
	font-size: 20px;
	font-family: var(--fonth);
	color: var(--bgdim);
	margin: var(--spacing-small) var(--spacing-small);
	font-weight: 800;
	text-transform: capitalize;
}

h1 {
	font-size: 2.4rem;
	color: var(--pri);
	margin: 10px;
	text-transform: capitalize;
}

h2.sectionheadline {
	color: var(--pri);
	margin: 25px;
	font-size: 2.3rem;
	border-radius: 0px;
	text-align: left;
	background: white;
	width: max-content;
	box-shadow: var(--sha);
	border-radius: var(--curve);

}

h4.sectionheadline {
    text-align: left;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    font-size: 21px;
    color: var(--bgdim);
    background: white;
    box-shadow: none;
    padding: 7px 0px;
    border: none;
    width: 90%;
    margin: 15px auto 28px;
    border-bottom: 1px solid gainsboro;
}


.sectionheadline span {
	color: var(--bgdim);
}

.wp-block-button__link {
    color: var(--pri);
    background-color: white;
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    margin: 20px auto;
    text-align: center;
    padding: 16px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dotted;
    cursor: pointer;
}

a.wp-block-button__link.wp-element-button {
    animation: 2s infinite animatetxt;
}

@keyframes animatetxt{
    0%{
        opacity: 30%;
        color: var(--bgdim)
        color: white;

    }
    100%{
        color: var(--pri);
        opacity: 100%
        color: black;
    }
}

/*Single Post Utility Desings*/

.body-left-page h2.wp-block-heading {
    background: white;
    color: var(--pri);
    text-align: left;
    font-weight: 600;
    padding: 4px 0px;
    margin: 5px;
    text-transform: capitalize;
    font-size: 2.3rem;
    border-bottom: none;
}

.body-left-page ul, .body-left-page ol{
	margin: 0px;
	padding: 0px;
}

.body-left-page ul>li, .body-left-page ol>li {
    padding: 6px 0px;
    list-style: auto;
    margin: 0px 19px;
	font-size: var(--txtsz)
}

.body-left-page ul>li>a, .body-left-page ol>li>a{

}

.body-left-page img {
    width: 100% !important;
    margin: 0px auto;
    text-align: center;
    display: flex;
}

figcaption.wp-element-caption {
    font-size: 16px;
    margin-top: 9px;
    color: var(--bgdim);
}

.wp-block-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
}

strong {
	font-weight: 500;
}

figure.wp-block-table {
    width: 100%;
    max-width: 100%;
    overflow-x: scroll;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 15px;
  margin: 20px auto;
}

thead {
  background-color: white;   /* dark background for header */
  color: var(--bgdim);             /* white text for contrast */
  text-align: left;         /* align header text */
}

thead th {
  padding: 10px 12px;       /* spacing inside header cells */
  border: 1px solid #ddd;   /* border same as table */
}

td {
  border: 1px solid #ddd;
  padding: 8px 12px;
}

tr:nth-child(even) {
  background-color: #f9f9f9; /* alternate row color */
}

tr:hover {
  background-color: #f1f1f1; /* highlight on hover */
}

td:first-child {
  font-weight: bold;
  color: #333;
  width: 150px;
}

td:last-child {
  color: #555;
}

/** Universal Controlars**/

.universal_control {
	position: fixed;
	width: 60px;
	right: 10px;
	bottom: 10px;
	display: flex;
	flex-direction: column-reverse;
	gap: 20px;
	justify-content: center;
	align-items: center;
	height: auto;
}

/**Wh Btn Design **/

.wh_btn {
	width: 40px;
	height: 40px;
}

.wh_btn a svg {
	width: 40px;
	height: 40px;
}

/**back to top btn **/

.back_to_top {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--prigri);
	border-radius: 50%;
	cursor: pointer;
}

.back_to_top svg {
	width: 28px;
	height: 40px;
	fill: white;
}

/**Social Share **/

.social_share {
    height: 40px;
    background: var(--pri);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 40px;
}

.social_share svg {
	width: 25px;
	height: 25px;
	fill: white !important;
}

/**Search Result Heading**/

.resultoqur {
	width: 90%;
	margin: 20px auto;
	background: white;
	box-shadow: var(--sha);
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	border-bottom: 1px solid gainsboro;
}

/*Search Page Pagination **/

.pagination {
    width: 50%;
    margin: 30px auto 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 40px;
    font-size: 1.6rem;
    border-radius: var(--curve);
    color: var(--bgdim);
}

/**Main Pagination Code**/


.pagination a,
.pagination span {
  display: inline-block;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  background: #fff;
  transition: all 0.25s ease;
}

/* Hover effect */
.pagination a:hover {
  border-color: #0074fc;
  color: #0074fc;
  background: #f0f8ff;
}

/* Current page */
.pagination .current {
  background: #0074fc;
  color: #fff;
  border-color: #0074fc;
  cursor: default;
}

/* Prev/Next buttons */
.pagination .prev,
.pagination .next {
  font-weight: 600;
  background: #f8f8f8;
}

.pagination .prev:hover,
.pagination .next:hover {
  background: #0074fc;
  color: #fff;
}

/* Make it look clean on mobile */
@media (max-width: 600px) {
  .pagination a,
  .pagination span {
    padding: 8px 12px;
    font-size: 14px;
  }
}



h2.wp-block-heading {
    font-size: 2rem;
    padding: 0px;
    color: var(--bgdim);
    background: white;
    text-align: left;
    border-radius: 0px;
    margin-top: 0px;
    margin-bottom: 19px;
    font-weight: 800;
	margin: 0px;
}

.widget ul {
	margin-bottom: 20px;
	list-style: none;
}

ul.wp-block-categories-list.wp-block-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    text-align: center;
    margin: 10px auto;
}

li.cat-item {
    background: #f2f2f2;
    padding: 5px 13px !IMPORTANT;
    border-radius: 25px;
    margin: 5px 6px !IMPORTANT;
}

.widget ul li {
    font-size: 1.7rem;
    margin: 7px 0px;
    padding: 4px 0px;
    color: var(--bgdim);
}

.widget ul li a {
	color: var(--bgdim);
}

.postgri {
	margin: 20px auto;
}

/**Sidebar Categories Section**/

.wp-block-categories li {
	height: 36px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-transform: capitalize;
}

/**Sidebar Archieve Section **/

.wp-block-archives {
	display: grid;
	grid-template-columns: repeat(auto-fit, 100px);
	justify-content: center;
	align-items: center;
	grid-gap: 20px;
	text-align: center;
}

/*Nvigation Design */

header .mobile_menu {
	display: none;
}


header .search_icon {
	position: absolute;
	top: 16px;
	right: 2rem;
	height: 22px;
	width: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .search_icon svg {
	fill: var(--sec);
}

svg#open_mobile_menu {
	position: absolute;
	top: 15px;
	left: 15px;
	display: none;
}

.nav {
	display: flex;
	height: 56px;
	justify-content: space-around;
	text-align: center;
	align-items: center;
	border-bottom: 1px solid gainsboro;
	background: var(--pri);
	position: relative;
}

.nav_left {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.nav_left h1 {
	color: var(--sec);
	font-weight: 600;
}

.search_icon {
	cursor: pointer;
}

.nav_left img {
	width: 140px;
	height: 36px;
}

.nav_right ul {
	display: flex;
	list-style: none;
	align-items: center;
	text-decoration: none;
	text-align: center;
	width: 100%;
	gap: 15px;
}

.nav_right ul li {
	text-decoration: none;
}

.nav_right ul li a {
	text-decoration: none;
	font-size: 16px;
	color: var(--sec);
	font-weight: 400;
}

.nav_right ul li .sub-menu li a {
	color: var(--bgdim);
}

.adddrop {
	position: ;
}

.adddrop:after {
	content: "";
	width: 25px;
	height: 25px;
	background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23ffffff%22%3E%3Cpath%20d%3D%22M480-344%20240-584l56-56%20184%20184%20184-184%2056%2056-240%20240Z%22%2F%3E%3C%2Fsvg%3E");
	display: block;
	position: absolute;
	top: 1px;
	color: white;
	left: 100%;
}

.nav_right .menu-desk-menu-container ul#menu-desk-menu li.menu-item-has-children ul.sub-menu {
	display: none;
	position: absolute;
	top: 49px;
	width: 100%;
	background: white;
	left: 50%;
	transform: translate(-50%);
	grid-template-columns: repeat(auto-fit, 100px);
	grid-gap: 11px;
	padding: 10px;
	border: 1px solid gainsboro;
	border-radius: var(--curve);
	box-shadow: var(--hoversha);
}

/*Search Form Design **/

.search_form {
	position: absolute;
	top: 0;
	width: 100%;
	display: none;
	z-index: 1;
}

label.screen-reader-text,
#searchsubmit {
	display: none;
}

input#s {
	width: 100%;
	height: 56px;
	background: white;
	border: 1px solid gainsboro;
	outline: none;
	box-shadow: var(--sha);
	font-size: 2rem;
	color: var(--pri);
	text-align: center;
}

.cut_search {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 17px;
	right: 16px;
	cursor: pointer;
}

/*Sidebar Mobile Navigation**/

svg#open_mobile_menu {
	position: absolute;
	top: 15px;
	left: 15px;
	display: block;
}

.sidebar_nav {
	width: 0%;
	overflow: hidden;
	background: white;
	height: 100vh;
	position: absolute;
	z-index: 1;
}

.menu-desk-menu-container {
	padding: 0px;
	position: relative;
}

.menu-desk-menu-container ul#menu-desk-menu-1 {
	list-style: none;
	font-size: 1.6rem;
	display: flex;
	gap: 17px;
	flex-direction: column;
	margin: 30px 33px;
}


.menu-desk-menu-container ul#menu-desk-menu-1 li {
	border-bottom: 1px solid gainsboro;
	padding-bottom: 5px;
}

.menu-desk-menu-container ul#menu-desk-menu-1 li:has(.menu-item-has-children) {
	border-bottom: 0px;
}

.menu-desk-menu-container ul#menu-desk-menu-1 li a {
	color: var(--bgdim);
}

.close_sidebar_nav {
	position: absolute;
	top: 10px;
	right: 34px;
	z-index: 1;
}


/**Front Page Container **/

.front_page_container {
	width: 92%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0px auto;
}

/*Hero Heder Design*/

.updated_featured_post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    width: 80%;
    margin: 10px auto;
	align-items: center;
}

/* LEFT SIDE (big post) */
.updated_featured_post_left {
    width: 100%;
    box-shadow: var(--sha);
    border-radius: 15px;
    border: 1px solid #faf9f9;
    padding: 8px;
}

.updated_featured_post_left_main {
    background: #fff;
    overflow: hidden;
}

.updated_featured_post_left_main img {
    width: 100%;
    height: auto;
    display: block;
	border-radius: 12px;
}

.updated_featured_post_left_main h2 {
    font-size: 20px;
    line-height: 1.4;
    margin: 10px;
    font-weight: bold;
    color: #111;
	text-align: left;
} 

.updated_featured_post_left_main h2 a{
	color: var(--bgdim);
	font-weight: 500;
}

/* Category badge (left side) */
.updated_featured_post_left_main .category-badge {
    display: inline-block;
    background: #c00;
    color: #fff;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 10px;
}

/* RIGHT SIDE (list of posts) */
.updated_featured_post_right {
    display: grid;
    grid-template-columns: repeat(auto-fit, 350px);
	justify-content: center;
	gap: 9px;
}

.updated_featured_post_right_main {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 0px;
    align-items: center;
    box-shadow: var(--sha);
}

.updated_featured_post_right_main img {
    width: 100px;
    height: 70px;
    object-fit: contain;
    margin-left: 10px;
    border-radius: 14px;
}

.updated_featured_post_right_main h2 {
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
    color: #111;
	text-align: left;
}

.updated_featured_post_right_main h2 a {
    color: var(--bgdim);
    font-weight: 500;
    position: relative;
    z-index: 9999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipse;
}

/* Category badge (right side) */
.updated_featured_post_right_main .category-badge {
    display: inline-block;
    background: #c00;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 15px;
    margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .updated_featured_post {
    display: flex;
    flex-direction: column;
}
    .updated_featured_post_right_main {
        flex-direction: row;
    }
}



/** Follow Us On Ig **/

.jsm_ig_car_upper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.jsm_ig_car {
	max-width: 100%;
	display: grid;
	justify-content: center;
	margin: 0px auto;
	text-align: center;
	gap: 19px;
	width: 100%;
	padding: 10px;
	height: max-content;
	background: white;
	grid-template-columns: repeat(auto-fit, 300px);
}

.jsm_ig_car img {
	width: 300px;
	box-shadow: var(--hoversha);
	border-radius: var(--curve);
	border: 1px solid #e9e9e9;
}

button.jsm_ig_button {
    width: 200px;
    height: 40px;
    background: #ffffff;
    color: var(--bgdim);
    border-radius: var(--curve);
    font-size: 18px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--brclr);
    box-shadow: var(--sha);
}



.bloqclass {
	width: 100%;
	background: white;
	box-shadow: var(--sha);
}

.bloqclass img {
	cursor: pointer;
	width: 100%;
}

.Caption {
	display: none !important;
}

/** Latest News Wrapper **/

.latest_news_wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, var(--gtcw));
	grid-gap: 30px;
	justify-content: center;
}

.latest_news_holder {
    position: relative;
    border-radius: 0px 0px 12px 12px;
    box-shadow: var(--sha);
}

.latest_news_wrapper_img {
	width: 100%;
}

.latest_news_wrapper_img img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 2/1;
}

.latest_news_wrapper_title h2 {
    font-size: 2rem;
    color: var(--bgdim);
    text-decoration: none;
    font-weight: 600;
    margin: 10px 7px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipse;
}

.latest_news_wrapper_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 7px;
    text-align: center;
    font-size: 14px;
}

.latest_footer_author p {
	color: var(--bgdim);
	width: 100%;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	font-size: 15px;
}

.latest_footer_author p img {
	width: 25px;
	height: 25px;
	border-radius: 50%;
}

.latest_footer_category {
    width: max-content;
    font-size: 10px;
    background: var(--prigri);
    padding: 2px 9px;
    color: white;
    border-radius: 0px;
    margin-left: 4px;
    position: absolute;
    top: 14px;
    left: 10px;
}

/**Single Post section **/


.homemint_page {
	display: grid;
	grid-template-columns: 2.5fr 1fr;
	width: 95%;
	margin: 20px auto;
	grid-gap: 20px;
	padding: 16px;
}

.body-left-page {
	background: white;
	padding: 16px 16px;
}

div#rank-math-toc {
    width: 100%;
    background: ghostwhite;
    padding: 10px 20px;
    border-radius: 20px;
}

.body-left-page p {
    font-size: var(--txtsz);
    line-height: 1.6;
    margin: 10px 0px;
    padding: 3px;
    color: var(--bgdim);
}

.custom_featured_image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	overflow: hidden;
	margin: 0px auto;
	width: 90%;
}


.custom_featured_image img {
    max-width: 90%;
    height: auto;
    margin: 10px auto 0px;
    text-align: center;
    align-items: center;
    display: flex;
    aspect-ratio: 2/1;
    min-width: 90%;
    border-radius: 25px;
    box-shadow: var(--hoversha);
}

.custom_featured_image img:hover{
	transition: .1s ease all;
	transform: scale(1.01);
}


.featured_img_caption {
    font-size: 13px !important;
    color: var(--bgdim) !important;
    padding: 0px !important;
    margin: 0px 0px 7px 0px !important;
    text-transform: uppercase;
	text-align: center;
}

.post_top_share {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
}

.post_top_share div {
    height: 25px;
    width: 25px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30%;
    box-shadow: var(--sha);
    cursor: pointer;
}

.post_top_share svg {
    width: 29px;
    height: 27px;
}

.post_top_share div:hover {
   transition: scale(1.1);
}

h1.posttitle {
    padding: 0px;
    font-size: 26px;
    color: var(--bgdim);
    font-weight: 700;
    text-transform: capitalize;
    text-align: left;
    margin: 0px auto;
}

.breadcrumb {
    margin: 0px;
    text-align: left;
    padding: 4px 0px 0px;
    font-size: 1.6rem;
} 

.breadcrumb a{
	color: var(--bgdim);
}

.post_top_info {
    display: flex;
    width: 100%;
    margin: 0px auto;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
    justify-content: space-between;
}

.post_top_info_meta {
    display: flex;
    gap: 13px;
    justify-content: flex-start;
    text-align: left;
}

.post_top_info_meta p{
	color: var(--bgdim);
}

.post_top_info p, .post_top_info a {
	font-size: 1.3rem;
	padding: 0px;
	margin: 0px;
	color: var(--bgdim);
}

/**Related Posts Design **/

	.related_posts {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, var(--asgtc));
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
}
		.related_post_child {
    width: var(--asgtc);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
		.related_post_child_featured {
    width: 100%;
}
	.related_post_child_featured img {
    width: 100%;
    height: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
}
		.related_post_child_title a h3 {
    font-size: 15px;
    padding: 0px;
    margin: 8px 3px;
    color: var(--bgdim);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
	font-weight: 500;
    text-overflow: ellipse;
}

/**Post Author Box**/

.author-box {
    max-width: 95%;
    margin: 0px auto;
    border-radius: var(--curve);
    padding: 10px 0px;
    background: white;
    display: grid;
    grid-template-columns: 1fr 4fr;
    text-align: center;
    align-items: center;
}

.author-info {
	text-align: left;
}

.author-info h3,
.author-info h3 a {
	width: 98%;
	margin: 10px 0px;
	font-size: 1.8rem;
	color: var(--pri);
	text-align: center;
	font-weight: 600;
}

.author-info p {
	padding: 0px !important;
	margin: 0px !important;
	font-size: 18px;
	text-align: center;
}

.author-avatar,
.author-avatar img {
	width: 103px;
	height: 103px;
	margin: 0px auto;
	border-radius: 50%;
}

/*Author Box Social*/

.author_box_social {
    list-style: none;
    display: flex;
    gap: 14px;
    margin: 10px auto;
}

.author_box_social li {
    list-style: none !important;
    padding: 0px !IMPORTANT;
    margin: 0px !important;
}
.author_box_social li a svg {
    width: 45px;
    height: 45px;
    fill: var(--pri);
    aspect-ratio: 2/1;
    box-shadow: var(--sha);
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
}


/**Comment Section **/

div#respond input {
	border: none;
	width: 100%;
	padding: 10px 0px;
	margin-top: 10px;
}

div#respond input:focus {
	outline: none;
	padding: 9px;
	width: 98%;
}

textarea#comment {
	width: 100%;
	border: 1px solid gainsboro;
	margin-top: 11px;
	resize: none;
	border-radius: var(--curve);
	padding: 10px;
}

textarea#comment:focus {
	outline: 1px solid gainsboro;
	font-size: 20px;
}

p.comment-form-cookies-consent {
	display: flex;
	max-width: 100%;
	font-size: 15px;
	height: 26px;
	text-align: left;
	width: 100%;
	justify-content: flex-start;
	align-items: center;
}

input#wp-comment-cookies-consent {
	width: 15px !important;
	text-align: center;
	padding: 0px !important;
	margin: 0px 6px 0px 0px !important;
}

input#submit {
	background: var(--prigri);
	color: white;
	font-size: 18px;
	cursor: pointer;
	transition: 0.2s ease all;
	border-radius: var(--curve);
}

#submit:hover {
	border-radius: var(--curve);
	background: white;
	color: var(--pri);
	border: 1px solid var(--pri);
}

/*comment section design */

.comment-body {
	border: 1px solid gainsboro;
	border-radius: 0px;
	padding: 16px;
	box-sizing: border-box;
	margin-top: 30px;
	box-shadow: var(--sha);
}

.comment-list a {
	text-decoration: none !important;
}

cite.fn {
	font-style: inherit;
	margin-right: 9px;
	text-decoration: none;
}


.comment-list {
	display: block;
	list-style: none;
}

.comment-list .comment .comment-body .comment-author {
	display: flex;
	justify-content: left;
	align-items: center;
}

.comment-list .comment .comment-body .comment-author .avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 11px;
}

.comment-list .comment .comment-body .reply {
	background: var(--pri);
	height: 37px;
	width: 30%;
	text-align: center;
	border-radius: 22px;
	cursor: pointer;
}

.comment-list .comment .comment-body .reply .comment-reply-link {
	color: var(--ter);
}


.body-right {
	width: 100%;
	background: white;
	display: flex;
	flex-direction: column;
	padding: 25px;
}


/**Footer Section Design**/

footer {
	width: 100%;
	background: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	padding-top: 20px;
	box-shadow: var(--hoversha);
	border-top: 1px solid ghostwhite;
}

.footer_top {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(auto-fit, var(--gtcw));
    justify-content: center;
    width: 100%;
    grid-gap: 28px;
    margin: 0px auto;
    text-align: center;
}

.footer_top_section {
	width: 100%;
	min-height: 200px;
}

.footer_top_section_heading h2 {
	font-size: 2.2rem;
	color: var(--bgdim);
	font-weight: 600;
	text-align: left;
	margin: 0px;
}

.footer_top_section_content ul {
	list-style: none;
	padding: 0px;
	margin: 20px auto;
	text-align: left;
}

.footer_top_section_content ul li {
    font-size: 1.6rem;
    color: var(--bgdim);
    margin: 5px 0px;
    padding: 5px 0px;
}

.footer_top_section_content ul li a {
	color: var(--bgdim);
}

/**Footer About Us Design **/


.footer_top_section_content p {
	font-size: 1.6rem;
	text-align: left;
	color: var(--bgdim);
	margin: 10px auto;
}

.footer_about_logo img {
	width: 263px;
	display: flex;
	justify-content: flex-start;
	margin-left: -25px;
}


/**Footer Social Icons Design **/


.footer_social_icons_section ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, 50px);
	grid-gap: 10px;
}

.footer_social_icons_section ul li {
	width: 40px;
	height: 40px;
	padding: 10px;
	border: 1px solid gainsboro;
	border-radius: 5px;
	box-shadow: var(--sha);
}

.footer_social_icons_section ul li:hover {
	box-shadow: var(--hoversha);
}

.footer_social_icons_section ul li:hover .footer_social_icons_section ul li a svg {
	fill: var(--pri);
}

.footer_social_icons_section ul li a svg {
	background: white;
	fill: var(--bgdim);
}


.footer_bottom {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 49px;
	border-top: 1px solid gainsboro;
	font-size: 1.5rem;
	text-transform: capitalize;
}

.footer_bottom_credits {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer_bottom_credits p {
	margin-top: 19px;
	text-align: center;
	align-items: center;
	margin-bottom: 10px;
}