/*
Theme Name: Media-Shark Theme 2025
Theme URI: http://media-shark.com
Author: J Cooper
Author URI: http://media-shark.com
Description: A demo theme.
Version: 1.0
License: GNU General Public License

*/

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
@import url('css/hamburgers.css');
@import url('css/fonts/flaticon/css/flaticon.css');
/*@import url('css/fonts/flaticon/css/flaticon.min.css');*/

@import url('css/style.css');

@font-face {
  font-family: 'Julietta-Messie';
  font-weight: 600;
  font-style: normal;
  src: url('css/fonts/juliettamessie/julietta-messie.woff2') format('woff2'), url('css/fonts/juliettamessie/julietta-messie.woff') format('woff');
}

:root {
	
}


html, * {
	box-sizing: border-box;
}

body {
 	font-family: "Roboto", sans-serif;
	margin: 0;
	font-size: 20px;
 	line-height: 1.5;
	color: #7A7A7A;
}

body.no-scroll {
   height: 100%;
   overflow-y: hidden;
}

body.no-scroll::after {
	content: '';
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background: rgba(0, 0, 0, .5);
}

a {
	color: var(--primary-text-color);
	transition: color 0.5s;
	transition: opacity 0.5s;
}

a:hover {
	text-decoration: none;
	color: var(--primary-text-color-dark);
}

ul {
	margin-left: 0;
    padding-left: 15px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: fira sans,sans-serif;
	color: #000;
	font-weight: 700;
	margin: 0 0 15px;
	margin-bottom: 15px;
	clear: both;
	line-height: 1.36;
}

.btn {
	border-radius: 0 !important;
	text-transform: uppercase;
	font-weight: 600;
	padding: 15px 30px;
	font-size: 17px;
}

.btn-primary {
	background: var(--primary-button-color);
	border-color: var(--primary-button-color);
}

.btn-primary:hover, .btn-primary:active, .btn-primary:visited, .btn-primary:focus {
	background: var(--primary-button-color-dark);
	border-color: var(--primary-button-color-dark);
	outline: none;
}

.btn-primary.disabled, .btn-primary:disabled {
    background: var(--primary-button-color);
	border-color: var(--primary-button-color-dark);
}

.form-control {
	font-size: 1em;
}

.helper-block {
	font-size: 16px;
	margin: 5px 0 0 0;
}

.alert {
    font-size: 17px;
}

img {
	max-width: 100%;
	height: auto;
}

