/*!
Theme Name: Plumberoo
Theme URI: http://underscores.me/
Author: Dalma Lipcsei
Author URI: https://dalmart.co.uk/
Description: A custom theme built for Plumberoo.
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: plumberoo
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.

Plumberoo 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.
*/

/* Small only */
@media screen and (max-width: 39.9375em) {}

/* Medium and up */
@media screen and (min-width: 40em) {}

/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {}

/* Large and up */
@media screen and (min-width: 64em) {}

/* Large only */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {}

/*** colors ***/
:root {
	--light-blue: #41C5FF;
	--light-blue-text: #80DAFF;
	--dark-blue: #0D56AB; 
	--white: #fff;
	--black: #151515;
	--dark-grey: #757575;
	--light-grey: #f5f5f5;
	--yellow: #FEE25F;
	--border-grey: #ebebeb;
}

html, body{
	scroll-behavior: smooth;
}

/*** fade-in text ***/
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
/*** scroll up drop ***/
.fixed-drop {
	position: fixed;
	right: 25px;
	bottom: -90px;
	z-index: 1;
	transition: 0.5s ease-in-out;
	fill: var(--light-blue);
	filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.15));
	width: 60px;
	height: auto;
}
.fixed-drop.drop-appear {
  bottom: 25px;
}
.scroll-up-link {
	cursor: pointer;
	position: relative;
	z-index: 2;
}
.scroll-up-link:hover .fixed-drop {
	fill: var(--dark-blue);
}

/*** general ***/
#page {
	overflow: hidden;
}
body {
	font-size: 18px;
}
section {
	padding: 5.5rem 0;
	scroll-margin-top: 5.5rem;
}
.stroke {
	color: var(--light-blue);
}
.stroke-dark {
	color: var(--dark-blue);
}
.limit-width {
	max-width: 620px;
    margin-right: auto;
    margin-left: auto;
}

/* Small only */
@media screen and (max-width: 39.9375em) {
	section {
		padding: 2rem 0;
		scroll-margin-top: 2rem;
	}
}

/*** button styles ***/

