/*
Theme Name: CoderExperts
Theme URI: https://coderexperts.com/coderexperts/landing/
Author: CoderExperts
Author URI:  https://coderexperts.com/
Description: Custom Theme for - https://coderexperts.com/
Tags: blog, four-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, threaded-comments, translation-ready, block-styles
Version: 1.0
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: coderexperts
*/


/* Default */
:root {
  --primary-font: 'Poppins', sans-serif;
  --secondary-font: 'Roboto', sans-serif;

  /* Primary Palette Colors */
  --primary-color-dark: #1A2C5B; /* Deep Navy */
  --primary-color-light: #F2F2F2; /* Light Gray */
  --accent-color-orange: #E04B4B; /* Reddish Hue (Replaced #00C9C8) */
  --accent-color-teal: #B83D3D; /* Subtle Yellow/Gold (unchanged) */

  /* General Usage */
  --light-bg-color: var(--primary-color-light);
  --heading-color: var(--primary-color-dark);
  --content-color: #334155; /* Dark Slate Grey */

  /* Dark Background Sections */
  --dark-bg-color: var(--primary-color-dark);
  --darkbg-heading-color: var(--accent-color-orange); /* Uses the new Reddish Hue */
  --darkbg-content-color: #E0E6EE; /* Cool Light Grey */

  /* Links/Anchors */
  --anchor-color: var(--accent-color-orange); /* Uses the new Reddish Hue */
  --anchor-hover-color: var(--accent-color-teal); /* Uses the Subtle Yellow/Gold */

  /* Borders & Separators */
  --border-color: #CBD5E1; /* Light Gray for light mode borders */

  /* Buttons */
  --button-bg-color: var(--accent-color-orange); /* Uses the new Reddish Hue */
  --button-color: var(--white-color);
  --button-transparent-color: var(--accent-color-orange); /* Uses the new Reddish Hue */
  --button-hover-bg-color: #C03F3F; /* Darker Reddish Hue */
  --button-hover-color: var(--white-color);
  --button-transparent-hover-color: #C03F3F; /* Darker Reddish Hue */

  /* White Color Utility */
  --white-color: #fff;
  --black-color: #000;
}

*,
:after,
:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-family: var(--secondary-font);
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	width: 100%;
}
body {
	font-family: var(--secondary-font);
	color: var(--content-color);
	background: var(--white-color);
	width: 100%;
    line-height: 30px;
    font-weight: 400;
    font-size: 18px;
    overflow-x: hidden;
    word-break: break-word;
    margin: 0;
    padding: 0;
}

body,
figure {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block
}
::selection {
	background: var(--anchor-color);
	color: var(--white-color);
}
code::selection {
	background: var(--black-color);
	color: var(--white-color);
}
::-webkit-input-placeholder {
  color: var(--content-color);
}
:-ms-input-placeholder {
  color: var(--content-color);
}
::placeholder {
  color: var(--content-color);
}
a,
a:visited,
a:active,
a:focus,
a:not([href]),
a:not([href]):hover {
	text-decoration: none;
	color: var(--anchor-color);
}
a:hover {
	text-decoration: none;
	color: var(--anchor-hover-color);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
	font-family: var(--primary-font);
	margin: 0 0 30px;
	font-weight: 600;
	color: var(--heading-color);
  line-height: calc(100% + 10px);
}
.h1 a,
.h1 a:visited,
h1 a,
h1 a:visited,
.h2 a,
.h2 a:visited,
h2 a,
h2 a:visited,
.h3 a,
.h3 a:visited,
h3 a,
h3 a:visited,
.h4 a,
.h4 a:visited,
h4 a,
h4 a:visited,
.h5 a,
.h5 a:visited,
h5 a,
h5 a:visited,
.h6 a,
.h6 a:visited,
h6 a,
h6 a:visited {
	color: var(--heading-color);
}

.h1 a:hover,
h1 a:hover,
.h2 a:hover,
h2 a:hover,
.h3 a:hover,
h3 a:hover,
.h4 a:hover,
h4 a:hover,
.h5 a:hover,
h5 a:hover,
.h6 a:hover,
h6 a:hover {
	color: var(--anchor-color);
}
.h1,
h1,
.h2,
h2,
.h3,
h3 {
	margin-top: 20px;
	margin-bottom: 10px;
}
.h4,
h4,
.h5,
h5,
.h6,
h6 {
	margin-top: 10px;
	margin-bottom: 10px
}
h1, .h1 {
  font-size: 40px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 26px;
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 22px;
}

h6, .h6 {
  font-size: 18px;
}