label {
	margin-bottom: 10px;
	font-size: 13px;
	line-height: 20px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.btn-rounded {
	border-radius: 50px !important;
}

.btn .pxl--btn-icon {
	width: 36px;
	height: 36px;
	background-image: -webkit-linear-gradient(45deg,#ffa800,#fe0054 45%,#6000ff 100%);
	background-image: -moz-linear-gradient(45deg,#ffa800,#fe0054 45%,#6000ff 100%);
	background-image: -ms-linear-gradient(45deg,#ffa800,#fe0054 45%,#6000ff 100%);
	background-image: -o-linear-gradient(45deg,#ffa800,#fe0054 45%,#6000ff 100%);
	background-image: linear-gradient(45deg,#ffa800,#fe0054 45%,#6000ff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='',endColorStr='');
	border-radius: 36px;
	color: #fff;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	font-weight: 400;
	overflow: hidden;
	margin-right: 20px;
}

.btn:hover .pxl--btn-icon i.fas {
	-webkit-animation: toRightFromLeft 0.3s forwards;
	-moz-animation: toRightFromLeft 0.3s forwards;
	animation: toRightFromLeft 0.3s forwards;
}

@-webkit-keyframes toRightFromLeft {
	49% {
		-webkit-transform: translate(100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translate(-100%);
	}
	51% {
		opacity: 1;
	}
}
@-moz-keyframes toRightFromLeft {
	49% {
		-moz-transform: translate(100%);
	}
	50% {
		opacity: 0;
		-moz-transform: translate(-100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes toRightFromLeft {
	49% {
		transform: translate(100%);
	}
	50% {
		opacity: 0;
		transform: translate(-100%);
	}
	51% {
		opacity: 1;
	}
}

#float-nav {
	position: fixed;
	z-index: 99;
	width: 100%;
	top: -100px;
	background-color: #220210;
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
}

#float-nav.visible {
	top: 0;
}

#mobile-nav {
	position: fixed;
    top: 0;
	left: -350px;
    width: 350px;
    height: 100%;
    z-index: 9999;
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
}

#mobile-nav.open {
	left: 0;
}

#mobile-nav .nav-menu {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0px;
}

#mobile-nav .nav-brand {
	width: 250px;
	display: block;
	margin: 5px 0 0 10px;
	padding: 50px 0 30px 0;
}

#mobile-nav .nav-menu-list {
	width: 100%;
	display: block;
}

#mobile-nav .nav-menu-list ul li {
    display: block;
}

#mobile-nav .nav-menu-list ul li a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 35px;
}

.site-nav {
	position: absolute;
	z-index: 9;
	width: 100%;
	margin-top: 15px;
}

.nav-menu {
	width: 95%;
    max-width: 1400px;
	color: #fff;
	background-color: #220210;
	border-radius: 50px;
	min-height: 100px;
	position: initial;
	margin-left: auto;
	margin-right: auto;
	--menuAfterTop: 15px;
	position: relative;
}

.nav-menu::after {
	content: '';
	position: absolute;
	background-color: transparent;
	background-image: linear-gradient(90deg, #FF3672 0%, #7701FE 100%);
	border-radius: 51px 51px 51px 51px;
	height: 100px;
	width: 90%;
	max-width: calc(1400px - 10%);
	margin-left: auto;
	margin-right: auto;
	z-index: -1;
	left: 50%;
    top: var(--menuAfterTop);
    transform: translate(-50%, 0px);
}

#float-nav .nav-menu {
	border-radius: 0;
}

#float-nav .nav-menu::after {
	display: none;
}

.sf-reas-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
}

.sf-reas-list li {
	background: url(img/icon-check.png) no-repeat left top; /* <-- change `left` & `top` too for extra control */
	padding: 0px 0px 15px 40px;
	/* reset styles (optional): */
	list-style: none;
	margin: 0;
	color: #000000;
	font-family: "Urbanist", Sans-serif;
	font-weight: 700;
	font-size: 18px;
  	line-height: 1.1em;
}

.nav-brand {
	width: 250px;
	display: inline-block;
	margin: 0 0 0 10px;
}

.nav-menu-list {
	width: calc(100% - 265px);
	display: inline-block;
	
}

.nav-menu-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav-menu-list ul li {
	display: inline-block;
}

.nav-menu-list ul li a {
	display: block;
	font-size: 18px;
	font-weight: 600;
	padding: 35px;
}

.nav-menu-list ul li a:hover {
	color: #72cbf7;
}

.pxl-anchor-divider {
	display: none;
	overflow: hidden;
	width: 30px;
	height: 23px;
	cursor: pointer;
	position: relative;
}

.pxl-anchor-divider .pxl-icon-line {
	height: 4px;
	position: absolute;
	right: 0;
	border-radius: 3px;
}

.pxl-icon-line::after {
  	background-color: #FFFFFF;
	-webkit-transform: translate3d(0,0,0);
	-khtml-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	content: '';
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	width: 100%;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
}

.pxl-anchor-divider .pxl-icon-line.pxl-icon-line1 {
	top: 0;
	width: 22px;
}

.pxl-anchor-divider .pxl-icon-line.pxl-icon-line2 {
	top: 50%;
	width: 100%;
	transform: translate(0,-50%);
}

.pxl-anchor-divider .pxl-icon-line.pxl-icon-line3 {
	width: 16px;
	bottom: 0;
}

.pxl-anchor-divider:hover .pxl-icon-line.pxl-icon-line1 {
	-webkit-animation: toLeftFromRight 0.5s reverse;
	-moz-animation: toLeftFromRight 0.5s reverse;
	animation: toLeftFromRight 0.5s reverse;
}

.pxl-anchor-divider:hover .pxl-icon-line.pxl-icon-line2 {
	-webkit-animation: toLeftFromRight 0.5s reverse;
	-moz-animation: toLeftFromRight 0.5s reverse;
	animation: toLeftFromRight 0.5s reverse;
	animation-delay: 50ms;
}