/* primary button - blue */
.primary-button,
.wp-block-button__link {
  color: var(--white) !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  overflow: hidden;
  text-transform: uppercase;
  border: 1.5px solid var(--dark-blue);
  transition: 0.5s ease-in-out;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
  padding: 25px 50px;
  border-radius: 0px !important;
}
.primary-button:before,
.wp-block-button__link:before {
  content: "";
  position: absolute;
  top: 0 !important;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 89.55px solid var(--dark-blue);
  transform: translateX(0%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
.primary-button:hover,
.wp-block-button__link:hover {
  color: var(--dark-blue) !important;
}
.primary-button:hover:before,
.wp-block-button__link:hover:before {
  transform: translateX(-100%);
}

/* get a quote button */
.get-a-quote a{
  color: var(--white) !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  overflow: hidden;
  text-transform: uppercase;
  border: 1.5px solid var(--dark-blue);
  transition: 0.5s ease-in-out;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
}
.get-a-quote a:before {
  content: "";
  position: absolute;
  top: 0 !important;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 89.55px solid var(--dark-blue);
  transform: translateX(0%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
.get-a-quote a:hover {
  color: var(--dark-blue) !important;
}
.get-a-quote a:hover:before {
  transform: translateX(-100%);
}
.get-a-quote a {
	padding: 12px 18px 9px 18px !important;
}

/* secondary button - yellow */ 
.secondary-button {
  color: var(--black);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  overflow: hidden;
  text-transform: uppercase;
  border: 1.5px solid var(--yellow);
  transition: 0.5s ease-in-out;
  padding: 25px 50px;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
}
.secondary-button:active {
	color: var(--black);
}
.secondary-button:before {
  content: "";
  position: absolute;
  top: 0 !important;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 89.55px solid var(--yellow);
  transform: translateX(0%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
.secondary-button:hover {
  color: var(--yellow);
}
.secondary-button:hover:before {
  transform: translateX(-100%);
}
.secondary-button svg {
	position: relative;
    top: -1px;
    width: 17px;
    height: auto;
    transition: fill 0.5s ease-in-out;
}

.secondary-button:hover svg {
	fill: var(--yellow);
}
.secondary-button.button-small {
	padding: 10px 15px;
    text-transform: unset;
    font-weight: 500;
    font-size: 16px;
 }
 .secondary-button.button-small:hover {
	 color: var(--black);
 }
/* Small only */
@media screen and (max-width: 39.9375em) {
	.secondary-button {
		padding: 18px;
		font-size: 16px;
	}
}


/* Menu Styles */
header.site-header {
	background: var(--light-grey);
	position: relative;
	z-index: 5;
/* 	transition: all 1s; */
}
header.site-header.fixed {
	position: fixed;
	top: 0;
	left: 0;
    box-shadow: rgb(0 0 0 / 8%) 0px 9px 22px;
    z-index: 5;
}
.menu-container {
	position: relative;
}
/*** site-branding ***/
.site-branding {
	position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 20px 16px 0;
    max-width: 260px;
    min-width: 200px;
    z-index: 1;
    transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
}
.site-branding svg{
    max-width: 260px;
    width: 100%;
    display: block;
}
@media screen and (min-width: 1200px) {
	.site-branding {
		max-width: 325px;
		min-width: 280px;
	}
}

.site-branding:before {
	position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    background: #ffffff;
    transform: skewX(16deg);
    transform-origin: 50% 100%;
    will-change: transform;
    pointer-events: none;
    z-index: -1;
}

/*** navbar right ***/
.navbar-right {
	flex-grow: 1;
}

/*** navbar-aside ***/
.navbar-aside {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    z-index: 1;
    transition: all 1s ease;

}
.navbar-aside::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: -21px;
    width: 100vw;
    background: var(--yellow);
    transform: skewX(16deg);
    transform-origin: 50% 90%;
    will-change: transform;
    pointer-events: none;
    z-index: -1;
    
}
.site-header.fixed .navbar-aside {
	display: none;
}
.site-branding {
	transition: 0.5s ease;
}


/*** navbar contacts ***/
.navbar-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: -5px;
    margin-left: -30px;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .075em;
    font-weight: 600;
    list-style: none;
}
.navbar-contacts li {
	margin-right: clamp(0.625rem, 3.6vw, 50px);
}
.navbar-contacts li a {
	display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
    padding-top: 10px;
    padding-bottom: 13px;
}

.navbar-contacts li a svg {
	width: 20px;
	height: auto;
}
@media (min-width: 1200px) {
	.navbar-contacts {
	    font-size: 16px;
	    margin-bottom: -5px;
	    margin-left: -50px;
	}
}

/*** social share ***/
.social-share {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
}
.social-share li {
	margin-left: 15px;
}
.social-share li a svg {
	display: block;
	max-height: 24px;
	width: 24px;
}
.social-share li a svg,
.footer-first-column a svg rect,
.footer-first-column a svg path {
	transition: fill 0.2s ease-in-out;
}

.social-share li a:hover svg, .navbar-contacts li a:hover, .navbar-contacts li a:hover svg {
	fill: var(--dark-blue);
	color: var(--dark-blue);
}

.footer-first-column a:hover svg rect {
	fill: var(--light-blue);
}

.footer-first-column a:hover svg path {
	fill: var(--dark-blue);
}

#menu-footer .menu-item{
	line-height: 1.3;
	margin-bottom: 12px;
}

/*** mega menu styles ***/
header .menu .sub-menu-heading > a {
	font-size: 18px;
    text-transform: uppercase;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 20px;
}
.dropdown-menu > .sub-menu {
	display: flex;
}
.sub-menu {
	list-style: none;
	margin-left: 0;
}

/*** menu list ***/
.menu-menu-1-container {
	display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 20px;
    transition: all .3s ease;
}
header .menu-item:not(.sub-menu-item) {
    margin-left: clamp(0.625rem, 6vw, 86px);
}
header .menu-item {
	font-family: 'Catamaran', sans-serif;
	font-weight: 600;
}
header .menu-item:first-of-type {
    margin-left: 0px;
}
header .get-a-quote > a {
    padding: 10px 10px 8px !important;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 10px;
}
button.hamburger {
	display: none;
}
/*** border-bottom for active + hover menu items ***/
.menu-item {
	position: relative;
}
#primary-menu .menu-item.current-menu-item a::before {
    right: 0;
    opacity: 1;
    width: 100%;
    transition: right .3s ease, width .3s ease .3s;
    bottom: 0px;
    height: 6px;
    background: var(--light-blue);
    content: "";
}
header .menu-item:not(.sub-menu-item):not(.get-a-quote) > a::before {
	position: absolute;
    content: '';
	bottom: 0px;
    height: 6px;
    background: var(--light-blue);
    opacity: 0;
    transition: all .2s ease, right 0s ease .2s;
    right: 100%;
    width: 10px;
}

header .menu-item.menu-item-has-children:not(.sub-menu-item):not(.get-a-quote) > a::before {
    bottom: -19px !important;
}

/* Medium and up */
@media screen and (min-width: 1025px) {
	header .menu-item:not(.sub-menu-item) {
		align-self: stretch;
	    display: flex;
	    align-items: center;
	}
	header .menu-item:not(.sub-menu-item):hover:not(.get-a-quote) > a::before {
	    right: 0;
	    opacity: 1;
	    width: 100%;
	    transition: right .2s ease, width .2s ease .2s;
	    position: absolute;
	    content: '';
	    background: var(--light-blue);
	}
}

/* Medium and down */
@media screen and (max-width: 800px) {
	.navbar-aside {
		display: none;
	}
	.site-branding {
		margin-bottom: 0;
	}
}
/* Small only */
@media screen and (max-width: 39.9375em) {
	.site-branding {
		max-width: initial;
	}
	
}



/*** get a quote button ***/
.site-header {
    width: 100%;
}
.menu-container.grid-container {
	display: flex;
    width: 100%;
    max-width: 1200px;
}
.site-branding img {
	max-width: 220px;
	height: auto;
}
/* Small only */
@media screen and (max-width: 39.9375em) {
	.site-branding img {
		max-width: 160px;
		height: auto;
	}
}


/* 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: #f1f1f1;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}
/*** desktop dropdown ***/
@media screen and (min-width: 1025px) {
	
	.menu .menu-contact {
		background: #F3C566;
	    border: 1px solid;
	    margin-left: 1rem;
	    position: relative;
		top: -2px;
		margin-left: 1rem;
		transition: opacity 0.2s ease;

	}
	.menu .menu-contact:hover {
		opacity: 0.8;
	}
	.menu .menu-contact a {
		position: relative;
		top: 2px;
	}
	.menu .menu-contact a:hover {
		color: #313C8E;
	}
	
	
	.menu-item-has-children {
		position: relative;
		z-index: 1;
	}

	.menu-item-has-children a {
		display: initial;
		position: relative;
		z-index: 2;
	}

	.menu-item-has-children:hover {
		z-index: 2;
	}

	.menu-item-has-children:hover .sub-menu {
		pointer-events: auto;
	}

	.menu-item-has-children:hover .sub-menu a {
		pointer-events: auto !important;
		padding-right: 0;
		padding-left: 0;
	}

	.menu-item-has-children:hover .sub-menu:before,
	.menu-item-has-children:hover .sub-menu .menu-item {
		opacity: 1;
		transform: translateX(0);
		min-width: 148px;
	}
	
	 .menu-item-has-children.sub-menu-item{
		 margin-bottom: 0 !important;
	 }

	.menu-item-has-children:hover .sub-menu .menu-item:first-child {
		transition-delay: 0s;
	}

	.menu-item-has-children:hover .sub-menu .menu-item:nth-child(2) {
		transition-delay: 0.05s;
	}

	.menu-item-has-children:hover .sub-menu .menu-item:nth-child(3) {
		transition-delay: 0.1s;
	}

	.menu-item-has-children:hover .sub-menu .menu-item:nth-child(4) {
		transition-delay: 0.15s;
	}

	.menu-item-has-children:hover .sub-menu .menu-item:nth-child(5) {
		transition-delay: 0.2s;
	}

	.menu-item-has-children:hover .sub-menu .menu-item:nth-child(6) {
		transition-delay: 0.25s;
	}

	.menu-item-has-children:hover .sub-menu .menu-item:nth-child(7) {
		transition-delay: 0.3s;
	}

	.menu-item-has-children:hover .sub-menu .menu-item:nth-child(8) {
		transition-delay: 0.35s;
	}

	.menu-item-has-children:hover .sub-menu .menu-item:nth-child(9) {
		transition-delay: 0.4s;
	}

	.menu-item-has-children:hover .sub-menu .menu-item:nth-child(10) {
		transition-delay: 0.45s;
	}

	.dropdown-menu > .sub-menu {
		display: flex;
		align-items: flex-start;
		list-style: none;
		margin-left: 0;
		position: absolute;
		min-width: 100%;
		left: -400%;
		top: 100%;
		z-index: 1;
		padding: 30px;
		pointer-events: none;
		gap: clamp(1rem, 4vw, 2rem);
	}
	
	.sub-menu a {
		pointer-events: none !important;
		transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
		-webkit-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.sub-menu a:hover {
		transform: translateX(0.3125rem);
	}

	.dropdown-menu > .sub-menu:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		pointer-events: none;
		background-color: #fff;
		transform: translateX(1rem);
		box-shadow: 0 29px 31px -3px #0000001f;
	}

	.sub-menu:before,
	.sub-menu .menu-item {
		opacity: 0;
		transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
		transition-property: opacity, transform;
	}

	.sub-menu .menu-item {
		position: relative;
		transform: translateX(0.5rem);
		transition-delay: 0s;
		margin-bottom: 12px;
	}

	.sub-menu .menu-item a {
	    max-width: 220px;
	    line-height: 1.3;
		display: block;
		font-size: 16px;
		font-weight: 500;
	}
	.sub-menu .menu-item a:hover {
		color: var(--light-blue);
	}
	.sub-menu .menu-item a br {
		display: none;
	}
}


@media screen and (min-width: 1024px) and (max-width: 1390px) {
	.dropdown-menu > .sub-menu {
		left: -585%;
	}
}

/*** tablet and mobile menu ***/
@media screen and (max-width: 1024px) {
	
	.openNav #primary {
		opacity: 0.75;
		transition: 1s ease;
	}
	
	header.site-header {
		position: fixed;
		top: 0;
		left: 0;
	}
	
	.openNav body {
		overflow-y: hidden;
	}
	button.hamburger {
		display: block;
	}
	#site-navigation {
		display: flex;
		justify-content: flex-end;
	}
	.menu-menu-1-container {
		position: relative;
	}
	
	.sub-menu .menu-item a {
		line-height: 1.5 !important;
		font-size: 14px;
		padding: 9px 56px 9px 20px;
	}

	.menu-menu-1-container ul {
		margin: 0;
		list-style: none;
	}

	.open-panel {
		border: none;
		padding: 0;
	}

	.hamburger {
		position: relative;
		display: block;
		text-align: center;
		padding: 13px 0;
		width: 48px;
		height: auto;
		right: 0;
		top: 0;
		z-index: 1000;
		cursor: pointer;
	}

	.hamburger:before {
		content: url('./inc/hamburger-menu.svg'); /* hamburger icon */
		display: block;
		color: var(--black);
		line-height: 40px;
		font-size: 48px;
	}

	.openNav .hamburger:before {
		content: url('./inc/close-icon.svg'); /* close icon */
		display: block;
		color: var(--black);
		line-height: 40px;
		font-size: 48px;
	}

	.hamburger:hover:before {
		color: #313c8e;
	}

	.main-navigation .menu li {
		position: relative;
		width: 100%;
	}

	.menu-menu-1-container a {
		display: block;
		font-size: 16px;
		line-height: 34px !important;
	}

	.menu-menu-1-container {
		margin-bottom: 3em;
	}

	.menu-menu-1-container label {
		margin-bottom: 0;
		display: block;
	}

	.menu-menu-1-container label:hover {
		cursor: pointer;
	}

	.menu-menu-1-container {
		position: absolute;
		display: block;
		right: -266px;
		width: 266px;
		transition: all 0.45s cubic-bezier(0.77, 0, 0.175, 1);
		background-color: #fff;
		z-index: 999;
	}

	.menu {
		top: 0;
		overflow-y: auto;
	}

	.openNav .menu-menu-1-container {
		transform: translate3d(-266px, 0, 0);
		transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
	}
	#primary-menu .menu-item.current-menu-item a::before {
		height: 100%;
		z-index: -1;
		top: 0;
	}
	.menu-menu-1-container {
		padding-left: 0px;
	}
	header .menu-item:not(.sub-menu-item) {
		margin-left: 0px;
	}
	header .menu-item:not(.sub-menu-item) > a {
		padding: 19px 56px 19px 18px;
	}
	.get-a-quote a {
		text-align: center;
		padding: 20px 18px 15px 18px !important;
	}
	.get-a-quote {
		padding-bottom: 6rem;
	}
	header .menu .current-menu-item:not(.sub-menu-item) > a {
		color: var(--white);
	}
	header .menu .current-menu-item .sub-menu a {
			
	}

	/*** tablet and mobile submenu ***/
	.menu-menu-1-container {
		position: fixed;
		overflow-y: scroll;	
	    box-shadow: rgb(0 0 0 / 8%) 0px 9px 22px;
	}
	.dropdown-menu > .sub-menu {
		display: none;
	    border-bottom: 2px solid var(--light-blue);
	    padding-bottom: 10px;
	    margin-left: 20px;
	}

	.dropdown-menu > .show-submenu {
		display: block;
	}

	.menu-item-has-children a {
		position: relative;
	}

	.menu-item-has-children a:after {
		content: "";
		background: url("./inc/dropdown-arrow.svg");
		height: 8.64px;
		width: 14px;
		background-size: cover;
		background-position: center;
		display: block;
		bottom: 32px;
		position: absolute;
		right: 1rem;
	}
	.menu-item-has-children.current-menu-item a:after {
	    filter: invert(1);
	}
	.sub-menu a:after {
		display: none;
	}
	
	.sub-menu-heading > a {
		border-bottom: 1px solid var(--border-grey);
	    padding-left: 0 !important;
	    margin-bottom: 5px !important;
	    font-size: 16px !important;
	}
