@charset "UTF-8";
/*--------------------------------------------------------------
  >>> TABLE OF CONTENTS:
  ----------------------------------------------------------------
  # Base
  # Sections
    ## Header
    ## Banner
    ## Footer

  --------------------------------------------------------------*/
/* Fool-proof @font-face */
/* Based on http://coding.smashingmagazine.com/2013/02/14/setting-weights-and-styles-at-font-face-declaration/ */
/* Front */
@-webkit-keyframes slide-down {
	0% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
}
@keyframes slide-down {
	0% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
}
.element {
	width: 100px;
	height: 100px;
	background: black;
	-webkit-animation: slide-down 5s 3;
	animation: slide-down 5s 3;
}

.visually-hidden {
	margin: -1px;
	padding: 0;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip: rect(0, 0, 0, 0);
	position: absolute;
}

@-webkit-keyframes zoom {
	from {
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
		opacity: 0;
	}
	to {
		-webkit-transform: scale(1);
		        transform: scale(1);
		opacity: 1;
	}
}

@keyframes zoom {
	from {
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
		opacity: 0;
	}
	to {
		-webkit-transform: scale(1);
		        transform: scale(1);
		opacity: 1;
	}
}
.zoom {
	-webkit-animation-name: zoom;
	        animation-name: zoom;
}