p {
    margin: 0 0 10px 0;
}
button:focus {
	outline: 0;
	border: 0;
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
hr {
    background-color: var(--anchor-color);
    height: 1px;
}
em {
    font-style: italic;
}
b, strong {
    font-weight: bold;
}
select {
	width: 100%;
	color: var(--content-color);
	height: 50px;
	-webkit-box-shadow: none;
	box-shadow: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	border: 1px solid var(--border-color);
	background: transparent;
	background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'><path fill='grey' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'></path></svg>");
	background-position: 95% 50%;
	background-repeat: no-repeat;  
	padding-left: 20px;
	outline: 0;
}
ol {
    list-style-type: decimal;
}
code, tt, a>code, pre code {
    background-color: var(--anchor-color);
    color: var(--white-color);
}
a>code {
    opacity: 1;
}
ins {
    background-color: var(--anchor-color);
    color: var(--white-color);
    text-decoration: none;
}
small {
    font-size: smaller;
}
pre {
    color: var(--white-color);
    padding: 1.33333rem;
    margin: 1.33333rem 0;
    line-height: 1.73333;
    background-color: var(--anchor-color);
    border: 1px solid var(--anchor-color);
    border-radius: 0;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}
table {
	width: 100%;
}
table, 
th, 
td {
    border: 1px solid var(--border-color);
    padding: 10px;
    vertical-align: middle;
}
sup {
    vertical-align: super;
    font-size: 10px;
}
sub {
    vertical-align: sub;
    font-size: smaller;
}
img {
	max-width: 100%;
	height: auto;
}
.clear {
    clear: both;
}

/* Custom Style & classes*/
.img-round {
	border-radius: 50%;
}
img {
	max-width: 100%;
	height: auto;
}

/* Buttons */
.ce-btn, a.ce-btn {
	background: var(--button-bg-color);
	color: var(--button-color);
	border: 2px solid var(--button-bg-color);
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  overflow-wrap: break-word;
}
.ce-btn:hover, a.ce-btn:hover {
	background: var(--button-hover-bg-color);
	color: var(--button-hover-color);
	border: 2px solid var(--button-hover-bg-color);
}
.ce-btn-outline, a.ce-btn-outline {
	background: transparent;
	color: var(--button-transparent-color);
	border: 2px solid;
}
.ce-btn-outline:hover, a.ce-btn-outline:hover {
	background: transparent;
	color: var(--button-transparent-hover-color);
	border: 2px solid;
}
.ce-btn-white, a.ce-btn-white {
	background: var(--white-color);
	color: var(--anchor-color);
	border: 2px solid var(--white-color);
}
.ce-btn-white:hover, a.ce-btn-white:hover {
	opacity: 0.9;
	background: var(--white-color);
	color: var(--anchor-color);
	border: 2px solid var(--white-color);
}
.ce-btn-round, a.ce-btn-round {
    border-radius: 1.55em;
}

/* WP DEFAULT CLASSES & SETTINGS */

.admin-bar {
	top: 32px;
}
.alignnone {
    margin: 5px 0px 20px 0;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 20px 0px;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
    max-width: 100%;
}
.wp-caption.alignnone {
    margin: 20px 0px;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
    text-align: left;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
    text-align: right;
}
.wp-caption img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.wp-caption .wp-caption-text {
    font-size: 14px;
    line-height: 17px;
    margin-top: 10px;
    padding: 0 4px 5px;
    font-style: italic;
    text-align: center;
}
.wp-caption .wp-caption-text a {
    font-weight: 700;
}
.gallery-caption {
    font-size: 100%;
}
.gallery-item img {
    margin-left: auto;
    margin-right: auto;
}
.bypostauthor {
    font-size: 100%;
}
.hidden {
    display: none;
}
.clear {
    clear: both;
}
.left {
    float: left;
}
.right {
    float: right;
}
.line-height {
    line-height: 0;
}
.clear-right {
    clear: right;
}
.clear-left {
    clear: left;
}
.center-absolute {
    left: 50%;
}
.center-text {
    text-align: center !important;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.img-right {
    margin-right: 0;
    margin-left: auto;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}
.relative {
    position: relative;
}
.center-relative {
    margin-left: auto;
    margin-right: auto;
}

.alignwide {
    margin-left: -5%;
    margin-right: -5%;
    width: 100%;
    max-width: none;
}
.alignfull {
    width: 100vw;
    max-width: 100%;
}

.alignfull > figcaption, .alignfull > .wp-caption-text {
    color: var(--white-color);
    display: table;
    padding: 12px 60px;
    margin: 10px auto 40px;
    text-align: center;
    background-color: var(--anchor-color);
    position: relative;
    z-index: 1;
}

/* Clearing ---------------------------------- */

.group::after,
.entry-content::after {
	clear: both;
	content: "";
	display: block;
}

/* Text meant only for screen readers. */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.screen-reader-text:focus {
    background-color: var(--content-color);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: var(--content-color);
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Remove 'x' from all over search input */

.ce-search-form input[type=search]::-ms-clear,
.wp-block-search input[type=search]::-ms-clear {
	display: none;
	width: 0;
	height: 0;
}

.ce-search-form input[type=search]::-ms-reveal,
.wp-block-search input[type=search]::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}

.ce-search-form input[type="search"]::-webkit-search-decoration,
.ce-search-form input[type="search"]::-webkit-search-cancel-button,
.ce-search-form input[type="search"]::-webkit-search-results-button,
.ce-search-form input[type="search"]::-webkit-search-results-decoration,
.wp-block-search input[type="search"]::-webkit-search-decoration,
.wp-block-search input[type="search"]::-webkit-search-cancel-button,
.wp-block-search input[type="search"]::-webkit-search-results-button,
.wp-block-search input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

/* Default block elements settings */

.wp-block-latest-posts a, .wp-block-latest-comments a {
	color: var(--sidebar-heading-color);
}
.wp-block-archives, .wp-block-archives a, .wp-block-rss, .wp-block-rss a, .wp-block-tag-cloud a, .wp-block-tag-cloud a:visited, .wp-calendar-nav a, .wp-block-calendar a, .wp-block-calendar, .wp-block-latest-posts__post-date {
	color: var(--sidebar-anchor-color);
}
.wp-block-archives a:hover, .wp-block-rss a:hover, .wp-block-latest-posts a:hover, .wp-block-latest-comments a:hover, .wp-block-tag-cloud a:hover, .wp-calendar-nav a:hover, .wp-block-calendar a:hover {
	color: var(--sidebar-anchor-hover-color);
}

.wp-block-categories-dropdown select, .wp-block-archives-dropdown select {
	width: 100%;
	color: var(--sidebar-content-color);
	height: 50px;
	-webkit-box-shadow: none;
	box-shadow: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	border: 1px solid var(--border-color);
	background: transparent;
	background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'><path fill='grey' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'></path></svg>");
	background-position: 95% 50%;
	background-repeat: no-repeat;  
	padding-left: 20px;
	outline: 0;
}
.wp-block-tag-cloud a, .wp-block-tag-cloud a:visited {
    font-size: 12px !important;
    padding: 2px 10px;
    display: inline-block;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid var(--border-color);
}
.wp-block-tag-cloud a:not(:last-child) {
    margin-right: 3px;
}
.wp-calendar-nav a, .wp-block-calendar a {
	font-weight: bold;
}
.wp-block-search .wp-block-search__button {
    outline: 0;
    box-shadow: none;
    border: 1px solid var(--border-color);
    text-transform: uppercase;
	background: var(--button-bg-color);
	color: var(--button-color);
}
.wp-block-search .wp-block-search__button:hover {
	background: var(--button-hover-bg-color);
}
.wp-block-search .wp-block-search__input {
    border: 1px solid var(--border-color);
    outline: none;
}

.wp-block-cover-image .wp-block-subhead:not(.has-text-color), .wp-block-cover-image h1:not(.has-text-color), .wp-block-cover-image h2:not(.has-text-color), .wp-block-cover-image h3:not(.has-text-color), .wp-block-cover-image h4:not(.has-text-color), .wp-block-cover-image h5:not(.has-text-color), .wp-block-cover-image h6:not(.has-text-color), .wp-block-cover-image p:not(.has-text-color), .wp-block-cover .wp-block-subhead:not(.has-text-color), .wp-block-cover h1:not(.has-text-color), .wp-block-cover h2:not(.has-text-color), .wp-block-cover h3:not(.has-text-color), .wp-block-cover h4:not(.has-text-color), .wp-block-cover h5:not(.has-text-color), .wp-block-cover h6:not(.has-text-color), .wp-block-cover p:not(.has-text-color) {
    color: #fff;
}

blockquote.wp-block-quote, blockquote {
    padding: 40px;
    border: 0;
    line-height: 1.9em;
    position: relative;
    background: var(--dark-bg-color);
    color: var(--darkbg-content-color);
    font-weight: 500;
}
blockquote.wp-block-quote cite {
	display: block;
	color: var(--white-color);
	margin-top: 5px;
	font-size: 12px;
	letter-spacing: 1px;
}
blockquote.wp-block-quote a, blockquote a {
	color: var(--white-color);
}
blockquote.wp-block-quote a:hover, blockquote a:hover {
	color: var(--anchor-color);
}
.wp-block-pullquote {
    border-top: 4px solid var(--anchor-color);
    border-bottom: 4px solid var(--anchor-color);
    margin: 20px 0;  
}
.wp-block-calendar table th {
    background: transparent;
}
.wp-block-calendar table tbody, .wp-block-calendar table caption {
    color: var(--content-color);
}
#wp-calendar caption {
    caption-side: inherit;
	padding-top: 0;
}

.wp-block-cover-image, .wp-block-cover {
    height: auto;
    max-height: 100%;
}
.wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
    padding-top: 80px;
}
.wp-block-quote.is-style-large cite, .wp-block-quote.is-style-large footer, .wp-block-quote.is-large cite, .wp-block-quote.is-large footer {
    padding-bottom: 40px;
}
.wp-block-button {
    color: var(--button-color);
	margin-bottom: 5px;
}
.wp-block-button__link, a.wp-block-button__link, a.wp-block-button__link:hover {
    background-color: var(--button-bg-color);
    border: 2px solid var(--button-bg-color);
	color: var(--button-color);
}
.is-style-outline>.wp-block-button__link:not(.has-background), .wp-block-button__link.is-style-outline:not(.has-background) {
    background-color: transparent;
    border: 2px solid var(--button-transparent-color);
}
.is-style-outline>.wp-block-button__link:not(.has-text-color), .wp-block-button__link.is-style-outline:not(.has-text-color) {
    color: var(--button-transparent-color);
}
.is-style-squared .wp-block-button__link {
    border-radius: 0;
}
.wp-block-archives-list, .wp-block-rss, .wp-block-latest-posts__list, .wp-block-latest-comments {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

/* Default Widget Settings */
.ce-widget {
	margin-bottom: 30px;
	clear: both;
    padding: 30px;
    border-radius: 5px;
	display: flex;
    flex-direction: column;
    justify-items: center;
}

/* Widget Colors */
.ce-widget {
    background: var(--sidebar-bg-color);
	color: var(--sidebar-content-color);
}

.ce-widget-title {
	color: var(--sidebar-heading-color);
}

.ce-widget a, .ce-widget #wp-calendar caption, .ce-search-input {
	color: var(--sidebar-anchor-color);
}
.ce-widget a:hover {
	color: var(--sidebar-anchor-hover-color);
}
.ce-widget select {
    color: var(--sidebar-content-color);
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'><path fill='gray' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'></path></svg>");
}