/*
	header .menu-item:not(.sub-menu-item):hover:not(.get-a-quote) > a::before {
		display: none;
	}
*/
}

/* Pop out form */

#body-darken{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:rgba(0,0,0,.5);
    z-index:9;
    opacity:0;
    pointer-events:none;
    transition:opacity 350ms cubic-bezier(.33333,0,.66667,.33333)
}

#body-darken.enabled{
    pointer-events:auto;
    opacity:1
}

#contact-popout{
    position:fixed;
    z-index:2147483647;
    top:0;
    right:0;
    bottom:0;
    height:100%;
    width:700px;
    max-width:100%;
    visibility:hidden;
    transform:translateX(700px);
    overflow-y:scroll;
    -webkit-overflow-scrolling:touch;
    background:#fff;
    outline:0;
    padding: 15px;
}

#contact-popout.open{
  transform: translateX(0) !important;
}

.popout-header{
	background: var(--dark-blue);
	color: white;
	margin: -15px;
	margin-bottom: 15px;
	padding: 15px;
	padding-top: 30px;
}

#contact-popout .h3{
    font-weight: 900;
    border-bottom: 4px solid white;
    display: inline-block;
}

#contact-popout .h4{
    font-weight: 900;
}

.ready-to-translate{
  transition: transform .35s cubic-bezier(.33333,0,.66667,.33333);
  visibility: visible !important;
}