.pxl-anchor-divider:hover .pxl-icon-line.pxl-icon-line3 {
	-webkit-animation: toLeftFromRight 0.5s reverse;
	-moz-animation: toLeftFromRight 0.5s reverse;
	animation: toLeftFromRight 0.5s reverse;
	animation-delay: 100ms;
}

@-webkit-keyframes toLeftFromRight {
	49% {
		-webkit-transform: translate(100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translate(-100%);
	}
	51% {
		opacity: 1;
	}
}
@-moz-keyframes toLeftFromRight {
	49% {
		-moz-transform: translate(100%);
	}
	50% {
		opacity: 0;
		-moz-transform: translate(-100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes toLeftFromRight {
	49% {
		transform: translate(100%);
	}
	50% {
		opacity: 0;
		transform: translate(-100%);
	}
	51% {
		opacity: 1;
	}
}

.hero {
	height: 100vh;
	min-height: 900px;
	background: url('img/h4-bg-section1.jpg') no-repeat;
	background-attachment: fixed;
	padding-top: 150px;
	background-size: cover;
}

.hero::before {
	content: '';
	height: 100%;
	min-height: 900px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	background: url('img/h4-shape1.png') no-repeat;
	background-size: cover;
    background-position: center center;
}

.hero::after {
	content: '';
	height: 100%;
	min-height: 900px;
	top: 25px;
	width: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	left: auto;
	z-index: 1;
	background: url('img/h4-shape2.png') no-repeat;
	background-size: cover;
	background-position: center center;
}

#hero-text {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9;
}

#hero-text h2 {
	color: #FF3672;
	font-size: 42px;
  	padding: 12px 0;
	line-height: 1.1em;
	background-image: linear-gradient(to right,#FF3672,#7701FE);
	font-family: 'Julietta-Messie';
	background-clip: text;
	-o-background-clip: text;
	-ms-background-clip: text;
	-moz-background-clip: text;
	-webkit-background-clip: text;
	text-fill-color: transparent;
	-o-text-fill-color: transparent;
	-ms-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
	-webkit-text-fill-color: transparent;
}

#hero-text h1 {
	font-family: 'Fira Sans', sans-serif;
	color: #000;
	font-weight: 700;
	font-size: 72px;
	line-height: 1.1em;
}

#hero-text p {
	font-size: 20px;
	margin: 25px 0;
}

.hero-image {
	padding-top: 10px;
	text-align: center;
}

.hero-image img {
	position: relative;
	top: 0px;
}

#home-content {
	background: url('img/h4-bg-section2.png') no-repeat;
	position: relative;
	z-index: 3;
	margin-top: -231px;
	width: 100%;
	height: 100%;
	display: block;
	min-height: 800px;
	background-size: cover;
	background-position: top center;
	padding-top: 200px;
	text-align: center;
	color: #fff;
}

#home-content .section-title {
	color: #fff;
	font-size: 42px;
}

#why-us-content {
	background: url('img/h4-bg-section5-1.jpg') no-repeat;
	background-size: cover;
	background-position: bottom;
	overflow: hidden;
	min-height: 650px;
}

#why-us-content .wcm-img {
	position: absolute;
	max-width: 350px;
	margin: 0 auto;
	left: 0;
    right: 0;
	top: 80px;
}

#why-media-shark-content {
	background: url('img/h4-bg-section5-1.jpg') no-repeat;
	background-size: cover;
	background-position: bottom;
	overflow: hidden;
	min-height: 650px;
	bottom: -20px;
    position: relative;
}

#why-media-shark-content p {
	font-size: 18px;	
}

#why-media-shark-content .wcm-img {
	position: absolute;
	margin: 0 auto;
	left: 0;
    right: 0;
    max-width: 550px;
	top: 50px;
}


#work-together-content {
	background-color: #1A1A1A;
	color: #fff;
	text-align: center;
}

.page-template-page-sidebar #website-development, .page-template-page-sidebar #app-development, .page-template-page-sidebar #software-development, .page-template-page-sidebar #saas-development {
	margin-top: 50px;
}