.ce-widget-title {
	font-size: 20px;
	margin-bottom: 15px;
	margin-top: 0;
}
.ce-widget ul {
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}
.ce-widget .sub-menu,
.ce-widget .children {
	padding-left: 10px;
}

.tagcloud a,
.tagcloud a:visited {
	font-size: 12px !important;
	padding: 2px 10px;
	display: inline-block;
	overflow: hidden;
	text-transform: uppercase;
	font-weight: bold;
	border: 1px solid var(--border-color);
}

.tagcloud a:not(:last-child) {
	margin-right: 3px;
}

.tagcloud a:hover {
	opacity: 0.7;	
	border: 1px solid var(--anchor-color);
}

.ce-widget #wp-calendar caption {
	caption-side: inherit;
	padding-top: 0;
}

.ce-widget #wp-calendar, .ce-widget #wp-calendar th, .ce-widget #wp-calendar td {
	text-align: center;
	padding: 5px;
	font-weight: normal;
}

.ce-widget.widget_calendar td a {
	opacity: 0.7;
	font-weight: bold;
}

.ce-widget .wp-calendar-nav {
    padding-top: .75rem;
}
.ce-widget .wp-calendar-nav a {
	font-weight: normal;
}

.ce-search-input, .ce-widget form input {
    width: auto;
    min-width: 200px;
    padding: 10px;
    outline: 0;
	border: 1px solid var(--border-color);
}

.ce-widget select {
    width: 100%;
    height: 50px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border: 1px solid var(--border-color);
    background-position: 95% 50%;
    background-repeat: no-repeat;
    padding-left: 20px;
    outline: 0;
	margin: 10px 0 5px;
}

.ce-widget cite {
	display: block;
	text-align: right;
	margin-bottom: 15px;
}

.wp-calendar-table td, .wp-calendar-table th {
    text-align: center;
}

/* Password Protected css*/

.post-password-form input[type='password'] {
    padding: 5px 10px;
    height: 50px;
    outline: none;
    color: var(--content-color);
    left: 5px;
    border: 1px solid var(--border-color);
    background: transparent;
    text-align: left;
    overflow: hidden;
    margin: 15px 5px 0 10px;
    min-width: 280px;
}
.post-password-form input[type='password']:focus {
	color: var(--anchor-color);
}
.post-password-form input[type='submit'] {
    overflow: hidden;
    background: var(--button-bg-color);
    color: var(--button-color);
    border: 0;
    padding: 5px 40px;
    font-weight: 500;
    height: 52px;
	text-align: center;
	text-transform: uppercase;
}

/* Sticky Post */
.ce-blog-post.sticky {
    position: relative;
	clear: both;
}
.ce-blog-post.sticky:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f08d";
    position: absolute;
    top: 10px;
    right: 0;
    overflow: hidden;
    z-index: 1;
	color: var(--anchor-color);
}

/* Entry Meta */

/* Entry Meta: Colors */

.ce-entry-meta a {
	color: var(--anchor-color);
}
.ce-entry-meta a:hover {
	color: var(--anchor-hover-color);
}
.ce-entry-meta .entry-meta-date {
	color: var(--content-color);
}
.ce-entry-meta span {
	color: var(--content-color);
}
.ce-entry-meta li a:not(:last-child):after {
    content: ",";
    padding-right: 5px;
}

/* Pagination */
.ce-pagination {
    display: block;
    overflow: hidden;
    padding: 10px 0;
    width: 100%;
    margin: 50px auto 0;
    text-align: center;
}
.ce-pagination .page-numbers, .ce-pagination a.page-numbers {
    display: inline-block;
    padding: .5rem .75rem;
    margin-left: -5px;
    line-height: 1.25;
}
.ce-pagination .page-numbers:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.ce-pagination .page-numbers.current, .ce-pagination a.page-numbers:hover, .ce-pagination a.page-numbers:active, .ce-pagination a.page-numbers:focus {
	color: var(--button-color);
	background: var(--button-bg-color);
  border: 2px solid var(--button-bg-color);
}
.ce-pagination .page-numbers, .ce-pagination a.page-numbers {
	color: var(--button-transparent-color);
	background: transparent;
  border: 1px solid var(--button-bg-color);
}
.ce-pagination a.prev.page-numbers, .ce-pagination a.next.page-numbers {
    font-family: cursive;
}
.ce-pagination .page-numbers:first-child {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
.ce-pagination .page-numbers:last-child {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.ce-pagination .page-numbers.prev, .ce-pagination .page-numbers.next {
    position: relative;
    top: 1px;
}
/* Page Break */
.ce-paginate-nav-links .post-page-numbers.next, .ce-paginate-nav-links .post-page-numbers.prev {
    display: inline-block;
}
.ce-paginate-nav-links .post-page-numbers:not(.next):not(.prev) {
    text-align: center;
    font-weight: bold;
	display: inline-block;
	padding-right: 10px;
}

/* Comments List */
.ce-comments-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: -30px;
}
.ce-comment-body {
	padding: 20px 0 0;
	margin-bottom: 30px;
}

.ce-comment-avatar {
	display: inline-block;
	max-width: 50px;
	float: left;
}
.ce-comment-avatar img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}
.ce-comment-content {
	position: relative;
	overflow: hidden;
	padding-left: 15px;
	margin: 0;
	max-width: calc(100% - 50px);
}
.trackback .ce-comment-content, .pingback .ce-comment-content {
	padding-left: 0;
	max-width: 100%;
}
.ce-comment-author {
    margin-bottom: 0;
    font-size: 15px;
    text-transform: uppercase;
	color: var(--heading-color);
	font-weight: bold;
}
.ce-comment-date {
	font-size: 12px;
}
.ce-comments-list .children {
	list-style: none;
	padding-left: 20px;
}
.ce-comment-reply {
	position: absolute;
	top: 0;
	right: 1px;
	margin-top: 0
}
.ce-comments-form-title, .ce-comment-reply-title {
	font-size: 30px;
	margin: 0 0 1.5rem;
	color: var(--heading-color);
}
.ce-comment-reply-title a {
	color: var(--anchor-color);
}