.grecaptcha-badge { visibility: hidden; }

#contact-popout .toggle-form{
    padding: 14px 20px 8px;
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    background: transparent;
    color: white;
}

form.wpcf7-form {
    margin: 0 auto;
}
.wpcf7-submit {
    background: var(--yellow);
    color: var(--black);
    padding: 30px;
    border: 0px solid;
    position: relative;
    top: -2px;
    transition: opacity 0.2s ease;
    line-height: 1;
    text-decoration: none;
    display: block;
    padding: 19px 44px;
    text-align: center;
    margin: 0 auto;
    margin-top: 2rem;
    width: 100%;
    text-transform: uppercase;
}
.wpcf7-submit:hover {
	opacity: 0.8;
}
.wpcf7 form .wpcf7-response-output {
	margin-top: 0;
}

.wpcf7 form.sent .wpcf7-response-output{
	display: none;
}

.wpcf7-spinner{
    display: block;
    text-align: center;
    margin: 10px auto;
}

[type='text'],[type='email'],[type='tel'], textarea{
    background: none;
    border: none;
    box-shadow: none;
    border-bottom: 3px solid var(--light-blue);
    padding: 21px 0px;
    font-size: 18px;
}

[type='text']:focus,[type='email']:focus,[type='tel']:focus, textarea:focus,
[type='text']:hover,[type='email']:hover,[type='tel']:hover, textarea:hover{
    box-shadow: none;
    border: none;
    border-bottom: 3px solid var(--yellow);
}

textarea[rows]{
	height: 150px;
}

.file-input{
    position: relative;
    height: 70px;
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
}

.file-input label{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    border: 3px dashed var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-direction: column;
}

.file-input label p{
	margin-bottom: 0;
}

.file-input label span{
	text-decoration: underline;
	cursor: pointer;
}

.file-input label:hover, .file-input label:focus{
    border: 3px dashed var(--yellow);
}