@-webkit-keyframes zoom2 {
	from {
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
	}
	to {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

@keyframes zoom2 {
	from {
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
	}
	to {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
.zoom2 {
	-webkit-animation-name: zoom2;
	        animation-name: zoom2;
}

@-webkit-keyframes zoommd {
	0% {
		-webkit-transform: scale(0.9);
		        transform: scale(0.9);
	}
	100% {
		-webkit-transform: scale(1.5);
		        transform: scale(1.5);
	}
}

@keyframes zoommd {
	0% {
		-webkit-transform: scale(0.9);
		        transform: scale(0.9);
	}
	100% {
		-webkit-transform: scale(1.5);
		        transform: scale(1.5);
	}
}
@-webkit-keyframes bounce {
	0% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	100% {
		-webkit-transform: translateY(40px);
		        transform: translateY(40px);
	}
}
@keyframes bounce {
	0% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	100% {
		-webkit-transform: translateY(40px);
		        transform: translateY(40px);
	}
}
.zoomBounce {
	-webkit-animation-name: zoomBounce;
	        animation-name: zoomBounce;
}

@-webkit-keyframes zoomBounce {
	0% {
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
		opacity: 0;
	}
	50% {
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
		opacity: 1;
	}
}

@keyframes zoomBounce {
	0% {
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
		opacity: 0;
	}
	50% {
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
		opacity: 1;
	}
}
@-webkit-keyframes movexy {
	0% {
		-webkit-transform: translateX(-10px) scale(0.9);
		        transform: translateX(-10px) scale(0.9);
	}
	100% {
		-webkit-transform: translateX(30px) scale(1.3) translateY(10px);
		        transform: translateX(30px) scale(1.3) translateY(10px);
	}
}
@keyframes movexy {
	0% {
		-webkit-transform: translateX(-10px) scale(0.9);
		        transform: translateX(-10px) scale(0.9);
	}
	100% {
		-webkit-transform: translateX(30px) scale(1.3) translateY(10px);
		        transform: translateX(30px) scale(1.3) translateY(10px);
	}
}
@-webkit-keyframes wave {
	0% {
		-webkit-transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
		        transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
		        transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
	}
}
@keyframes wave {
	0% {
		-webkit-transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
		        transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
		        transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
	}
}
@-webkit-keyframes gptFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes gptFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes gptFadeUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		        transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes gptFadeUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		        transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes gptFadeDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes gptFadeDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes gptFadeLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		        transform: translateX(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes gptFadeLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		        transform: translateX(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@-webkit-keyframes gptFadeRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		        transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes gptFadeRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		        transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@-webkit-keyframes gptZoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.7);
		        transform: scale(0.7);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
@keyframes gptZoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.7);
		        transform: scale(0.7);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
@-webkit-keyframes gptBounceIn {
	0% {
		-webkit-transform: scale(0.1);
		        transform: scale(0.1);
		opacity: 0;
	}
	60% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
@keyframes gptBounceIn {
	0% {
		-webkit-transform: scale(0.1);
		        transform: scale(0.1);
		opacity: 0;
	}
	60% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
.gptFade {
	-webkit-animation-name: gptFade;
	        animation-name: gptFade;
}

.gptFadeUp {
	-webkit-animation-name: gptFadeUp;
	        animation-name: gptFadeUp;
}

.gptFadeDown {
	-webkit-animation-name: gptFadeDown;
	        animation-name: gptFadeDown;
}

.gptFadeLeft {
	-webkit-animation-name: gptFadeLeft;
	        animation-name: gptFadeLeft;
}

.gptFadeRight {
	-webkit-animation-name: gptFadeRight;
	        animation-name: gptFadeRight;
}

.gptZoomIn {
	-webkit-animation-name: gptZoomIn;
	        animation-name: gptZoomIn;
}

.gptBounceIn {
	-webkit-animation-name: gptBounceIn;
	        animation-name: gptBounceIn;
}

@-webkit-keyframes jumping {
	0% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
		opacity: 0;
	}
	50% {
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
		opacity: 0;
	}
}

@keyframes jumping {
	0% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
		opacity: 0;
	}
	50% {
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
		opacity: 0;
	}
}
@-webkit-keyframes jump {
	0% {
		-webkit-transform: translateY(5px);
		        transform: translateY(5px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		        transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(5px);
		        transform: translateY(5px);
	}
}
@keyframes jump {
	0% {
		-webkit-transform: translateY(5px);
		        transform: translateY(5px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		        transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(5px);
		        transform: translateY(5px);
	}
}
@-webkit-keyframes stickySlideDown {
	from {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes stickySlideDown {
	from {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@-webkit-keyframes moveclouds {
	0% {
		-webkit-transform: translate3d(-10px, -10px, 0);
		        transform: translate3d(-10px, -10px, 0);
		opacity: 1;
	}
	50% {
		-webkit-transform: translate3d(-20px, 20px, 0);
		        transform: translate3d(-20px, 20px, 0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translate3d(30px, 0px, 0);
		        transform: translate3d(30px, 0px, 0);
		opacity: 1;
	}
}
@keyframes moveclouds {
	0% {
		-webkit-transform: translate3d(-10px, -10px, 0);
		        transform: translate3d(-10px, -10px, 0);
		opacity: 1;
	}
	50% {
		-webkit-transform: translate3d(-20px, 20px, 0);
		        transform: translate3d(-20px, 20px, 0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translate3d(30px, 0px, 0);
		        transform: translate3d(30px, 0px, 0);
		opacity: 1;
	}
}
@-webkit-keyframes circle {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
@keyframes circle {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
@-webkit-keyframes pulse {
	0% {
		width: 80px;
		height: 80px;
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	100% {
		height: 120px;
		width: 120px;
		opacity: 0;
	}
}
@keyframes pulse {
	0% {
		width: 80px;
		height: 80px;
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	100% {
		height: 120px;
		width: 120px;
		opacity: 0;
	}
}
@-webkit-keyframes pulsesm {
	0% {
		width: 60px;
		height: 60px;
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	100% {
		height: 80px;
		width: 80px;
		opacity: 0;
	}
}
@keyframes pulsesm {
	0% {
		width: 60px;
		height: 60px;
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	100% {
		height: 80px;
		width: 80px;
		opacity: 0;
	}
}
.gpUpX {
	-webkit-animation-name: gpUpX;
	        animation-name: gpUpX;
}

.gpUpSmX {
	-webkit-animation: gpUpX 1s both 1s;
	        animation: gpUpX 1s both 1s;
	-webkit-animation-delay: 0.3s;
	        animation-delay: 0.3s;
}

.gpDownX {
	-webkit-animation-name: gpDownX;
	        animation-name: gpDownX;
}

@-webkit-keyframes gpUpX {
	0% {
		opacity: 0;
		-webkit-transform: translate(80px, -30px);
		        transform: translate(80px, -30px);
	}
	100% {
		-webkit-transform: translate(0, 0);
		        transform: translate(0, 0);
		opacity: 1;
	}
}

@keyframes gpUpX {
	0% {
		opacity: 0;
		-webkit-transform: translate(80px, -30px);
		        transform: translate(80px, -30px);
	}
	100% {
		-webkit-transform: translate(0, 0);
		        transform: translate(0, 0);
		opacity: 1;
	}
}
@-webkit-keyframes gpDownX {
	0% {
		opacity: 0;
		-webkit-transform: translate(-80px, 80px);
		        transform: translate(-80px, 80px);
	}
	100% {
		-webkit-transform: translate(0, 0);
		        transform: translate(0, 0);
		opacity: 1;
	}
}
@keyframes gpDownX {
	0% {
		opacity: 0;
		-webkit-transform: translate(-80px, 80px);
		        transform: translate(-80px, 80px);
	}
	100% {
		-webkit-transform: translate(0, 0);
		        transform: translate(0, 0);
		opacity: 1;
	}
}
@-webkit-keyframes animationFramesTwo {
	0% {
		-webkit-transform: translate(0px, 0px) rotate(0deg);
		        transform: translate(0px, 0px) rotate(0deg);
	}
	20% {
		-webkit-transform: translate(-73px, 1px) rotate(-36deg);
		        transform: translate(-73px, 1px) rotate(-36deg);
	}
	40% {
		-webkit-transform: translate(-141px, -72px) rotate(-72deg);
		        transform: translate(-141px, -72px) rotate(-72deg);
	}
	60% {
		-webkit-transform: translate(-83px, -122px) rotate(-108deg);
		        transform: translate(-83px, -122px) rotate(-108deg);
	}
	80% {
		-webkit-transform: translate(40px, -72px) rotate(-144deg);
		        transform: translate(40px, -72px) rotate(-144deg);
	}
	100% {
		-webkit-transform: translate(0px, 0px) rotate(0deg);
		        transform: translate(0px, 0px) rotate(0deg);
	}
}
@keyframes animationFramesTwo {
	0% {
		-webkit-transform: translate(0px, 0px) rotate(0deg);
		        transform: translate(0px, 0px) rotate(0deg);
	}
	20% {
		-webkit-transform: translate(-73px, 1px) rotate(-36deg);
		        transform: translate(-73px, 1px) rotate(-36deg);
	}
	40% {
		-webkit-transform: translate(-141px, -72px) rotate(-72deg);
		        transform: translate(-141px, -72px) rotate(-72deg);
	}
	60% {
		-webkit-transform: translate(-83px, -122px) rotate(-108deg);
		        transform: translate(-83px, -122px) rotate(-108deg);
	}
	80% {
		-webkit-transform: translate(40px, -72px) rotate(-144deg);
		        transform: translate(40px, -72px) rotate(-144deg);
	}
	100% {
		-webkit-transform: translate(0px, 0px) rotate(0deg);
		        transform: translate(0px, 0px) rotate(0deg);
	}
}
@-webkit-keyframes leafMotion {
	50% {
		-webkit-transform: rotate(4deg);
		        transform: rotate(4deg);
	}
}
@keyframes leafMotion {
	50% {
		-webkit-transform: rotate(4deg);
		        transform: rotate(4deg);
	}
}
@keyframes jump {
	0% {
		-webkit-transform: translateY(2px);
		        transform: translateY(2px);
	}
	50% {
		-webkit-transform: translateY(-5px);
		        transform: translateY(-5px);
	}
	100% {
		-webkit-transform: translateY(2px);
		        transform: translateY(2px);
	}
}
@-webkit-keyframes slideInnew3 {
	0% {
		opacity: 0;
		-webkit-transform: translate(80px, -80px);
		        transform: translate(80px, -80px);
	}
	100% {
		-webkit-transform: translate(0, 0);
		        transform: translate(0, 0);
	}
}
@keyframes slideInnew3 {
	0% {
		opacity: 0;
		-webkit-transform: translate(80px, -80px);
		        transform: translate(80px, -80px);
	}
	100% {
		-webkit-transform: translate(0, 0);
		        transform: translate(0, 0);
	}
}
@-webkit-keyframes animeone {
	0% {
		-webkit-transform: translate(0) rotate(0deg);
		        transform: translate(0) rotate(0deg);
	}
	20% {
		-webkit-transform: translate(80px, 1px) rotate(50deg);
		        transform: translate(80px, 1px) rotate(50deg);
	}
	40% {
		-webkit-transform: translate(145px, 72px) rotate(90deg);
		        transform: translate(145px, 72px) rotate(90deg);
	}
	60% {
		-webkit-transform: translate(83px, 122px) rotate(125deg);
		        transform: translate(83px, 122px) rotate(125deg);
	}
	80% {
		-webkit-transform: translate(-40px, 72px) rotate(140deg);
		        transform: translate(-40px, 72px) rotate(140deg);
	}
	to {
		-webkit-transform: translate(0) rotate(0deg);
		        transform: translate(0) rotate(0deg);
	}
}
@keyframes animeone {
	0% {
		-webkit-transform: translate(0) rotate(0deg);
		        transform: translate(0) rotate(0deg);
	}
	20% {
		-webkit-transform: translate(80px, 1px) rotate(50deg);
		        transform: translate(80px, 1px) rotate(50deg);
	}
	40% {
		-webkit-transform: translate(145px, 72px) rotate(90deg);
		        transform: translate(145px, 72px) rotate(90deg);
	}
	60% {
		-webkit-transform: translate(83px, 122px) rotate(125deg);
		        transform: translate(83px, 122px) rotate(125deg);
	}
	80% {
		-webkit-transform: translate(-40px, 72px) rotate(140deg);
		        transform: translate(-40px, 72px) rotate(140deg);
	}
	to {
		-webkit-transform: translate(0) rotate(0deg);
		        transform: translate(0) rotate(0deg);
	}
}
@-webkit-keyframes animetwo {
	0% {
		-webkit-transform: translate(0) rotate(0deg);
		transform: translate(0) rotate(0deg);
	}
	20% {
		-webkit-transform: translate(-73px, 1px) rotate(-36deg);
		transform: translate(-73px, 1px) rotate(-36deg);
	}
	40% {
		-webkit-transform: translate(-141px, -72px) rotate(-72deg);
		transform: translate(-141px, -72px) rotate(-72deg);
	}
	60% {
		-webkit-transform: translate(-83px, -122px) rotate(-108deg);
		transform: translate(-83px, -122px) rotate(-108deg);
	}
	80% {
		-webkit-transform: translate(40px, -72px) rotate(-144deg);
		transform: translate(40px, -72px) rotate(-144deg);
	}
	to {
		-webkit-transform: translate(0) rotate(0deg);
		transform: translate(0) rotate(0deg);
	}
}
@keyframes animetwo {
	0% {
		-webkit-transform: translate(0) rotate(0deg);
		transform: translate(0) rotate(0deg);
	}
	20% {
		-webkit-transform: translate(-73px, 1px) rotate(-36deg);
		transform: translate(-73px, 1px) rotate(-36deg);
	}
	40% {
		-webkit-transform: translate(-141px, -72px) rotate(-72deg);
		transform: translate(-141px, -72px) rotate(-72deg);
	}
	60% {
		-webkit-transform: translate(-83px, -122px) rotate(-108deg);
		transform: translate(-83px, -122px) rotate(-108deg);
	}
	80% {
		-webkit-transform: translate(40px, -72px) rotate(-144deg);
		transform: translate(40px, -72px) rotate(-144deg);
	}
	to {
		-webkit-transform: translate(0) rotate(0deg);
		transform: translate(0) rotate(0deg);
	}
}
@-webkit-keyframes animethree {
	0% {
		-webkit-transform: translate(0) rotate(0deg);
		        transform: translate(0) rotate(0deg);
	}
	20% {
		-webkit-transform: translateY(-73px) rotate(-36deg);
		        transform: translateY(-73px) rotate(-36deg);
	}
	40% {
		-webkit-transform: translateY(-141px) rotate(-72deg);
		        transform: translateY(-141px) rotate(-72deg);
	}
	60% {
		-webkit-transform: translateY(-83px) rotate(-108deg);
		        transform: translateY(-83px) rotate(-108deg);
	}
	80% {
		-webkit-transform: translateY(40px) rotate(-144deg);
		        transform: translateY(40px) rotate(-144deg);
	}
	to {
		-webkit-transform: translate(0) rotate(0deg);
		        transform: translate(0) rotate(0deg);
	}
}
@keyframes animethree {
	0% {
		-webkit-transform: translate(0) rotate(0deg);
		        transform: translate(0) rotate(0deg);
	}
	20% {
		-webkit-transform: translateY(-73px) rotate(-36deg);
		        transform: translateY(-73px) rotate(-36deg);
	}
	40% {
		-webkit-transform: translateY(-141px) rotate(-72deg);
		        transform: translateY(-141px) rotate(-72deg);
	}
	60% {
		-webkit-transform: translateY(-83px) rotate(-108deg);
		        transform: translateY(-83px) rotate(-108deg);
	}
	80% {
		-webkit-transform: translateY(40px) rotate(-144deg);
		        transform: translateY(40px) rotate(-144deg);
	}
	to {
		-webkit-transform: translate(0) rotate(0deg);
		        transform: translate(0) rotate(0deg);
	}
}
body {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #677294;
}

.home-agency {
	color: #6a7695;
}
.home-agency h1,
.home-agency h2,
.home-agency h3,
.home-agency h4,
.home-agency h5,
.home-agency h6 {
	color: #373d46;
}

.no-scroll {
	overflow: hidden;
}

#main_content {
	background: #fff;
}

svg {
	display: block;
}

a,
button {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

input,
textarea {
	width: 100%;
	background: #f8f7fb;
	padding: 10px 15px;
	border: 0;
	outline: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-bottom: 30px;
	border-radius: 5px;
	border: 1px solid transparent;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #a4abc0;
}
input::-moz-placeholder, textarea::-moz-placeholder {
	color: #a4abc0;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #a4abc0;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
	color: #a4abc0;
}
input::placeholder,
textarea::placeholder {
	color: #a4abc0;
}
input:focus,
textarea:focus {
	-webkit-box-shadow: 0px 15px 17px 0px rgba(20, 3, 70, 0.08);
	        box-shadow: 0px 15px 17px 0px rgba(20, 3, 70, 0.08);
	background: transparent;
	border-color: #fafafc;
}

textarea {
	height: 160px;
}

a,
a:hover {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	font-weight: 600;
	color: #373d46;
	font-family: "Poppins", sans-serif;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover{
	color: white;
}

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

section {
	position: relative;
	margin-top: -1px;
}

.pr {
	position: relative;
	z-index: 111;
}

.mb-160 {
	margin-bottom: 160px !important;
}

.mb-220 {
	margin-bottom: 185px;
}
@media (max-width: 991px) {
	.mb-220 {
		margin-bottom: 100px;
	}
}

.bmt-100 {
	margin-top: 100px;
}

.mt-60 {
	margin-top: 60px;
}

@media (max-width: 991px) {
	.order-md {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
}
.border-none {
	border: 0;
}
.border-none:before, .border-none:after {
	display: none;
}

.home-corporate,
.home-social-payment {
	font-family: "Poppins", sans-serif;
	font-size: 15px;
}
.home-corporate h1,
.home-corporate h2,
.home-corporate h3,
.home-corporate h4,
.home-corporate h5,
.home-corporate h6,
.home-social-payment h1,
.home-social-payment h2,
.home-social-payment h3,
.home-social-payment h4,
.home-social-payment h5,
.home-social-payment h6 {
	color: #051441;
}
.home-corporate p,
.home-social-payment p {
	color: #677294;
	font-size: 15px;
}

.home-saas-main {
	color: #646975;
}
.home-saas-main h1,
.home-saas-main h2,
.home-saas-main h3,
.home-saas-main h4,
.home-saas-main h5,
.home-saas-main h6 {
	color: #2c2c51;
}

.home-saas {
	color: #6b6b7e;
}
.home-saas h1,
.home-saas h2,
.home-saas h3,
.home-saas h4,
.home-saas h5,
.home-saas h6 {
	color: #2c2c51;
}

.home-analytics {
	font-family: "Poppins", sans-serif;
	color: #6d717f;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}
.home-analytics h1,
.home-analytics h2,
.home-analytics h3,
.home-analytics h4,
.home-analytics h5,
.home-analytics h6 {
	color: #051441;
}

body.home-seo {
	font-size: 16px;
	color: #7b7f8c;
	font-family: "Poppins", sans-serif;
	line-height: 26px;
}
body.home-seo h1,
body.home-seo h2,
body.home-seo h3,
body.home-seo h4,
body.home-seo h5,
body.home-seo h6 {
	color: #343e5d;
}

body.home-agency-two {
	color: #706c79;
}
body.home-agency-two h1,
body.home-agency-two h2,
body.home-agency-two h3,
body.home-agency-two h4,
body.home-agency-two h5,
body.home-agency-two h6 {
	color: #1f113a;
}

.pr {
	position: relative !important;
}

.pd-none {
	padding: 0 !important;
}

.mb-75 {
	margin-bottom: 75px;
}

.mt-80 {
	margin-top: 77px;
}
@media (max-width: 991px) {
	.mt-80 {
		margin-top: 0;
	}
}

.mb-140 {
	margin-bottom: 140px;
}

.container {
	max-width: 1200px;
}

.title-small {
	font-size: 20px;
	text-align: center;
	color: #6a7695 !important;
	margin-bottom: 53px;
	font-weight: 400;
}

@media (max-width: 991px) {
	.gpt-order-2 {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
}
@media (max-width: 767px) {
	.gpt-order-md-2 {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
}
.gp-col-2 {
	width: 20%;
	padding: 0 15px;
}

/*
Flaticon icon font: Flaticon
Creation date: 24/08/2018 05:51
*/
@font-face {
	font-family: "Flaticon";
	src: url("../fonts/Flaticon.eot");
	src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"), url("../fonts/Flaticon.woff") format("woff"), url("../fonts/Flaticon.ttf") format("truetype"), url("../fonts/Flaticon.svg#Flaticon") format("svg");
	font-weight: normal;
	font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
	@font-face {
		font-family: "Flaticon";
		src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
	}
}
.fi:before {
	display: inline-block;
	font-family: "Flaticon";
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	line-height: 1;
	text-decoration: inherit;
	text-rendering: optimizeLegibility;
	text-transform: none;
}

.flaticon-playstore:before {
	content: "";
}

.flaticon-apple-logo:before {
	content: "";
}

@media (max-width: 992px) {
	.gp-col-2 {
		width: 33.33%;
		padding: 0 15px;
	}
}
@media (max-width: 576px) {
	.gp-col-2 {
		width: 50%;
		padding: 0 15px;
	}
}
@media (max-width: 420px) {
	.gp-col-2 {
		width: 100%;
		padding: 0 15px;
	}
}
/* Page Loader */
.page-loader {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 9999;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.loading {
	font-size: 84px;
	font-weight: 800;
	text-align: center;
	width: 100%;
	line-height: 1;
}
.loading span {
	position: relative;
	color: rgb(37, 131, 64);
	display: inline-block;
}
.loading span::after {
	position: absolute;
	top: 0;
	left: 0;
	content: attr(data-text);
	color: rgb(41,181,81);
	opacity: 0;
	-webkit-transform: scale(1.5);
	    -ms-transform: scale(1.5);
	        transform: scale(1.5);
	-webkit-animation: loading 3s infinite;
	        animation: loading 3s infinite;
}
.loading span:nth-child(2)::after {
	-webkit-animation-delay: 0.1s;
	        animation-delay: 0.1s;
}
.loading span:nth-child(3)::after {
	-webkit-animation-delay: 0.2s;
	        animation-delay: 0.2s;
}
.loading span:nth-child(4)::after {
	-webkit-animation-delay: 0.3s;
	        animation-delay: 0.3s;
}
.loading span:nth-child(5)::after {
	-webkit-animation-delay: 0.4s;
	        animation-delay: 0.4s;
}
.loading span:nth-child(6)::after {
	-webkit-animation-delay: 0.5s;
	        animation-delay: 0.5s;
}
.loading span:nth-child(7)::after {
	-webkit-animation-delay: 0.6s;
	        animation-delay: 0.6s;
}
@media (max-width: 991px) {
	.loading {
		font-size: 60px;
	}
}
@media (max-width: 576px) {
	.loading {
		font-size: 40px;
	}
}

@-webkit-keyframes loading {
	0%, 75%, 100% {
		-webkit-transform: scale(1.5);
		        transform: scale(1.5);
		opacity: 0;
	}
	25%, 50% {
		-webkit-transform: scale(1);
		        transform: scale(1);
		opacity: 1;
	}
}

@keyframes loading {
	0%, 75%, 100% {
		-webkit-transform: scale(1.5);
		        transform: scale(1.5);
		opacity: 0;
	}
	25%, 50% {
		-webkit-transform: scale(1);
		        transform: scale(1);
		opacity: 1;
	}
}
/*--------------------------------------------------------------
  ##  Button
  --------------------------------------------------------------*/

/*---------------------------------------------------------------
 ## BTN-FOOTER
---------------------------------------------------------------*/

.gpt-btn-footer {
	padding: 7px 26px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	position: relative;
    border: 2px solid #ffffff;
	-webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	-o-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	z-index: 2;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
}

.gpt-btn-footer.banner-btn {
	padding: 11px 33px;
	border-radius: 4px;
}
.gpt-btn-footer.btn-submit {
	background: #1abf68;
	width: auto;
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	padding: 10px 27px;
}
.gpt-btn-footer.btn-submit:after {
	background: #1abf68;
}
.gpt-btn-footer.btn-submit:hover {
	-webkit-box-shadow: none;
	        box-shadow: none;
	background: #1abf68;
	color: #fff;
}
.gpt-btn-footer.btn-circle {
	border-radius: 30px;
	overflow: hidden;
}
.gpt-btn-footer.btn-sqr {
	border-radius: 0;
}
.gpt-btn-footer.btn-lg {
	padding: 16px 35px;
}
.gpt-btn-footer i {
	font-size: 20px;
	margin-left: 5px;
	display: inline-block;
	vertical-align: -3px;
}
.gpt-btn-footer:after {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	content: "";
	color: #000 !important;
	background: #1abf68;
	-webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	-o-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.gpt-btn-footer:hover {
	color: #1abf68;
	background: white;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn-footer:hover:after {
	top: 0;
	bottom: auto;
	height: 0;
}

/*---------------------------------------------------------------
 ## ACABA BTN-FOOTER
---------------------------------------------------------------*/

.gpt-btn {
	padding: 7px 26px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	position: relative;
	border: 2px solid #1abf68;
	-webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	-o-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	z-index: 2;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
}

.gpt-btn.banner-btn {
	padding: 11px 33px;
	border-radius: 4px;
}
.gpt-btn.btn-submit {
	background: #1abf68;
	width: auto;
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	padding: 10px 27px;
}
.gpt-btn.btn-submit:after {
	background: #1abf68;
}
.gpt-btn.btn-submit:hover {
	-webkit-box-shadow: none;
	        box-shadow: none;
	background: #1abf68;
	color: #fff;
}
.gpt-btn.btn-circle {
	border-radius: 30px;
	overflow: hidden;
}
.gpt-btn.btn-sqr {
	border-radius: 0;
}
.gpt-btn.btn-lg {
	padding: 16px 35px;
}
.gpt-btn i {
	font-size: 20px;
	margin-left: 5px;
	display: inline-block;
	vertical-align: -3px;
}
.gpt-btn:after {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	content: "";
	color: #000 !important;
	background: #1abf68;
	-webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	-o-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.gpt-btn:hover {
	color: #1abf68;
	background: transparent;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn:hover:after {
	top: 0;
	bottom: auto;
	height: 0;
}
.gpt-btn.gp-btn-light {
	color: #1abf68;
	border-color: #fff;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.gp-btn-light:after {
	background: #fff;
}
.gpt-btn.gp-btn-light:hover {
	color: #fff;
}
.gpt-btn.gp-btn-light.btn-light-four {
	color: #f8b137;
}
.gpt-btn.gp-btn-light.btn-light-four:hover {
	color: #fff;
}
.gpt-btn.gp-btn-light.color-three {
	color: #00c99c;
	border-color: #fff;
}
.gpt-btn.gp-btn-light.color-three:after {
	background: #fff;
}
.gpt-btn.gp-btn-light.color-three:hover {
	color: #fff;
}
.gpt-btn.btn-light {
	color: #646975;
	border-color: #fff;
	-webkit-box-shadow: none;
	        box-shadow: none;
	-webkit-box-shadow: 0 6px 10px 0 rgba(32, 46, 77, 0.08);
	        box-shadow: 0 6px 10px 0 rgba(32, 46, 77, 0.08);
}
.gpt-btn.btn-light:after {
	background: #fff;
}
.gpt-btn.btn-light:hover {
	color: #fff;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.btn-light.btn-light-four {
	color: #f8b137;
}
.gpt-btn.btn-light.btn-light-four:hover {
	color: #fff;
}
.gpt-btn.btn-light.color-three {
	color: #00c99c;
	border-color: #fff;
}
.gpt-btn.btn-light.color-three:after {
	background: #fff;
}
.gpt-btn.btn-light.color-three:hover {
	color: #fff;
}
.gpt-btn.btn-ass {
	padding: 7px 18px;
	border-radius: 6px;
	color: #2c2c51;
	border-color: #fff;
	-webkit-box-shadow: none;
	        box-shadow: none;
	font-size: 14px;
	overflow: hidden;
}
.gpt-btn.btn-ass:after {
	background: #f2f2f2;
}
.gpt-btn.btn-ass:hover {
	background: #1abf68;
	color: #fff;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.btn-grey {
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-color: #f2f2f7;
	color: #2c2c51;
	background: #f2f2f7;
}
.gpt-btn.btn-grey:after {
	height: 0;
	background: #1abf68;
}
.gpt-btn.btn-grey:hover {
	color: #fff;
	border-color: #1abf68;
	-webkit-box-shadow: 0 10px 20px 0 rgba(26, 191, 104, 0.3);
	        box-shadow: 0 10px 20px 0 rgba(26, 191, 104, 0.3);
}
.gpt-btn.btn-grey:hover:after {
	height: 100%;
}
.gpt-btn.btn-round {
	border-radius: 4px;
	overflow: hidden;
}
.gpt-btn.btn-two {
	border-color: #6e58fc;
}
.gpt-btn.btn-two:after {
	background: #6e58fc;
}
.gpt-btn.btn-two:hover {
	color: #6e58fc;
}
.gpt-btn.color-eight {
	border-color: #00c99c;
	-webkit-box-shadow: 0 20px 30px 0 rgba(0, 201, 156, 0.16);
	        box-shadow: 0 20px 30px 0 rgba(0, 201, 156, 0.16);
	border-width: 2px;
}
.gpt-btn.color-eight:after {
	background: #00c99c;
}
.gpt-btn.color-eight:hover {
	color: #00c99c;
	border-color: #93e8d5;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.color-eight.btn-outline {
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: #00c99c;
}
.gpt-btn.color-eight.btn-outline:hover {
	color: #fff;
	border-color: #00c99c;
}
.gpt-btn.color-eight.btn-light {
	color: #646975;
	border-color: #fff;
	background: #00c99c;
	-webkit-box-shadow: 0 6px 10px 0 rgba(32, 46, 77, 0.08);
	        box-shadow: 0 6px 10px 0 rgba(32, 46, 77, 0.08);
}
.gpt-btn.color-eight.btn-light:after {
	background: #fff;
}
.gpt-btn.color-eight.btn-light:hover {
	color: #fff;
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-color: #00c99c;
}
.gpt-btn.btn-outline {
	border-color: #dfe3ed;
	color: #343e5d;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.btn-outline:after {
	height: 0;
}
.gpt-btn.btn-outline:hover {
	color: #fff;
	border-color: #1abf68;
}
.gpt-btn.btn-outline:hover:after {
	height: 100%;
}
.gpt-btn.btn-outline.color-two {
	border: 2px solid #93e8d5;
	color: #00c99c;
}
.gpt-btn.btn-outline.color-two:after {
	background: #00c99c;
}
.gpt-btn.btn-outline.color-two:hover {
	color: #fff;
}
.gpt-btn.btn-outline.btn-outline-light {
	border-color: #c4c4e0;
	color: #2c2c51;
}
.gpt-btn.btn-outline.btn-outline-light:after {
	background: #1abf68;
}
.gpt-btn.btn-outline.btn-outline-light:hover {
	color: #fff;
}
.gpt-btn.color-three {
	border-color: #00c99c;
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-width: 2px;
}
.gpt-btn.color-three:after {
	background: #00c99c;
}
.gpt-btn.color-three:hover {
	color: #00c99c;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.color-three.btn-outline {
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: #00c99c;
}
.gpt-btn.color-three.btn-outline:hover {
	color: #fff;
	border-color: #00c99c;
}
.gpt-btn.color-four {
	border: 2px solid #f8b137;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.color-four:after {
	background: #f8b137;
}
.gpt-btn.color-four:hover {
	color: #f8b137;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.color-four.btn-light {
	border-color: #fff;
}
.gpt-btn.color-four.btn-light:after {
	background: #fff;
}
.gpt-btn.color-four.btn-light:hover:after {
	background: transparent;
}
.gpt-btn.color-four.btn-outline {
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-color: #dfe3ed;
}
.gpt-btn.color-four.btn-outline:hover {
	border-color: #f8b137;
	color: #fff;
}
.gpt-btn.color-five {
	border: 2px solid #ff5e85;
	-webkit-box-shadow: 0 20px 20px 0 rgba(218, 57, 96, 0.2);
	        box-shadow: 0 20px 20px 0 rgba(218, 57, 96, 0.2);
}
.gpt-btn.color-five:after {
	background: #ff5e85;
}
.gpt-btn.color-five:hover {
	color: #ff5e85;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.color-five.btn-outline {
	border-color: #dfe3ed;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.color-five.btn-outline:hover {
	color: #fff;
	border-color: #ff5e85;
	-webkit-box-shadow: 0 20px 20px 0 rgba(218, 57, 96, 0.2);
	        box-shadow: 0 20px 20px 0 rgba(218, 57, 96, 0.2);
}
.gpt-btn.color-six {
	border: 2px solid #cd50e2;
	background: transparent;
	-webkit-box-shadow: 0 14px 20px 0 rgba(205, 80, 226, 0.3);
	        box-shadow: 0 14px 20px 0 rgba(205, 80, 226, 0.3);
}
.gpt-btn.color-six:after {
	background: #cd50e2;
}
.gpt-btn.color-six:hover {
	color: #cd50e2;
	-webkit-box-shadow: none;
	        box-shadow: none;
	background: transparent;
}
.gpt-btn.color-six.btn-outline {
	border-color: #dfe3ed;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.color-six.btn-outline:hover {
	color: #fff;
	border-color: #cd50e2;
	-webkit-box-shadow: 0 14px 20px 0 rgba(205, 80, 226, 0.3);
	        box-shadow: 0 14px 20px 0 rgba(205, 80, 226, 0.3);
}
.gpt-btn.color-seven {
	border-color: #6e58fc;
	-webkit-box-shadow: 0 20px 30px 0 rgba(6, 16, 149, 0.2);
	        box-shadow: 0 20px 30px 0 rgba(6, 16, 149, 0.2);
}
.gpt-btn.color-seven:after {
	background: #6e58fc;
}
.gpt-btn.color-seven:hover {
	color: #6e58fc;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.color-seven.btn-outline {
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: #6e58fc;
}
.gpt-btn.color-seven.btn-outline:hover {
	color: #fff;
	border-color: #6e58fc;
}
.gpt-btn.color-eight {
	border-color: #4d5afe;
	-webkit-box-shadow: 0 20px 30px 0 rgba(6, 16, 149, 0.2);
	        box-shadow: 0 20px 30px 0 rgba(6, 16, 149, 0.2);
	padding: 12px 25px;
}
.gpt-btn.color-eight:after {
	background: #4d5afe;
}
.gpt-btn.color-eight:hover {
	color: #4d5afe;
	border-color: #4d5afe;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.color-eight.btn-light {
	-webkit-box-shadow: 0 20px 30px 0 rgba(6, 16, 149, 0.2);
	        box-shadow: 0 20px 30px 0 rgba(6, 16, 149, 0.2);
	color: #4d5afe;
	background: transparent;
}
.gpt-btn.color-eight.btn-light:after {
	background: #fff;
}
.gpt-btn.color-eight.btn-light:hover {
	background: transparent;
	border-color: #fff;
}
.gpt-btn.color-eight.btn-outline {
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: #4d5afe;
	background: transparent;
}
.gpt-btn.color-eight.btn-outline:hover {
	color: #fff;
	border-color: #4d5afe;
}
.gpt-btn.color-eight.btn-outline.btn-light {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.502);
}
.gpt-btn.color-eight.btn-outline.btn-light:hover {
	border-color: #fff;
	color: #4d5afe;
}
.gpt-btn.color-two {
	border-color: #ff6344;
	-webkit-box-shadow: none;
	        box-shadow: none;
	-webkit-box-shadow: 0 20px 30px 0 rgba(255, 83, 48, 0.16);
	        box-shadow: 0 20px 30px 0 rgba(255, 83, 48, 0.16);
}
.gpt-btn.color-two:after {
	background: #ff6344;
}
.gpt-btn.color-two:hover {
	color: #ff6344;
	border-color: #ff6344;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.color-two.btn-outline {
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: #ff6344;
}
.gpt-btn.color-two.btn-outline:hover {
	color: #fff;
	border-color: #ff6344;
}
.gpt-btn.color-two.btn-light {
	color: #646975;
	border-color: #fff;
	background: #ff6344;
	-webkit-box-shadow: 0 6px 10px 0 rgba(32, 46, 77, 0.08);
	        box-shadow: 0 6px 10px 0 rgba(32, 46, 77, 0.08);
}
.gpt-btn.color-two.btn-light:after {
	background: #fff;
}
.gpt-btn.color-two.btn-light:hover {
	color: #fff;
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-color: #ff6344;
}
.gpt-btn.color-nine {
	border-color: #fb8c5c;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.color-nine:after {
	background: #fb8c5c;
}
.gpt-btn.color-nine:hover {
	color: #fb8c5c;
	border-color: #fb8c5c;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.gpt-btn.color-nine.btn-outline {
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: #fb8c5c;
}
.gpt-btn.color-nine.btn-outline:hover {
	color: #fff;
	border-color: #fb8c5c;
}
.gpt-btn.color-nine.btn-light {
	color: #646975;
	border-color: #fff;
	background: #fb8c5c;
}
.gpt-btn.color-nine.btn-light:after {
	background: #fff;
}
.gpt-btn.color-nine.btn-light:hover {
	color: #fff;
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-color: #fb8c5c;
}

.view-btn {
	font-size: 18px;
	color: #6b717d;
	font-weight: 400;
	display: inline-block;
}
.view-btn i {
	vertical-align: -2px;
	color: #6b717d;
	margin-left: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: inline-block;
}
.view-btn:hover {
	color: #ff6344;
}
.view-btn:hover i {
	margin-left: 5px;
	color: #ff6344;
}

.play-btn-two {
	height: 54px;
	width: 54px;
	background-color: white;
	-webkit-box-shadow: 0 10px 16px 0 rgba(0, 6, 26, 0.08);
	        box-shadow: 0 10px 16px 0 rgba(0, 6, 26, 0.08);
	color: #cd50e2;
	display: inline-block;
	border-radius: 50%;
	text-align: center;
	line-height: 56px;
	position: relative;
}
.play-btn-two i {
	margin-left: 2px;
	color: #f8b137;
	text-shadow: 0 8px 10px rgba(202, 138, 28, 0.3);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.play-btn-two:after, .play-btn-two:before {
	content: "";
	height: 70px;
	width: 70px;
	position: absolute;
	left: -8px;
	top: -8px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background-color: rgba(255, 255, 255, 0.102);
	border-radius: 50%;
	-webkit-animation: videoBtnAnim 3s linear infinite;
	        animation: videoBtnAnim 3s linear infinite;
	display: block;
}
.play-btn-two:after {
	-webkit-animation-delay: 0.5s;
	        animation-delay: 0.5s;
	height: 80px;
	width: 80px;
	left: -13px;
	top: -13px;
	background-color: transparent;
}
.play-btn-two:hover {
	background: #f8b137;
}
.play-btn-two:hover i {
	color: #fff;
}

.button-container {
	margin-top: 50px;
}

@-webkit-keyframes shine {
	from {
		opacity: 0;
		left: 0;
	}
	50% {
		opacity: 1;
	}
	to {
		opacity: 0;
		left: 100%;
	}
}
@keyframes shine {
	from {
		opacity: 0;
		left: 0;
	}
	50% {
		opacity: 1;
	}
	to {
		opacity: 0;
		left: 100%;
	}
}
.nav-btn {
	padding: 7px 29px;
}

.bbtn-btn,
.gp-btn-btc {
	-webkit-box-shadow: 0 3px 4px 0 rgba(30, 1, 87, 0.5);
	        box-shadow: 0 3px 4px 0 rgba(30, 1, 87, 0.5);
	border: 1px solid #413095;
	padding: 11px 31px;
	display: inline-block;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	background-size: 200% auto;
}
.bbtn-btn:hover,
.gp-btn-btc:hover {
	background-image: -webkit-gradient(linear, left top, right top, from(#a35dfb), color-stop(100%, #671efc), color-stop(0%, #a35dfb));
	background-image: -o-linear-gradient(left, #a35dfb 0%, #671efc 100%, #a35dfb 0%);
	background-image: linear-gradient(to right, #a35dfb 0%, #671efc 100%, #a35dfb 0%);
	color: #fff;
	background-position: right center;
}

.bbtn-btn {
	padding: 13px 33px;
	background: #271582;
}
.bbtn-btn.btn-active {
	margin-right: 20px;
}

.gp-btn-two {
	padding: 10px 25px;
	background: #f8b137;
	border: 2px solid #f8b137;
	color: #fff;
	border-radius: 3px;
	display: inline-block;
}
.gp-btn-two:hover {
	background: transparent;
	color: #f8b137;
}

.gp-btn-four {
	background: #ff5e85;
	padding: 10px 30px;
	border-radius: 30px;
	color: #fff;
	display: inline-block;
	font-size: 15px;
	-webkit-box-shadow: 0 20px 20px 0 rgba(0, 11, 40, 0.1);
	        box-shadow: 0 20px 20px 0 rgba(0, 11, 40, 0.1);
}
.gp-btn-four i {
	margin-left: 5px;
}

.app-btn {
	font-size: 18px;
	font-weight: 500;
	display: inline-block;
	border-radius: 4px;
	padding: 10px 25px;
}
.app-btn .button-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.app-btn span {
	display: inline-block;
	vertical-align: text-top;
}
.app-btn i {
	font-size: 24px;
	margin-right: 10px;
	margin-left: 0;
	line-height: 1;
}
.app-btn.btn-outline {
	color: #00c99c;
	border-color: #00c99c;
}

/* Back To Top */
.return-to-top {
	position: fixed;
	bottom: -30px;
	right: 20px;
	width: 42px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	cursor: pointer;
	z-index: 998;
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: bottom 0.5s ease, opacity 0.5s ease;
	-o-transition: bottom 0.5s ease, opacity 0.5s ease;
	transition: bottom 0.5s ease, opacity 0.5s ease;
}
.return-to-top:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: transparent;
	opacity: 1;
	display: block;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: inherit;
	-webkit-transition: opacity 0.6s ease, -webkit-transform 0.5s ease;
	transition: opacity 0.6s ease, -webkit-transform 0.5s ease;
	-o-transition: transform 0.5s ease, opacity 0.6s ease;
	transition: transform 0.5s ease, opacity 0.6s ease;
	transition: transform 0.5s ease, opacity 0.6s ease, -webkit-transform 0.5s ease;
}
.return-to-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	background: rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	    transform: scale(1);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: inherit;
}
.return-to-top > i {
	position: relative;
	overflow: hidden;
	font-size: 12px;
	width: inherit;
	height: inherit;
	line-height: inherit;
	display: block;
	color: transparent;
	text-shadow: 0 0 #fff, 0 50px #fff;
	-webkit-transition: text-shadow 0.2s ease;
	-o-transition: text-shadow 0.2s ease;
	transition: text-shadow 0.2s ease;
	z-index: 1;
}
.return-to-top:hover:after {
	-webkit-transform: scale(1.07);
	    -ms-transform: scale(1.07);
	        transform: scale(1.07);
	background: #1abf68;
	-webkit-box-shadow: 0 10px 20px 8px rgba(26, 191, 104, 0.15);
	        box-shadow: 0 10px 20px 8px rgba(26, 191, 104, 0.15);
}
.home-analytics .return-to-top:hover:after {
	background: #f8b137;
	-webkit-box-shadow: 0 10px 20px 8px rgba(248, 177, 55, 0.15);
	        box-shadow: 0 10px 20px 8px rgba(248, 177, 55, 0.15);
}
.return-to-top:hover > i {
	text-shadow: 0 -50px #fff, 0 0 #fff;
}
.return-to-top.back-top {
	bottom: 20px;
	opacity: 1;
}

.gp-btn-normal {
	color: #706c79;
	font-size: 15px;
	font-weight: 500;
}
.gp-btn-normal i {
	display: inline-block;
	vertical-align: -3px;
	font-size: 20px;
	margin-left: 5px;
}
.gp-btn-normal:hover {
	color: #1abf68;
}

/*--------------------------------------------------------------
##  Section Heading
--------------------------------------------------------------*/
.gpt-heading {
	margin-bottom: 55px;
}
.gpt-heading__title {
	font-size: 40px;
	font-weight: 700;
	color: #051441;
}
.gpt-heading__subtitle {
	color: #1abf68;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin-bottom: 13px;
}
.gpt-heading__subtitle:hover{
	color: #1abf68;
}

/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/
.site-header {
	z-index: 999;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.site-header .container-full {
	padding: 0 50px;
}
@media (max-width: 576px) {
	.site-header .container-full {
		padding: 0 15px;
	}
}
.site-header .btn-help {
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: #554bfe;
	border-color: #eeedff;
}
.site-header .btn-help:after {
	background: #eeedff;
}
.site-header.header-transparent {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.site-header.header-transparent .astriol-main-menu > li > a:before {
	display: none;
}
.site-header .site-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.site-header .site-logo .site-title {
	font-size: 34px;
	font-weight: 500;
	padding: 8px 0;
	margin: 0;
}
.site-header .site-logo a {
	font-size: 30px;
	font-weight: 700;
	padding: 24px 0;
	display: block;
	color: #000;
}
.site-header .site-logo a h3 {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	color: #000;
}
.site-header .site-logo .logo-sticky {
	display: none;
}
.site-header .astriol-burger-menu {
	text-align: right;
	display: none;
	cursor: pointer;
}
.site-header .astriol-burger-menu.style-two {
	background: #f8f8f8;
	height: 55px;
	width: 55px;
	border-radius: 50%;
	padding: 20px 17px;
	margin-right: 20px;
	text-align: left;
	display: inline-block;
}
.site-header .astriol-burger-menu.style-two span {
	margin-left: 0;
}
.site-header .astriol-burger-menu.mobile-view {
	display: none;
}
.site-header .astriol-burger-menu span {
	background: #2c2c51;
	height: 2px;
	display: block;
	margin-left: auto;
}
.site-header .astriol-burger-menu span:not(:last-child) {
	margin-bottom: 5px;
}
.site-header .astriol-burger-menu .bar-one {
	width: 20px;
}
.site-header .astriol-burger-menu .bar-two {
	width: 25px;
}
.site-header .astriol-burger-menu .bar-three {
	width: 15px;
}
.site-header.header-seo:not(.showed) .astriol-burger-menu span {
	background: #fff;
}
.site-header .add-menu {
	margin: 0;
	padding: 31px 0;
	list-style: none;
	font-weight: 500;
}
.site-header .add-menu li a {
	color: #000;
}
.site-header .tt-hamburger {
	width: 24px;
	cursor: pointer;
}
.site-header .tt-hamburger.active {
	opacity: 0;
	visibility: hidden;
}
@media (min-width: 992px) {
	.site-header .tt-hamburger {
		display: none;
	}
}
.site-header .tt-hamburger:focus {
	outline: 0;
}
.site-header .tt-hamburger .bar {
	background: #fff;
	height: 2px;
	display: block;
}
.site-header .tt-hamburger .bar:not(:last-child) {
	margin-bottom: 5px;
}
.site-header.header-fixed.showed {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 9999;
	background: #fff;
	-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	-webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
	        animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.header-position .site-header.header-fixed.showed {
	top: 32px;
}
@media (max-width: 782px) {
	.header-position .site-header.header-fixed.showed {
		top: 46px;
	}
}
.site-header.header-fixed.showed .site-logo .main-logo {
	display: none;
}
.site-header.header-fixed.showed .site-logo a {
	color: #051441;
}
.site-header.header-fixed.showed .site-logo h3 {
	color: #051441;
}
.site-header.header-fixed.showed .add-menu li a {
	color: #051441;
}
.site-header.header-fixed.showed .tt-hamburger .bar {
	background: #051441;
}
.site-header:not(.mobile-header) .site-logo {
	width: 15%;
}
.site-header:not(.mobile-header).header-main .nav-right {
	margin-left: 40px;
}
.site-header:not(.mobile-header).header-main .nav-right .btn-help {
	margin-right: 10px;
}
.site-header:not(.mobile-header).header-main .nav-right .nav-btn {
	padding: 6px 21px;
	font-size: 14px;
	background-color: #1abf68;
}
.site-header:not(.mobile-header).header-main .nav-right .nav-btn i {
	margin-left: 0;
	margin-right: 5px;
	font-size: 14px;
	vertical-align: middle;
}
.site-header:not(.mobile-header).header-main .nav-right .nav-btn:after {
	display: none;
}
.site-header:not(.mobile-header).header-main .nav-right .nav-btn:hover {
	color: #fff;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.site-header:not(.mobile-header).header-main .nav-right .nav-btn.btn-help {
	background-color: #eeedff;
	padding: 8px 32px;
	border-radius: 4px;
	font-size: 14px;
	background-color: rgba(85, 75, 254, 0.102);
}
.site-header:not(.mobile-header).header-main .nav-right .nav-btn.btn-help:hover {
	background-color: #554bfe;
	border-color: #554bfe;
	color: #fff;
}
.site-header:not(.mobile-header).header-main.header-fixed.showed .nav-right {
	margin-left: 40px;
}
.site-header:not(.mobile-header).header-main.header-fixed.showed .nav-right .btn-help {
	margin-right: 10px;
}
.site-header:not(.mobile-header).header-main.header-fixed.showed .nav-right .nav-btn {
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.site-header:not(.mobile-header).header-main.header-fixed.showed .nav-right .nav-btn:hover {
	-webkit-box-shadow: 0 10px 20px 0 rgba(6, 148, 73, 0.3);
	        box-shadow: 0 10px 20px 0 rgba(6, 148, 73, 0.3);
}
.site-header:not(.mobile-header).header-main.header-fixed.showed .nav-right .nav-btn.btn-help {
	-webkit-box-shadow: none !important;
	        box-shadow: none !important;
}
.site-header:not(.mobile-header) .nav-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.site-header:not(.mobile-header) .nav-right .search-btn {
	display: inline-block;
	margin-right: 15px;
	color: #051441;
	cursor: pointer;
}
.site-header:not(.mobile-header) .menu-wrapper {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.submenu-align-right .site-header:not(.mobile-header) {
	width: auto;
}
.site-header:not(.mobile-header) .main-nav-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.site-header:not(.mobile-header) .main-nav {
	position: relative;
}
.site-header:not(.mobile-header) .astriol-main-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-header:not(.mobile-header) .astriol-main-menu > li {
	padding: 35px 0;
}
.site-header:not(.mobile-header) .astriol-main-menu > li > a {
	font-weight: 500;
	font-size: 15px;
	color: #051441;
	position: relative;
}
.site-header:not(.mobile-header) .astriol-main-menu > li > a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -2px;
	transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85), -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
	background: #fff;
	-webkit-transform: scale(0, 1);
	    -ms-transform: scale(0, 1);
	        transform: scale(0, 1);
	-webkit-transform-origin: right center;
	    -ms-transform-origin: right center;
	        transform-origin: right center;
}
.site-header:not(.mobile-header) .astriol-main-menu > li > a:hover:before, .site-header:not(.mobile-header) .astriol-main-menu > li > a.current-menu-item:before {
	-webkit-transform: scale(1, 1);
	    -ms-transform: scale(1, 1);
	        transform: scale(1, 1);
	-webkit-transform-origin: left center;
	    -ms-transform-origin: left center;
	        transform-origin: left center;
}
.site-header:not(.mobile-header) .astriol-main-menu > li > a:after {
	display: none;
	visibility: hidden;
	opacity: 0;
}
.site-header:not(.mobile-header) .astriol-main-menu > li > a:hover, .site-header:not(.mobile-header) .astriol-main-menu > li > a.current-menu-item {
	color: #1abf68;
}
.site-header:not(.mobile-header) .astriol-main-menu > li:nth-last-child(-n+3).has-submenu .sub-menu {
	left: auto;
	right: 0;
}
.site-header:not(.mobile-header) .astriol-main-menu > li:nth-last-child(-n+3).has-submenu .sub-menu li ul {
	right: 100%;
}
.site-header:not(.mobile-header) .astriol-main-menu > li:not(.mega-menu) {
	position: relative;
}
.menu-light .site-header:not(.mobile-header) .astriol-main-menu > li > a {
	color: #fff;
}
.site-header:not(.mobile-header) .astriol-main-menu li {
	display: inline-block;
}
.site-header:not(.mobile-header) .astriol-main-menu li:not(:last-child) {
	margin-right: 45px;
}
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu > a:after {
	content: "";
	font-family: "feather" !important;
	position: absolute;
	top: calc(50% - 9px);
	right: 30px;
	-webkit-transform: rotate(0);
	    -ms-transform: rotate(0);
	        transform: rotate(0);
	font-size: 12px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu {
	margin: 0;
	padding: 15px 0;
	position: absolute;
	top: 115%;
	left: 0;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 6px;
	min-width: 230px;
	-webkit-box-shadow: 0 10px 30px 0 rgba(9, 2, 51, 0.1);
	        box-shadow: 0 10px 30px 0 rgba(9, 2, 51, 0.1);
	z-index: 2222;
	width: 250px;
}
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu.sub-menu-wide {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 40px 80px 25px;
}
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu.sub-menu-wide > .mega-menu-item > a {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	display: inline-block;
	color: #051441;
}
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu.sub-menu-wide > .mega-menu-item > a:after {
	display: none;
}
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu.sub-menu-wide .sub-menu {
	position: unset;
	-webkit-box-shadow: unset;
	        box-shadow: unset;
	visibility: unset;
	opacity: unset;
}
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li {
	display: block;
	position: relative;
	margin-right: 0;
	line-height: 36px;
}
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a {
	font-size: 14px;
	padding: 10px 30px;
	display: block;
	line-height: 1.5;
	color: #686875;
	font-weight: 500;
}
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a:hover, .site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
	color: #1abf68;
	background-color: #f9f9f9;
}
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a:hover:after, .site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item:after {
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li ul {
	padding: 15px 0;
	position: absolute;
	left: 100%;
	top: 0;
	background: #fff;
	min-width: 220px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: 0;
	visibility: hidden;
	-webkit-box-shadow: 0px 5px 10px #14303a15;
	        box-shadow: 0px 5px 10px #14303a15;
}
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li.has-submenu:hover ul {
	opacity: 1;
	visibility: visible;
	top: -15px;
}
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu:hover ul {
	opacity: 1;
	visibility: visible;
	top: 100%;
}
.site-header:not(.mobile-header).header-light .astriol-main-menu > li > a {
	color: #fff;
}
.site-header:not(.mobile-header).header-light .astriol-main-menu li.has-submenu .sub-menu li a:hover, .site-header:not(.mobile-header).header-light .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
	color: #1abf68;
}
.site-header:not(.mobile-header).header-light .nav-right .gp-btn {
	color: #fff;
}
.site-header:not(.mobile-header).header-light.header-fixed.showed .astriol-main-menu li a:hover, .site-header:not(.mobile-header).header-light.header-fixed.showed .astriol-main-menu li a.current-menu-item {
	color: #1abf68;
}
.site-header:not(.mobile-header).header-light.header-fixed.showed .nav-right .gp-btn {
	color: #051441;
	border-color: #051441;
}
.site-header:not(.mobile-header).header-light.header-fixed.showed .nav-right .gp-btn:hover {
	color: #fff;
	border-color: #1abf68;
}
.site-header:not(.mobile-header).header-sass .astriol-main-menu > li > a:before {
	display: none;
}
.site-header:not(.mobile-header).header-sass .astriol-main-menu > li > a:hover, .site-header:not(.mobile-header).header-sass .astriol-main-menu > li > a.current-menu-item {
	color: #ff6344;
}
.site-header:not(.mobile-header).header-sass .astriol-main-menu li.has-submenu .sub-menu li a:hover, .site-header:not(.mobile-header).header-sass .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
	color: #ff6344;
}
.site-header:not(.mobile-header).header-sass.header-fixed.showed .astriol-main-menu li a:hover, .site-header:not(.mobile-header).header-sass.header-fixed.showed .astriol-main-menu li a.current-menu-item {
	color: #ff6344;
}
.site-header:not(.mobile-header).header-sass.header-fixed.showed .nav-btn {
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.site-header:not(.mobile-header).header-analytics .astriol-main-menu > li > a {
	color: #fff;
}
.site-header:not(.mobile-header).header-analytics .astriol-main-menu li.has-submenu .sub-menu li a:hover, .site-header:not(.mobile-header).header-analytics .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
	color: #f8b137;
}
.site-header:not(.mobile-header).header-analytics .nav-right {
	margin-left: 50px;
}
.site-header:not(.mobile-header).header-analytics .nav-right .gp-btn {
	color: #f8b137;
	padding: 8px 28px;
}
.site-header:not(.mobile-header).header-analytics .nav-right .gp-btn:hover {
	color: #fff;
}
.site-header:not(.mobile-header).header-analytics.header-fixed.showed .astriol-main-menu li a:hover, .site-header:not(.mobile-header).header-analytics.header-fixed.showed .astriol-main-menu li a.current-menu-item {
	color: #f8b137;
}
.site-header:not(.mobile-header).header-analytics.header-fixed.showed .nav-right {
	margin-left: 30px;
}
.site-header:not(.mobile-header).header-analytics.header-fixed.showed .nav-right .gp-btn {
	border-color: #f8b137;
	color: #fff;
}
.site-header:not(.mobile-header).header-analytics.header-fixed.showed .nav-right .gp-btn:after {
	background: #f8b137;
}
.site-header:not(.mobile-header).header-analytics.header-fixed.showed .nav-right .gp-btn:hover {
	background: transparent;
	color: #f8b137;
}
.site-header:not(.mobile-header).header-analytics .astriol-burger-menu span {
	background: #fff;
}
.site-header:not(.mobile-header).header-seo .astriol-main-menu > li > a {
	color: #fff;
	position: relative;
}
.site-header:not(.mobile-header).header-seo .astriol-main-menu > li > a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85), -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
	background: #fff;
	-webkit-transform: scale(0, 1);
	    -ms-transform: scale(0, 1);
	        transform: scale(0, 1);
	-webkit-transform-origin: right center;
	    -ms-transform-origin: right center;
	        transform-origin: right center;
}
.site-header:not(.mobile-header).header-seo .astriol-main-menu > li > a:hover:before, .site-header:not(.mobile-header).header-seo .astriol-main-menu > li > a.current-menu-item:before {
	-webkit-transform: scale(1, 1);
	    -ms-transform: scale(1, 1);
	        transform: scale(1, 1);
	-webkit-transform-origin: left center;
	    -ms-transform-origin: left center;
	        transform-origin: left center;
}
.site-header:not(.mobile-header).header-seo .astriol-main-menu li.has-submenu .sub-menu li a:hover, .site-header:not(.mobile-header).header-seo .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
	color: #ff5e85;
}
.site-header:not(.mobile-header).header-seo .nav-right {
	margin-left: 50px;
}
.site-header:not(.mobile-header).header-seo .nav-right .gp-btn {
	-webkit-box-shadow: 0px 20px 20px 0px rgba(0, 11, 40, 0.1);
	        box-shadow: 0px 20px 20px 0px rgba(0, 11, 40, 0.1);
	padding: 8px 34px;
}
.site-header:not(.mobile-header).header-seo .nav-right .gp-btn:hover {
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: #fff;
	border-color: #fff;
}
.site-header:not(.mobile-header).header-seo.header-fixed.showed .astriol-main-menu li a:hover, .site-header:not(.mobile-header).header-seo.header-fixed.showed .astriol-main-menu li a.current-menu-item {
	color: #ff5e85;
}
.site-header:not(.mobile-header).header-seo.header-fixed.showed .nav-right {
	margin-left: 30px;
}
.site-header:not(.mobile-header).header-seo.header-fixed.showed .nav-right .gp-btn {
	border-color: #ff5e85;
	color: #fff;
}
.site-header:not(.mobile-header).header-seo.header-fixed.showed .nav-right .gp-btn:after {
	background: #ff5e85;
}
.site-header:not(.mobile-header).header-seo.header-fixed.showed .nav-right .gp-btn:hover {
	background: transparent;
	color: #ff5e85;
}
.site-header:not(.mobile-header).header-seo .astriol-burger-menu span {
	background: #fff;
}
.site-header:not(.mobile-header).header-agency .astriol-main-menu > li > a {
	color: #fff;
}
.site-header:not(.mobile-header).header-agency .astriol-main-menu li.has-submenu .sub-menu li a:hover, .site-header:not(.mobile-header).header-agency .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
	color: #4d5afe;
}
.site-header:not(.mobile-header).header-agency.header-fixed.showed .astriol-main-menu li a:hover, .site-header:not(.mobile-header).header-agency.header-fixed.showed .astriol-main-menu li a.current-menu-item {
	color: #4d5afe;
}
.site-header:not(.mobile-header).header-agency.header-fixed.showed .nav-right .gp-btn {
	border-color: #4d5afe;
	color: #4d5afe;
}
.site-header:not(.mobile-header).header-agency.header-fixed.showed .nav-right .gp-btn:after {
	background: #4d5afe;
}
.site-header:not(.mobile-header).header-agency.header-fixed.showed .nav-right .gp-btn:hover {
	color: #fff;
}
.site-header:not(.mobile-header).header-agency .nav-right {
	margin-left: 50px;
}
.site-header:not(.mobile-header).header-agency .nav-right .gp-btn {
	padding: 10px 25px;
}
.site-header:not(.mobile-header).header-agency-two .astriol-main-menu > li > a {
	color: #fff;
}
.site-header:not(.mobile-header).header-agency-two .astriol-main-menu li.has-submenu .sub-menu li a:hover, .site-header:not(.mobile-header).header-agency-two .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
	color: #fb8c5c;
}
.site-header:not(.mobile-header).header-agency-two.header-fixed.showed .astriol-main-menu li a:hover {
	color: #fb8c5c;
}
.site-header:not(.mobile-header).header-agency-two .nav-right {
	margin-left: 50px;
}
.site-header:not(.mobile-header).header-agency-two .nav-right .gp-btn {
	padding: 7px 32px;
}
.site-header:not(.mobile-header).header-dark-saas .astriol-main-menu > li > a:before {
	display: none;
}
.site-header:not(.mobile-header).header-dark-saas .astriol-main-menu > li > a:hover, .site-header:not(.mobile-header).header-dark-saas .astriol-main-menu > li > a.current-menu-item {
	color: #00c99c;
}
.site-header:not(.mobile-header).header-dark-saas .astriol-main-menu li.has-submenu .sub-menu li a:hover, .site-header:not(.mobile-header).header-dark-saas .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
	color: #00c99c;
}
.site-header:not(.mobile-header).header-dark-saas.header-fixed.showed .astriol-main-menu li a:hover {
	color: #00c99c;
}
.site-header:not(.mobile-header).header-dark-saas .nav-right {
	margin-left: 50px;
}
.site-header:not(.mobile-header).header-dark-saas .nav-right .gp-btn {
	padding: 8px 32px;
	border-color: #00c99c;
	border-width: 2px;
}
.site-header:not(.mobile-header).header-light-saas .astriol-main-menu > li > a {
	color: #fff;
}
.site-header:not(.mobile-header).header-light-saas .astriol-main-menu > li > a:hover {
	color: rgba(255, 255, 255, 0.8);
}
.site-header:not(.mobile-header).header-light-saas .astriol-main-menu li.has-submenu .sub-menu li a:hover, .site-header:not(.mobile-header).header-light-saas .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
	color: #6e58fc;
}
.site-header:not(.mobile-header).header-light-saas .nav-right {
	margin-left: 50px;
}
.site-header:not(.mobile-header).header-light-saas .nav-right .gp-btn {
	border-color: rgba(255, 255, 255, 0.502);
	color: #fff;
}
.site-header:not(.mobile-header).header-light-saas .nav-right .gp-btn:after {
	background: #fff;
}
.site-header:not(.mobile-header).header-light-saas .nav-right .gp-btn:hover {
	border-color: #fff;
	color: #6e58fc;
}
.site-header:not(.mobile-header).header-light-saas.header-fixed.showed .astriol-main-menu li a:hover, .site-header:not(.mobile-header).header-light-saas.header-fixed.showed .astriol-main-menu li a.current-menu-item {
	color: #6e58fc;
}
.site-header:not(.mobile-header).header-light-social .astriol-main-menu > li > a {
	color: #fff;
	position: relative;
}
.site-header:not(.mobile-header).header-light-social .astriol-main-menu > li > a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85), -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
	background: #fff;
	-webkit-transform: scale(0, 1);
	    -ms-transform: scale(0, 1);
	        transform: scale(0, 1);
	-webkit-transform-origin: right center;
	    -ms-transform-origin: right center;
	        transform-origin: right center;
}
.site-header:not(.mobile-header).header-light-social .astriol-main-menu > li > a:hover:before, .site-header:not(.mobile-header).header-light-social .astriol-main-menu > li > a.current-menu-item:before {
	-webkit-transform: scale(1, 1);
	    -ms-transform: scale(1, 1);
	        transform: scale(1, 1);
	-webkit-transform-origin: left center;
	    -ms-transform-origin: left center;
	        transform-origin: left center;
}
.site-header:not(.mobile-header).header-light-social .astriol-main-menu li.has-submenu .sub-menu li a:hover, .site-header:not(.mobile-header).header-light-social .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
	color: #cd50e2;
}
.site-header:not(.mobile-header).header-light-social .nav-right {
	margin-left: 50px;
}
.site-header:not(.mobile-header).header-light-social .nav-right .gp-btn {
	-webkit-box-shadow: none;
	        box-shadow: none;
	padding: 8px 26px;
}
.site-header:not(.mobile-header).header-light-social .nav-right .gp-btn:hover {
	border-color: #fff;
	color: #fff;
}
.site-header:not(.mobile-header).header-light-social.header-fixed.showed .astriol-main-menu li a:hover, .site-header:not(.mobile-header).header-light-social.header-fixed.showed .astriol-main-menu li a.current-menu-item {
	color: #cd50e2;
}
.site-header:not(.mobile-header).header-light-social.header-fixed.showed .nav-right .gp-btn:hover, .site-header:not(.mobile-header).header-light-social.header-fixed.showed .nav-right .gp-btn.current-menu-item {
	border-color: #cd50e2;
	color: #cd50e2;
}
.site-header:not(.mobile-header).header-light-social.header-fixed.showed .astriol-burger-menu span {
	background: #051441;
}
.site-header:not(.mobile-header).header-transparent.header-2 .astriol-main-menu > li > a {
	color: #fff;
}
.site-header:not(.mobile-header).header-bg {
	background: #fff;
	-webkit-box-shadow: 0px 20px 40px 0px rgba(8, 2, 46, 0.08);
	        box-shadow: 0px 20px 40px 0px rgba(8, 2, 46, 0.08);
}
.site-header:not(.mobile-header).header-bg .astriol-main-menu > li {
	padding: 27px 0;
}
.site-header:not(.mobile-header).submenu-align-right .menu-wrapper {
	width: auto;
}
.site-header:not(.mobile-header).submenu-align-right .astriol-main-menu > li:nth-last-child(-n+3).has-submenu .sub-menu {
	left: auto;
	right: 0;
}
.site-header:not(.mobile-header).submenu-align-right .astriol-main-menu > li:nth-last-child(-n+3).has-submenu .sub-menu li ul {
	right: 100%;
}
.site-header.header-fixed.showed {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 9999;
	background: #fff;
	-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	-webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
	        animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.header-position .site-header.header-fixed.showed {
	top: 32px;
}
@media (max-width: 782px) {
	.header-position .site-header.header-fixed.showed {
		top: 46px;
	}
}
.header-position .site-header.header-fixed.showed .fullscreen-menu {
	top: 0;
}
.site-header.header-fixed.showed .site-logo .main-logo {
	display: none;
}
.site-header.header-fixed.showed .site-logo .logo-sticky {
	display: block;
}
.site-header.header-fixed.showed .menu-trigger .dot_icon .dot {
	background: #051441;
}
.site-header.header-fixed.showed:not(.mobile-header) .astriol-main-menu > li {
	padding: 27px 0;
}
.site-header.header-fixed.showed:not(.mobile-header) .astriol-main-menu li a {
	color: #051441;
}
.site-header.header-fixed.showed:not(.mobile-header) .astriol-main-menu li a:hover {
	color: #1abf68;
}
.site-header.header-fixed.showed:not(.mobile-header) .astriol-main-menu li > {
	padding: 27px 0;
}
.site-header.header-fixed.showed.header-light-saas .nav-right .gp-btn {
	border-color: #6e58fc;
	color: #6e58fc;
}
.site-header.header-fixed.showed.header-light-saas .nav-right .gp-btn:after {
	background: #6e58fc;
}
.site-header.header-fixed.showed.header-light-saas .nav-right .gp-btn:hover {
	border-color: #6e58fc;
	color: #fff;
}

@keyframes stickySlideDown {
	from {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
#site-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

@media (min-width: 992px) {
	.close-menu {
		display: none;
	}
}
.canvas-header {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 30px 20px;
	border-bottom: 1px solid #eee;
	margin-bottom: 30px;
	display: none;
}

.close-menu {
	height: 50px;
	width: 50px;
	background: rgba(136, 136, 136, 0.1);
	border-radius: 50%;
	text-align: center;
	line-height: 54px;
	color: #051441;
}

.astriol-main-menu {
	list-style: none;
}
.astriol-main-menu ul {
	list-style: none;
}

/*--------------------------------------------------------------
### Main Nav Mobile
--------------------------------------------------------------*/
.mobile-header {
	height: auto;
	/*--------------------------------------------------------------
	### Main Nav
	--------------------------------------------------------------*/
}
.mobile-header .astriol-burger-menu {
	display: block;
	margin-left: 20px;
}
.mobile-header .astriol-burger-menu.desktop-view {
	display: none;
}
.mobile-header .astriol-burger-menu.mobile-view {
	display: block;
}
.mobile-header .canvas-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.mobile-header .site-logo .logo-sticky {
	display: none;
}
.mobile-header .tt-hamburger {
	display: block;
}
.mobile-header.header-analytics:not(.showed) .astriol-burger-menu span {
	background: #fff;
}
.mobile-header.header-light-saas:not(.showed) .astriol-burger-menu span, .mobile-header.header-agency-two:not(.showed) .astriol-burger-menu span {
	background: #fff;
}
.mobile-header.header-fixed.showed .logo-sticky {
	display: block;
}
.mobile-header .site-logo a {
	padding: 13px 0;
}
.mobile-header .nav-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 10px 25px 0;
	border-top: 0px solid #eee;
}
.mobile-header .nav-right .btn-help {
	margin-right: 10px;
}
.mobile-header.header-page .nav-right {
	padding: 0;
	border-top: 0;
}
@media (max-width: 420px) {
	.mobile-header.header-page .gp-btn {
		padding: 10px 20px;
		font-size: 14px;
	}
}
.mobile-header.header-sass .nav-right {
	border: 0;
	padding: 0;
}
.mobile-header .main-nav-container {
	position: fixed;
	top: 0;
	height: 100vh;
	background: #fff;
	max-width: 400px;
	width: 100%;
	text-align: left;
	overflow-y: auto;
	padding-bottom: 80px;
	left: -100px;
	-webkit-transition-duration: 0.3s;
	     -o-transition-duration: 0.3s;
	        transition-duration: 0.3s;
	opacity: 0;
	visibility: hidden;
	z-index: 999;
}
.header-position .mobile-header .main-nav-container {
	top: 32px;
}
@media (max-width: 780px) {
	.header-position .mobile-header .main-nav-container {
		top: 46px;
	}
}
@media (max-width: 420px) {
	.mobile-header .main-nav-container {
		max-width: 100%;
	}
}
.mobile-header .main-nav-container.open {
	opacity: 1;
	left: 0;
	visibility: visible;
}
.mobile-header .main-nav-container li a {
	font-size: 16px;
	color: #051441;
	position: relative;
	z-index: 1;
	padding: 8px 25px;
	display: block;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	text-transform: capitalize;
	font-weight: 500;
	border-left: 2px solid transparent;
}
.mobile-header .main-nav-container li.has-submenu > a {
	position: relative;
}
.mobile-header .main-nav-container li.has-submenu > a:after {
	content: "";
	font-family: "feather" !important;
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	font-size: 12px;
}
.mobile-header .main-nav-container li.has-submenu > a.active:after {
	content: "";
}
.mobile-header .main-nav-container li.has-submenu li a {
	font-size: 16px;
}
.mobile-header .main-nav-container .menu-item-depth-0 > a.active {
	background: #1abf68;
	color: #fff;
}
.mobile-header .main-nav-container .menu-item-depth-0 li a.active {
	color: #1abf68;
}
.mobile-header.header-main .astriol-burger-menu {
	margin-left: 0;
}
.mobile-header.header-dark-saas .main-nav-container .menu-item-depth-0 > a.active {
	background: #00c99c;
}
.mobile-header.header-light-saas .main-nav-container .menu-item-depth-0 > a.active {
	background: #6e58fc;
}
.mobile-header.header-light-saas .main-nav-container .menu-item-depth-0 li a.active {
	color: #6e58fc;
}
.mobile-header.header-light-saas .gp-btn.color-two.btn-outline {
	color: #6e58fc;
	border-color: #6e58fc;
}
.mobile-header.header-light-saas .gp-btn.color-two.btn-outline:after {
	background: #6e58fc;
}
.mobile-header.header-light-saas .gp-btn.color-two.btn-outline:hover {
	color: #fff;
}
.mobile-header.header-sass .main-nav-container .menu-item-depth-0 > a.active {
	background: #ff6344;
	color: #fff;
}
.mobile-header.header-sass .main-nav-container .menu-item-depth-0 li a.active {
	color: #ff6344;
}
.mobile-header.header-analytics .main-nav-container .menu-item-depth-0 > a.active {
	background: #f8b137;
}
.mobile-header.header-analytics .main-nav-container .menu-item-depth-0 li a.active {
	color: #f8b137;
}
.mobile-header.header-analytics .gp-btn.color-four.btn-light {
	border-color: #f8b137;
	color: #fff;
}
.mobile-header.header-analytics .gp-btn.color-four.btn-light:after {
	background: #f8b137;
}
.mobile-header.header-analytics .gp-btn.color-four.btn-light:hover {
	color: #f8b137;
	background: transparent;
}
.mobile-header.header-agency-two .main-nav-container .menu-item-depth-0 > a.active {
	background: #fb8c5c;
}
.mobile-header.header-agency-two .main-nav-container .menu-item-depth-0 li a.active {
	color: #fb8c5c;
}
.mobile-header.header-agency .main-nav-container .menu-item-depth-0 > a.active {
	background: #4d5afe;
}
.mobile-header.header-agency .main-nav-container .menu-item-depth-0 li a.active {
	color: #4d5afe;
}
.mobile-header.header-agency .gp-btn.color-eight.btn-outline.btn-light {
	color: #4d5afe;
	border-color: #4d5afe;
}
.mobile-header.header-agency .gp-btn.color-eight.btn-outline.btn-light:after {
	background: #4d5afe;
}
.mobile-header.header-agency .gp-btn.color-eight.btn-outline.btn-light:hover {
	color: #fff;
}
.mobile-header.header-light-social:not(.showed) .astriol-burger-menu span {
	background: #fff;
}
.mobile-header.header-light-social .main-nav-container .menu-item-depth-0 > a.active {
	background: #cd50e2;
}
.mobile-header.header-light-social .main-nav-container .menu-item-depth-0 li a.active {
	color: #cd50e2;
}
.header-position .mobile-header.header-fixed.showed .main-nav-container {
	top: 0;
}
.mobile-header.header-seo .main-nav-container .menu-item-depth-0 > a.active {
	background: #ff5e85;
}
.mobile-header.header-seo .main-nav-container .menu-item-depth-0 li a.active {
	color: #ff5e85;
}
.mobile-header .main-nav {
	position: relative;
	z-index: 3333;
	line-height: 1.2;
}
.mobile-header .main-nav .astriol-main-menu {
	padding-left: 0;
}
.mobile-header .main-nav .sub-menu {
	padding-left: 15px;
	margin-left: 0;
	margin-bottom: 0;
	display: none;
}
.mobile-header .main-nav .sub-menu.active .main-item > .menu-link {
	background: #f8f9fa;
}
.mobile-header .main-nav .sub-menu li a {
	border-top: 0;
}
.mobile-header .main-nav .sub-menu li.active a.active .ti-plus {
	color: #1abf68;
}
.mobile-header .main-nav .nav-item.active-main-item > .menu-link {
	color: #1abf68;
	background: #f8f9fa;
	border-color: #1abf68;
}
.mobile-header .main-nav .sub-menu {
	padding-left: 15px;
	margin-bottom: 0;
}
.mobile-header .main-nav {
	cursor: default;
	position: relative;
	z-index: 10;
	text-align: left;
	font-weight: 500;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.mobile-header .main-nav a:before,
.mobile-header .main-nav .close-bar {
	display: none;
}
.mobile-header .main-nav .site-logo a {
	font-size: 40px;
}
.mobile-header .main-nav .menu,
.mobile-header .main-nav .menu ul {
	list-style: none;
}
.mobile-header .main-nav .nav-item:before,
.mobile-header .main-nav .nav-item.current-menu-item:before,
.mobile-header .main-nav .nav-item.current-menu-ancestor:before {
	background-color: #1abf68;
}
.mobile-header .main-nav .nav-item.active-main-item > .menu-link {
	color: #1abf68;
}
.mobile-header .main-nav .nav-right .cu_btn {
	padding: 13px 26px;
	min-width: auto;
	margin-top: 0;
}
.mobile-header .main-nav.hidden {
	display: none;
}

.mask-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 222;
}

/*--------------------------------------------------------------
  ##  Banner
  --------------------------------------------------------------*/
.gpt-banner {
	background-color: #fff;
	padding-top: 190px;
	/* background-image: url(../img/banner_bg.png); */
/* 	height: 100vh; */
	background-size: cover;
	background-position: center center;
}
@media (max-width: 991px) {
	.gpt-banner {
		padding-top: 120px;
	}
}
.gpt-banner__title {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 20px;
}
.gpt-banner__title span {
	font-weight: 300;
}
@media (max-width: 991px) {
	.gpt-banner__title {
		font-size: 34px;
	}
}
@media (max-width: 576px) {
	.gpt-banner__title {
		font-size: 28px;
	}
}
.gpt-banner__description {
	font-size: 18px;
	line-height: 28px;
	color: #2c2c51;
	margin-bottom: 32px;
}
@media (max-width: 576px) {
	.gpt-banner__description {
		font-size: 16px;
	}
	.gpt-banner__description br {
		display: none;
	}
}
.gpt-banner__feature-image {
	margin-top: 50px;
}

/*--------------------------------------------------------------
  ##  Demo
  --------------------------------------------------------------*/
.gpt-product-demo {
	padding: 118px 0 60px;
}
@media (max-width: 991px) {
	.gpt-product-demo {
		padding: 140px 0 30px;
	}
}

.container-full {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 15px;
}

.gpt-demo-box {
	text-align: center;
	margin-bottom: 56px;
}
.gpt-demo-box__feature-image {
	background-color: #fff;
	-webkit-box-shadow: 0 30px 60px 0 rgba(8, 2, 46, 0.1);
	        box-shadow: 0 30px 60px 0 rgba(8, 2, 46, 0.1);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.gpt-demo-box__feature-image img {
	width: 100%;
}
.gpt-demo-box__title {
	font-size: 16px;
	font-weight: 500;
	margin-top: 27px;
}
.gpt-demo-box__title a {
	color: #2c2c51;
	position: relative;
}
.gpt-demo-box__title a:after {
	position: absolute;
	content: "";
	display: block;
	bottom: 1px;
	height: 1px;
	left: 0;
	width: 100%;
	background-color: #1abf68;
	-webkit-transform-origin: right center;
	    -ms-transform-origin: right center;
	        transform-origin: right center;
	-webkit-transform: scale(0, 1);
	    -ms-transform: scale(0, 1);
	        transform: scale(0, 1);
	transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85), -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
.gpt-demo-box__title a:hover {
	color: #1abf68;
}
.gpt-demo-box__title a:hover:after {
	-webkit-transform-origin: left center;
	    -ms-transform-origin: left center;
	        transform-origin: left center;
	-webkit-transform: scale(1, 1);
	    -ms-transform: scale(1, 1);
	        transform: scale(1, 1);
}
.gpt-demo-box:hover .gpt-demo-box__feature-image {
	-webkit-transform: translateY(-10px);
	    -ms-transform: translateY(-10px);
	        transform: translateY(-10px);
}

/*--------------------------------------------------------------
  ##  Demo Page
  --------------------------------------------------------------*/
.demo-pag-section {
	background-image: url(../../media/background/page-demo-bg.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding-top: 115px;
}
@media (max-width: 991px) {
	.demo-pag-section {
		padding-top: 75px;
	}
}

/*--------------------------------------------------------------
  ##  Feature
  --------------------------------------------------------------*/
.feature-section {
	padding: 115px 0 90px;
}
@media (max-width: 991px) {
	.feature-section {
		padding: 75px 0 50px;
	}
}

.feature-two-section {
	padding: 121px 0 30px;
}
@media (max-width: 991px) {
	.feature-two-section {
		padding: 70px 0 0;
	}
}

.gpt-feature {
	background-color: #fff;
	-webkit-box-shadow: 0 30px 70px 0 rgba(8, 2, 46, 0.12);
	        box-shadow: 0 30px 70px 0 rgba(8, 2, 46, 0.12);
	padding: 41px 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 30px;
}
.gpt-feature__image {
	margin-right: 30px;
}
.gpt-feature__title {
	font-size: 18px;
	line-height: 24px;
	font-weight: 600;
	margin-bottom: 0;
}
.gpt-feature--two {
	display: block;
	background-color: transparent;
	padding: 0;
	-webkit-box-shadow: none;
	        box-shadow: none;
	margin-bottom: 92px;
}
.gpt-feature--two .gpt-feature__icon {
	width: 60px;
	height: 60px;
	line-height: 68px;
	border-radius: 20px;
	text-align: center;
	background-color: rgba(26, 191, 104, 0.102);
	color: #1abf68;
	font-size: 22px;
	margin-bottom: 35px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.gpt-feature--two .gpt-feature__title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 13px;
}
@media (min-width: 576px) {
	.gpt-feature--two .gpt-feature__description {
		max-width: 270px;
	}
}
.gpt-feature--two:hove rbox-icon {
	background-color: #1abf68;
	color: #fff;
}



/*--------------------------------------------------------------
  ##  Blog Layout
  --------------------------------------------------------------*/
.blog-layout-section {
	background-color: #ebf0fc;
	padding-top: 115px;
	overflow: hidden;
	position: relative;
}
@media (max-width: 991px) {
	.blog-layout-section {
		padding-top: 75px;
	}
}
.blog-layout-section:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 220px;
	background-color: #fff;
}
.blog-layout-section .swiper-container {
	overflow: visible;
}
.blog-layout-section .blog-layout-image {
	-webkit-box-shadow: 0 30px 50px 0 rgba(8, 2, 46, 0.12);
	        box-shadow: 0 30px 50px 0 rgba(8, 2, 46, 0.12);
}

.blog-slider-pagination {
	position: relative;
	margin-top: 52px;
}
.blog-slider-pagination .swiper-pagination-bullet {
	background-color: #d9d9e3;
	height: 10px;
	width: 10px;
	opacity: 1;
}
.blog-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #1abf68;
}

/*--------------------------------------------------------------
  ##  Footer
  --------------------------------------------------------------*/
.gpt-footer {
	background-image: url(../img/footer-bg.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 100px 0;
}
.gpt-footer__logo {
	margin-bottom: 40px;
}
.gpt-footer__title {
	font-size: 35px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 40px;
}

.blanco{
	margin-top:6px
}
/*# sourceMappingURL=app.css.map */

/*--------------------------------------------------------------
  ##  Team
  --------------------------------------------------------------*/
.teams {
	padding: 115px 0 60px;
}
@media (max-width: 991px) {
	.teams {
		padding: 73px 0 60px;
	}
}

.teams-two {
	padding: 115px 0 120px;
}
@media (max-width: 991px) {
	.teams-two {
		padding: 73px 0 80px;
	}
}

.team-member {
	margin-bottom: 60px;
}
.team-member .team-avatar {
	position: relative;
}
.team-member .team-avatar img {
	width: 100%;
}
.team-member .team-avatar:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #1abf68;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.team-member .team-avatar .member-social {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
	text-align: center;
}
.team-member .team-avatar .member-social li:nth-child(2) {
	-webkit-transition-delay: 0.1s;
	     -o-transition-delay: 0.1s;
	        transition-delay: 0.1s;
}
.team-member .team-avatar .member-social li:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	     -o-transition-delay: 0.2s;
	        transition-delay: 0.2s;
}
.team-member .member-social {
	margin: 0;
	padding: 0;
	list-style: none;
}
.team-member .member-social li {
	display: inline-block;
	margin-right: 5px;
	-webkit-transform: translateY(20px);
	    -ms-transform: translateY(20px);
	        transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.team-member .member-social li a {
	color: #1abf68;
	display: block;
	background: #fff;
	border-radius: 50%;
	font-size: 18px;
	height: 50px;
	width: 50px;
	line-height: 52px;
	text-align: center;
}
.team-member .member-social li a:hover {
	-webkit-transform: translateY(-5px);
	    -ms-transform: translateY(-5px);
	        transform: translateY(-5px);
	-webkit-box-shadow: 0px 20px 30px 0px rgba(77, 3, 21, 0.2);
	        box-shadow: 0px 20px 30px 0px rgba(77, 3, 21, 0.2);
}
.team-member .member-info {
	margin-top: 24px;
}
.team-member .member-info .name {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 4px;
}
.team-member .member-info .designation {
	font-size: 16px;
	display: block;
}
.team-member:hover .team-avatar:before {
	opacity: 0.4 !important;
	visibility: visible;
}
.team-member:hover .team-avatar .member-social li {
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	opacity: 1;
	visibility: visible;
}
.team-member.style-two {
	margin-bottom: 30px;
}
.team-member.style-two .team-avatar {
	border-radius: 10px;
	overflow: hidden;
}
.team-member.style-two .team-avatar:before {
	background: rgb(37, 131, 64 , 0.5);
}
.team-member.style-two .member-social li a {
	height: 40px;
	width: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #fff;
	border: 1px solid #fff;
	background: transparent;
}
.team-member.style-two .member-social li a:hover {
	background: #fff;
	color: #1abf68;
}
.team-member.style-two .member-info .name {
	font-size: 18px;
}
.team-member.style-two .member-info .designation {
	font-size: 14px;
}


/*--------------------------------------------------------------
##  Section Heading
--------------------------------------------------------------*/
.section-heading {
	margin-bottom: 70px;
	text-align: center;
	position: relative;
	z-index: 222;
}
.section-heading .subtitle {
	font-size: 14px;
	text-transform: uppercase;
	color: #1abf68;
	font-weight: 500;
	position: relative;
	display: inline-block;
	letter-spacing: 3px;
	margin-bottom: 0;
}
.section-heading .section-title {
	font-size: 34px;
	font-weight: 600;
	margin: 0;
	line-height: 1.2;
	text-align: center;
}
@media (max-width: 768px) {
	.section-heading .section-title {
		font-size: 30px;
		line-height: 40px;
	}
}
.section-heading .section-title span {
	font-weight: 300;
}
@media (max-width: 576px) {
	.section-heading .section-title {
		font-size: 28px;
		line-height: 38px;
	}
	.section-heading .section-title br {
		display: none;
	}
}
.section-heading p {
	margin-top: 20px;
	margin-bottom: 0;
}
@media (max-width: 991px) {
	.section-heading p br {
		display: none;
	}
}
.section-heading.style-three .subtitle {
	color: #00c99c;
	font-weight: 500;
	margin-bottom: 10px;
	letter-spacing: 0.3em;
}
.section-heading.font-light .section-title {
	font-weight: 500;
}
.section-heading.style-two {
	margin-bottom: 63px;
}
.section-heading.style-two .subtitle {
	font-size: 16px;
	color: #4d5afe;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.section-heading.style-two .section-title {
	font-size: 40px;
	font-weight: 600;
	color: #373d46;
	position: relative;
	padding-bottom: 20px;
}
.section-heading.style-two .section-title:after, .section-heading.style-two .section-title:before {
	content: "";
	position: absolute;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	bottom: 0;
	height: 1px;
	width: 80px;
	background-color: #4d5afe;
}
.section-heading.style-two .section-title:before {
	left: 48%;
}
.section-heading.style-two .section-title:after {
	bottom: -5px;
	left: 52%;
}
@media (max-width: 768px) {
	.section-heading.style-two .section-title {
		font-size: 30px;
		line-height: 40px;
	}
}
.section-heading.style-two.text-left .section-title:after, .section-heading.style-two.text-left .section-title:before {
	left: 0;
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
.section-heading.style-two.text-left .section-title:after {
	width: 50px;
}
.section-heading.style-two .social-slider-nav .slider-next, .section-heading.style-two .social-slider-nav .slider-prev {
	color: #373d46;
	border-color: #e0e3e8;
}
.section-heading.style-two .social-slider-nav .slider-next:hover, .section-heading.style-two .social-slider-nav .slider-prev:hover {
	background-color: #4d5afe;
	border-color: #4d5afe;
	color: #fff;
	-webkit-box-shadow: 0px 20px 30px 0px rgba(6, 16, 149, 0.2);
	        box-shadow: 0px 20px 30px 0px rgba(6, 16, 149, 0.2);
}
.section-heading.style-four .section-title {
	color: #212d46;
	font-size: 40px;
}
.section-heading.style-four p {
	color: #646975;
}
.section-heading.style-four.font-light .section-title {
	font-weight: 500;
}
.section-heading.style-five .subtitle {
	color: #1abf68;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 5px;
	margin-bottom: 15px;
}
.section-heading.style-five .section-title {
	font-size: 40px;
	line-height: 50px;
	font-weight: 400;
}
@media (max-width: 991px) {
	.section-heading.style-five .section-title {
		font-size: 30px;
		line-height: 40px;
	}
}

.section-title-ana {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
	padding-bottom: 15px;
}
.section-title-ana h2 {
	font-size: 34px;
	line-height: 50px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	margin: 0;
}
.section-title-ana p {
	margin-top: 20px;
}
.section-title-ana:after {
	position: absolute;
	content: "";
	width: 70px;
	height: 3px;
	background-image: -webkit-gradient(linear, left top, right top, from(#ffbf51), to(#a485fd));
	background-image: -o-linear-gradient(left, #ffbf51 0%, #a485fd 100%);
	background-image: linear-gradient(to right, #ffbf51 0%, #a485fd 100%);
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.section-title-two {
	margin-bottom: 70px;
	position: relative;
}
.section-title-two h2 {
	font-size: 30px;
	font-weight: 700;
	color: #051441;
	margin-bottom: 20px;
}
.section-title-two p {
	font-size: 16px;
	color: #677294;
	line-height: 30px;
}
.section-title-two.title-big h2 {
	font-size: 40px;
	line-height: 56px;
	font-weight: 700;
}
.section-title-two .gp-btn-four {
	margin-top: 35px;
}

.section-title-three {
	margin-bottom: 20px;
	position: relative;
}
.section-title-three h2 {
	font-size: 35px;
	line-height: 50px;
	font-weight: 600;
	color: #222931;
	margin: 0;
}

.section-heading-two {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	z-index: 33;
}
.section-heading-two .subtitle {
	color: #ff5e85;
	font-weight: 500;
	font-size: 16px;
	position: relative;
	display: inline-block;
	text-transform: uppercase;
}
.section-heading-two .subtitle:after {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #ff5e85;
}
.section-heading-two .section-title {
	font-size: 30px;
	font-weight: 700;
	color: #343e5d;
	line-height: 1.4;
}

.section-dark .section-title-two h2 {
	color: #fff;
}
.section-dark .section-title-two p {
	color: #eae3f4;
	font-size: 18px;
	font-weight: 400;
}
@media (max-width: 576px) {
	.section-dark .section-title-two p br {
		display: none;
	}
}

.testimonial-card .card-up {
	height: 120px;
	overflow: hidden;
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
  }
.testimonial-card .avatar {
	width: 110px;
	margin-top: -60px;
	overflow: hidden;
	border: 3px solid #fff;
	border-radius: 50%;
}

.centrar{
	justify-content: center;
}
.mi-sombra {
	box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease-in-out;
	margin: 20px;
}
@media screen and (min-width: 1024px) {
	.mi-sombra{
			margin: 0;
	}
}
@media screen and (min-width: 768px) {
	.mi-sombra{
		margin: 0;
	}
}
@media screen and (min-width: 425px) {
	.mi-sombra{
		margin: 0;
	}
}
@media screen and (min-width: 375px) {
	.mi-sombra{
			margin: 0;
	}
}
@media screen and (min-width: 320px) {
	.mi-sombra{
			margin: 0;
	}
}

.mi-sombra:hover {
	box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

.banner {
	height: 975px;
	position: relative;
}

@media (min-width: 992px) {
	.mw-600 {
		max-width: 600px;
	}
}
/**
Banner Main
*/
.banner-main {
	background-image: -o-linear-gradient(30deg, #fcf5f6 0%, #f8fbfe 100%);
	background-image: linear-gradient(60deg, #fcf5f6 0%, #f8fbfe 100%);
}
@media (max-width: 991px) {
	.banner-main {
		height: 850px;
	}
}
.banner-main .banner-main-content-wrapper {
	padding-top: 250px;
	position: relative;
	z-index: 2;
}
@media (max-width: 992px) {
	.banner-main .banner-main-content-wrapper {
		padding-top: 150px;
	}
}
.banner-main .banner-content {
	text-align: center;
	margin-bottom: 58px;
}
.banner-main .banner-content .banner-title {
	font-size: 46px;
	font-weight: 700;
	color: #212d46;
	line-height: 1.3;
	margin-bottom: 20px;
}
@media (max-width: 992px) {
	.banner-main .banner-content .banner-title {
		font-size: 36px;
	}
}
.banner-main .banner-content .description {
	font-size: 18px;
	color: #646975;
	margin-bottom: 38px;
}
.banner-main .banner-content .banner-btn {
	font-size: 15px;
	padding: 9px 34px;
}
.banner-main .banner-content .banner-btn.btn-light {
	background: transparent;
}
.banner-main .banner-content .banner-btn.btn-light:hover {
	background: #ff6344;
}
@media (max-width: 420px) {
	.banner-main .banner-content .banner-btn.ml-3 {
		margin-left: 0 !important;
	}
}
.banner-main .banner-promo-mockup {
	max-width: 850px;
	margin: 0 auto;
	position: relative;
	z-index: 11;
}
.banner-main .banner-main-animate {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.banner-main-animate {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}
.banner-main-animate .animate-items {
	margin: 0;
	padding: 0;
	list-style: none;
}
.banner-main-animate .animate-items li {
	position: absolute;
}
.banner-main-animate .animate-items li:nth-child(1) {
	right: 50px;
	bottom: -100px;
	z-index: 1;
}
.banner-main-animate .animate-items li:nth-child(2) {
	left: 100px;
	top: 31%;
}
.banner-main-animate .animate-items li:nth-child(3) {
	left: 220px;
	bottom: 85px;
}
.banner-main-animate .animate-items li:nth-child(4) {
	right: 15%;
	top: 55%;
}
.banner-main-animate .animate-items li:nth-child(5) {
	left: 26%;
	top: 55%;
	z-index: 1;
	-webkit-animation: 3s linear 0.1s infinite normal none running wave;
	        animation: 3s linear 0.1s infinite normal none running wave;
}
.banner-main-animate .animate-items li:nth-child(6) {
	right: 80px;
	top: 315px;
}
.banner-main-animate .animate-items li:nth-child(7) {
	right: 15%;
	bottom: 195px;
}
.banner-main-animate .animate-items li.bubble1 {
	height: 100px;
	width: 100px;
	background: #fbe5e1;
	border-radius: 50%;
	left: 26%;
	bottom: 15.5%;
}
.banner-main-animate .animate-items li.bubble2 {
	height: 255px;
	width: 255px;
	background: #e5f2e9;
	border-radius: 50%;
	right: 25%;
	bottom: -4%;
	-webkit-animation: wave 2s ease-in-out infinite;
	        animation: wave 2s ease-in-out infinite;
}
.banner-main-animate .animate-items li.bubble3 {
	height: 16px;
	width: 16px;
	background: #f65e81;
	border-radius: 50%;
	left: 25.5%;
	bottom: 29%;
	z-index: 1;
	-webkit-animation: animationFramesTwo 30s infinite linear;
	        animation: animationFramesTwo 30s infinite linear;
}
.banner-main-animate .animate-items li.bubble4 {
	height: 10px;
	width: 10px;
	background: #f7cb61;
	border-radius: 50%;
	right: 24%;
	bottom: 20%;
	z-index: 1;
	-webkit-animation: 50s linear 0s infinite normal none running animationFramesTwo;
	        animation: 50s linear 0s infinite normal none running animationFramesTwo;
}

/* Banner Saas One*/
.banner-saas-main {
	padding: 170px 0;
	overflow: hidden;
}
@media (max-width: 991px) {
	.banner-saas-main {
		padding: 100px 0 100px;
		height: auto;
	}
}
@media (max-width: 991px) {
	.banner-saas-main .banner-content-sass {
		text-align: center;
	}
}
.banner-saas-main .banner-content-sass .subtitle-top {
	font-size: 14px;
	text-transform: uppercase;
	color: #7b7b93;
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 15px;
}
.banner-saas-main .banner-content-sass .subtitle-top a {
	color: #00c99c;
}
.banner-saas-main .banner-content-sass .banner-title {
	font-size: 50px;
	line-height: 60px;
	font-weight: 700;
	color: #2c2c51;
	margin-bottom: 20px;
}
@media (max-width: 1200px) {
	.banner-saas-main .banner-content-sass .banner-title {
		font-size: 40px;
		line-height: 50px;
	}
}
@media (max-width: 768px) {
	.banner-saas-main .banner-content-sass .banner-title {
		font-size: 32px;
		line-height: 42px;
	}
}
.banner-saas-main .banner-content-sass .description {
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 41px;
}

.banner-content-wrapper {
	margin: 0 -700px 0 0;
}
@media (max-width: 1600px) {
	.banner-content-wrapper {
		margin: 0 -400px 0 0;
	}
}
@media (max-width: 1440px) {
	.banner-content-wrapper {
		margin: 0 -100px 0 0;
	}
}
@media (max-width: 1200px) {
	.banner-content-wrapper {
		margin: 0;
	}
}

.saas-animate-image {
	max-width: 900px;
}

.banner-sass-svg-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

/* Banner Analytic */
.banner-analytics {
	background-image: -o-linear-gradient(50deg, #5e2ced 0%, #a485fd 100%);
	background-image: linear-gradient(40deg, #5e2ced 0%, #a485fd 100%);
	overflow: hidden;
}
@media (max-width: 991px) {
	.banner-analytics {
		height: auto;
	}
}
.banner-analytics .container {
	height: 100%;
	min-height: 700px;
}
.banner-analytics .banner-shape-left {
	position: absolute;
	top: 0;
	left: 100px;
}
.banner-analytics .banner-shape-right {
	right: 0;
	top: 0;
	position: absolute;
}
.banner-analytics .banner-content h2 {
	font-size: 40px;
	color: #fff;
	line-height: 52px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	margin-bottom: 25px;
}
.banner-analytics .banner-content h2 span {
	font-weight: 800;
}
@media (max-width: 1200px) {
	.banner-analytics .banner-content h2 {
		font-size: 34px;
		line-height: 44px;
	}
}
.banner-analytics .banner-content p {
	color: #fff;
	font-size: 16px;
	line-height: 28px;
	font-family: "Poppins", sans-serif;
	margin-bottom: 45px;
}
@media (max-width: 991px) {
	.banner-analytics .banner-content p {
		max-width: 600px;
		margin: 0 auto 45px;
	}
}
.banner-analytics .banner-content .banner-button .gp-btn {
	margin-right: 30px;
	font-family: "Poppins", sans-serif;
	-webkit-box-shadow: 0 8px 16px 0 rgba(0, 6, 26, 0.1);
	        box-shadow: 0 8px 16px 0 rgba(0, 6, 26, 0.1);
	font-size: 15px;
	padding: 12px 27px;
}
.banner-analytics .banner-content .banner-button .gp-btn:hover {
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}
.banner-analytics .banner-content .banner-button .btn-text {
	color: #fff;
	font-weight: 500;
	position: relative;
	font-size: 15px;
	margin-left: 30px;
	font-family: "Poppins", sans-serif;
}
.banner-analytics .banner-content .banner-button .btn-text:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: #bfb2f8;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.banner-analytics .banner-content .banner-button .btn-text:hover {
	color: #f8b137;
}
.banner-analytics .banner-content .banner-button .btn-text:hover:after {
	background: #f8b137;
}
.banner-analytics .banner-feature-thumb img {
	max-width: inherit;
}

@media (max-width: 991px) {
	.banner-feature-image {
		margin-top: 50px;
	}
}
.banner-feature-image .banner-animate-element {
	width: 440px;
	height: 480px;
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}
.banner-feature-image .banner-animate-element li {
	position: absolute;
}
.banner-feature-image .banner-animate-element li:nth-child(1) {
	right: 0;
}
.banner-feature-image .banner-animate-element li:nth-child(2) {
	right: -42px;
	bottom: -14px;
}
.banner-feature-image .banner-animate-element li:nth-child(3) {
	left: 0;
	top: 0;
	-webkit-animation: jump 2s infinite;
	        animation: jump 2s infinite;
}
.banner-feature-image .banner-animate-element li:nth-child(4) {
	top: 105px;
	left: 95px;
}
.banner-feature-image .banner-animate-element li:nth-child(5) {
	right: 95px;
	bottom: 22px;
}
.banner-feature-image .banner-animate-element li:nth-child(6) {
	bottom: 0;
	right: 52px;
}
.banner-feature-image .banner-animate-element li:nth-child(7) {
	right: -115px;
	top: 30px;
}
.banner-feature-image .banner-animate-element li:nth-child(8) {
	right: -55px;
	top: 145px;
}
.banner-feature-image .banner-animate-element li:nth-child(9) {
	right: -106px;
	top: 138px;
}
.banner-feature-image .banner-animate-element li:nth-child(10) {
	right: -40px;
	top: 95px;
}
.banner-feature-image .banner-animate-element li:nth-child(11) {
	right: 10px;
	top: 25px;
}
p.gpt-heading.gpt-heading_description {
    font-size: 18px;
}

/*SECTION PORTFOLIO*/


.portfolios {
	padding: 20px 0 100px;
}
@media (max-width: 768px) {
	.portfolios {
		padding: 66px 0 60px;
	}
}

.portfolios-masonry {
	padding: 106px 0 40px;
}
@media (max-width: 768px) {
	.portfolios-masonry {
		padding: 66px 0 60px;
	}
}

.astriol__isotope-filter {
	margin-bottom: 50px;
	padding: 0;
	list-style: none;
}
.astriol__isotope-filter li {
	display: inline-block;
	margin-bottom: 10px;
}
.astriol__isotope-filter li:not(:last-child) {
	margin-right: 50px;
}
@media (max-width: 440px) {
	.astriol__isotope-filter li {
		display: block;
	}
}
.astriol__isotope-filter li a {
	color: #797687;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	text-transform: uppercase;
}
.astriol__isotope-filter li.current a {
	border-color: #1abf68;
	color: #1abf68;
}
.astriol__isotope-filter.style--two {
	margin-bottom: 30px;
	text-align: right;
}
@media (max-width: 991px) {
	.astriol__isotope-filter.style--two {
		text-align: center;
	}
}
.astriol__isotope-filter.style--two li a {
	font-size: 12px;
	font-weight: 500;
}
.astriol__isotope-filter.style--two li.current a {
	color: #fb8c5c;
}

.grid-sizer {
	min-height: 1px;
}

.astriol__portfolio-items {
	margin-top: 20px;
}
.astriol__portfolio-items.column-2 {
	width: calc(100% + 2%);
}
.astriol__portfolio-items.column-2 .astriol__portfolio,
.astriol__portfolio-items.column-2 .grid-sizer {
	width: calc(50% - 2%);
	margin-right: 2%;
}
.astriol__portfolio-items.column-3 {
	width: calc(100% + 2.4%);
}
.astriol__portfolio-items.column-3 .astriol__portfolio,
.astriol__portfolio-items.column-3 .grid-sizer {
	width: calc(33.33% - 2.4%);
	margin-right: 2.4%;
}
@media (max-width: 768px) {
	.astriol__portfolio-items.column-3 .astriol__portfolio,
.astriol__portfolio-items.column-3 .grid-sizer {
		width: calc(50% - 2.4%);
	}
}
@media (max-width: 440px) {
	.astriol__portfolio-items.column-3 .astriol__portfolio,
.astriol__portfolio-items.column-3 .grid-sizer {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
}
@media (max-width: 440px) {
	.astriol__portfolio-items.column-3 {
		width: 100%;
	}
}

.astriol__portfolio {
	margin-bottom: 2.4%;
	position: relative;
}
.astriol__portfolio-image {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.astriol__portfolio-image img {
	-webkit-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	width: 100%;
}
.astriol__portfolio-image:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(44, 44, 81, 0.7);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.astriol__portfolio-image .portfolio-info {
	padding: 0 40px;
	position: absolute;
	width: 100%;
	bottom: 35px;
	left: 0;
	overflow: hidden;
}
.astriol__portfolio-image .portfolio-info h3 {
	font-size: 24px;
	margin-bottom: 4px;
	line-height: 32px;
	-webkit-transform: translateY(-35px);
	    -ms-transform: translateY(-35px);
	        transform: translateY(-35px);
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	font-weight: 600;
	opacity: 0;
}
.astriol__portfolio-image .portfolio-info h3 a {
	color: #fff;
}
.astriol__portfolio-image .portfolio-info span {
	color: #fff;
	font-size: 14px;
	display: inline-block;
	margin-bottom: 15px;
	-webkit-transform: translateY(20px);
	    -ms-transform: translateY(20px);
	        transform: translateY(20px);
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	opacity: 0;
}
.astriol__portfolio-image:hover:before {
	opacity: 1;
	visibility: visible;
}
.astriol__portfolio-image:hover img {
	-webkit-transform: rotate(3deg) scale(1.07);
	    -ms-transform: rotate(3deg) scale(1.07);
	        transform: rotate(3deg) scale(1.07);
}
.astriol__portfolio-image:hover .portfolio-info {
	-webkit-box-shadow: none;
	        box-shadow: none;
	z-index: 4;
}
.astriol__portfolio-image:hover .portfolio-info h3,
.astriol__portfolio-image:hover .portfolio-info p,
.astriol__portfolio-image:hover .portfolio-info span {
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	opacity: 1;
}

.astriol__portfolio-items--two .astriol__portfolio {
	margin-bottom: 115px;
}
.astriol__portfolio-items--two .astriol__portfolio .astriol__portfolio-image {
	overflow: visible;
}
.astriol__portfolio-items--two .astriol__portfolio .astriol__portfolio-image:before {
	display: none;
}
.astriol__portfolio-items--two .astriol__portfolio .astriol__portfolio-image img {
	border-radius: 10px;
}
.astriol__portfolio-items--two .astriol__portfolio .astriol__portfolio-image:hover img {
	-webkit-transform: rotate(0) scale(1);
	    -ms-transform: rotate(0) scale(1);
	        transform: rotate(0) scale(1);
}
.astriol__portfolio-items--two .astriol__portfolio .portfolio-info {
	width: 80%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	padding: 25px 30px;
	bottom: 0;
	-webkit-box-shadow: 0 26px 40px 0 rgba(8, 22, 113, 0.08);
	        box-shadow: 0 26px 40px 0 rgba(8, 22, 113, 0.08);
	-webkit-transform: translate(-50%, 55px);
	    -ms-transform: translate(-50%, 55px);
	        transform: translate(-50%, 55px);
	border-radius: 6px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.astriol__portfolio-items--two .astriol__portfolio .portfolio-info h3,
.astriol__portfolio-items--two .astriol__portfolio .portfolio-info span {
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	opacity: 1;
	color: #333;
}
.astriol__portfolio-items--two .astriol__portfolio .portfolio-info h3 {
	font-size: 20px;
	line-height: 1;
}
.astriol__portfolio-items--two .astriol__portfolio .portfolio-info h3 a {
	color: #373d46;
}
.astriol__portfolio-items--two .astriol__portfolio .portfolio-info h3 a:hover {
	color: #1abf68;
}
.astriol__portfolio-items--two .astriol__portfolio .portfolio-info span {
	margin: 0;
}
.astriol__portfolio-items--two .astriol__portfolio .portfolio-info:before {
	content: "";
	position: absolute;
	background: #fff;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 6px;
}
.astriol__portfolio-items--two .astriol__portfolio:hover .portfolio-info {
	-webkit-transform: translate(-50%, -30px);
	    -ms-transform: translate(-50%, -30px);
	        transform: translate(-50%, -30px);
}

.astriol__portfolio-items--three .astriol__portfolio-image:before {
	opacity: 1;
	visibility: visible;
	background: rgba(31, 17, 58, 0.3);
}
.astriol__portfolio-items--three .astriol__portfolio-image .portfolio-info {
	bottom: auto;
	top: 40px;
	z-index: 2;
}
.astriol__portfolio-items--three .astriol__portfolio-image .portfolio-info .portfolio-title,
.astriol__portfolio-items--three .astriol__portfolio-image .portfolio-info span {
	opacity: 1;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}
.astriol__portfolio-items--three .astriol__portfolio-image .portfolio-info span {
	margin: 0;
}
.astriol__portfolio-items--three .astriol__portfolio-image .portfolio-info .portfolio-title {
	font-size: 20px;
}
.astriol__portfolio-items--three .astriol__portfolio-image .popup-image {
	position: absolute;
	height: 50px;
	width: 50px;
	border: 1px solid rgba(255, 255, 255, 0.502);
	left: 40px;
	bottom: 50px;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	color: #fff;
	font-size: 20px;
	z-index: 2;
}
.astriol__portfolio-items--three .astriol__portfolio-image .popup-image:hover {
	background: #fff;
	border-color: #fff;
	color: #fb8c5c;
}
.astriol__portfolio-items--three .astriol__portfolio-image:hover::before {
	background: rgba(251, 140, 92, 0.9);
}

.portfolio-single {
	padding-top: 116px;
}

.portfolio--single-gallery {
	width: calc(100% + 30px);
}

.gallery-item,
.grid-sizerr {
	margin-right: 30px;
	margin-bottom: 30px;
	width: calc(50% - 30px);
}
.gallery-item.width-large,
.grid-sizerr.width-large {
	width: calc(65% - 30px);
}
.gallery-item.width-small,
.grid-sizerr.width-small {
	width: calc(34% - 30px);
}

.portfolio-share {
	position: absolute;
	top: 50%;
	right: -47px;
	-webkit-transform: translateY(-50%) rotate(-90deg);
	    -ms-transform: translateY(-50%) rotate(-90deg);
	        transform: translateY(-50%) rotate(-90deg);
}
.portfolio-share span {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	margin-right: 10px;
}
.portfolio-share .port-social-share {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-block;
}
.portfolio-share .port-social-share li {
	display: inline-block;
	margin-right: 15px;
}
.portfolio-share .port-social-share li a {
	color: #fff;
	display: inline-block;
	font-size: 14px;
}

.gallery--image img {
	width: 100%;
	margin-bottom: 15px;
}

.portfolio__content {
	padding-bottom: 135px;
}
.portfolio__content-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding-bottom: 60px;
}
.portfolio__content-des {
	width: 63%;
	padding-right: 50px;
}
.portfolio__content-des .title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 26px;
}
.portfolio__content-des p {
	line-height: 28px;
}
.portfolio__content-info {
	width: 37%;
	padding-left: 70px;
	border-left: 1px solid #e9ebf2;
}
.portfolio__content-info .portfolio__info {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 38px;
}
.portfolio__content-info .portfolio__info li {
	display: block;
}
.portfolio__content-info .portfolio__info li:not(:last-child) {
	margin-bottom: 33px;
}
.portfolio__content-info .portfolio__info li .info-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}
.portfolio__content-info .portfolio__info li .info {
	color: #6b6b7e;
}
.portfolio__content-info .portfolio__category-inner .cat-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
}
.portfolio__content-info .portfolio__category-inner .portfolio-category {
	margin: 0;
	padding: 0;
	list-style: none;
}
.portfolio__content-info .portfolio__category-inner .portfolio-category li {
	line-height: 34px;
	position: relative;
	padding-left: 27px;
}
.portfolio__content-info .portfolio__category-inner .portfolio-category li:before {
	content: "N";
	font-family: eleganticons;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	color: #1cda0e;
}
.portfolio__content-info .portfolio__category-inner .portfolio-category li a {
	color: #6b6b7e;
}
.portfolio__content-info .portfolio__category-inner .portfolio-category li a:hover {
	color: #1abf68;
}

.portfolio-nav {
	margin: 0;
	padding: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 115px;
}
.portfolio-nav li {
	font-size: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: end;
}
.portfolio-nav li i {
	font-size: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: #b3b3bd;
}
.portfolio-nav li a {
	color: #6b6b7e;
}
.portfolio-nav li.prev i {
	margin-right: 10px;
}
.portfolio-nav li.next i {
	margin-left: 10px;
}
.portfolio-nav li:hover a,
.portfolio-nav li:hover i {
	color: #1abf68;
}

.portfolio--releted-wrapper {
	background: #faf9fd;
	padding: 112px 0 120px;
}

.related-portfolio .portfolio-item .feature-image {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
}
.related-portfolio .portfolio-item .feature-image img {
	width: 100%;
	border-radius: 6px;
}
.related-portfolio .portfolio-item .feature-image a {
	display: block;
	position: relative;
}
.related-portfolio .portfolio-item .feature-image a:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(44, 44, 81, 0.7);
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.related-portfolio .portfolio-item .feature-image:hover a:before {
	opacity: 1;
}
.related-portfolio .portfolio-item .port-info {
	padding: 25px 35px 0;
}
.related-portfolio .portfolio-item .port-info h3 {
	font-size: 24px;
	margin-bottom: 5px;
	line-height: 32px;
	font-weight: 600;
}
.related-portfolio .portfolio-item .port-info h3 a {
	color: #2b2350;
}
.related-portfolio .portfolio-item .port-info h3 a:hover {
	color: #1abf68;
}
.related-portfolio .portfolio-item .port-info span {
	color: #6b6b7e;
}

#related-portfolio .swiper-pagination {
	position: relative;
	margin-top: 55px;
}
#related-portfolio .swiper-pagination .swiper-pagination-bullet {
	height: 12px;
	width: 12px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-right: 5px;
	position: relative;
	opacity: 1;
	background: #d8d5e6;
	outline: 0;
}
#related-portfolio .swiper-pagination .swiper-pagination-bullet:before {
	content: "";
	position: absolute;
	height: 12px;
	width: 12px;
	background: #d8d5e6;
	z-index: 2;
	top: 0;
	left: 0;
	border-radius: 50%;
	left: 0;
	top: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#related-portfolio .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}
#related-portfolio .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
	opacity: 1;
	background: #1abf68;
}	

.astriol__portfolio-items.portfolio-three.column-3.port-gutters {
    display: flex;
    flex-wrap: wrap;
}

.astriol__isotope-filter a {
    color: #000; /* Color por defecto */
}

.astriol__isotope-filter a.current {
    color: #1abf68; /* Color cuando está activo */
}


/*A ENLACE PORTFOLIO*/
.button-container {
    margin-top: 50px;
}

.text-center {
    /* text-align: center!important; */
}

h2.section-title.filtro {
    font-size: 40px;
}

p.gpt-heading.gpt-heading_description.centro {
    text-align: center;
	margin-top: 55px;
}

h3.gpt-heading__subtitle.centro {
    text-align: center;
    margin-top: 40px;
}

/* */

.astriol__portfolio-items-1 {
	margin-top: 20px;
}
.astriol__portfolio-items-1.column-2 {
	width: calc(100% + 2%);
}
.astriol__portfolio-items-1.column-2 .astriol__portfolio,
.astriol__portfolio-items-1.column-2 .grid-sizer {
	width: calc(50% - 2%);
	margin-right: 2%;
}
.astriol__portfolio-items-1.column-3 {
	width: calc(100% + 2.4%);
}
.astriol__portfolio-items-1.column-3 .astriol__portfolio,
.astriol__portfolio-items-1.column-3 .grid-sizer {
	width: calc(33.33% - 2.4%);
	margin-right: 2.4%;
}
@media (max-width: 768px) {
	.astriol__portfolio-items-1.column-3 .astriol__portfolio,
.astriol__portfolio-items-1.column-3 .grid-sizer {
		width: calc(50% - 2.4%);
	}
}
@media (max-width: 440px) {
	.astriol__portfolio-items-1.column-3 .astriol__portfolio,
.astriol__portfolio-items-1.column-3 .grid-sizer {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
}
@media (max-width: 440px) {
	.astriol__portfolio-items-1.column-3 {
		width: 100%;
	}
}