/* Comments Pagination  */
.ce-comments-paginate {
    margin-top: 30px;
}
.ce-comments-paginate .page-numbers {
    text-align: center;
	display: inline-block;
	padding-right: 10px;
}
.ce-comments-paginate .page-numbers.current, #comments .page-numbers:hover {
    font-weight: bold;
}

/* Comments Form */
.ce-comments-form-wrapper {
    display: block;
    overflow: hidden;
}
.ce-comments-form input,
.ce-comments-form textarea {
	width: 100%;
	height: 50px;
	border: 1px solid var(--border-color);
	padding: 6px 15px;
	margin-bottom: 15px;
	outline: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;	
	background: transparent;
    color: var(--content-color);
}
.ce-comments-form .form-submit, .ce-comments-form input[type='submit'] {
	margin-bottom: 0;
}
.ce-comments-form input[type='submit'] {
	margin-top: 15px;
}
.ce-comments-form input:focus,
.ce-comments-form textarea:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border-color: var(--anchor-color);
}

.ce-comments-form textarea {
    height: 220px;
    padding: 15px;
    margin-bottom: 7px;
}
.ce-comments-form input.ce-comment-btn {
    width: auto;
	background: var(--button-bg-color);
    color: var(--button-color);	
    border: 1px solid var(--button-bg-color);
    padding: 10px 40px;
    font-weight: 500;
}
.ce-comments-form input.ce-comment-btn:hover {
    background: var(--button-hover-bg-color);
    color: var(--button-hover-color);	
    border: 1px solid var(--button-hover-bg-color);
}
.ce-comments-form-wrapper input#wp-comment-cookies-consent[type="checkbox"] { 
	display: none; 
}
.ce-comments-form-wrapper input#wp-comment-cookies-consent[type="checkbox"] + label {
	display: block;
	position: relative;
	padding-left: 25px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	margin-bottom: 0;
}
.ce-comments-form-wrapper input#wp-comment-cookies-consent[type="checkbox"] + label:before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border: 2px solid var(--anchor-color);
	position: absolute;
	left: 0;
	top: 7px;
	-webkit-transition: all .12s, border-color .08s;
	transition: all .12s, border-color .08s;
}
.ce-comments-form-wrapper input#wp-comment-cookies-consent[type="checkbox"]:checked + label:before {
	width: 10px;
	top: 3px;
	left: 0;
	border-radius: 0;
	opacity: 1;
	border-top-color: transparent;
	border-left-color: transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* Author Box */
.ce-author-box {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
	background: var(--dark-bg-color);
	padding: 40px;
	color: var(--darkbg-content-color);
}
.ce-author-box .ce-author-box-thumb {
    width: 120px;
    margin-right: 30px;
}
.ce-author-box a.ce-profile-edit {
    margin-top: 5px;
    display: block;
    overflow: hidden;
}
.ce-author-box .ce-author-box-content {
	width: calc(100% - 150px);
}
.ce-author-box a.ce-author-box-content-name {
	text-transform: capitalize;
	display: block;
	color: var(--white-color);
	font-size: 18px;
	font-weight: 500;
}
.ce-author-box a.ce-author-box-content-name:hover {
	color: var(--anchor-hover-color);
}

/* Responsive Settings */
@media (max-width: 767.98px) {
	.ce-comments-list .children {
		padding-left: 15px;
	}
}
@media (max-width: 575px) {
	.post-password-form input {
		display: block;
		margin-left: 0 !important;
	}
}

/* LAYOUT */
.container-sm {
  max-width: clamp(16rem, 90vw, 1068px);
  margin-left: auto;
  margin-right: auto;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: clamp(16rem, 90vw, 1270px);
}

.container-lg {
  max-width: clamp(16rem, 90vw, 1318px);
  margin-left: auto;
  margin-right: auto;
}

.container-xl {
  max-width: clamp(16rem, 90vw, 1420px);
  margin-left: auto;
  margin-right: auto;
}

.ce-section-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 2rem 1rem;
  gap: 2rem 1rem;
}
@media screen and (min-width: 768px) {
  .ce-section-wrapper {
    grid-gap: 2rem;
    gap: 2rem;
  }
}

.ce-section {
  grid-column-start: span 12;
}
.home .ce-section {
  padding: 75px 0;
}
@media screen and (min-width: 768px) {
  .ce-section-one-half {
    grid-column-start: span 6;
  }
}
@media screen and (min-width: 768px) {
  .ce-section-one-third {
    grid-column-start: span 4;
  }
}
@media screen and (min-width: 480px) {
  .ce-section-one-fourth {
    grid-column-start: span 6;
  }
}
@media screen and (min-width: 976px) {
  .ce-section-one-fourth {
    grid-column-start: span 3;
  }
}

.ce-animation-wrapper,
.ce-section-content {
  height: 100%;
}

.ce-section-content {
  background-color: var(--light-bg-color);
}

.ce-section .ce-animation-wrapper {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out;
}

.ce-section .ce-animation-wrapper.animate {
  opacity: 1;
  transform: translateY(0px);
}

/* CE Header CSS */

/* Base Reset */
.ce-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: background-color 0.3s, box-shadow 0.3s, padding 0.3s;
  white-space: nowrap;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  font-size: 16px;
}
body.admin-bar .ce-header {
  top: 32px;
}

/* Transparent only on homepage initial state */
.ce-header.home-page.transparent {
  background-color: transparent;
  color: #fff;
}
.ce-header.sticky .ce-menu > li > a {
  color: #111;
}

/* Layout */
.ce-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	flex-wrap: wrap;
}
.ce-logo {
    margin-top: 11px;
}
.ce-logo img {
  max-height: 50px;
  transition: max-height 0.3s;
  min-width: 150px;
}
.ce-header.sticky .ce-logo img {
  max-height: 40px;
}
.ce-header.home-page .ce-logo a.ce-site-logo {
  display: none;
}
.ce-header.home-page a.ce-home-hero-logo {
  display: block;
}
.ce-header.sticky .ce-logo a.ce-site-logo {
  display: block;
}
.ce-header.sticky .ce-logo a.ce-home-hero-logo, .ce-header:not(.home-page) .ce-logo a.ce-home-hero-logo {
  display: none;
}
.ce-nav {
  flex-grow: 1;
  margin: 0 40px;
  display: flex;
  justify-content: center;
}
.ce-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}
.ce-menu li {
  position: relative;
}
.ce-menu > li > a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  padding: 10px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.ce-menu li.menu-item-has-children svg {
    margin-left: 8px;
    width: 10px;
    position: relative;
    top: -2px;
}
.ce-menu li.open svg {
  transform: rotate(180deg);
  margin-left: 8px;
}
.ce-sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  z-index: 10;
  transition: all 0.3s ease;
}
.ce-menu li.open .ce-sub-menu {
  display: block;
}
.ce-sub-menu li {
  list-style: none;
}
.ce-sub-menu a {
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    transition: background 0.3s;
    font-weight: 600;
    color: var(--content-color);
}
.ce-sub-menu a:hover {
  background: #f5f5f5;
}
.ce-menu a.active {
  color: #0073e6;
}