.file-input .wpcf7-form-control-wrap, .file-input input{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

.file-input input{
    z-index: 1;
    opacity: 0;
}

.label-on-top{
	z-index: 2;
}


/* Medium and up */
@media screen and (min-width: 40em) {
	#contact-popout{
		padding: 20px;
	}
	.popout-header{
		margin: -20px;
		margin-bottom: 20px;
		padding: 20px;	
	}
	.wpcf7-submit {
		margin: 0;		
	}
}

/*** Homepage ***/
/*** featured section ***/
.featured-image {
	width: 100%;
	height: 100%;
	position: absolute;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
.featured-section {
	position: relative;
	padding: 0;
}
.featured-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(33,61,93,0.8), rgba(33,61,93,0));
	z-index: 2;
}
.featured-text {
	position: relative;
	z-index: 3;
	padding-top: 30px;
	padding-bottom: 30px;
}
.featured-text-content {
	max-width: 670px;
	color: var(--white);
	text-shadow: 0px 0px 30px rgba(0,0,0,1);
}
.featured-text-content h2 {
	color: var(--white);
	text-transform: none;
    font-size: clamp(18px, 1.4vw, 23px);
    line-height: 1.3;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.2s ease, transform 1.2s ease;
}
.featured-text-content h2:first-of-type {
	font-weight: 700;
}
.featured-text-content h2 a{
	color: var(--yellow);
}
.featured-text-content .secondary-button {
	margin-top: 30px;
	text-shadow: none;
}

/* Medium and up */
@media screen and (min-width: 40em) {
	.featured-text {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

/* Large and up */
@media screen and (min-width: 64em) {
	.featured-text {
		padding-top: 70px;
		padding-bottom: 70px;
	}
}


/* Small only */
@media screen and (max-width: 39.9375em) {
	.featured-text {
		text-align: center;
	}
	.featured-text-content .secondary-button {
		margin-top: 30px;
	}
	
}

/*** service cards ***/
.service-card-content, .service-card-archive .h5, .service-card-archive p, .service-card-archive .service-button-container {
	max-width: 310px;
	margin-right: auto;
	margin-left: auto;
}
.service-card-archive{
	max-width: unset;
}
.grid-padding-x > .cell.service-card-wrapper {
	padding: 50px 20px 60px 20px;
	border-right: 1px solid var(--border-grey);
	border-bottom: 1px solid var(--border-grey);
	transition: all .3s ease;
	cursor: pointer;
}
.service-card-archive img{
	width: 100%;
	height: 100%;
    height: 200px;
	object-fit: cover;
	object-position: center center;
    max-width: unset;
}
.service-card-archive .image-container{
	margin: -50px -20px 30px;
	width: calc(100% + 40px);
	max-height: 200px;
	position: relative;
}

.service-card-archive .image-overlay{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(33,61,93,0.8), rgba(33,61,93,0));
    z-index: 2;
}
.service-card-wrapper:nth-child(3n) {
	border-right: none;
}
.service-card-wrapper:nth-child(n+7):nth-child(-n+9) {
	border-bottom: none;
}
.service-card-wrapper:hover {
	border: 0px solid var(--border-grey);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.03);
	transform: scale(1.01);
	background: var(--white);
}
.service-card-wrapper svg {
	filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.15));
}
.service-card-wrapper .drop {
	transition: fill .5s ease;
	fill: var(--white);
}
.service-card-wrapper svg.svg-in-view .drop {
	fill: var(--dark-blue);
}
.service-card-wrapper .drop-icon {
	transition: fill .5s ease;
	fill: var(--black);
}
.service-card-wrapper svg.svg-in-view .drop-icon {
	fill: var(--white);
}
.service-card-wrapper:hover svg.svg-in-view .drop-icon {
	fill: var(--black);
}
.service-card-wrapper:hover svg.svg-in-view .drop {
	fill: var(--light-blue);
}
.service-card-content p {
	font-size: 16px;
	color: var(--dark-grey);
}
/* Small only */
@media screen and (max-width: 39.9375em) {
	.grid-padding-x > .cell.service-card-wrapper {
		padding: 20px 20px 30px 20px;
	}
	.service-card-content {
		text-align: left;
	}
	.service-card-wrapper {
		border-bottom: 1px solid var(--border-grey) !important;
	}
	.service-card-wrapper:nth-child(odd) {
		border-left: none !important;
		border-right: 1px solid var(--border-grey) !important;
	}
	.service-card-wrapper:nth-child(even) {
		border-right: none !important;
		border-left: none;
	}
	.service-card-wrapper:nth-last-child(-n+2) {
		border-bottom: none !important;
	}
	.service-card-archive .image-container {
		margin: -50px -20px 20px;
	}
	.service-card-archive img {
		height: 125px;
	}
	.service-card-content, .service-card-archive .h5, .service-card-archive p, .service-card-archive .service-button-container {
		max-width: unset;
	}
	.service-card-content:not(.service-card-archive) {
		display: flex;
		gap: 0.9375rem;
	}
	.service-card-content svg {
		width: 21%;
		height: auto;
		display: block;
	}
	.service-card-content-wrapper {
		width: 79%;
	}
	
}

/*** client testimonials ***/
/*** swiper default styles ***/
.testimonial-swiper {
	touch-action: pan-y;
}
.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto;
}
.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
}
.swiper-autoheight, .swiper-autoheight .swiper-slide {
	height: auto;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    transition: opacity 2s;
}

.swiper-slide .testimonial_slider-item-inner {
	right: 20px;
	position: relative;
	transition: all 0.7s;
	padding-left: 4.5rem;
}