.section-subtitle {
	color: #FF3672;
	font-size: 42px;
  	padding: 12px 0;
	background-image: linear-gradient(to right,#FF3672,#7701FE);
	font-family: 'Julietta-Messie';
	background-clip: text;
	-o-background-clip: text;
	-ms-background-clip: text;
	-moz-background-clip: text;
	-webkit-background-clip: text;
	text-fill-color: transparent;
	-o-text-fill-color: transparent;
	-ms-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
	-webkit-text-fill-color: transparent;
}

.section-title {
	font-family: 'Fira Sans', sans-serif;
	color: #000;
	font-weight: 700;
	font-size: 62px;
	line-height: 1.1em;
}

#work-together-content .section-title {
	color: #FFF;
}

.site-footer {
	background: url('img/h4-bg-section2.png') no-repeat;
	background-size: cover;
	background-position: top;
	color: #fff;
	position: relative;
	margin-top: -180px;
	padding-top: 180px;
	font-size: 16px;
}

.site-footer h3 {
	color: #fff;
	margin: 0 0 20px 0;
}

#pxl-link-pxl_link-07e2afd-6919 {
	list-style: none;
	margin: 0;
	padding: 0;
}

#pxl-link-pxl_link-07e2afd-6919 li {
	margin-bottom: 15px;
}

.pxl-link a .pxl-link--icon {
	margin-top: 0px;
	margin-right: 10px;
	min-width: 29px;
	width: 29px;
	height: 29px;
	justify-content: center;
	align-items: center;
	border-radius: 29px 29px 29px 29px;
}

