/*!
Theme Name: WebRepairPros
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: webrepairpros
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

WebRepairPros is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
V1.1*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/*variables*/
:root {
    --content-width: 1200px;  /* matches wideSize */
    --content-padding: 20px;
	--accent-color: #f70c6e;
	--primary-dark: #0a0e27;
    --secondary-dark: #1a1a3e;
    --neon-green: #39ff14;
    --neon-pink: #ff0066;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}


/*_s common missing rule*/
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
}

/*a:visited {
	color: #800080;
} */

a:hover,
a:focus,
a:active {
	color: #191970;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* ========================================
   Gutenberg / Hybrid Theme Layout
======================================== */
/* Default content width for all top-level blocks that are not wide/full */
.entry-content > *:not(.alignwide):not(.alignfull) {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

/* Wide blocks */
.entry-content > .alignwide {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

/* Inner constrained content for full-width groups/covers */
.entry-content > .wp-block-group.alignfull > .wp-block-group__inner-container,
.entry-content > .wp-block-cover.alignfull > .wp-block-cover__inner-container {
	max-width: 760px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

/* Inner constrained content for wide groups/covers */
.entry-content > .wp-block-group.alignwide > .wp-block-group__inner-container,
.entry-content > .wp-block-cover.alignwide > .wp-block-cover__inner-container {
	max-width: 1200px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}



.entry-content {
	width: 100%;
	margin-top: 0em;
}

/* Full-width blocks */
.entry-content > .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
}
/* Consistent vertical spacing between top-level blocks */
.entry-content > * + * {
	margin-top: 2rem;
}

/* removing margin from groups and columns I will need to space on my own but but default can have sections but up against each other vertically which is more usefel on this specific design */
/*this can change when used on other themes*/
/*will incorporate bootstrap style spacing to use on blocks*/
.entry-content > .wp-block-group,
.entry-content > .wp-block-cover,
.entry-content > .wp-block-columns {
	margin-top: 0rem;
	margin-bottom: 0rem;
}

/* Responsive media */
.entry-content img,
.entry-content video,
.entry-content iframe {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Buttons */
.wp-block-button__link {
	border-radius: 4px;
	text-decoration: none;
}

/* Quotes */
.wp-block-quote {
	border-left: 4px solid #000;
	padding-left: 1rem;
	margin-left: auto;
	margin-right: auto;
}

/* Prevent horizontal scrolling from layout overflow */
/* Prevent horizontal scrolling from layout overflow */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

/*counteract margin rule on many elements by default so I can better control*/
:root :where(.is-layout-flow) > * {
	margin-block-start: unset;}


/* =======================================
 BEGIN custom styles
===========================================*/
/*=========================================
  BEGIN Include Bootsrap5 spacing classes
 =========================================*/
/* ========================================
   Spacing Utilities — Vertical Only
   0=0, 1=0.25rem, 2=0.5rem, 3=1rem, 4=1.5rem, 5=3rem
======================================== */

.mt-0  { margin-top: 0 !important; }
.mt-1  { margin-top: 0.25rem !important; }
.mt-2  { margin-top: 0.5rem !important; }
.mt-3  { margin-top: 1rem !important; }
.mt-4  { margin-top: 1.5rem !important; }
.mt-5  { margin-top: 3rem !important; }
.mt-auto { margin-top: auto !important; }

.mb-0  { margin-bottom: 0 !important; }
.mb-1  { margin-bottom: 0.25rem !important; }
.mb-2  { margin-bottom: 0.5rem !important; }
.mb-3  { margin-bottom: 1rem !important; }
.mb-4  { margin-bottom: 1.5rem !important; }
.mb-5  { margin-bottom: 3rem !important; }
.mb-auto { margin-bottom: auto !important; }

.my-0  { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1  { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2  { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3  { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4  { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5  { margin-top: 3rem !important; margin-bottom: 3rem !important; }

.pt-0  { padding-top: 0 !important; }
.pt-1  { padding-top: 0.25rem !important; }
.pt-2  { padding-top: 0.5rem !important; }
.pt-3  { padding-top: 1rem !important; }
.pt-4  { padding-top: 1.5rem !important; }
.pt-5  { padding-top: 3rem !important; }

.pb-0  { padding-bottom: 0 !important; }
.pb-1  { padding-bottom: 0.25rem !important; }
.pb-2  { padding-bottom: 0.5rem !important; }
.pb-3  { padding-bottom: 1rem !important; }
.pb-4  { padding-bottom: 1.5rem !important; }
.pb-5  { padding-bottom: 3rem !important; }

.py-0  { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1  { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2  { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3  { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4  { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5  { padding-top: 3rem !important; padding-bottom: 3rem !important; }


/*=========================================
  END Include Bootsrap5 spacing classes
 =========================================*/

/* ========================================
 General custom
=========================================== */

.accent-color-text{
	color:var(--accent-color);
}

.heavy-weight{font-weight:900;}

.blocked{
	display:block;
	line-height:1.4em;
}

.white-text{
	color:#ffffff!important;
}

.black-text{
	color:#000000!important;
}

/*BEGIN custom html block customizations*/
.sm-custom-html{
	max-width:var(--content-width);
	width:100%;
}
/*END custom html block customizations*/

.small-pink-border{
	height:6px;
	width:60px;
	margin:.5rem 0;
	background-color:var(--accent-color);
}
/* ========================================
Typogrophy
=========================================== */
h1, h2{font-size:3.75rem;
	line-height:1.2em;
font-weight:700;
margin:0;}

h4{margin:0;}
.fs-1-5{font-size:1.5rem;}

h2.biggest-text{
	font-size:2rem;
	line-height:1.4em;
}

h2.small-h2{
	font-size:1.5rem;
}

/* ========================================
   Header Layout
======================================== */

.site-header {
	width: 100%;
	background: #000000;
	border-bottom: 8px solid #f70c6e;
	position: relative;
	z-index: 100;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--content-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--content-padding);
	padding-right: var(--content-padding);
	height: 110px;
}

/* Column 1 — Logo */
.header-col--logo {
	flex: 0 0 auto;
}

.logo-wrapper img,
.logo-wrapper .custom-logo {
	display: block;
	width: auto;
	max-width: 320px;
	height: auto;
}

img.custom-logo{
	position:absolute; 
	top:0;
}

.logo-wrapper .site-title {
	margin: 0;
	font-size: 1.5rem;
}

.logo-wrapper .site-title a {
	text-decoration: none;
	color: inherit;
}

/* Right side wrapper — columns 2 & 3 together */
.header-col--right {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex: 0 0 auto;
}

/* Column 2 — CTA Button */
.cta-wrapper {
	display: flex;
	align-items: center;
}

.cta-button {
	display: inline-block;
	background: #f70c6e;
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	padding: 0.6em 1.4em;
	border-radius: 4px;
	white-space: nowrap;
	transition: background 0.2s ease, transform 0.15s ease;
	margin-top:24px;
}

.cta-button:hover,
.cta-button:focus {
	background: #c9005a;
	color: #fff;
	transform: translateY(-1px);
	outline: none;
}

.cta-button:active {
	transform: translateY(0);
}

/* Column 3 — Hamburger */
.hamburger-wrapper {
	display: flex;
	align-items: center;
}

.hamburger-toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 48px;
	height: 40px;
	position: relative;
}

.hamburger-bar {
	display: block;
	width: 32px;
	height: 4px;
	background: #FFFFFF;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform-origin: center;
}

/* Hamburger → X animation */
.hamburger-toggle.is-active .hamburger-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hamburger-toggle.is-active .hamburger-bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.hamburger-toggle.is-active .hamburger-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   Nav Drawer
======================================== */

/* Overlay */
.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 200;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

/* Drawer */
.nav-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 768px;
	max-width: 100%;
	background: #fff;
	z-index: 300;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
	z-index: 9999;
}

.nav-drawer.is-open {
	transform: translateX(0);
	
}

.nav-drawer-inner {
	padding: 80px 40px 40px;
}

/* Prevent body scroll when drawer is open */
body.nav-drawer-open {
	overflow: hidden;
}

/* Nav menu styles inside drawer */
.nav-drawer .main-navigation ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-drawer .main-navigation li {
	border-bottom: 1px solid #eee;
}

.nav-drawer .main-navigation a {
	display: block;
	padding: 1rem 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: #000;
	text-decoration: none;
	transition: color 0.2s ease;
}

.nav-drawer .main-navigation a:hover {
	color: #f70c6e;
}

/* ========================================
   Responsive
======================================== */

@media screen and (max-width: 768px) {

	.nav-drawer {
		width: 100%;
	}

	.logo-wrapper img,
	.logo-wrapper .custom-logo {
		max-width: 280px;
	}

	.cta-button {
		font-size: 0.8rem;
		padding: 0.5em 1em;
	}

	.nav-drawer-inner {
		padding: 80px 24px 40px;
	}
}

/*END HEADER STYLING*/

/* =========================================
 Home Page
========================================= */

/*Contact Form Styling home page top*/
input.wpcf7-form-control, textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: #000000;
}
.home-top-form-wrapper{
    padding: 1rem 1.5rem;
    background: #000000;
	border-radius:18px;
}

/* Contact Form 7 submit button — matches header CTA */
input.wpcf7-submit {
    display: inline-block;
    background: #f70c6e;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 1em 1.4em;
    border-radius: 4px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

input.wpcf7-submit:hover,
input.wpcf7-submit:focus {
    background: #c9005a;
    color: #fff;
    transform: translateY(-1px);
    outline: none;
}

input.wpcf7-submit:active {
    transform: translateY(0);
}

.wpcf7-form textarea{
	height:18ch;
}

/*End Contact Form Styling*/

/* Keep the hero section above the angled block */
.hero-section {
    position: relative;
    z-index: 2;
}

.hero-section{
	padding-top:50px;
}

.services{ 
	padding-bottom:60px;
}
/* Pull the green section up and angle the top edge */
/* *************************************************
 may need to alter this at different breakpoints
****************************************************/
.how-it-works.angled-section {
    position: relative;
    z-index: 1;
    margin-top: -140px!important;
    padding-top: 172px;
	
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
}

.angled-section.how-it-works {
    padding-bottom: 120px;
}


.services.angled-section {
    position: relative;
    z-index: 1;
    margin-top: -160px!important;
    padding-top: 190px;
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
}

.wordpress-specialists.angled-section {
    position: relative;
    z-index: 1;
    margin-top: -140px!important;
    padding-top: 100px;
	padding-bottom:140px;
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
}




/* ======================================================
 BEGIN Process steps on home page
======================================================== */

.process-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px 100px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.process-section .section-label,
.service-section .section-label,
.wordpress-specialist-section .section-label,
.carousel-section .section-label,
.faqs-section .section-label,
.contact-form-section .section-label{
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f70c6e;
    margin-bottom: 12px;
}

.process-section .section-title,
.contact-form-section .section-title{
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #111;
    margin: 0 0 16px;
    line-height: 1.15;
}

.process-section .section-subtitle,
.contact-form-section .section-subtitle{
    font-size: 1.05rem;
    color: #666;
    margin: 0 0 48px;
    max-width: 520px;
    line-height: 1.6;
}


.service-section .section-title{
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #FFF;
    margin: 0 0 16px;
    line-height: 1.15;
}

.service-section .section-subtitle{
    font-size: 1.05rem;
    color: #FFF;
    margin: 0 0 48px;
    max-width: 660px;
    line-height: 1.6;
}




.wordpress-specialist-section .section-title{
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #111;
    margin: 0 0 16px;
    line-height: 1.15;
}


.wordpress-specialist-section .section-subtitle{
    font-size: 1.05rem;
    color: #666;
    margin: 0 0 48px;
    line-height: 1.6;
}


/* ── Two column grid: cards left, image right ── */
.process-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}
/* ── Image column ── */


.process-image-wrapper {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-image-wrapper.is-visible {
    opacity: 1;
    transform: scale(1);
}

.process-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}


/* ── Cards container ── */
.process-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Each card */
.process-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    position: relative;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}



/* Animated in state */
.process-card.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Step number badge */
.process-card .step-number {
    position: absolute;
    top: -12px;
    left: 32px;
    background: #f70c6e;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Icon wrapper */
.process-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #fff4f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.process-icon svg {
    width: 28px;
    height: 28px;
    color: #f70c6e;
}

/* Card text */
.process-card-body {
    flex: 1;
}

.process-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
    line-height: 1.3;
}

.process-card-body p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .process-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-image-col {
        position: static;
        max-width: 480px;
        margin: 0 auto;
    }

    .process-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .process-section {
        padding: 60px 16px 80px;
    }

    .process-card {
        flex-direction: column;
        gap: 16px;
        padding: 28px 24px;
    }

    .process-section .section-subtitle {
        margin-bottom: 48px;
    }
}

/* =======================================================
 END Process Steps from home page
========================================================= */

/*process area*/

.cta-wrapper.content-cta-wrapper{
	justify-content:center!important;
}

.cta-wrapper.content-cta-wrapper .cta-button{
	margin-top:0px;
	font-size: 1.125rem;
    font-weight: 600;
}

/* =====================================================
 BEGIN home page service tabs
 ======================================================= */
.services-tabs {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    min-height: 420px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ── Left: Tab list ── */
.services-tab-list {
    display: flex;
    flex-direction: column;
    border-right: 2px solid #f0f0f0;
    padding-right: 0;
}

.services-tab-btn {
    display: flex;
    align-items: center;
    gap: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 30px 24px 30px 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFF;
    line-height: 1.3;
    position: relative;
    transition: color 0.25s ease;
    overflow: hidden;
}

.services-tab-btn:hover {
    color: #f383b2;
}

.services-tab-btn.is-active {
    color: #f70c6e;
}

/* Active indicator bar on the right edge */
/*
.services-tab-btn::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #f70c6e;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
*/

.services-tab-btn.is-active::after {
    transform: scaleY(1);
}

/* Arrow that slides in after tab text */
.tab-arrow {
    display: inline-block;
    margin-left: 10px;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
    color: #f70c6e;
    font-size: 2.75rem;
    line-height: 1;
    flex-shrink: 0;
	margin-top:-10px;
}

.services-tab-btn.is-active .tab-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ── Right: Tab panels ── */
.services-tab-panels {
    padding: 8px 0 8px 48px;
    position: relative;
}

.services-tab-panel {
    opacity: 0;
    position: absolute;
    top: 8px;
    left: 48px;
    right: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.services-tab-panel.is-active {
    opacity: 1;
    position: relative;
    top: auto;
    left: auto;
    pointer-events: auto;
}

/* Panel graphic placeholder */
.tab-panel-graphic {
    width: 100%;
    max-width: 100%;
    height: 400px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff0f6 0%, #ffe8f3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    overflow: hidden;
}

.tab-panel-graphic svg {
    width: 64px;
    height: 64px;
    color: #f70c6e;
    opacity: 0.6;
}

.tab-panel-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFF;
    margin: 0 0 14px;
    line-height: 1.2;
}

.tab-panel-body p {
    font-size: 0.97rem;
    color: #FFF;
    line-height: 1.7;
    margin: 0 0 12px;
    max-width: 100%;
}

.tab-panel-body p:last-child {
    margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 760px) {
    .services-tabs {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .services-tab-list {
        flex-direction: row;
        flex-wrap: wrap;
        border-right: none;
        border-bottom: 2px solid #f0f0f0;
        gap: 4px;
        padding-bottom: 0;
        margin-bottom: 32px;
    }

    .services-tab-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .services-tab-btn::after {
        right: auto;
        bottom: -2px;
        top: auto;
        width: 100%;
        height: 3px;
        transform: scaleX(0);
    }

    .services-tab-btn.is-active::after {
        transform: scaleX(1);
    }

    .tab-arrow {
        display: none;
    }

    .services-tab-panels {
        padding: 0;
    }

    .services-tab-panel {
        left: 0;
    }
}

/* =====================================================
 END home page service tabs
 ======================================================= */


.home-top-form-wrapper {
    transform: translateY(340px);
    animation: formSlideUp 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes formSlideUp {
    to {
        transform: translateY(0);
    }
}


/* =======================================
 home page hero section
========================================= */

/*this first hero section rule overrides current alignfull rules for the section*/
.hero-section {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
	
}

/* ── Hero inner layout ──
   Stacked by default on all screen sizes.
   Side-by-side only on very large screens (1600px+)
   where there is enough room alongside the form column.
-------------------------------------------------- */
.hero-inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-inner-wrap .hero-left {
    width: 100%;
    min-width: 0;
}

.hero-inner-wrap .laptop-section {
    width: 100%;
    min-width: 0;
}

/* Side-by-side layout only on screens 1600px and wider */
@media (min-width: 1600px) {
    .hero-inner-wrap {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
    }
    .hero-inner-wrap .hero-left {
        flex: 1 1 auto;
        width: auto;
    }
    .hero-inner-wrap .laptop-section {
        flex: 0 0 auto;
        width: 30%;
    }
}

/* Laptop wrapper: position context for floating cards */
.laptop-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.laptop-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating status cards */
.status-card {
	z-index: 1;
    position: absolute;
    background: rgba(10, 14, 39, 0.85);
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.2rem;
    color: var(--neon-green);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

.status-icon { color: var(--neon-green); }

/* Card positions */
.status-card-1 {
    top: 18%;
    right: -40px;
    animation: floatRight 4s ease-in-out infinite;
}

.status-card-2 {
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    animation: floatLeft 4s ease-in-out infinite 0.4s;
}

.status-card-3 {
    bottom: 22%;
    right: -40px;
    animation: floatRight 4s ease-in-out infinite 0.8s;
}

/* ── Animations ── */
@keyframes floatRight {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(12px); }
}

@keyframes floatLeft {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50%       { transform: translateY(-50%) translateX(-12px); }
}

/* Trust bar */
.trust-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0.75rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    width: fit-content;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 1.125rem;
    font-weight: 500;
    white-space: nowrap;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--neon-green);
    flex-shrink: 0;
}

/* CTA buttons */
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Neon green glow on form — hover only */
.home-top-form-wrapper {
    border: 2px solid transparent;
    border-radius: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-top-form-wrapper {
    border-color: var(--neon-green);
    box-shadow:
        0 0 8px #39ff14,
        0 0 20px rgba(57, 255, 20, 0.5),
        0 0 40px rgba(57, 255, 20, 0.25);
}

/* ── Responsive: status cards ── */
@media (max-width: 600px) {
    .status-card {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .status-card {
        display: none;
    }
    .trust-bar {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
}

/*set BG for home page*/
.home .entry-content{
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, #0f1428 100%);
}

/*adjust some of the images in the tabs*/

.tab-panel-graphic.adjust-up img {
    transform: translateY(45px);
}

/*adjust the hero content up at weird breakpoint*/
@media (min-width: 782px){
.hero-inner-wrap {
    margin-top: -110px !important;
}
}


/* =============================================
   WRP FOOTER
============================================= */
.wrp-footer {
    background-color: #000;
    padding: 50px 0 0 0;
}

.wrp-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

/* COLUMNS */
.wrp-footer-col {
    flex: 1;
}

/* COLUMN 1 */
.wrp-footer-logo-wrap {
    margin-bottom: 0px;
}

.wrp-footer-logo-link {
    display: inline-block;
}

.wrp-footer-logo-img {
    max-width: 75%;
    height: auto;
}

.wrp-footer-site-name {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.wrp-footer-tagline {
    color: #fff;
    font-size: 13px;
    margin-bottom: 10px;
}

.wrp-footer-phone-link,
.wrp-footer-email-link {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.wrp-footer-phone-link:hover,
.wrp-footer-email-link:hover {
    color: #fff;
}

.wrp-footer-phone,
.wrp-footer-email {
    margin-bottom: 8px;
}

.wrp-footer-contact-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 0.6em 1.4em;
    background: #f70c6e;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
}

.wrp-footer-contact-btn:hover {
    background: #d0065a;
    color: #fff;
}

/* COLUMN 2 */
.wrp-footer-col-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f70c6e;
}

.wrp-footer-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wrp-footer-services-item {
    margin-bottom: 8px;
}

.wrp-footer-services-link {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.wrp-footer-services-link:hover {
    color: var(--neon-pink);
}

/* COLUMN 3 */
.wrp-footer-col-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
}

/* FOOTER BOTTOM BAR */
.wrp-footer-bottom {
    margin-top: 40px;
    background-color: #111;
    padding: 15px 0;
}

.wrp-footer-bottom-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrp-footer-copyright {
    color: #999;
    font-size: 13px;
}

/* =============================================
   WRP FOOTER - MOBILE STACK
============================================= */
@media ( max-width: 768px ) {
    .wrp-footer-inner {
        flex-direction: column;
        gap: 30px;
    }

    .wrp-footer-col {
        width: 100%;
    }
}



/* =============================================
   WRP PLATFORM CAROUSEL
============================================= */
.wrp-carousel-wrap {
    padding: 40px 0;
    width: 100%;
    overflow: hidden;
}

.wrp-platform-swiper {
    width: 100%;
    padding-bottom: 0px !important;
}

.wrp-carousel-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrp-carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border: none;
    border-radius: 8px;
    width: 100%;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.wrp-carousel-item:hover {
    border-color: #f70c6e;
    box-shadow: 0 4px 12px rgba(247, 12, 110, 0.1);
}

.wrp-carousel-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.wrp-carousel-item:hover .wrp-carousel-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.wrp-carousel-label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-align: center;
}

/* TEXT FALLBACK FOR LOGOS WITHOUT SIMPLE ICONS ENTRY */
.wrp-carousel-item-text .wrp-carousel-text-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f70c6e;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
}

/* SWIPER NAVIGATION COLORS */
.wrp-swiper-prev,
.wrp-swiper-next {
    color: #f70c6e !important;
}

.wrp-swiper-prev::after,
.wrp-swiper-next::after {
    font-size: 18px !important;
}

.wrp-swiper-pagination .swiper-pagination-bullet-active {
    background: #f70c6e !important;
}

/* hide the pagination bullets on carousel */
.swiper-pagination{display:none;}

/* =============================================
   WRP FAQ ACCORDION
============================================= */
.wrp-faq-wrap {
    width: 100%;
    padding: 40px 0;
}

.wrp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e0e0e0;
}

.wrp-faq-item {
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

/* QUESTION BUTTON */
.wrp-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 50px 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.wrp-faq-question:hover {
    color: #f70c6e;
}

.wrp-faq-item-open .wrp-faq-question {
    color: #f70c6e;
}

/* PLUS / MINUS ICON */
.wrp-faq-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #f70c6e;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.wrp-faq-icon::before,
.wrp-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #f70c6e;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal bar */
.wrp-faq-icon::before {
    width: 10px;
    height: 2px;
}

/* Vertical bar */
.wrp-faq-icon::after {
    width: 2px;
    height: 10px;
}

/* Rotate vertical bar to 0 when open (making it a minus) */
.wrp-faq-item-open .wrp-faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.wrp-faq-item-open .wrp-faq-icon {
    background-color: #f70c6e;
}

.wrp-faq-item-open .wrp-faq-icon::before,
.wrp-faq-item-open .wrp-faq-icon::after {
    background-color: #fff;
}

/* ANSWER */
.wrp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.wrp-faq-answer-inner {
    padding: 0 50px 20px 0;
}

.wrp-faq-answer-inner p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* =============================================
   WRP FAQ - MOBILE
============================================= */
@media ( max-width: 768px ) {
    .wrp-faq-question {
        font-size: 15px;
        padding: 16px 40px 16px 0;
    }

    .wrp-faq-answer-inner {
        padding: 0 40px 16px 0;
    }
}



/* =============================================
   CONTACT US PAGE
 ================================================ */

/* =============================================
   WRP CONTACT SIDEBAR
============================================= */
.wrp-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

.wrp-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    border-left: 4px solid #f70c6e;
    transition: background-color 0.2s ease;
}

.wrp-sidebar-item:last-child {
    border-bottom: none;
}

.wrp-sidebar-item:hover {
    background-color: #fdf5f9;
}

.wrp-sidebar-item-icon {
    width: 44px;
    height: 44px;
    background-color: #fde8f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wrp-sidebar-item-icon svg {
    width: 20px;
    height: 20px;
    fill: #f70c6e;
}

.wrp-sidebar-item-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    margin-bottom: 6px;
}

.wrp-sidebar-item-value {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
}

.wrp-sidebar-item-value a {
    color: #222;
    text-decoration: none;
}

.wrp-sidebar-item-value a:hover {
    color: #f70c6e;
}

.wrp-sidebar-item-sub {
    font-size: 12px;
    color: #aaa;
    margin-top: 4px;
}

/* MOBILE */
@media ( max-width: 768px ) {
    .wrp-contact-sidebar {
        width: 100%;
    }
}

/* ================================================
 CCONTACT FORM
==================================================== */

.ct-other-platform-wrap {
    display: none;
    margin-top: 8px;
    transition: all 0.2s ease;
}

.ct-other-platform-wrap input {
    width: 100%;
    padding: 13px 15px;
    background-color: #f5f5f5;
    border: 1px solid #f70c6e;
    border-radius: 3px;
    font-size: 14px;
    color: #444;
    outline: none;
    box-sizing: border-box;
}

.ct-other-platform-wrap input:focus {
    background-color: #fff;
}

.wpcf7 {
    width: 100%;
}

.wpcf7 .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ALL INPUTS, SELECT, TEXTAREA */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 13px 15px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #444;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: #f70c6e;
    background-color: #fff;
}

/* PLACEHOLDER */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #aaa;
    font-size: 14px;
}

/* SELECT */
.wpcf7 select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23aaa' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
    color: #aaa;
}

.wpcf7 select:focus {
    color: #444;
}

/* TEXTAREA */
.wpcf7 textarea {
    height: 150px;
    resize: vertical;
}

/* HALF WIDTH ROW */
.ct-form-row-half {
    width: 100%;
}

.ct-form-row-half p {
    display: flex !important;
    flex-direction: row !important;
    gap: 14px;
    margin: 0;
}

.ct-form-row-half p br {
    display: none !important;
}

.ct-form-row-half p > span.wpcf7-form-control-wrap {
    display: block !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.ct-form-row-half p > span.wpcf7-form-control-wrap input {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* REMOVE DEFAULT P MARGINS */
.wpcf7 p {
    margin: 0;
}

/* FORM CONTROL WRAP */
.wpcf7 .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* SUBMIT BUTTON */
.wpcf7 input[type="submit"] {
    display: inline-block;
    background: #f70c6e;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    width: auto;
    align-self: flex-start;
}

.wpcf7 input[type="submit"]:hover {
    background: #d0065a;
}

/* VALIDATION ERRORS */
.wpcf7 .wpcf7-not-valid {
    border-color: #f70c6e !important;
    background-color: #fff !important;
}

.wpcf7 .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #f70c6e;
    margin-top: 4px;
    display: block;
}

/* RESPONSE OUTPUT */
.wpcf7 .wpcf7-response-output {
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 3px;
    margin: 0 !important;
    border: none !important;
}

.wpcf7 .wpcf7-mail-sent-ok {
    background-color: #eafaf1;
    color: #1e7e34;
}

.wpcf7 .wpcf7-validation-errors {
    background-color: #fde8f2;
    color: #f70c6e;
}

/* MOBILE */
@media ( max-width: 600px ) {
    .ct-form-row-half p {
        flex-direction: column !important;
        gap: 14px;
    }
}
/* =============================================
   WRP CONTACT FORM
============================================= */
.wpcf7 {
    width: 100%;
}

.wpcf7 .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ALL INPUTS, SELECT, TEXTAREA */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 13px 15px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #444;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: #f70c6e;
    background-color: #fff;
}

/* PLACEHOLDER */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #aaa;
    font-size: 14px;
}

/* SELECT */
.wpcf7 select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23aaa' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
    color: #aaa;
}

.wpcf7 select:focus {
    color: #444;
}

/* TEXTAREA */
.wpcf7 textarea {
    height: 150px;
    resize: vertical;
}

/* HALF WIDTH ROW */
.ct-form-row-half {
    width: 100%;
}

.ct-form-row-half p {
    display: flex !important;
    flex-direction: row !important;
    gap: 14px;
    margin: 0;
}

.ct-form-row-half p br {
    display: none !important;
}

.ct-form-row-half p > span.wpcf7-form-control-wrap {
    display: block !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.ct-form-row-half p > span.wpcf7-form-control-wrap input {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* REMOVE DEFAULT P MARGINS */
.wpcf7 p {
    margin: 0;
}

/* FORM CONTROL WRAP */
.wpcf7 .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* SUBMIT BUTTON */
.wpcf7 input[type="submit"] {
    display: inline-block;
    background: #f70c6e;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    width: auto;
    align-self: flex-start;
}

.wpcf7 input[type="submit"]:hover {
    background: #d0065a;
}

/* VALIDATION ERRORS */
.wpcf7 .wpcf7-not-valid {
    border-color: #f70c6e !important;
    background-color: #fff !important;
}

.wpcf7 .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #f70c6e;
    margin-top: 4px;
    display: block;
}

/* RESPONSE OUTPUT */
.wpcf7 .wpcf7-response-output {
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 3px;
    margin: 0 !important;
    border: none !important;
}

.wpcf7 .wpcf7-mail-sent-ok {
    background-color: #eafaf1;
    color: #1e7e34;
}

.wpcf7 .wpcf7-validation-errors {
    background-color: #fde8f2;
    color: #f70c6e;
}

/* MOBILE */
@media ( max-width: 600px ) {
    .ct-form-row-half p {
        flex-direction: column !important;
        gap: 14px;
    }
}



/* =============================================
   SUB-PAGE TITLE BANNER
============================================= */
body:not(.home) .entry-header {
    background-color: #111;
    padding: 40px 0;
    width: 100%;
    margin-bottom: 40px;
}

body:not(.home) .entry-header .entry-title {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0x;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
} 

/* =============================================
   WRP FIXED HEADER
============================================= */
#masthead {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

#masthead.wrp-header-fixed {
    position: fixed;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Prevents content jumping up when header becomes fixed */
body.wrp-header-is-fixed {
    padding-top: 80px;
}

#masthead {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: box-shadow 0.3s ease, background-color 0.3s ease, transform 0.35s ease;
}

#masthead.wrp-header-fixed {
    position: fixed;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    animation: wrp-slide-down 0.35s ease forwards;
}

#masthead.wrp-header-fixed img.custom-logo{
	max-height:100px;
}

@keyframes wrp-slide-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

body.wrp-header-is-fixed {
    padding-top: 80px;
}





/* Bottom row: guarantee 2/3, laptop 1/3 */
.process-bottom-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 28px;
}

/* Guarantee banner */
.process-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, #fff4f9 0%, #ffeaf4 100%);
    border-left: 5px solid #f70c6e;
    border-radius: 16px;
    padding: 36px 40px;
    height: 100%;
    box-sizing: border-box;
}

.guarantee-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f70c6e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.guarantee-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.guarantee-body {
    flex: 1;
}

.guarantee-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f70c6e;
    margin-bottom: 8px;
}

.guarantee-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
    line-height: 1.3;
}

.guarantee-body p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 760px) {
    .process-bottom-row {
        grid-template-columns: 1fr;
    }
}




.process-section > .cta-wrapper.content-cta-wrapper {
    margin-top: 40px;
    justify-content: center;
}