.swiper-slide-active .testimonial_slider-item-inner {
	right: 0px;
}
.testimonial-swiper .swiper-wrapper {
	position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    box-sizing: content-box;
    margin-top: 30px;
}
/*** swiper arrows ***/
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}
.swiper-button-next, .swiper-button-prev {
	cursor: pointer;
}
.swiper-button-next:not(.swiper-button-disabled):hover::after, .swiper-button-prev:not(.swiper-button-disabled):hover::after{
	opacity: 0.5;
}
.testimonial-button-wrapper {
	position: absolute;
	bottom: 0;
	right: -20px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 50px 10px 30px;
}
.testimonial-button-wrapper:before {
	position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    transform: skewX(16deg);
    transform-origin: 50% 100%;
    will-change: transform;
    pointer-events: none;
}
.swiper-button-next {
    width: 3rem;
    height: 3rem;
    position: relative;
}
.swiper-button-prev {
    width: 3rem;
    height: 3rem;
    position: relative;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
	content: url('./inc/arrow-back.svg');
    color: var(--black);
    font-size: 35px;
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
	content: url('./inc/arrow-forward.svg');
    color: var(--black);
    font-size: 35px;
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    
}
.swiper-pagination {
	font-weight: 600;
	font-size: 30px;
	margin-right: 2.5rem;
	z-index: 1;
	font-size: clamp(20px, 2.0vw, 24px);
}
/*** Testimonial Slider styles ***/
.testimonial-slider-section {
	position: relative;
	padding: 0;
    scroll-margin-top: 70px;
}
.testimonial-slider-section h2,
.testimonial-slider-section .testimonial-text {
	color: var(--white);
}
.testimonial-slider-section .testimonial-text {
	text-transform: none;
    font-weight: 500;
}
.testimonial-image-column{
    align-self: stretch;
}
.testimonial-image-column img {
	height: 100%;
    object-fit: cover;
    width: 100%;
}
.testimonial-text-column {
	padding-top: 60px;
	padding-right: clamp(0.625rem, 4.2vw, 60px);
	padding-left: clamp(0.625rem, 4.2vw, 60px);
	background-color: var(--dark-blue);
	}
.testimonial-swiper {
	padding-bottom: 70px;
	max-width: 570px;
}
.testimonial_slider-item-inner:before {
	position: absolute;
    left: 0px;
    top: 6px;
    content: '\201C';
    font-size: 140px;
    line-height: .88;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--light-blue);
}
.client-name {
	margin-top: 30px;
    color: var(--light-blue-text);
}

/* Small only */
@media screen and (max-width: 39.9375em) {
	.testimonial-text-column {
		padding-top: 2rem;
	}
	.testimonial-swiper {
		padding-bottom: 6rem;
	}
	.testimonial-image-column {
		max-height: 360px;
	}
}

/* commercial logos section */

.commercial-section{
	border-top: 5px solid var(--yellow);
	border-bottom: 5px solid var(--yellow);
}

.commercial-section p {
    max-width: 800px;
    margin: 20px auto;
}

.commercial-section h2{
	margin-top: 0;
}

.commercial-section .cell svg,.commercial-section .cell img{
    height: auto;
    max-height: 110px;
    width: auto;
    max-width: 200px;
    display: block;
    margin: 0 auto;	
    object-fit: contain;
}

.commercial-section .cell:nth-of-type(odd){
	border-right: 1px solid var(--border-grey);
}

/* Small only */
@media screen and (max-width: 39.9375em) {
	.commercial-section .cell:first-of-type{
		margin-bottom: 15px;
	}
	.commercial-section .cell svg,.commercial-section .cell img{
		padding: 15px;
	}
}

/* Medium and up */
@media screen and (min-width: 40em) {
	.commercial-section .cell:not(:last-of-type){
		border-right: 1px solid var(--border-grey);
	}
	.commercial-section p {
	    text-align: center;
	    margin: 20px auto 50px;
	}
}

/* Large and up */
@media screen and (min-width: 64em) {}

/*** scrolling logos ***/
.client-logos {
	position: relative;
}

.client-logos h2{
	margin-top: 0;
}

.client-logos h3 {
	margin-bottom: 4rem;
}
.swiper-logos {
	margin-top: 30px;
}
.swiper-logos .swiper-wrapper {
    transition-timing-function: linear;
}
.swiper-pointer-events {
    touch-action: pan-y;
}
.swiper-android .swiper-slide, .swiper-wrapper {
    transform: translate3d(0px,0,0);
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    /*transition-property: transform;*/
}

.client-logo-container {
	position: relative;
    display: block;
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
    background: var(--white);
    border: 1px solid #e1e1e1;
    transition: all .3s ease-in-out;
    padding: 20px;
}
.client-logo-container::before,
.client-logo-container:after {
	position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    transition: color .1s ease, transform .3s ease;
    will-change: transform;
}
.client-logo-container::before {
    transform: scaleX(0);
}
.client-logo-container::after {
    transform: scaleY(0);
}
.client-logo-container img, .client-logo-container svg {
    width: 100%;
    height: 120px;
    max-height: 120px;
    min-height: 120px;
    object-fit: contain;
    will-change: transform;
    transition: all .3s ease;
}
/*** client logos hover style ***/
.client-logo-container:hover {
    border-color: transparent;
}
.client-logo-container:hover::before {
    border-color: var(--light-blue) transparent var(--light-blue) transparent;
    transform: none;
}
.client-logo-container:hover::after {
    border-color: transparent var(--light-blue) transparent var(--light-blue);
    transform: none;
}
.client-logo-container:hover img {
    transform: scale(0.9);
}