/* CTA Button */
.ce-cta-button a {
  background: var(--dark-bg-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

/* Hamburger */
.ce-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
}
.ce-hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--dark-bg-color);
  transition: all 0.3s;
}
.ce-header.home-page .ce-hamburger span {
  background: var(--white-color);
}
.ce-header.home-page.sticky .ce-hamburger span {
  background: var(--dark-bg-color);
}
.ce-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.ce-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.ce-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 1249px) {
  .ce-menu {
    gap: 20px;
  }
  .ce-nav {
	margin: 0 16px 0 0;
}
  .ce-menu > li > a {
    padding: 10px 0px;
  }
}
@media (max-width: 991px) {
    .ce-header {
	padding: 15px 0 8px;
}
  .ce-nav {
    position: fixed;
    top: 50px;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    padding: 20px 20px;
    display: block;
    overflow-y: auto;
    transition: right 0.3s;
  }
.ce-nav.open {
	right: 0;
	width: 100%;
	left: 0;
	margin: 0;
}
  .ce-header.home-page.transparent {
    color: inherit;
  }
  .ce-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-left: auto;
  margin-right: auto;
    max-width: clamp(16rem, 90vw, 1270px);
  }
  .ce-menu li {
	width: 100%;
}
  .ce-menu > li > a {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .ce-sub-menu {
    position: static;
    display: none;
    width: 100%;
    background: #f9f9f9;
  }
  .ce-menu li.open .ce-sub-menu {
    display: block;
  }
  .ce-hamburger {
    display: flex;
  }
  .ce-header-inner {
    justify-content: space-between;
  }
  .ce-header-inner .ce-cta-button, .ce-nav-cta-button {
    display: none;
  }
}


/* HERO BLOCK */
.ce-hero-sec {
  min-height: 460px;
  color: var(--white-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ce-hero-sec::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.ce-hero-sec::after {
  content: "";
  position: absolute;
  z-index: -3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--content-color);
}
@media screen and (min-width: 768px) {
  .ce-hero-sec {
    height: 100vh;
  }
}

.ce-hero-sec-bg {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ce-hero-sec-title {
  color: var(--white-color);
  width: clamp(16rem, 90vw, 1068px);
  margin-bottom: 4rem;
  font-size: 48px;
}

.ce-hero-sec-btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 480px) {
  .ce-hero-sec-btn-wrapper {
    flex-direction: row;
  }

  .ce-hero-sec__button + .ce-hero-sec__button {
    margin-top: 0;
    margin-left: 1rem;
  }
}
.ce-hero-sec-btn-wrapper .ce-btn-outline, .ce-hero-sec-btn-wrapper a.ce-btn-outline {
    color: var(--white-color);
}
.ce-hero-sec-btn-wrapper .ce-btn-outline:hover, .ce-hero-sec-btn-wrapper a.ce-btn-outline:hover {
    opacity: 0.7;
}

/* TEXT BLOCK STYLE ONE */ 
.ce-hero-sec + .ce-text-st-one {
    padding-bottom: 180px;
}
.ce-text-st-one {
  color: var(--white-color);
  background: var(--primary-color-dark);
  text-align: center;
  letter-spacing: 0.1em;
  padding-bottom: 12rem;
}
.ce-text-st-one + .ce-services {
  margin-top: -13rem;
}
.ce-text-st-one-text {
    font-size: 26px;
    line-height: 45px;
}

/* SERVICES ITEMS */


.ce-services {
  color: var(--black-color);
  text-align: left;
  padding-bottom: 100px;
}

.ce-services-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.ce-services-item {
  position: relative;
  background: var(--white-color);
  padding: 2rem;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.3), 4px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
}

.ce-services-item-title {
    font-weight: bold;
    letter-spacing: 0;
    text-transform: none;
    margin: 0;
    font-size: 26px;
}

.ce-services-item-text {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.ce-services-item-link {
  text-align: right;
  margin-top: auto;
}

.ce-services-item-link a {
  padding: 0.25rem;
  background-color: var(--dark-bg-color);
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: inline-flex;
  right: 0;
  bottom: 0;
  position: absolute;
}

.ce-services-item-link a svg {
  fill: #fff;
}

.ce-services-item-link a:hover svg {
  animation-name: nudge;
  animation-duration: 500ms;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-direction: alternate;
}

@keyframes nudge {
  to {
    transform: translateX(-5px);
  }
}

/* CTA SECTION */

.ce-cta-sec {
  grid-column-start: span 12;
  background-color: var(--dark-bg-color);
  position: relative;
  overflow: hidden;
  transition: background-color 400ms ease, color 400ms ease;
  color: var(--white-color);
}
.home .ce-cta-sec {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .ce-cta-sec:hover {
    background-color: var(--dark-bg-color);
    color: var(--white-color);
  }
}
.ce-cta-sec .container > * {
  position: relative;
  z-index: 2;
}

.ce-cta-wrapper {
  display: grid;
  grid-gap: 2rem 1rem;
  padding: 2rem 1rem;
}
@media screen and (min-width: 768px) {
  .ce-cta-wrapper {
    grid-template-columns: 400px 1fr;
    align-items: center;
    padding: 3rem 4rem;
  }
}
@media screen and (min-width: 976px) {
  .ce-cta-wrapper {
    grid-template-columns: 80% 1fr;
  }
}

.ce-cta-title {
  color: var(--white-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .ce-cta-right {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .ce-cta-right {
    justify-self: end;
  }
}




/* BLOG SECTION*/
.ce-blog-sec {
  background: var(--primary-color-dark);
  color: var(--white-color);
  padding-bottom: 100px;
}

.ce-blog-sec-title {
  color: var(--white-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 20px;
  margin-top: 0;
}
.ce-blog-sec-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 94px;
  height: 5px;
  background-color: var(--white-color);
}

.ce-blog-sec-des {
  letter-spacing: 0.1em;
}

.ce-blog-sec .container-sm > * + * {
  margin-top: 1.5rem;
}

.ce-blog-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px !important;
}
.ce-blog-item {
    width: calc((100% - 40px) / 3);
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.0588235294);
    background: var(--light-bg-color);
}
.ce-thumb-img {
  position: relative;
    display: flex;
    overflow: hidden;
    position: relative;
  }
.ce-thumb-img::after {
    background-color: var(--white-color);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 0.3;
    z-index: 2;
  }
.ce-thumb-img img {
    transform: scale(1);
    transition: all 0.4s ease-in-out;
    transition: all 300ms ease;
  }
.ce-content-box {
    margin: 0 auto;
    padding: 10px 30px 20px;
    margin-bottom: 5px;
    position: relative;
    z-index: 3;
    transition: all 700ms ease;
}

.ce-entry-meta {
    font-size: 15px;
    margin-bottom: 10px;
    padding: 0;
    color: var(--content-color);
    font-weight: 600;
}

.ce-entry-meta li {
    white-space: nowrap;
    list-style: none;
  }

.ce-entry-title {
    text-transform: capitalize;
  }
  .ce-entry-title a {
    text-decoration: none;
  }

.ce-btn-plain-text-with-arrow-right {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
  }

.ce-btn-plain-text-with-arrow-right:after {
    font-size: 14px;
  }

.ce-blog-item:hover .ce-thumb-img img {
    filter: grayscale(100%);
  }

.ce-blog-item:hover .ce-thumb-img::after {
    height: 100%;
    opacity: 0;
    transition: all 300ms linear;
  }

  @media (max-width: 768px) {
  .ce-blog-item {
    width: 100%;
  }
}
/* Logos */
.home .ce-logos-sec {
  padding-bottom: 0;
}
.ce-logos-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
  gap: 3rem;
  align-items: center;
}
@media screen and (min-width: 480px) {
  .ce-logos-wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3rem 5rem;
    gap: 3rem 5rem;
  }
}
@media screen and (min-width: 768px) {
  .ce-logos-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .ce-logos-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ce-logos-item {
  text-align: center;
}
.ce-logos-item img {
  max-width: 180px;
}

/* flickity Common */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickity-button {
  position: absolute;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
}

.flickity-button:hover {
  cursor: pointer;
}

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 1px currentColor;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 899px) {
  .ce-projects-sec .flickity-page-dots {
    bottom: -5%;
  }
}
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 20px;
  height: 4px;
  margin: 0 4px;
  background: var(--accent-color-orange);
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* Projects */
#ce-projects {
    scroll-margin: 12rem;
    padding-bottom: 115px;
}
.ce-projects-item {
  width: 100%;
  margin-right: 3rem;
}
.ce-projects-item-wrapper {
  display: grid;
  grid-gap: 2rem 0.5rem;
  gap: 2rem 0.5rem;
}
@media screen and (min-width: 976px) {
  .ce-projects-item-wrapper {
    grid-template-columns: 4fr 5fr;
    align-items: center;
    width: calc(100% - 9rem);
    margin-left: auto;
    margin-right: auto;
  }
}