.bg-gradient2 {
	width: 36px;
	height: 36px;
	background-image: -webkit-linear-gradient(45deg,#ffa800,#fe0054 45%,#6000ff 100%);
	background-image: -moz-linear-gradient(45deg,#ffa800,#fe0054 45%,#6000ff 100%);
	background-image: -ms-linear-gradient(45deg,#ffa800,#fe0054 45%,#6000ff 100%);
	background-image: -o-linear-gradient(45deg,#ffa800,#fe0054 45%,#6000ff 100%);
	background-image: linear-gradient(45deg,#ffa800,#fe0054 45%,#6000ff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='',endColorStr='');
	border-radius: 36px;
	color: #fff;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	font-weight: 400;
	overflow: hidden;
	margin-right: 20px;
}

.sf-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sf-menu li {
	margin-bottom: 25px;
}

.sf-menu a .pxl-link--icon {
  font-size: 12px;
  text-shadow: 2px 4px 0px #BEE041;
}

.sf-menu a {
	
}

.copyright {
	text-align: center;
	font-family: "Fira Sans", Sans-serif;
	font-size: 17px;
	font-weight: 700;
}

.pxl-post--inner {
	padding-bottom: 50px;
}

.pxl-post--featured {
	position: relative;
	border-radius: 150px 40px 40px 40px;
	margin-bottom: 20px;
}

.pxl-post--holder {
	text-align: left;
}

.pxl-service-style1 .pxl-post--featured img {
  	border-radius: 150px 40px 40px 40px;
}

.pxl-service-style1 .pxl-post--title {
	margin-bottom: 12px;
	font-size: 26px;
	color: #6e6e6e;
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
}

.pxl-service-style1 .pxl-post--inner.active .pxl-post--title {
	color: #fff;
}

.pxl-service-style1 .pxl-post--icon {
	width: 96px;
	height: 96px;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 59px;
	color: #000;
	z-index: 99;
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
}


.pxl-service-style1 .pxl-post--inner.active .pxl-post--icon {
	top: 50%;
	left: 50%;
	color: #fff;
	transform: translate(-50%, -50%);
}

.pxl-post--link {
	position: absolute;
	height: 100%;
	width: 100%;
	display: block;
	top: 0;
	left: 0;
}

.pxl-fl-middle {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.pxl-service-style1 .pxl-post--icon::before, .pxl-service-style1 .pxl-post--icon::after {
	z-index: -2;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
}

.pxl-service-style1 .pxl-post--icon::before {
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
  	background-color: #fff;
}

.pxl-service-style1 .pxl-post--icon::after {
	z-index: -1;
  	opacity: 0;
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
	background-image: -webkit-linear-gradient(45deg,#ffa800,#fe0054 52%,#6000ff 100%);
	background-image: -moz-linear-gradient(45deg,#ffa800,#fe0054 52%,#6000ff 100%);
	background-image: -ms-linear-gradient(45deg,#ffa800,#fe0054 52%,#6000ff 100%);
	background-image: -o-linear-gradient(45deg,#ffa800,#fe0054 52%,#6000ff 100%);
	background-image: linear-gradient(45deg,#ffa800,#fe0054 52%,#6000ff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='',endColorStr='');
	background-color: initial;
}

.pxl-service-style1 .pxl-post--inner.active .pxl-post--icon::before {
}

.pxl-service-style1 .pxl-post--inner.active .pxl-post--icon::after {
	opacity: 1;
}

.pxl-service-style1 .pxl-post--readmore {
	font-size: 16px;
	color: #7d7d7d;
	display: inline-flex;
	align-items: center;
	position: relative;
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
}

.pxl-post--category {
	max-width: calc(100% - 50px);
}


.pxl-service-style1 .pxl-post--readmore i {
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
	color: inherit;
	margin-left: 35px;
}

.pxl-service-style1 .pxl-post--inner.active .pxl-post--readmore {
	color: #fe0054;
}

.pxl-service-style1 .pxl-post--inner.active .pxl-post--readmore i {
	margin-left: 15px;
}

.st-person {
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 225px);
}
.st-name {
	color: #000;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.4545;
}

.st-company {
	font-size: 16px;
}
						
.st-stars {
	display: inline-block;
	vertical-align: middle;
	width: 220px;
}

.pxl-item--icon {
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
}

.pxl-item--star {
	display: inline-block;
	vertical-align: middle;
	background-color: initial;
	background-image: linear-gradient(45deg, #ffa800,#fe0054 52%,#6000ff 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.pxl-item--star .flaticon-star {
	-webkit-text-fill-color: transparent;
	font-size: 25px;
}

.pxl-form--label {
	display: block;
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #000;
	font-family: fira sans,sans-serif;
}

.pxl-contact-form .pxl-form--label span {
	display: inline-block;
	margin: 0 14px;
	color: #fe0054;
}

.pxl-contact-form {
	max-width: 600px;
	margin: 0 auto;
}

.pxl-contact-form .wpcf7-form-control-wrap {
  	margin-bottom: 32px;
	text-align: left;
}

.wpcf7-form-control-wrap input {
	padding: 8px 22px 8px 22px;
	height: 51px;
	width: 100%;
	font-size: 17px;
	color: #6F6F6F;
	background-color: #FFFFFF;
	border-radius: 26px 26px 26px 26px;
	border-width: 1px 1px 1px 1px !important;
	border-color: #D3DAE7 !important;
}

.wpcf7-form-control-wrap textarea {
	padding: 24px 22px 30px 22px;
	height: 177px;
	width: 100%;
	font-size: 17px;
	color: #6F6F6F;
	background-color: #FFFFFF;
	border-radius: 26px 26px 26px 26px;
	border-width: 1px 1px 1px 1px !important;
	border-color: #D3DAE7 !important;
}

#work-together-content .pxl-form--label {
	color: #fff;
}

.pxl-select {
	position: relative;
	padding: 12px 22px 12px 22px;
	height: 51px;
	width: 100%;
	font-size: 17px;
	color: #6F6F6F;
	background-color: #FFFFFF;
	border-radius: 26px 26px 26px 26px;
	border-width: 1px 1px 1px 1px !important;
	border-color: #D3DAE7 !important;
	cursor: pointer;
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
}

.pxl-select.open {
	border-bottom-left-radius: 0 !important;
  	border-bottom-right-radius: 0 !important;
}

.pxl-select select {
	display: none;
}

.pxl-select .pxl-select-highlight::before {
	content: "\f078";
	width: 28px;
	height: 28px;
	border-radius: 28px;
	color: #888;
	line-height: 28px;
	text-align: center;
	font-size: 11px;
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	right: 8px;
	-webkit-transform: translate(0,-50%);
	-khtml-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-o-transform: translate(0,-50%);
	transform: translate(0,-50%);
	-webkit-transition: all .25s cubic-bezier(.645,.045,.355,1);
	-khtml-transition: all .25s cubic-bezier(.645,.045,.355,1);
	-moz-transition: all .25s cubic-bezier(.645,.045,.355,1);
	-ms-transition: all .25s cubic-bezier(.645,.045,.355,1);
	-o-transition: all .25s cubic-bezier(.645,.045,.355,1);
	transition: all .25s cubic-bezier(.645,.045,.355,1);
}

.pxl-select.open .pxl-select-highlight::before {
	transform: translate(0,-50%)scaleY(-1);
	color: #444;
}

.pxl-select .pxl-select-options {
	max-height: 282px;
	overflow-y: auto;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	list-style: none;
	margin: 0;
	padding: 12px 18px;
	background-color: #fff;
	z-index: 900;
	font-size: 16px;
	color: #666;
	font-family: inherit;
	box-shadow: 0 3px 65px rgba(,,,.08);
	-webkit-border-radius: 0 0 10px 10px;
	-khtml-border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	-ms-border-radius: 0 0 10px 10px;
	-o-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
	-webkit-transition: all .25s cubic-bezier(.645,.045,.355,1);
	-khtml-transition: all .25s cubic-bezier(.645,.045,.355,1);
	-moz-transition: all .25s cubic-bezier(.645,.045,.355,1);
	-ms-transition: all .25s cubic-bezier(.645,.045,.355,1);
	-o-transition: all .25s cubic-bezier(.645,.045,.355,1);
	transition: all .25s cubic-bezier(.645,.045,.355,1);
	opacity: 0;
	visibility: hidden;
	margin-top: 30px; 
}

.pxl-select.open .pxl-select-options {
	opacity: 1;
	visibility: visible;
	margin-top: 0px;
}

.pxl-select .pxl-select-options li:first-child {
  	display: none;
}

#testimonial-content {
}

.testimonial-carousel {
	padding-right: 200px;
}

.testimonial-carousel .owl-nav {
	position: absolute;
    right: 0;
	bottom: 0;
}

.testimonial-carousel .owl-nav button {
	width: 65px !important;
	height: 65px !important;
	color: #cdcdcd !important;
	border-radius: 65px !important;
	border: 2px solid #cdcdcd !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 30px !important;
	margin: 0 7px;
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
	cursor: pointer;
}

.testimonial-carousel .owl-nav button:hover {
	background: #fff !important;
	border-color: #6000ff !important;
	color: #6000ff !important;
}

#contact-form .btn {
	color: #000000;
	background: #FFFFFF;
	text-transform: inherit;
	padding: 15px 65px;
}

#portfolio-content  {}

#portfolio-content h3 {
	font-size: 22px;
}

.page-title {
	font-size: 50px;
	text-align: center;
	margin: 0 0 50px 0;
}

.page-subtitle {
	font-size: 14px;
	margin: 0 0 0 0;
	font-weight: 600;
	text-align: center;
}

.page-header {
	height: 350px;
    background-size: cover;
	padding-top: 145px;
}


.page-header h1 {
	color: #fff;
}

.page-breadcrumbs {
	font-size: 14px;
	margin: 0 0 0 0;
}

#primary {
	padding-bottom: 200px;
	font-size: 16px;
}

.page-template-page-sidebar #primary {
	padding-bottom: 0px;
}

h1.not-found { 
	font-size: 90px;
	text-align: center;
}

.sidebar-page-content {
	margin-bottom: 30px;
	border: 1px solid #e3e3e3;
	border-radius: 15px;
	padding: 30px;
}

.sidebar-content {
	border-radius: 15px;
	background-color: #f7f7f7;
	padding: 24px;
	position: sticky;
    top: 140px;
}

.wp-block-separator {
	border: none;
    border-top: 1px #e3e3e3 solid;
    margin: 35px 0;
}

ul.dc-list {
	list-style: none; /* Remove default bullets */
  	padding-left: 0; /* Remove default padding */
}

ul.dc-list li {
  	position: relative;
  	padding-left: 35px;
	line-height: 1.4em;
    margin-bottom: 18px;
}

ul.dc-list li::before {
  content: '';
  display: inline-block; /* Makes the pseudo-element behave like an inline-block */
  width: 25px; /* Adjust as needed for your icon's width */
  height: 20px; /* Adjust as needed for your icon's height */
  background-image: url('img/double_check.jpg'); /* Path to your custom icon */
  background-size: cover; /* Adjust as needed for your icon */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* Vertically centers the icon */
}

.sidebar-btn {
	min-height: 60px;
	display: flex;
	align-items: center;
	padding-left: 22px;
	padding-right: 60px;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	color: #454545;
	background-color: #fff;
	border-radius: 60px;
	z-index: 1;
	margin: 10px 0 10px 0;
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
}

.sidebar-btn:hover {
	color: #fff;
	background-color: #6000ff;
	background-image: -webkit-gradient(linear,right top,left top,from(#6000ff),to(#fe0054));
	background-image: -webkit-linear-gradient(to right,#6000ff,#fe0054);
	background-image: -moz-linear-gradient(to right,#6000ff,#fe0054);
	background-image: -ms-linear-gradient(to right,#6000ff,#fe0054);
	background-image: -o-linear-gradient(to right,#6000ff,#fe0054);
	background-image: linear-gradient(to right,#6000ff,#fe0054);
	background-position: 0;
	background-size: 200% 90%;
}


.sidebar-btn .pxl-link--icon {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 60px;
	border-radius: 60px;
	justify-content: center;
	align-items: center;
	margin: 0;
	z-index: 99;
	min-width: 24px;
	font-size: 15px;
	display: inline-flex;
	
}

/*
.sidebar-btn .pxl-link--icon i:before {
	background-color: #fff;
	content:'';
	width:100%;
	height:100%;
	position: absolute;
    top: 0;
	z-index: 1;
    left: -45px;
}
*/

.sidebar-btn .pxl-link--icon i {
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
	
	background-color: #6000ff;
    /* Old browsers */
    background-image: linear-gradient(to right, #fff 50%, #6000ff 50%);
    background-size: 200% 100%;
    background-position:right bottom;
    -webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
	background-size:200% 100%;
	font-weight: 800;
	font-size: 19px;
}

.sidebar-btn .pxl-link--icon:before,
.sidebar-btn .pxl-link--icon:after {
	content:'';
	width:100%;
	height:100%;
	border-radius:inherit;
	position:absolute;
	top:0;
	left:0;
	-webkit-transition:all 300ms linear 0ms;
	-khtml-transition:all 300ms linear 0ms;
	-moz-transition:all 300ms linear 0ms;
	-ms-transition:all 300ms linear 0ms;
	-o-transition:all 300ms linear 0ms;
	transition:all 300ms linear 0ms;
	z-index:-1
}

.sidebar-btn .pxl-link--icon::before {
	content: '';
	width: 100%;
	height: 100%;
	border-radius: inherit;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
	z-index: -1;
	opacity: .1;
	background-color: #6000ff;
	background-image: -webkit-gradient(linear,right top,left top,from(#6000ff),to(#fe0054));
	background-image: -webkit-linear-gradient(to right,#6000ff,#fe0054);
	background-image: -moz-linear-gradient(to right,#6000ff,#fe0054);
	background-image: -ms-linear-gradient(to right,#6000ff,#fe0054);
	background-image: -o-linear-gradient(to right,#6000ff,#fe0054);
	background-image: linear-gradient(to right,#6000ff,#fe0054);
}

.sidebar-btn .pxl-link--icon::after {
	opacity: 0;
	background-color: #6000ff;
	content: '';
	width: 100%;
	height: 100%;
	border-radius: inherit;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all 300ms linear 0ms;
	-khtml-transition: all 300ms linear 0ms;
	-moz-transition: all 300ms linear 0ms;
	-ms-transition: all 300ms linear 0ms;
	-o-transition: all 300ms linear 0ms;
	transition: all 300ms linear 0ms;
	z-index: -1;
}


.sidebar-btn:hover:before {
  	opacity:1
}

.sidebar-btn:hover .pxl-link--icon:before {
  	opacity:0
}

.sidebar-btn:hover .pxl-link--icon::after {
	opacity: 1;
}

.sidebar-btn:hover .pxl-link--icon i {
	background-position:left bottom;
}

.page-template-page-testimonials .testimonial {
	margin-bottom: 15px;
	border: 1px solid #e3e3e3;
	border-radius: 15px;
	padding: 30px;
	position: relative;
}

.page-template-page-testimonials .testimonial-text {
	font-size: 20px;
	margin: 0 0 20px 0;
	position: relative;
	flex-grow: 0;
	flex-shrink: 1;
	line-height: 24px;
	quotes: "“" "”" "‘" "’";
	padding: 0 25px 0 25px;
}

.page-template-page-testimonials .testimonial-text::before {
	font-family: fira sans, sans-serif;
  	content: open-quote;
	font-size: 52px;
    position: absolute;
	left: 0;
	top: 14px;
}

.page-template-page-testimonials .testimonial-text::after {
	font-family: fira sans, sans-serif;
  	content: close-quote;
	font-size: 52px;
    position: absolute;
	right: 0;
	top: 14px;
}

.page-template-page-testimonials .testimonial-person {
	font-size: 18px;
	font-weight: 800;
	padding-left: 25px;
}

.page-template-page-testimonials .testimonial-company {
	font-size: 16px;
	color: #969696;
	padding-left: 25px;
}

@media (max-width: 1201px) {
	.site-nav {
		margin-top: 0;
	}
	
	.nav-menu {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		border-radius: 0px;
		min-height: 80px;
	}
	
	#float-nav .nav-menu {
		z-index: 999;
	}
	
	.nav-menu::after {
		width: 100%;
   		max-width: 100%;
		border-radius: 0;
		top: -15px;
	}
	
	.nav-brand {
		width: 250px;
		display: inline-block;
		margin: 5px 0 0 10px;
	}
	
	#masthead .nav-menu-list, #float-nav .nav-menu-list {
		display: none;
	}
	
	.pxl-anchor-divider {
		display: inline-block;
		position: absolute;
        right: 15px;
		top: 25px;
	}
	
	.mobile-close {
		display: inline-block;
		position: absolute;
        right: 15px;
		top: 25px;
		cursor: pointer;
		width: 25px;
  		height: 20px;
	}
	
	.mobile-close .bar {
		width: 100%;
		height: 3px;
		background-color: #fff;
		position: absolute;
		left: 0;
		transition: all 0.3s ease-in-out; /* Smooth transition for all properties */
	}

	.mobile-close .bar-1 {
	  	top: 0;
		transform: rotate(-45deg) translate(-6px, 6px);
	}

	.mobile-close .bar-2 {
		top: 50%;
		transform: translateY(-50%); /* Vertically center the middle bar */
		opacity: 0;
	}

	.mobile-close .bar-3 {
	  	bottom: 0;
		transform: rotate(45deg) translate(-6px, -6px);
	}

	/* Hover state for the hamburger menu */
	.mobile-close:hover .bar-1 {
		transform: rotate(0deg) translate(0px, 8px);
		transform-origin: 10px 10px;
	}

	.mobile-close:hover .bar-2 {
	  /*opacity: 0;  Fade out the middle bar */
	}

	.mobile-close:hover .bar-3 {
		transform: rotate(0deg) translate(0px, -8px);
		transform-origin: 10px 10px;
	}
	
}

@media (max-width: 1121px) {
	.testimonial-carousel {
		padding-right: 0;
		padding-bottom: 100px;
		font-size: 16px;
	}
	
	.testimonial-carousel .owl-nav {
		left: 0;
		bottom: 0;
		right: auto;
	}
		
}

@media (max-width: 992px) {
	.services-block .pxl-service-style1:nth-child(3) {
		display: none;
	}
}

@media (max-width: 767px) {
    .hero {
    	min-height: 1200px;
	}
	
	.wcm-img {
		display: none;
	}
	
	.services-block .pxl-service-style1:nth-child(2) {
		display: none;
	}
	
	.page-header {
    	height: 200px;
		padding-top: 65px;
	}
}

@media (max-width: 480px) {
	.section-title {
    	font-size: 50px;
	}
	
	.sidebar-page-content {
		margin-bottom: 20px;
		padding: 20px;
	}
}


@media (min-width: 768px) {
    .container {
    	width: 92%;
		max-width: 1300px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .container {
       	width: 92%;
		max-width: 1300px;
    }
}