.client-logos p{
	max-width: 800px;
	margin: 20px auto;
}

/* Medium and up */
@media screen and (min-width: 40em) {
	.client-logos p{
		text-align: center;
		margin: 40px auto;
	}
}

/*** About Us section ***/
.about-us {
	padding: 0;
}
.about-us-text-column {
    padding-top: 40px;
    padding-bottom: 60px;
    padding-right: clamp(0.625rem, 9.4vw, 130px);
    padding-left: clamp(0.625rem, 9.4vw, 130px);
    background-color: var(--dark-blue);
}

.about-us-image-column img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: 50% 20%;
}
.about-us h2 {
	text-transform: none;
    color: var(--white);
    font-weight: 500;
    margin-top: 0;
    line-height: 1.4;
}
.about-us .h6 {
	font-weight: 500;
    color: var(--light-blue-text);
}
.about-us .secondary-button {
	margin-top: 2.5rem;
}

/* Small only */
@media screen and (max-width: 39.9375em) {
	.about-us-image-column {
		max-height: 360px;
		height: auto !important;
	}
	.about-us-text-column {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.about-us-image-column img {
		object-position: center center;
	}
}

/* Electric Vehicle Section */

.electric-vehicle-text-column {
	border-left: 20px solid #0dab46;
}

.electric-vehicle-text-column .h6{
	color: var(--yellow);
}

/* Medium and up */
@media screen and (min-width: 40em) {
	.electric-vehicle-text-column{
	    align-self: stretch;
	    display: flex; 
	    flex-direction: column;
	    justify-content: center;
	}	
}


/*** IG feed ***/
.ig-feed {
	background: var(--light-grey);
}
/*** Blog section ***/
.blog-section {
	background: var(--light-grey);
	padding: 0;
}
.blog-card {
	margin-bottom: 2rem;
}
.blog-text-column {
    padding-top: 65px;
    padding-bottom: 93px;
    padding-right: clamp(0.625rem, 9.4vw, 130px);
    padding-left: clamp(0.625rem, 9.4vw, 130px);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
}
.blog-section .secondary-button {
	margin-top: 2.5rem;
	max-width: max-content;
}
.blog-section .h5 {
	font-weight: 500;
    text-transform: none;
    color: var(--dark-grey);
}
.blog-section .secondary-button:hover {
	color: var(--black);
}
.home .blog-card-column {
	padding-top: 90px;
    padding-right: clamp(0.625rem, 4.2vw, 60px);
    padding-left: clamp(0.625rem, 2.8vw, 40px);
    padding-bottom: 90px;
}
.blog-card img {
	width: 100%;
    height: 215px; 
    object-fit: cover;
}
.blog-card .h3 {
	font-weight: 500;
    color: var(--dark-blue);
}
.blog-card .h4:hover {
	color: var(--light-blue);
}
.blog-card p {
	color: var(--dark-grey);
}
.blog-card p:hover {
	color: var(--light-blue);
}
.blog-card-inner {
	background: var(--white);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 8%);
}
.card-body {
	padding: 0px 30px 22px 30px;
}
.card-date {
	position: relative;
	z-index: 1;
	max-width: 54.63px;
	top: -17px;
}
.card-date:before {
	content: url('./inc/water-drop-dark.svg');
	width: 54.63px;
	height: 73px;
	position: absolute;
	top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-60%);
	
}
.card-date span {
	display: block;
	text-align: center;
	line-height: 1;
	color: var(--white);
}
.card-image-holder {
	overflow: hidden;
}
.card-image-holder img {
	transition: 0.5s ease-in-out;
}
.card-image-holder:hover img {
	transform: scale(1.1);
}
.card-body svg path {
	transition: 0.2s ease-in-out;
}
.card-body svg:hover path {
	fill: var(--light-blue);
}

/* Small only */
@media screen and (max-width: 39.9375em) {
	.blog-text-column {
		max-height: 360px;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	.blog-card-column {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
}


/*** Footer ***/
footer {
	padding-top: 5.5rem;
	background: var(--dark-blue);
	color: var(--white);
}
footer a {
	color: var(--white);
}
footer .h6 {
	font-weight: 500;
    color: var(--light-blue-text);
}
footer h3 {
	margin-bottom: 2rem;
}
.footer-first-column,
.footer-second-column {
	max-width: 300px;
}
.footer-second-column p {
	margin-bottom: 1.5rem
}
#menu-footer {
	margin: 0;
    list-style: none;
    column-count: 2;
    column-gap: 1rem;
}
.footer-first-column a:not(:last-of-type) svg {
	margin-right: 0.5rem;
}
.site-info {
	color: var(--black);
	background: var(--white);
	padding: 1rem 0;
	margin-top: 4rem;
}
/* Small only */
@media screen and (max-width: 39.9375em) {
	footer {
		padding-top: 2rem;
	}
	footer h3 {
		margin-bottom: 1rem;
	}
}


/*** Advice page ***/
#post-date {
	color: var(--dark-grey);
}
.home h3:not(.h6):not(.h5) {
	font-size: clamp(20px, 1.6vw, 23px);
	line-height: 1.875rem;
	margin-bottom: 1rem;
	margin-top: 0;
}
.home h4:not(.h6) {
	font-size: 16px;
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 22px;
}
.border-top-h3 {
	border-top: 4px solid var(--black);
	padding-top: 1rem;
	color: var(--dark-blue);
	margin-top: 25px !important;
	margin-bottom: 25px !important;
}