.ce-projects-item-details > * + * {
  margin-top: 1rem;
}

.ce-projects-item-title {
  color: var(--black-color);
}


#ce-projects .flickity-button {
  color: var(--dark-bg-color);
}
@media screen and (max-width: 976px) {
  #ce-projects .flickity-button {
    display: none;
  }
}

#ce-projects .flickity-page-dots {
  bottom: -2rem;
}
#ce-projects .flickity-page-dots .dot {
  background-color: var(--content-color);
  width: 72px;
  height: 3px;
}
#ce-projects .flickity-page-dots .dot.is-selected {
  background-color: var(--dark-bg-color);
}

/* Footer CTA SECTION */
.ce-footer-cta-area {
    background: var(--light-bg-color);
    color: var(--white-color);
  margin-top: 75px;
}
.ce-footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 0 75px;
    max-width: 800px;
    margin: 0 auto;
    flex-direction: column;
    flex-wrap: wrap;
}
.ce-footer-cta-content h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: initial;
    margin-bottom: 30px;
}




/* FOTTER */
.ce-d-flex {
  display: flex;
  flex-wrap: wrap;
}
.ce-widgets-wrapper-half {
  width: 50%;
} 
.ce-widgets-wrapper-full {
  width: 100%;
}
.ce-footer {
  position: relative;
  overflow: hidden;
  background: var(--dark-bg-color);
  font-size: 16px;
}

.ce-footer a {
  color: #fff;
  text-decoration: none;
}

.ce-footer ul {
  list-style: none;
  padding: 0;
}

.ce-footer ul li:not(:last-child) {
  margin-bottom: 10px;
}
.ce-footer .ce-footer-bottom ul li  {
  margin-bottom: 0;
}
.ce-footer-widget-wrapper {
  padding: 50px 0;
}

.ce-footer-widget-wrapper .ce-single-footer-widget {
  margin-top: 30px;
}

