/*
Theme Name: ParmaPizza
Author: 1skymedia.com
Description: A simple and secure WordPress theme.
Version: 1.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 1skymedia.com
*/

@import url('blog/blog-style.css');

/* Base styles */
*, ::after, ::before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	text-decoration: none;
}

:root {
	/* Fonts */
	--body-font: 'Open Sans', sans-serif;
	--headings-font: "Great Vibes", cursive;
	
	/* Colors*/
	--primary-color: #A01F25;
	--secondary-color: #000;
	--text: #000;
	--link-color: var(--primary-color);
	--headings-color: var(--primary-color);
	--white: #fff;
	--black: #000;
}

html {
	height: 100%;
}

body {
	position: relative;
	color: var(--text);
	font-family: var(--body-font);
	font-size: 16px;
	line-height: 1.5;
	font-weight: normal;
	font-style: normal;
	margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: var(--primary-color);
	font-family: var(--headings-font);
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 15px;
	font-weight: 800;
}

p,hr,dl,pre,form,table,address,blockquote {
	margin: 15px 0;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 4rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 2rem;
}

h5 {
	font-size: 1.8rem;
}

blockquote, q {
	quotes: none;
}

strong {
	font-weight: 600;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th,td,table {
	border: 1px solid #dddddd;
}

button, input, select, textarea {
	font-size: 100%;
	overflow: visible;
	margin: 0;
	vertical-align: baseline;
	width: auto;
}
p {
	word-wrap: break-word;
}

i,em,dfn,cite {
	font-style: italic;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

::selection {
	background: #999999;
	color: #ffffff;
	text-shadow: none;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #454545;
  opacity: 0.7; /* Firefox */
  font-weight: 400;
}

.container {
	padding: 0 15px;
	max-width: 1220px;
	width: 100%;
	margin: 0 auto;
}

.wrapper {
	min-height: 55vh;
	margin: 2rem 0;
}

.home .wrapper {
	margin: 0;
}

.alignright {
	float: right;
	margin: 0 0 15px 15px;
}

.alignleft {
	float: left;
	margin: 0 15px 15px 0;
}

.center {
	text-align: center;
}

.error-404-page .fa.fa-exclamation-circle {
	font-size: 5rem;
	margin-bottom: 15px;
	color: var(--secondary-color);
}

.error-404-page h4 {
	max-width: 750px;
	margin: auto auto 25px;
}

.sitemap-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
}

a {
	color: var(--link-color);
	transition: all 0.3s ease-in;
	text-decoration: none;
}
a:hover {
	color: var(--secondary-color);
	text-decoration: none;
}

a.comn-btn {
	display: inline-block;
	background-color: var(--primary-color);
	color: var(--white);
	padding: 10px 20px;
	font-size: 18px;
	border-radius: 5px;
}

a.comn-btn:hover, a.read-more:hover, a.comn-btn:focus, a.read-more:focus {
	color: var(--white);
	background-color: var(--secondary-color);
}
/* Header */
header {
	padding: 4rem 0;
	position: absolute;
	width: 100%;
	z-index: 99;
}
.header-inner-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	position: relative;
}
/* Menu */
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
nav > ul.slimmenu {
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
}
nav > ul.slimmenu > li > a {
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	padding: 15px 24px;
	border-radius: 5px;
	font-family: "Roboto", sans-serif;
}
nav > ul.slimmenu > li > a:hover {
	color: #fff;
	background: #000;
}
nav > ul.slimmenu li.current-menu-item > a, nav > ul.slimmenu li.current-menu-ancestor > a {
	color: #fff;
	background: #000;
}
/* Sub-Menu */
nav > ul.slimmenu li.has-submenu {
	position: relative;
}
nav > ul.slimmenu li.has-submenu ul {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 12em;
	margin-top: 30px;
	text-align: left;
}
nav > ul.slimmenu li.has-submenu ul li a {
	display: block;
	font-size: 16px;
	line-height: 1;
	text-transform: capitalize;
	color: #fff;
	background: var(--primary-color);
	padding: 15px 20px;
	border-bottom: 1px solid #fff;
}
nav > ul.slimmenu li.has-submenu ul li a:hover, nav > ul.slimmenu li.has-submenu ul li.current-menu-item a {
	background: var(--secondary-color);
	color: #fff;
}
/* Third-Level-Sub-Menu */
nav > ul.slimmenu li.has-submenu > ul li ul {
	left: 100%;
	top: 0;
}
/* Mobile Menu */
.collapse-button {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	padding: 10px;
	cursor: pointer;
}
.collapse-button .icon-bar {
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
}
nav > ul.slimmenu.collapsed {
	position: absolute;
	display: block;
	left: 0;
	top: 100%;
	right: 0;
}
nav > ul.slimmenu.collapsed li a {
	display: block;
	background: var(--primary-color);
	color: #fff;
	padding: 15px 20px;
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	border-bottom: 1px solid #fff;
}
nav > ul.slimmenu.collapsed li a:hover,
nav > ul.slimmenu.collapsed li.current-menu-item > a {
	background: var(--secondary-color);
}
.collapse-button .icon-bar {
	display: inline-block;
	width: 20px;
	height: 1px;
	background-color: #fff;
	transition: transform 300ms ease-in;
}
.collapse-button.active span {
	position: absolute;
	transform-origin: center;
	top: 50%;
}
.collapse-button.active span:nth-child(1) {
	transform: rotate(45deg);
}
.collapse-button.active > span:nth-child(2) {
	display: none;
}
.collapse-button.active span:nth-child(3) {
	transform: rotate(-45deg);
}
/* Menu Chevron */
ul.slimmenu li .sub-collapser > i, ul.slimmenu li .sub-toggle .icon {
	display: none;
}
ul.slimmenu li.menu-item-has-children a {
	padding-right: 40px;
}
.menu-item-has-children::after {
	content: "\f107";
	position: absolute;
	font-family: FontAwesome;
	top: 0;
	right: 18px;
	z-index: 9;
	color: #fff;
}
ul.sub-menu .menu-item-has-children::after {
	color: #fff;
	content: "\f105";
	top: 10px;
	right: 10px;
}
/* Page Title Bar */
.page-title-bar {
	background-image: url("../../../wp-content/uploads/2026/03/banner.jpg");
	padding: 1rem 0;
	height: 400px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.page-title-bar .page-title-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	position: absolute;
	bottom: 20%;
}
.page-title-bar h1 {
	margin: 0;
	color: #fff;
	font-weight: bold;
	font-size: 4rem;
}
/* Footer */
.footer-bottom {
	color: #000;
	background: #fff;
	padding: 10px 0;
	font-size: 14px;
	font-weight: 500;
}
.footer-bottom a {
	display: inline-block;
	color: #000;
}
.footer-bottom a:hover {
	text-decoration: underline;
	color: #A01F25
}
.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}
/* Forms */
label {
	font-weight: bold;
}
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
	width: 100%;
	color: #000;
	font-size: 16px;
	font-family: inherit;
	padding: 10px;
	background-color: #fff;
	border: 1px solid #ccc;
}
textarea {
	height: 150px;
}
fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}
fieldset > p {
	margin: 0;
}
fieldset.one-third {
	position: relative;
	float: left;
	width: calc(100% / 3 - 14px);
	margin-right: 20px;
	margin-bottom: 20px;
}
fieldset.half {
	position: relative;
	float: left;
	width: calc(100% / 2 - 20px);
	margin-right: 20px;
	margin-bottom: 20px;
}
fieldset.full {
	position: relative;
	margin-bottom: 20px;
	width: 100%;
}
fieldset.one-third.last, fieldset.half.last {
	margin-right: 0;
}
.wpcf7-not-valid {
	border-color: rgba(255, 0, 0, 0.75) !important;
}
.wpcf7-not-valid-tip {
	font-size: 12px;
}
.wpcf7 form.invalid .wpcf7-response-output {
	background: rgba(255, 0, 0, 0.75);
	color: #fff;
	text-align: center;
	border-color: rgba(255, 0, 0, 0.75);
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450;
	background: #46b450;
	color: #fff;
	text-align: center;
}
.icon-form input, .icon-form textarea, .icon-form select {
	padding-left: 40px;
}
input[type="submit"] {
	display: inline-block;
	width: auto;
	font-size: 16px;
	font-family: inherit;
	line-height: 1;
	border: 0;
	background-color: var(--primary-color);
	color: #fff;
	padding: 15px 35px;
	border-radius: 10px;
	cursor: pointer;
}
.icon-form .fa {
	position: absolute;
	z-index: 9;
	left: 10px;
	top: 12px;
	font-size: 20px;
	color: #000;
}
input[type="submit"]:hover {
	background-color: var(--secondary-color);
}
#logo {
	background: #000;
	position: absolute;
	z-index: 99;
	margin: 0 auto;
	text-align: center;
	left: 0;
	right: 0;
	width: 180px;
	height: 180px;
	padding: 15px;
	border-radius: 50%;
	top: -45px;
	bottom: 0;
}
.site-nav {
	position: relative;
	background: #A01F25;
	width: 100%;
	text-align: center;
	padding: 30px 0;
	border-radius: 10px;
}
.logo-menu {
	padding: 0 80px;
}
#logo img {
	margin: 5px auto;
}
#SR7_1_1 .custom.sr7-arrows::before {
	font-size: 40px !important;
	line-height: 63px !important;
}
#SR7_1_1 .custom.sr7-arrows {
	background: #A01F25 !important;
	width: 60px !important;
	height: 60px !important;
}
#SR7_1_1 .custom.sr7-arrows:hover {
	background: #000 !important;
}
.wlcm-row p, .order-location-row p, .testimonial-row p {
	font-size: 22px;
	width: 80%;
	margin: 0 auto;
	font-weight: 500;
}
.wlcm-row h2 {
	margin-bottom: 0;
}
.wlcm-row h3 {
	font-family: var(--body-font);
	font-weight: 700;
	font-size: 1.8rem;
}
.wlcm-row .wpb_single_image {
	margin-bottom: 20px !important;
}
.wlcm-row .comn-btn {
	font-size: 24px;
	font-weight: 700;
	padding: 15px 40px;
}
.order-location-row {
	color: #fff;
}
.order-location-row h2 {
	color: #fff;
	margin-bottom: 0;
}
.inner-location {
	text-align: center;
	color: #fff;
	background: #A01F25;
	border-radius: 10px;
	padding: 20px;
}
.inner-location h3 {
	color: #fff;
	font-size: 3rem;
}
.inner-location p {
	font-size: 20px;
}
.inner-location a {
	color: #fff;
	font-weight: 700;
}
.btn-row {
	display: flex;
	justify-content: center;
	gap: 5px;
	align-items: center;
	margin-top: 15px;
}
.btn-row .comn-btn {
	background: #000;
	padding: 8px 20px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 15px;
	width: 160px;
}
.btn-row .comn-btn:hover {
	background: #fff;
	color: #A01F25;
}
.testimonial-row h2 {
	color: #000;
	margin-bottom: 0;
}
.testimonial-row p {
	width: 90%;
}
.footer-top {
	color: #fff;
}
p:empty {
	display: none;
}
.fotr-list {
	list-style: none;
	display: flex;
	justify-content: space-between;
	padding-left: 0;
	align-items: center;
}
.fotr-list li {
	position: relative;
	padding-left: 140px;
	font-size: 20px;
}
.fotr-list li img {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
}
.fotr-list li strong {
	margin-top: 20px;
	display: inline-block;
	font-size: 22px;
}
.fb-link strong {
	color: transparent;
}
.fb-link img {
	width: 118px;
}
.fotr-list .card-row img {
	top: 9px;
}
.testimonial-block {
	text-align: center;
	font-size: 20px;
	background: #e9e9e9;
	padding: 30px 150px 60px;
	position: relative;
}
.starrating .fa {
	font-size: 30px;
	color: #A01F25;
	padding-left: 3px;
}
.testimonial_rotator_description {
	padding: 20px 0px 10px;
	font-weight: 500;
	min-height: 180px;
}
.testimonial_rotator_title {
	color: #A01F25;
	font-weight: 700;
}
#testimonialrotator {
	margin-top: 35px;
}
.icon-left, .icon-right {
	position: absolute;
	background: #000;
	padding: 10px;
	width: auto !important;
}
.icon-left {
	top: 10px;
	left: 10px;
}
.icon-right {
	bottom: 10px;
	right: 10px;
}
#testimonialrotator.owl-theme .owl-nav .owl-prev {
	left: -70px;
}
#testimonialrotator.owl-theme .owl-nav .owl-next {
	right: -70px;
}
#testimonialrotator.owl-theme .owl-nav .owl-prev, #testimonialrotator.owl-theme .owl-nav .owl-next {
	position: absolute;
	top: 28%;
	background-color: transparent;
	color: #000;
	font-size: 95px;
	padding: 0;
	margin: 0;
	text-align: center;
}
#testimonialrotator.owl-theme .owl-nav .owl-prev:hover, #testimonialrotator.owl-theme .owl-nav .owl-next:hover {
	color: #A01F25;
}
.hero-slider .sr7-btn img {
	width: 40px;
	margin-top: -3px;
}
#pum_popup_title_100 {
	color: #A01F25;
	font-weight: 700;
	text-align: center;
}
#popmake-100 p {
	font-size: 20px;
}
.pum-theme-92 .pum-container, .pum-theme-lightbox .pum-container {
	border-color: #A01F25 !important;
}
.vc_toggle_title > h4 {
	display: inline;
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #000;
}
.vc_do_toggle {
	margin-bottom: 10px !important;
	background: #f7f9fb;
	padding: 15px;
}
.page-title-bar::before {
	background: rgba(0,0,0,0.5);
	height: 100%;
	width: 100%;
	content: "";
	top: 0;
	left: 0;
	position: absolute;
}
main ul {
	padding-left: 15px;
}
.fotr-botm {
	background: #A01F25;
	padding-bottom: 10px;
}
.vc_column_container > .vc_column-inner {
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}
.fotr-top {
	background: #000;
	color: #fff;
}
.fotr-top a {
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}
.fotr-top a:hover {
	color: #A01F25;
}
.fotr-top ul {
	padding-left: 0;
	list-style: none;
	display: flex;
	gap: 40px;
	justify-content: center;
	align-items: center;
}
.fotr-top .wpb_content_element {
	margin-bottom: 0 !important;
}
.fotr-top {
	background: #000;
	color: #fff;
	padding: 2px 0;
}
.footer-top .vc_column-inner {
	padding-top: 0 !important;
}
.sitemap-wrapper a {
	color: #000;
}
.sitemap-wrapper a:hover {
	color: #A01F25;
}
.single-inner-location h1 {
	color: #000;
	font-size: 4.5rem;
}
.single-inner-location em a {
	font-size: 25px;
	color: #D9AB32;
	font-weight: 800;
}
.single-inner-location em a:hover {
	color: #A01F25;
}
.btn-list {
	list-style: none;
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	padding: 0;
}
.btn-list .comn-btn {
	text-transform: uppercase;
	border-radius: 30px;
	width: 230px;
	text-align: center;
}
.inner-location-map iframe {
	position: relative;
}
.inner-location-map .comn-btn {
	position: absolute;
	bottom: 50px;
	right: 25px;
	content: "";
	text-transform: uppercase;
}
.inner-location-map p {
	margin: 0 auto;
}
.location-page, .location-page h2 {
	color: #000;
}
.inner-table-row table {
	width: 100%;
}
.inner-table-row th, .inner-table-row td, .inner-table-row table {
	border: 0;
}
.inner-table-row td, .inner-menu-row {
	padding: 20px 0px;
	font-size: 22px;
	font-weight: 800;
	width: 50%;
	border-bottom: 1px solid #dddddd;
}
.inner-menu-row {
	width: 100%;
	border-bottom: 0;
}
.inner-menu-row hr {
	border: 0;
	border-bottom: 1px solid #ddd;
}
.inner-table-row td:nth-child(2) {
	text-align: right;
	color: #A01F25;
}
.inner-table-row td em, .inner-menu-row em {
	display: block;
	font-size: 14px;
	font-weight: normal;
}
.menu-left-sidebar {
	width: 30%;
	float: left;
}
.menu-content-area {
	width: 70%;
	float: right;
}
.menu-left-sidebar ul {
	list-style: none;
	padding: 0;
	margin-right: 20px;
}
.menu-left-sidebar ul a {
	background: #f1f2f3;
	width: 100%;
	display: inline-block;
	padding: 12px 20px;
	font-weight: 800;
	font-size: 20px;
	color: #000;
	margin-bottom: 10px;
}
.menu-left-sidebar ul a:hover, .menu-left-sidebar ul .current_page_item a {
	background: #A01F25;
	color: #fff;
}
.manu-content-page {
	margin-top: 30px;
}
.menu-content-area h1 {
	text-align: center;
}
.menu-content-area h4 {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
}
.menu-botm-area {
	background: #f1f2f3;
	padding: 10px 20px 25px;
}
.pum-theme-92 .pum-container img {
	text-align: center !important;
	margin: 0 auto;
	display: table;
}
.pizza-img img {
	width: 115px;
}
.page-id-14 .menu-content-area h1, .page-id-220 .menu-content-area h1 {
	display: none;
}
/******   Responsive   ******/
@media screen and (max-width: 1024px){
	.btn-row {
		gap: 2px;
		flex-direction: column;
	}
	.inner-location p {
		font-size: 16px;
		min-height: 96px;
	}
	.inner-location h3 {
		font-size: 2.8rem;
	}
	#testimonialrotator.owl-theme .owl-nav .owl-prev {
		left: -2px;
	}
	#testimonialrotator.owl-theme .owl-nav .owl-next {
		right: -2px;
	}
	.fotr-list li strong {
		font-size: 17px;
		margin-top: 30px;
	}
	.fotr-list li {
		font-size: 16px;
	}
	.site-nav {
		position: initial;
		background: transparent;
		width: auto;
		text-align: left;
 		z-index: 99;
	}
	.logo-menu {
		display: none;
	}
	nav > ul.slimmenu > li > a {
		border-radius: 0;
	}
	#logo {
		margin: 0;
	}
	#SR7_1_1 .custom.sr7-arrows {
		background: #A01F258C !important;
	}
	.wlcm-row p, .order-location-row p, .testimonial-row p {
		width: 100%;
	}
	.inner-location-map img {
		min-height: 212px;
		object-fit: cover;
	}
	.menu-item-has-children::after {
		top: 10px;
		right: 15px;
	}
	ul.slimmenu.collapsed li .sub-toggle {
		height: 40px;
		width: 50px;
		display: block;
	}
	ul.slimmenu li .sub-toggle {
		cursor: pointer;
		height: 100%;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 999;
	}
	ul.slimmenu.collapsed li > ul, ul.slimmenu li > ul {
		position: relative !important;
		left: 0;
		margin-top: 0 !important;
	}
}
@media screen and (max-width: 980px){
	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}
	.inner-location h3 {
		font-size: 2.5rem;
	}
	.footer-bottom {
		padding: 15px 0;
	}
	.fotr-list li img {
		width: 25%;
	}
	.fotr-list li {
		padding-left: 100px;
	}
	.fotr-list li strong {
		margin-top: 8px;
	}
	.fb-link img {
		width: 63% !important;
	}
	.fotr-list .card-row img {
		top: 0;
	}
	.footer-top {
		min-height: auto;
	}
	.fotr-top ul {
		gap: 25px;
	}
	.btn-list {
		flex-direction: column;
	}
}
@media screen and (max-width: 800px){
	.inner-location h3 {
		font-size: 2rem;
	}
	.wlcm-row h3 {
		font-size: 1.5rem;
	}
	.fotr-list {
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: column;
		gap: 35px;
	}
	.testimonial_rotator_description {
		min-height: auto;
	}
	.fotr-top ul {
		align-items: flex-start;
		flex-direction: column;
		gap: 15px;
	}
	.fotr-top {
		padding: 10px 0;
	}
}
@media screen and (max-width: 767px){
	fieldset.one-third.half, fieldset.one-third.one-third {
		width: 100%;
		margin-right: 0;
	}
	.sitemap-wrapper {
		grid-template-columns: 1fr;
	}
	.wlcm-row h2,.order-location-row h2  {
		margin-bottom: 25px;
	}
	.inner-location h3 {
		font-size: 3.5rem;
	}
	.inner-location p {
		font-size: 20px;
		min-height: auto;
	}
	#logo {
		margin: 0 auto;
		width: 120px;
		height: 120px;
	}
	#logo img {
		width: 110px;
	}
	.site-nav {
		padding-top: 0;
	}
	.inner-location-map img {
		min-height: auto;
	}
}

@media screen and (max-width: 600px){
	.testimonial-block {
		padding: 30px 100px 60px;
	}
}

@media screen and (max-width: 533px){
	.inner-table-row tr {
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	.inner-table-row td {
		width: 100%;
		border-bottom: 0;
	}
	.inner-table-row td:nth-child(2) {
		border-top: 0;
		font-size: 16px;
		border-bottom: 1px solid #ddd;
	}
	.menu-left-sidebar, .menu-content-area {
		width: 100%;
	}
}

@media screen and (max-width: 480px){
	img.alignright, img.alignleft {
		float: none;
		display: block;
		margin: auto auto 15px auto;
	}
	.icon-left, .icon-right {
		padding: 0px;
	}
	.testimonial-block {
		padding: 30px 70px 60px;
	}
}
@media screen and (max-width: 414px){
	span.break {
		display: block;
	}
	.wlcm-row h2, .order-location-row h2, .testimonial-row h2 {
		font-size: 3.5rem;
	}
}
@media screen and (max-width: 390px){
	.fotr-list li strong {
		margin-top: 0;
	}
}