/*** 
	Other page styles
	***/
	
/*** Ohter pages: FEATURED SECTION ***/
.general-featured-section img {
	width: 100%;
    object-fit: cover;
    height: 240px;
}
.general-featured-section h1 {
	color: var(--white);
}
.general-featured-section .featured-content {
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    max-width: 680px;
}

/* Medium and up */
@media screen and (min-width: 40em) {
	.general-featured-section img {
	    height: 360px;
	}
}


/*** Ohter pages: BREADCRUMBS ***/
.breadcrumbs {
	padding: 20px 0;
	background: var(--light-grey);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 15px;
}
.breadcrumbs-container a {
	color: var(--dark-grey);
}
.breadcrumbs-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
.breadcrumbs-container svg {
	position: relative;
	top: -1.5px;
}
.breadcrumbs-container span{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* Small only */
@media screen and (max-width: 39.9375em) {
	.breadcrumbs {
		font-size: 13px;
	}
	.breadcrumbs-container {
		gap: 0.5rem;
	}
}

/*** Gutenberg styles ***/
:where(.wp-block-columns.is-layout-flex) {
    gap: 0.5em;
}
.wp-block-separator {
	border: 1px solid var(--light-grey);
}
.wp-block-media-text__content p {
	color: var(--dark-grey);
}
.wp-block-media-text__content ul {
	list-style: none;
	margin: 0;
}
.wp-block-media-text__content ul li {
	padding: 0.2em 0 1em 30px;
    background-image: url('/wp-content/themes/plumberoo/inc/list-checkmark.svg');
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: left 11px;
    font-weight: 600;
    line-height: 1.3;
}
ul.columns-2 li{
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}
.wp-block-media-text__content h2 {
	margin-top: 0;
}
.alignwide .wp-block-media-text .wp-block-media-text__content {
/*
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
*/
}
.wp-block-media-text .wp-block-media-text__content ul.columns-2 {
	column-count: 2;
}
.alignwide .wp-block-media-text .wp-block-media-text__content {
	padding-right: 0;
}
.alignwide .has-media-on-the-right.wp-block-media-text .wp-block-media-text__content {
	padding-left: 0;
	padding-right: 8%;
} 
.wp-block-columns {
	margin-bottom: 0;
}
.wp-block-columns h3:not(.h6):not(.h5), .h3 {
	margin-bottom: 8px;
}
.page-id-21 .wp-block-columns p {
	margin-bottom: 20px;
}
.wp-block-image.has-custom-border img, .wp-block-image img {
	width: 100%;
}
.type-services .wp-block-media-text__content .wp-block-heading, .post-21 .wp-block-media-text__content .wp-block-heading {
	margin-top: 0 !important;
}
.type-services .wp-block-media-text__content p:last-of-tyoe, .post-21 .wp-block-media-text__content p:last-of-tyoe {
	margin-bottom: 0;
}
.type-services .wp-block-media-text .wp-block-media-text__media{
	align-self: flex-start;
}
@media screen and (min-width: 601px) {
	.wp-block-columns .wp-block-media-text__content {
		padding-right: 2rem;
		padding-left: 1.25rem;
	}
}

@media screen and (max-width: 600px) {
	.wp-block-media-text {
		padding-left: 10px;
		padding-right: 10px;
	}
	.alignwide .wp-block-media-text .wp-block-media-text__content {
		padding-left: 0;
		padding-top: 28px;
	}
	.alignwide .has-media-on-the-right.wp-block-media-text .wp-block-media-text__content {
		padding-left: 0;
	}
}
/* Medium and up */
@media screen and (min-width: 40em) {
	.wp-block-media-text__content ul li {
		font-size: 110%;
	}
	.wp-block-media-text__content .is-layout-flow p {
		padding-left: 30px;
		margin-bottom: 40px;
	}
}

/** swap direction of first media-text block on single services page **/
@media (max-width: 600px) {
	section.reverse-media-text .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
		grid-row: 2;
	}
	section.reverse-media-text .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
		grid-row: 1;
	}
	section.reverse-media-text .wp-block-media-text.is-stacked-on-mobile {
		gap: 2rem;
	}
}



/*** Instagram page ***/
#sb_instagram .sbi_follow_btn a, #sb_instagram .sbi_follow_btn a, #sb_instagram #sbi_load .sbi_load_btn {
    position: relative;
    align-items: center;
    gap: 0.7rem;
    overflow: hidden;
    transition: 0.25s ease-in-out;
    font-weight: 600;
    line-height: 1;
    z-index: 1;
    padding: 12px 15px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 0px;
}
#sb_instagram .sbi_follow_btn a, #sb_instagram .sbi_follow_btn a {
	border: 1.5px solid var(--yellow);
	background: var(--yellow) !important;
	color: var(--black);
}
#sb_instagram #sbi_load .sbi_load_btn {
	background: var(--dark-blue) !important;
    border: 1.5px solid var(--dark-blue);
    color: var(--white);
}
#sb_instagram .sbi_follow_btn a:hover, #sb_instagram .sbi_follow_btn a:focus {
	box-shadow: unset !important;
	background: unset !important;
}
#sb_instagram #sbi_load .sbi_load_btn:hover {
	box-shadow: unset !important;
    background: unset !important;
    color: var(--black) !important;
    border-color: var(--dark-blue) !important;
}