.ce-footer-widget-wrapper .ce-single-footer-widget .ce-single-footer-widget-content a, .ce-footer-widget-wrapper .ce-single-footer-widget .ce-single-footer-widget-content p {
  color: #fff;
}
.ce-footer-widget-wrapper .ce-footer-social {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.ce-footer-widget-wrapper .ce-footer-social .socials-icon {
  display: flex;
  align-items: center;
}
.ce-footer-widget-wrapper .ce-footer-social .socials-icon li {
  margin-right: 10px;
}


.ce-footer-widget-wrapper .ce-footer-right-margin {
  margin-left: 120px;
  position: relative;
  z-index: 9;
}
.ce-footer-bottom {
  padding: 20px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.ce-footer-bottom .ce-footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ce-footer-bottom .ce-footer-bottom-wrapper p {
  color: #fff;
}
.ce-footer-bottom .ce-footer-bottom-wrapper .ce-footer-list {
  display: flex;
  align-items: center;
  gap: 48px;
}
.ce-footer-bottom .ce-footer-bottom-wrapper .ce-footer-list li {
  color: #fff;
}
.ce-footer-logo {
  max-width: 220px;
}

@media screen and (max-width: 900px) {
  .ce-d-flex .ce-widgets-wrapper-half {
    width: 100%;
  } 
  .ce-d-flex .ce-widgets-wrapper-half .ce-d-flex .ce-widgets-wrapper-half {
    width: 50%;
  } 
  .ce-footer-widget-wrapper .ce-footer-right-margin {
    margin-left: 0;
  }
  .ce-footer-bottom .ce-footer-bottom-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
  }
}

/* Common Page Header*/
.page-header {
    text-align: center;
    max-width: 800px;
    margin: 10rem auto 6rem;
}
.page-header h1 {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-header h2 {
    color: var(--accent-color-orange);
    text-transform: uppercase;
    font-size: 24px;
    margin-top: 0;
}
.page-header h1 + p {
  margin-top: 0.25rem;
}

/* Contact Page */
.ce-contact-form-section {
    margin: 0 auto 100px;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ce-contact-form-left {
    width: 50%;
    background-image: url('http://localhost/ce/wp-content/uploads/2025/05/marketing.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    min-height: 300px;
}

.ce-contact-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.ce-contact-form-right {
    width: 50%;
    padding: 30px;
    background-color: #f9f9f9;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.ce-contact-form-right .wpcf7 {
  width: 100%;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1em;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}
.ce-contact-form-right input, .ce-contact-form-right textarea {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
}
.ce-contact-form-right .wpcf7 form .wpcf7-response-output {
    margin: 0em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid var(--dark-bg-color);
}
.ce-contact-form-button[type=submit] {
    padding: 12px 20px;
    background-color: var(--button-bg-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.ce-contact-form-button[type=submit]:hover {
    background: linear-gradient(to right, var(--button-hover-bg-color), var(--button-hover-bg-color));
        transform: unset;
}
/* Responsive Design */
@media (max-width: 768px) {
    .ce-contact-form-section {
        flex-direction: column;
        width: 95%;
    }

    .ce-contact-form-left {
        width: 100%;
        min-height: 200px; /* Adjust as needed */
        padding: 20px;
    }

    .ce-contact-form-right {
        width: 100%;
        padding: 20px;
    }
}

/* Normal Text Section */
.ce-nm-text .ce-section-content {
  padding: 2rem 1rem;
  color: var(--content-color);
}
.ce-nm-text .ce-section-content a {
  text-decoration: none;
}
.ce-nm-text .ce-section-content a:hover {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
}
.ce-nm-text .ce-section-content .ce-nm-text-title {
  position: relative;
  padding-bottom: 0.5rem;
  color: var(--content-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
}
.ce-nm-text .ce-section-content .ce-nm-text-title::after {
  content: "";
  width: 32px;
  height: 6px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: calc(50% - 16px);
}
.ce-nm-text .ce-section-content .ce-nm-text-title + * {
  margin-top: 2.25rem;
}
.ce-nm-text .ce-section-content > * + * {
  margin-top: 1rem;
}

@media screen and (min-width: 480px) {
  .ce-nm-text .ce-section-content {
    padding: 2rem 4rem;
  }
}
@media screen and (min-width: 768px) {
  .ce-nm-text .ce-section-content {
    padding: 4rem 8rem;
  }
  .ce-nm-text.ce-section-one-half .ce-nm-text-title {
    text-align: left;
  }
  .ce-nm-text.ce-section-one-half .ce-nm-text-title::after {
    left: 0;
  }
  .ce-nm-text.ce-section-one-half .ce-section-content {
    padding: 2rem 3rem;
  }
  .background-block.ce-section-one-half + .ce-nm-text.ce-section-one-half .ce-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Rich Text Section */
.ce-rich-text .ce-section-content {
  padding: 2rem 1rem;
}
.ce-rich-text .ce-section-content > * + * {
  margin-top: 1.5rem;
}
.ce-rich-text .ce-section-content a {
  text-decoration: none;
}
.ce-rich-text .ce-section-content a:hover {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
}
.ce-rich-text .ce-section-content ul,
.ce-rich-text .ce-section-content ol {
  padding-left: 1.5rem;
}
.ce-rich-text .ce-section-content h1,
.ce-rich-text .ce-section-content h2,
.ce-rich-text .ce-section-content h3,
.ce-rich-text .ce-section-content h4,
.ce-rich-text .ce-section-content h5,
.ce-rich-text .ce-section-content h6 {
  color: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ce-rich-text .ce-section-content * + h1,
.ce-rich-text .ce-section-content * + h2,
.ce-rich-text .ce-section-content * + h3,
.ce-rich-text .ce-section-content * + h4,
.ce-rich-text .ce-section-content * + h5,
.ce-rich-text .ce-section-content * + h6 {
  margin-top: 3rem !important;
}
@media screen and (min-width: 480px) {
  .ce-rich-text .ce-section-content {
    padding: 3rem 4rem;
  }
}
@media screen and (min-width: 768px) {
  .ce-rich-text .ce-section-content {
    padding: 4rem 8rem;
  }
}

/* Background Image Section */
.ce-background-section img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .ce-background-section img {
    height: 390px;
    object-fit: cover;
    object-position: center;
  }
  .ce-background-section.ce-section-one-half img {
    height: 100%;
  }
}

.ce-background-section-has-label {
  position: relative;
}
.ce-background-section-has-label .ce-background-section-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--content-color);
  max-width: 95%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Single Image Section */
.ce-single-image-section img {
  max-width: 100%;
}

/* Two Images Section */
.ce-two-image-section .ce-section-content {
  padding: 2rem 4rem;
  background-color: var(--clr-bg, #fff);
  text-align: center;
}

.ce-two-image-sec-title {
  position: relative;
  padding-bottom: 0.5rem;
  color: var(--content-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ce-two-image-sec-title::after {
  content: "";
  width: 32px;
  height: 6px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: calc(50% - 16px);
}

.ce-two-image-sec-img-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem min(10%, 1.5rem);
  margin-top: 2.25rem;
}

@media screen and (min-width: 768px) {
  .ce-two-image-section .ce-section-content {
    padding: 4rem 8rem;
  }

  .ce-two-image-sec-img-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}



/* Testimonial Section */
.ce-testimonials-section .ce-section-content {
  background-color: var(--dark-bg-color);
  background-image: url(), url(././assets/img/testimonials-quote-left.svg), url(././assets/img/testimonials-quote-right.svg), linear-gradient(to right, var(--dark-bg-color), var(--dark-bg-color));
  background-position: calc(100% + 120px) calc(100% + 100px), 10% -30px, 90% calc(100% + 30px), left;
  background-repeat: no-repeat;
  background-size: 400px, 100px, 100px, cover;
}

.ce-testimonials-carousel {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.ce-testimonials-carousel-wrapper {
  width: calc(100% - 2rem);
  min-height: 200px;
  margin-left: 1rem;
  margin-right: 1rem;
  color: var(--white-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 480px) {
  .ce-testimonials-carousel-wrapper {
    width: calc(100% - 6rem);
    margin-left: 3rem;
    margin-right: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .ce-testimonials-carousel-wrapper {
    width: calc(100% - 8rem);
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .ce-testimonials-section .flickity-button {
    display: initial;
  }
}

.ce-testimonials-section .flickity-button {
  display: none;
}

.ce-testimonials-carousel-name {
  margin-top: 2rem;
}
.ce-testimonials-section .flickity-page-dots {
    bottom: 50px;
}
.ce-testimonials-section .flickity-page-dots .dot {
    background: var(--white-color);
}
/* Logos Section */
.ce-logos-grid-section .ce-section-content {
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .ce-logos-grid-section .ce-section-content {
    padding: 4rem;
  }
}

.ce-logos-grid-wrapper {
  display: grid;
  grid-gap: 1.5rem 3%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (min-width: 768px) {
  .ce-logos-grid-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ce-logos-grid-wrapper a {
  display: block;
}

.ce-logos-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ce-logos-grid-item img {
  max-width: 100%;
  vertical-align: bottom;
}

/* Gallery Section */

.ce-gallery-section .ce-section-content {
  background-color: transparent;
  display: grid;
  grid-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .ce-gallery-section .ce-section-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ce-gallery-item {
  background-color: var(--white-color);
  padding: 1rem;
}
@media screen and (min-width: 480px) {
  .ce-gallery-item {
    padding: 2rem;
  }
}

.ce-gallery-item img {
  width: 100%;
  vertical-align: bottom;
}

/* Quote with Image Section */

.ce-qt-img-section .ce-section-content {
  padding: 1.5rem;
  color: var(--content-color);
}

.ce-qt-img-wrapper {
  display: grid;
  grid-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .ce-qt-img-wrapper {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .ce-qt-img-right {
    padding: 1.5rem;
  }
}

.ce-qt-img-right p + p {
  margin-top: 2rem;
}

.ce-qt-img-right p:last-of-type {
  text-align: right;
}

/* Logo Carousel */
.ce-logo-carousel-section .ce-section-content {
  padding: 1.5rem;
  min-height: 200px;
  height: 100%;
}

.ce-logo-carousel {
  max-height: unset;
  height: 100%;
}

.ce-logo-carousel-item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1rem;
}

.ce-logo-carousel-item-img {
  max-width: 900%;
  width: 320px;
  height: auto;
}

.ce-logo-carousel-item-img img {
  display: block;
}

.ce-logo-carousel-section .flickity-button {
  color: var(--dark-bg-color);
}

.ce-logo-carousel-section .flickity-page-dots {
  bottom: 0;
}

.ce-logo-carousel-section .dot {
  background: var(--content-color);
  opacity: 0.5;
}
.ce-logo-carousel-section .dot.is-selected {
  background: var(--dark-bg-color);
  opacity: 1;
}

/* Map Section */

.ce-map-section .ce-section-content {
  padding: 1.5rem;
}
.ce-map-section .ce-section-content iframe {
  width: 100%;
}

/* Services Box Two Section*/
.ce-service-box-two-section .ce-section-content {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}
.ce-service-box-two-section .ce-section-content > * {
  position: absolute;
}

.ce-service-box-two-overlay {
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dark-bg-color);
  opacity: 0.8;
}

.ce-service-box-two-title {
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  color: var(--white-color);
  letter-spacing: 0.1em;
  overflow: hidden;
  max-width: 90%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ce-service-box-two-link {
  z-index: 3;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ce-service-box-two-link a {
  padding: 0.75rem;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
}

.ce-service-box-two-section img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (min-width: 768px) {
  .ce-service-box-two-overlay {
    transition: background-color 300ms ease;
  }

  .ce-service-box-two-title {
    opacity: 1;
    transition: opacity 300ms ease;
  }

  .ce-service-box-two-link a {
    padding: 0.25rem 0.75rem;
  }

  .ce-service-box-two-section:hover .ce-service-box-two-overlay,
  .ce-service-box-two-section:focus-within .ce-service-box-two-overlay {
    background-color: var(--content-color);
    opacity: 0.8;
  }
  .ce-service-box-two-section:hover .ce-service-box-two-link,
  .ce-service-box-two-section:focus-within .ce-service-box-two-link {
    top: 50%;
    opacity: 1;
  }
  .ce-service-box-two-section:hover .ce-service-box-two-link a,
  .ce-service-box-two-section:focus-within .ce-service-box-two-link a {
    border-color: var(--dark-bg-color);
  }
}

/* Gallery Two Section */
.ce-gallery-two-section .ce-section-content {
  background-color: transparent;
}

.ce-gallery-two-images {
  display: grid;
  grid-row-gap: 2rem;
  row-gap: 2rem;
  grid-auto-rows: auto;
}

.ce-gallery-two-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 976px) {
  .ce-gallery-two-images {
    display: grid;
    grid-template-columns: 1fr 0.7fr 1fr;
    grid-template-rows: 300px 100px 400px;
    grid-template-areas: "one one two" "three four four" "three four four";
    grid-column-gap: 15px;
    column-gap: 15px;
    grid-row-gap: 0;
    row-gap: 0;
  }

  .ce-gallery-two-image:nth-child(1) {
    grid-area: one;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% + 4.5rem), 0% calc(100% - 8px));
  }
  .ce-gallery-two-image:nth-child(1) img {
    height: 125%;
  }

  .ce-gallery-two-image:nth-child(2) {
    grid-area: two;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% + 7.7rem), 0% calc(100% + 4.7rem));
  }
  .ce-gallery-two-image:nth-child(2) img {
    height: 140%;
  }

  .ce-gallery-two-image:nth-child(3) {
    grid-area: three;
    clip-path: polygon(0% 0.5rem, 100% 3.5rem, 100% 100%, 0% 100%);
  }
  .ce-gallery-two-image:nth-child(3) img {
    width: 100%;
    height: 100%;
  }

  .ce-gallery-two-image:nth-child(4) {
    grid-area: four;
    clip-path: polygon(0% 3.5rem, 100% 8.8rem, 100% 100%, 0% 100%);
  }
  .ce-gallery-two-image:nth-child(4) img {
    width: 100%;
    height: 100%;
    object-position: left top;
  }
}

/* Overview List Icons */
.ce-overview-lists-section .ce-section-content {
  padding: 3rem 2rem;
}
@media screen and (min-width: 768px) {
  .ce-overview-lists-section .ce-section-content {
    padding: 4rem;
  }
}

.ce-overview-lists-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  grid-gap: 3rem 2rem;
  gap: 3rem 2rem;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .ce-overview-lists-items {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5rem 2rem;
    gap: 5rem 2rem;
  }
}

.ce-overview-lists-item {
  text-align: center;
}
.ce-overview-lists-item > * + * {
  margin-top: 1rem;
}

.ce-overview-lists-item-icon svg,
.ce-overview-lists-item-icon svg path {
  fill: var(--dark-bg-color) !important;
  width: 44px;
}

.ce-overview-lists-item-title {
	letter-spacing: 0.1em;
	font-size: 45px;
	font-weight: bold;
	margin: 20px 0 15px;
}

/* Jobs List */
.ce-jobs-list-section .ce-section-content {
  background-color: transparent;
}

.ce-jobs-list-items {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
  grid-template-columns: 1fr;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .ce-jobs-list-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ce-jobs-list-item {
  background-color: var(--content-color);
  padding: 1.5rem;
  color: var(--content-color);
}

.ce-jobs-list-item hr {
  border-style: solid;
  border-color: var(--content-color);
  margin: 1.5rem 0 2.5rem;
}

.ce-jobs-list-item-title {
  color: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ce-jobs-list-item a {
  background-color: var(--content-color);
  color: var(--content-color);
  font-weight: 600;
  display: inline-block;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 0px;
  text-decoration: none;
  transition: transform 300ms ease;
}
.ce-jobs-list-item a:hover {
  transform: scale(1.05);
}

/* 404 Page */

#ce-page-404 {
    margin-top: 180px;
    text-align: center;
}

/* Single Post */
body.single-post {
  color: var(--black-color);
}
body.single-post .page-header {
    margin: 10rem auto 1.5rem;
}
.single-post h1,
.single-post h2,
.single-post h3,
.single-post h4,
.single-post h5,
.single-post h6 {
  color: var(--black-color);
}
.single-post article {
  padding: 50px 10%;  
  background: var(--white-color);
}

.single-post article h2, .single-post article .h2 {
  font-size: 25px;
}

.single-post article h3, .single-post article .h3 {
  font-size: 22px;
}

.single-post article h4, .single-post article .h4 {
  font-size: 20px;
}

.single-post article h5, .single-post article .h5 {
  font-size: 18px;
}

.single-post article h6, .single-post article .h6 {
  font-size: 18px;
}

.single-post article p {
  margin-bottom: 1.5rem;
}

.single-post article .container {
    margin-left: auto;
    margin-right: auto;
    max-width: clamp(16rem, 90vw, 1270px);
    max-width: 800px;
}
/* Table of Content Plugin */
#ez-toc-container {
    margin: 2rem 0;
    padding: 20px 30px;
}
#ez-toc-container li {
  padding: 5px 0;
}

/* WordPress Default Content Section */
@media screen and (min-width: 768px) {
    .ce-default-wp-content-section .ce-section-content {
        padding: 4rem 8rem;
    }
}
@media screen and (min-width: 480px) {
    .ce-default-wp-content-section .ce-section-content {
        padding: 2rem 4rem;
    }
}