@import url('font.css');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	outline: none;
}

body {
	overflow-y: hidden;
	font-family: "Poppins Regular";
	font-size: 16px;
	color: #333;
	background: #FFF;
	overflow-x: hidden;
}

.scroll-hidden {
	overflow-y: hidden !important;
}

.wrapper {
	margin: 0 auto;
	width: 100%;
	max-width: 1920px;
	position: relative;
	overflow: hidden;
}

.wrapper::before,.wrapper::after,
.row::before,.row::after {
	content: "";
	display: table;
}

.wrapper::after,
.row::after {
	clear: both;
}

.clear {
	clear: both;
}

[class*='col-'] {
	width: 100%;
	float: left;
	transition: .3s;
	min-height: 1px;
}

[class*='img-'] {
	overflow: hidden;
	margin: 0 auto;
}

@media screen and (min-width: 320px) {
	.col-sm-1{width: 8.33%}
	.col-sm-2{width: 16.66%}
	.col-sm-3{width: 25%}
	.col-sm-4{width: 33.33%}
	.col-sm-5{width: 41.66%}
	.col-sm-6{width: 50%}
	.col-sm-7{width: 58.33%}
	.col-sm-8{width: 66.66%}
	.col-sm-9{width: 75%}
	.col-sm-10{width: 83.33%}
	.col-sm-11{width: 91.66%}
	.col-sm-12{width: 100%}
}

@media screen and (min-width: 640px) {
	.col-md-1{width: 8.33%}
	.col-md-2{width: 16.66%}
	.col-md-3{width: 25%}
	.col-md-4{width: 33.33%}
	.col-md-5{width: 41.66%}
	.col-md-6{width: 50%}
	.col-md-7{width: 58.33%}
	.col-md-8{width: 66.66%}
	.col-md-9{width: 75%}
	.col-md-10{width: 83.33%}
	.col-md-11{width: 91.66%}
	.col-md-12{width: 100%}
}

@media screen and (min-width: 980px) {
	.col-lg-1{width: 8.33%}
	.col-lg-2{width: 16.66%}
	.col-lg-3{width: 25%}
	.col-lg-4{width: 33.33%}
	.col-lg-5{width: 41.66%}
	.col-lg-6{width: 50%}
	.col-lg-7{width: 58.33%}
	.col-lg-8{width: 66.66%}
	.col-lg-9{width: 75%}
	.col-lg-10{width: 83.33%}
	.col-lg-11{width: 91.66%}
	.col-lg-12{width: 100%}
}

@media screen and (min-width: 1921px) {
	.col-xl-1{width: 8.33%}
	.col-xl-2{width: 16.66%}
	.col-xl-3{width: 25%}
	.col-xl-4{width: 33.33%}
	.col-xl-5{width: 41.66%}
	.col-xl-6{width: 50%}
	.col-xl-7{width: 58.33%}
	.col-xl-8{width: 66.66%}
	.col-xl-9{width: 75%}
	.col-xl-10{width: 83.33%}
	.col-xl-11{width: 91.66%}
	.col-xl-12{width: 100%}
}

/* Base */
.d-flex {display: flex;}
.flex-row {flex-direction: row;}
.flex-column {flex-direction: column;}
.flex-end {justify-content: flex-end;}
.align-center {align-items: center;}
.content-center {justify-content: center;}
.space-between {justify-content: space-between;}
a {text-decoration: none; transition: .3s;}
img, video {width: 100%;transition: .3s;pointer-events: none;}
button {cursor: pointer;}
span.blue {color: #0BA6FC !important;}
span.green {color: #34af78 !important;}
span.red {color: #ED6780 !important;}

/* Button */
.btn {
	background: #ED6780;
	padding: 10px 40px;
	color: #FFF;
	border: none;
	font: 15px "Poppins SemiBold";
	text-transform: uppercase;
	letter-spacing: 5px;
	transition: .3s;
	position: relative;
	z-index: 1;
}

.btn::after {
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	background: #0BA6FC;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	border-radius: 30px;
	transition: .3s;
}

.btn:hover::after {
	border: 1px solid #0BA6FC;
	width: 100%;
}

.btn-rounded {
	border-radius: 30px;
}

/* Container */
.container-fluid,
.container {
	margin: 0 auto;
	width: 100%;
	transition: .3s;
	padding: 0 20px;
}

.container-fluid {
	max-width: 1600px;
}

.container {
	max-width: 1400px;
}

/* Loader */
.loader {
	background: #FFF;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	transition: .3s;
}

.loader video {
	width: 300px;
}

/* Overlay Page */
.overlay-page {
	width: 0;
	height: 100vh;
	background: #FFF;
	transition: .5s;
	z-index: 9999;
	position: fixed;
}

/* Text */
.text-header {
	font: 40px "Poppins Bold";
	text-transform: capitalize;
	margin-bottom: 10px;
}

.header-center {
	text-align: center;
}

.header-left {
	text-align: left;
}

.sub-text-100 {
	width: 100% !important;
}

.text-card {
	font: 18px "Poppins Bold";
	position: absolute;
}

/* Back To Top */
.btn-btt {
	position: fixed;
	z-index: 50;
	background: #0BA6FC;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid #0BA6FC;
	color: #FFF;
	transition: .3s;
	font-size: 18px;
	bottom: -50px;
	right: 20px;
	box-shadow: rgba(31, 31, 31, 0.2) 0px 0px 13px 0px;
}

/* Contact Fixed */
.contact-fixed {
	position: fixed;
	transform: translateY(-50%);
	right: -60px;
	transform: translateX(100%);
	top: 40%;
	background: #FFF;
	z-index: 100;
	border-radius: 10px 0 0 10px;
	box-shadow: rgba(0,0,0,0.1) 0 0 13px 0;
	width: 120px;
	padding: 15px 0;
	transition: .3s;
}

.text-floating-contact {
	font-family: "Poppins SemiBold";
	margin-top: 10px;
	margin-bottom: 25px;
}

.show-contact {
	transform: translateX(0);
}

.contact-fixed a {
	margin: 20px 0;
}

.contact-fixed a i {
	font-size: 25px;
	color: #ED6780;
}

i.wa {
	color: #34af78 !important;
}

i.mail {
	color: #0BA6FC !important;
}

.contact-toggle {
	position: absolute;
	left: -50px;
	color: #FFF;
	font-size: 25px;
	transform: translateY(-50%);
	top: 50%;
	padding: 10px 17px;
	border-radius: 30px 0 0 30px;
	background: #0BA6FC;
	cursor: pointer;
	transition: .3s;
	box-shadow: rgba(0, 0, 0, 0.05) -10px 0px 13px 0;
}

.show-toggle {
	background: #FFF;
	color: #333;
}

/* Nav */
nav {
	width: 100%;
	max-width: 1920px;
	height: 100px;
	background: transparent;
	position: absolute;
	top: 0;
	z-index: 50;
}

.img-logo {
	width: 60px;
}

.menu a {
	margin: 0 50px;
	color: #333;
	font: 16px "Poppins Medium";
}

.menu a:hover,
.menu a.active {
	color: #ED6780;
}

/* Icon Bar */

.icon-bar {
	position: absolute;
	cursor: pointer;
	width: 30px;
	margin-left: 50px;
	margin-right: 20px;
	display: none;
	right: 20px;
}

.line {
	width: 30px;
	height: 4px;
	border-radius: 10px;
	background: linear-gradient(90deg, #0BA6FC, #09CDD6);
	margin: 5px 0;
	transition: .3s;
}

#one,
#three {
	width: 15px;
}

#three {
	position: absolute;
	right: 0;
	top: 18px;
}

.icon-bar.on #one {
	transform: rotate(45deg) translateX(5px) translateY(11px);
	width: 30px;
}

.icon-bar.on #two {
	width: 0;
}

.icon-bar.on #three {
	transform: rotate(-45deg) translateX(1.5px) translateY(-8.5px);
	width: 30px;
}

/* Sidebar */
.sidebar {
	position: absolute;
	width: 100vw;
	height: 100vh;
	transform: translateY(-100%);
	background: #FFF;
	z-index: 10;
	padding: 100px 20px 20px 20px;
	transition: .5s;
}

.show-sidebar {
	transform: translateY(0);
}

.sidebar a {
	margin: 30px 0;
	font: 25px "Poppins Medium";
	color: #333;
}

.sidebar a:hover,
.sidebar a.active {
	color: #ED6780;
}

/* Geometric BG */
.hero-geo-circle,
.hero-geo-rectangle,
.pm-geo-rectangle,
.we-illus,
.partners-geo-triangle,
.partners-geo-circle,
.pps-geo-rectangle,
.footer-geo-times,
.footer-geo-rectangle,
.overlay-services-geo-rectangle,
.overlay-services-geo-circle,
.contact-geo-rectangle {
	width: 100%;
	max-width: 500px;
	position: absolute;
	transition: .3s;
}

/* Hero */
.hero {
	height: 100vh;
	max-height: 1366px;
	width: 100%;
	max-width: 1920px;
}

.section-hero {
	width: 100%;
}

.hero-header {
	text-transform: uppercase;
	font: 40px "Poppins Bold";
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.text-sub {
	color: #888888;
	width: 500px;
	line-height: 28px;
	margin-bottom: 60px;
}

.bg-hero,
.bg-pm,
.bg-we,
.bg-services,
.bg-pps,
.bg-tech,
.bg-overlay-service {
	position: absolute;
	width: 100%;
}

.bg-hero {
	top: 0;
}

.hero-img {
	background-size: cover;
	height: 740px;
	width: 100%;
	max-width: 550px;
	transition: .3s;
	position: relative;
	z-index: -1;
}

.hero-illustration {
	width: 1400px;
	transition: .3s;
}

.hero-bg-geo,
.partners-bg-geo {
	width: 100%;
	top: -50px !important;
}

.hero-geo-circle,
.overlay-services-geo-circle {
	right: -370px;
	top: -160px;
	-webkit-animation:spin 7s linear infinite;
    -moz-animation:spin 7s linear infinite;
    animation:spin 7s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.hero-abstract {
	width: 100%;
	max-width: 500px;
	position: absolute;
	top: 470px;
	transition: .3s;
}

.hero-geo-rectangle,
.overlay-services-geo-rectangle,
.contact-geo-rectangle {
	max-width: 300px;
	top: 750px;
	left: -100px;
}

.overlay-services-geo-rectangle {
    top: 850px;
}

/* Project Models */
.project-models {
	position: relative;
	padding: 250px 0;
}

.pm-geo-rectangle,
.pps-geo-rectangle {
	max-width: 250px;
	right: -120px;
	bottom: 150px;
}

h1.header {
	text-transform: capitalize;
	letter-spacing: 0;
}

.owl-stage {
	padding-top: 20px;
	padding-bottom: 70px;
}

.carousel-project-models .owl-carousel .item {
	cursor: pointer;
	background: #FFF;
	text-align: center;
	box-shadow: #f0f0f0 0px 0px 13px 0px;
	padding: 50px 20px;
	border-radius: 15px;
	height: 350px;
	position: relative;
	overflow: hidden;
}

.bg-item {
	bottom: -50px;
	opacity: 0;
	transition: .5s;
	position: absolute;
	width: 400px;
}

.carousel-project-models {
	position: relative;
}

.carousel-project-models .owl-carousel .item {
	transition: .3s;
}

.carousel-project-models .owl-carousel .owl-item {
	opacity: 0.5;
	transition: .3s;
}

.carousel-project-models .owl-carousel .owl-item.active.center .bg-item {
	bottom: 0;
	opacity: .5;
}

.carousel-project-models .owl-carousel .owl-item.active.center {
	bottom: 0;
	opacity: 1;
}

.carousel-project-models .owl-carousel .owl-item.active.center .item {
	box-shadow: rgba(0,0,0,0.05) 0px 0px 13px 0px;
}

.carousel-project-models .owl-carousel .owl-nav button.owl-next {
	right: -40px;
}

.carousel-project-models .owl-carousel button.owl-next,
.carousel-project-models .owl-carousel button.owl-prev {
    width: 40px;
    border-radius: 50% !important;
	height: 40px;
	background: #FFF !important;
	box-shadow: #cfcfcf 0px 0px 16px 0px !important;
	transition: .3s;
}

.carousel-project-models .owl-carousel button.owl-next:hover,
.carousel-project-models .owl-carousel button.owl-prev:hover {
	box-shadow: #c2c2c2 0px 0px 13px 0px !important;
}

.carousel-project-models .owl-carousel button.owl-next span,
.carousel-project-models .owl-carousel button.owl-prev span {
    position: absolute;
    transform: translate(-49%, -51%);
}

.icon-carousel {
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	width: 190px;
	margin-bottom: 60px;
	opacity: 0;
	transition: .5s;
}

.carousel-project-models .owl-carousel .owl-item.active.center .icon-carousel {
	top: 40%;
	opacity: 1;
}

.icon-carousel img {
	width: 100%;
}

.carousel-project-models .owl-carousel .item p {
	transition: .5s;
	bottom: 50%;
}

.carousel-project-models .owl-carousel .owl-item.active.center p {
	bottom: 80px;
}

.owl-nav button {
	box-shadow: #f0f0f0 0px 0px 13px 0px !important;
	font-size: 50px !important;
	padding: 10px !important;
}

.owl-next,
.owl-prev {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 40%;
	padding: 50% !important;
}

.owl-next {
	right: 0;
	color: #0BA6FC !important;
}

.owl-prev {
	left: 0;
	color: #ED6780 !important;
}

/* We */
.we {
	padding: 80px 0;
}

.we-abstract {
	display: none;
	z-index: -1;
}

.we-bg-geo {
	width: 100%;
	top: -200px !important;
}

.we-illus {
    max-width: 650px;
    top: -80px;
    left: 100px;
    z-index: 1;
}

.vm-sub-text {
	width: 100% !important;
	margin: 0 !important;
}

.vm {
	margin: 50px 0;
}

.img-vm {
	width: 65px;
	margin-right: 30px;
}

.img-mission {
	width: 100px;
}

.vm-text h4 {
	margin: 15px 0;
	letter-spacing: 1px;
	font: 18px "Poppins Bold";
}

/* Partners */
.partners {
	padding: 200px 0 0 0;
	position: relative;
}

.partners-geo-triangle {
	left: -80px;
	top: 130px;
	max-width: 250px;
}

.partners-geo-circle {
    max-width: 250px;
    right: -150px;
	top: 650px;
	-webkit-animation:spin 7s linear infinite;
    -moz-animation:spin 7s linear infinite;
    animation:spin 7s linear infinite;
}

.carousel-partners {
	margin-top: 20px;
}

.partner-item {
	height: 200px;
}

.img-partner {
	width: 120px;
}

/* Services */
.services {
	position: relative;
	padding: 200px 0;
	background: url("../img/abstract/services-abstract.svg") right no-repeat;
	background-size: 1200px;
	transition: .3s;
}

.hidden-bg-services {
	position: absolute;
	right: 0;
	display: none;
	width: 450px;
}

.services-bg-geo {
	width: 100%;
	top: 120px !important;
}

.bg-services {
	right: -100px;
	z-index: -1;
}

.header-services {
	margin-top: 150px;
}

.services button {
	margin-top: 80px;
}

.wrap-hidden-button {
	width: 100%;
	display: none;
}

.wrap-hidden-button button {
	margin-top: 30px;
}

.wrap-item-service {
	margin-left: 730px;
	margin-top: 100px;
	transition: .3s;
}

.wrap-item-service-carousel {
	display: none;
	width: 100%;
	margin-top: 50px;
}

.item-service {
	background: #FFF;
	margin: 0 15px;
	margin-top: 50px;
	height: 320px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: rgba(0,0,0,0.05) 0px 0px 13px 0px;
	position: relative;
	cursor: pointer;
}

.bg-item-service {
	position: absolute;
	top: -50px;
	left: -50px;
	width: 450px;
	opacity: .3;
}

.bg-ghost-service {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 150px;
	opacity: .1;
	z-index: -1;
}

.icon-carousel-service {
	width: 90px;
	z-index: 1;
}

.icon-carousel-big {
	width: 130px;
}

.icon-carousel-service img {
	width: 100%;
}

.item-service-card-text {
	bottom: 50px;
}

/* PPS */
.pps {
	padding: 150px 0;
	position: relative;
}

.pps-bg-geo {
	width: 100%;
	top: 80px !important;
}

.wrap-card-pps {
	margin: 70px 0;
}

.card-pps {
	margin: 20px;
	background: #FFF;
	height: 550px;
	box-shadow: rgba(0,0,0,0.05) 0px 0px 13px 0px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.card-pps:hover .img-card-pps {
	max-width: 250px;
}

.card-pps:hover .smaller-img-card-pps {
	max-width: 200px;
}

.img-card-pps {
	width: 100%;
	max-width: 200px;
	position: absolute;
	transform: translateY(-50%);
	top: 40%;
	transition: .3s;
}

.smaller-img-card-pps {
	max-width: 150px;
}

.bg-card-pps {
	position: absolute;
	opacity: .2;
	width: 90%;
	top: -30px;
	left: -30px;
}

.text-card-pps {
	bottom: 100px;
	width: 200px;
	line-height: 28px;
	text-align: center;
}

/* Tech Stack */
.tech-stack {
	position: relative;
	padding: 70px 0 50px;
}

.header-tech {
	margin-top: 150px;
}

.illus-tech-stack {
	width: 80%;
	position: absolute;
	left: -300px;
	top: 100px;
}

.hidden-illus-tech-stack {
	display: none;
	transform: rotate(-90deg);
	z-index: -1;
}

.tech-sub-text {
	margin-bottom: 60px;
}

.wrap-bubble-tech {
	position: relative;
}

#bubble-tech {
	position: absolute;
	background: #FFF;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 15px 0px;
	width: 70px;
	height: 70px;
	cursor: pointer;
	transition: .3s;
	z-index: 1;
}

#bubble-tech img {
	width: 30px;
}

#bubble-tech:hover {
	width: 90px;
	height: 90px;
}

.bubble-one {
	top: 40px;
	left: 100px;
}

.bubble-two {
	top: 450px;
	left: 170px;
}

.bubble-three {
    left: 350px;
    top: 150px;
}

.bubble-four {
    top: 400px;
    left: 470px;
}

.bubble-five {
    left: 550px;
    top: 60px;
}

.bubble-six {
    left: 550px;
    top: 510px;
}

.bubble-seven {
    left: 680px;
    top: 190px;
}

.bubble-eight {
	top: 350px;
    left: 770px;
}

/* Footer */
.section-footer {
	padding: 30px 0;
}

.footer-bg-geo {
	width: 100%;
	top: 320px !important;
	left: 100px;
}

.footer-geo-times,
.footer-geo-rectangle {
	z-index: -1;
}

.footer-geo-times {
	max-width: 200px;
	right: -80px;
	bottom: 200px;
}

.footer-geo-rectangle {
	max-width: 200px;
	left: -80px;
	bottom: 0;
}

.img-logo-footer {
	width: 100%;
	max-width: 200px;
}

.link-footer {
	margin: 20px 50px;
}

.link-footer h5 {
	font: 18px "Poppins Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 35px;
}

.link-footer a {
	display: block;
	color: #888888;
	margin: 20px 0;
}

.link-footer a:hover {
	color: #333;
}

.img-footer a {
	margin: 0 15px;
}

.img-footer a:first-child {
	margin-left: 0;
}

.img-footer img {
	width: 23px;
}

.small-img-footer {
	width: 15px !important;
}

.footer-copy {
	text-align: center;
	color: #888888;
	font-size: 16px;
	margin: 10px 0;
}

/* Page Services */
.wrap-page-services-carousel {
	width: 100%;
	max-width: 1920px;
	height: 100vh;
	max-height: 1366px;
	position: relative;
}

.header-page-services {
	position: absolute;
	transform: translate(-50%, 0);
	top: 170px;
	left: 50%;
	width: 100%;
}

.text-detail-services {
    text-align: left;
    line-height: 30px !important;
    color: #888888;
	font-size: 16px !important;
	font-family: "Poppins Regular" !important;
    cursor: auto;
}

.page-services-carousel {
	position: absolute;
	bottom: -100px;
}

.item-services-page {
	background: transparent;
	height: 520px;
	border-radius: 25px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	color: #333;
	transition: .3s;
}

.item-services-page:hover {
	background: #3D476B;
	color: #FFF;
}

.item-services-page:hover .bg-ghost-item-services {
	opacity: .3;
	top: -20px;
}

img.item-services-img {
	position: absolute;
	top: 50px;
	width: 150px !important;
}

img.item-services-img.smaller-img-thumbnail {
	width: 90px !important;
}

.item-services-page p {
	position: absolute;
	top: 50%;
}

.bg-ghost-item-services {
	opacity: 0;
	position: absolute;
	width: 130%;
	top: 50px;
	left: -50px;
	transition: .3s;
}

.page-services-carousel .owl-nav {
    position: absolute !important;
    left: 50% !important;
    top: 400px !important;
}

.page-services-carousel .owl-nav button.owl-next {
	right: -70px;
}

.page-services-carousel .owl-nav button.owl-prev {
	left: -30px;
}

.page-services-carousel button.owl-next,
.page-services-carousel button.owl-prev {
    width: 40px;
    border-radius: 50% !important;
	height: 40px;
	background: #FFF !important;
	box-shadow: rgba(0,0,0,0.15) 0px 0px 16px 0px !important;
	transition: .3s;
}

.page-services-carousel button.owl-next:hover,
.page-services-carousel button.owl-prev:hover {
	box-shadow: #c2c2c2 0px 0px 13px 0px !important;
}

.page-services-carousel button.owl-next span,
.page-services-carousel button.owl-prev span {
    position: absolute;
    transform: translate(-49%, -51%);
}

.owl-nav button {
	box-shadow: #f0f0f0 0px 0px 13px 0px !important;
	font-size: 50px !important;
	padding: 10px !important;
}

.page-services-carousel button.owl-next,
.page-services-carousel button.owl-prev {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 40%;
	padding: 50% !important;
}

.page-services-carousel button.owl-next {
	right: 0;
	color: #0BA6FC !important;
}

.page-services-carousel button.owl-prev {
	left: 0;
	color: #ED6780 !important;
}

/* Overlay Detail Service */
.overlay-detail-service {
	position: absolute;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	transform: translateX(-200%);
	z-index: 99;
	background: #FFF;
	transition: .7s;
}

.bg-overlay-service {
	top: 0;
	z-index: -1;
	overflow: hidden;
}

.overlay-bg-geo {
    top: -20px !important;
}

.view-service {
	transition: .3s;
}

.section-detail-service {
	z-index: 1;
}

.btn-back-services {
	position: absolute;
	top: 20px;
	left: 20px;
	font: 18px "Poppins SemiBold";
	color: #333;
	z-index: 10;
}

.btn-back-services i {
	margin-right: 15px;
}

.optional-service {
	margin-left: 100px;
}

.img-detail-service {
	width: 70%;
	max-width: 700px;
}

.img-big-thumbnail {
    max-width: 550px;
}

.img-smaller-thumbnail {
	max-width: 300px;
}

.img-detail-service h2 {
	font: 35px "Poppins Bold";
	margin-bottom: 40px;
}

.info-service {
	margin-top: 30px;
	align-items: flex-end;
}

.hidden-info-service {
	margin: 30px 0;
	display: none;
	text-align: center;
}

.hidden-info-service .price p {
	font-size: 30px;
	margin-bottom: 20px;
}

.price small {
	font-size: 14px;
	color: #888;
}

.price p {
	font: 22px "Poppins Bold";
}

.btn-inquiry {
	padding: 10px 40px;
	color: #FFF;
	border: none;
	font: 15px "Poppins SemiBold";
	text-transform: uppercase;
	letter-spacing: 5px;
	transition: .3s;
	background: #0BA6FC;
}

.header-detail-service h2 {
	font: 30px "Poppins Bold";
	margin-bottom: 35px;
}

.wrap-services-option {
	text-align: center;
	margin: 20px 10px;
	cursor: pointer;
}

.wrap-services-option:first-child {
	margin-left: 0;
}

.card-services-option:hover,
.card-services-option.active {
	background: #0BA6FC;
	color: #FFF;
}

.card-services-option:hover i {
	color: #FFF;
}

.card-services-option {
	background: #FFF;
	overflow: hidden;
	border-radius: 10px;
	height: 90px;
	box-shadow: rgba(0,0,0,0.1) 0px 0px 6px 0px;
	transition: .3s;
}

.card-services-option i {
	font-size: 35px;
}

.wrap-services-option p {
	margin-top: 15px;
	font: 14px "Poppins Medium";
}

.header-packages h3 {
	margin-top: 70px;
	margin-bottom: 25px;
	font: 18px "Poppins SemiBold";
	color: #555;
}

.packages-option {
	font-family: "Poppins Bold";
}

.packages-option:hover {
	color: #FFF;
}

/* Page Contact */
.page-contact {
	position: relative;
	width: 100vw;
	min-height: 100vh;
	max-height: 1366px;
}

.header-contact h1 {
	font: 50px "Poppins Bold";
}

.input-group {
	margin: 60px 0;
	position: relative;
}

.input-group input {
	border: none;
	border-bottom: 1px solid #cfcfcf;
	font: 16px "Poppins Regular";
	color: #333;
	padding: 5px;
	padding-left: 0;
}

.input-group label {
	position: absolute;
	font: 16px "Poppins Medium";
	color: #888;
	transition: .3s;
	top: 0;
}

.input-group input:focus + label {
	top: -30px;
	color: #0BA6FC;
	font-size: 14px;
}

.section-info {
	position: absolute;
	right: 0;
	background: #FFF;
	box-shadow: rgba(0,0,0,0.05) 0px 0px 13px 0px;
	padding: 40px;
	width: 47%;
	z-index: 1;
	border-radius: 15px 0 0 15px;
}

.section-info h2 {
	margin-bottom: 30px;
	font-family: "Poppins SemiBold";
}

.wrap-info a {
	margin: 25px 0;
	color: #666;
	font: 18px "Poppins Regular";
}

.wrap-info a:hover {
	color: #B23121;
}

.wrap-info a.contact-whatsapp:hover {
	color: #25D366 !important;
}

.wrap-info a.contact-line:hover {
	color: #00B900 !important;
}

.wrap-info a.contact-map:hover {
	color: #222 !important;
}

.wrap-info i {
	margin-right: 20px;
	font-size: 20px;
}

.float-right {
	float: right;
}

/* Page Tech */
.page-tech-stack {
	width: 100;
}

.header-page-tech {
	margin-top: 150px;
}

.wrap-tech-stack {
	margin: 50px 0;
}

.card-tech-stack {
	background: #FFF;
	margin: 20px;
	border-radius: 15px;
	box-shadow: rgba(0,0,0,0.05) 0 0 13px 0;
	height: 300px;
	overflow: hidden;
	position: relative;
}

.img-card-tech-stack,
.img-card-product {
	width: 80px;
	position: absolute;
	transform: translateY(-50%);
	top: 45%;
}

.text-card-tech-stack {
	position: absolute;
	bottom: 50px;
	color: #333;
	text-align: center;
}

.position-fixed {
	position: fixed;
}

.header-categories-product {
	margin: 0 20px;
	margin-top: 50px;
	margin-bottom: 20px;
	font: 25px "Poppins Bold";
}

.card-product p {
	width: 100%;
	max-width: 200px;
	text-align: center;
}

.img-card-product {
	width: 100px;
}

.big-img-card-products {
	width: 180px;
}


@media screen and (min-width: 2560px) {
	.hero-abstract {
		max-width: 800px;
		top: 600px;
	}
}

@media screen and (max-width: 1600px) {
	.hero-geo-circle,
	.overlay-services-geo-circle {
		right: -300px;
	}

	.pm-geo-rectangle,
	.pps-geo-rectangle {
		bottom: -100px;
	}

	.services {
		background-size: 1100px;
	}

	.services-bg-geo {
		top: 190px !important;
	}

	.wrap-item-service {
		margin-left: 490px;
	}

	.bg-item-service {
		width: 135%;
	}

	.we-illus {
		max-width: 550px;
		top: 0;
		left: 50px;
	}

	.pps-bg-geo {
		top: 180px !important;
	}

	.bubble-one {
		top: 40px;
		left: 70px;
	}

	.bubble-two {
		top: 350px;
		left: 150px;
	}

	.bubble-three {
		left: 260px;
		top: 120px;
	}

	.bubble-four {
		top: 320px;
		left: 350px;
	}

	.bubble-five {
		left: 410px;
		top: 40px;
	}

	.bubble-six {
		left: 430px;
		top: 430px;
	}

	.bubble-seven {
		left: 500px;
		top: 150px;
	}

	.bubble-eight {
		top: 300px;
		left: 600px;
	}

	.tech-sub-text {
		width: 100%;
	}

	.bg-footer {
		height: 200px;
	}

	.footer-bg-geo {
		top: 150px !important;
	}

	/* Overlay Services */
	.overlay-services-geo-rectangle {
		top: 830px;
		left: -150px;
	}

	.overlay-services-geo-circle {
		right: -350px;
		top: -200px;
	}
}

@media screen and (max-width: 1440px) {
	.container {
		max-width: 1200px;
	}

	.hero-img {
		height: 640px;
		max-width: 450px;
	}

	.hero-illustration {
		width: 1100px;
	}

	.pm-geo-rectangle,
	.pps-geo-rectangle {
		bottom: -200px;
	}

	.partners-bg-geo {
		top: 100px !important;
	}

	.services {
		background-size: 1000px;
	}

	.illus-tech-stack {
		width: 90%;
	}

	.wrap-item-service {
		margin-left: 430px;
	}

	.img-detail-service {
		margin-left: 50px;
	}

	/* Overlay Services */
	.img-detail-service {
		max-width: 600px;
	}
}

@media screen and (max-width: 1400px) {
	.container {
		max-width: 1200px;
	}
}

@media screen and (max-width: 1366px) {
	.hero-abstract {
		max-width: 350px;
		top: 400px;
	}

	.hero-img {
		height: 500px;
		max-width: 410px;
	}

	.services {
		padding: 150px 0;
		background-size: 950px;
	}

	.we-illus {
		max-width: 450px;
		top: 50px;
	}

	.bubble-five {
		left: 380px;
	}

	.bubble-six {
		left: 400px;
		top: 410px;
	}

	.bubble-seven {
		left: 450px;
	}

	.bubble-eight {
		top: 280px;
		left: 550px;
	}

	/* Services */
	.page-services-carousel {
		bottom: -230px;
	}

	/* Contact */
	.contact-geo-rectangle {
		top: 600px;
		left: -150px;
	}
}

@media screen and (max-width: 1280px) {
	.hero-abstract {
		top: 600px;
	}

	.hero-bg-geo {
		width: 110%;
		top: 100px !important;
	}

	.we-bg-geo {
		top: 0 !important;
	}

	.services {
		background-size: 850px;
	}

	.wrap-item-service {
		margin-top: 150px;
	}

	.illus-tech-stack {
		width: 95%;
	}

	.footer-bg-geo {
		top: 200px !important;
	}

	/* Overlay Services */
	.img-detail-service {
		max-width: 500px;
	}

	/* Contact */
	.contact-geo-rectangle {
		top: 800px;
		left: -150px;
	}
}

@media screen and (max-width: 1024px) {
	.bg-hero,
	.bg-pm,
	.bg-we,
	.bg-services,
	.bg-pps,
	.bg-tech,
	.bg-overlay-service {
		width: 90%;
	}

	.hero-geo-circle,
	.overlay-services-geo-circle {
		right: -400px;
		top: -200px;
	}

	.bg-overlay-service {
		width: 100%;
	}

	.text-header {
		font-size: 35px;
	}

	.hero-illustration {
		width: 850px;
	}

	.hero-abstract {
		top: 1000px;
	}

	.header-tech {
		margin-top: 100px;
	}

	.we-illus {
		max-width: 400px;
	}

	.pm-geo-rectangle {
		bottom: 450px;
	}

	.partners-geo-circle {
		right: -250px;
	}

	.services {
		background-size: 750px;
	}

	.wrap-item-service {
		margin-left: 300px;
		margin-top: 170px;
	}

	.pps {
		padding: 100px 0;
	}

	.pps-geo-rectangle {
		bottom: 200px;
		right: -200px;
	}

	.bubble-one {
		top: 60px;
		left: 30px;
	}

	.bubble-two {
		top: 250px;
		left: 100px;
	}

	.bubble-three {
		left: 150px;
		top: 100px;
	}

	.bubble-four {
		top: 250px;
		left: 250px;
	}

	.bubble-five {
		left: 250px;
		top: 30px;
	}

	.bubble-six {
		left: 250px;
		top: 330px;
	}

	.bubble-seven {
		left: 350px;
		top: 120px;
	}

	.bubble-eight {
		top: 230px;
		left: 400px;
	}

	.footer-bg-geo {
		top: 450px !important;
	}

	/* Contact */
	.contact-geo-rectangle {
		top: 1150px;
	}

	/* Services */
	.overlay-services-geo-rectangle {
		top: 1230px;
	}

	.page-services-carousel {
		position: absolute;
		bottom: -100px;
	}

	/* Overlay Services */
	.img-detail-service {
		max-width: 450px;
	}
}

@media screen and (max-width: 990px) {
	.navbar {
		justify-content: center;
	}

	.menu {
		display: none;
	}

	.icon-bar {
		display: inline-block;
	}

	/* Services */
	.overlay-services-geo-rectangle {
		top: 1150px;
	}

	/* Contact */
	.contact-geo-rectangle {
		top: 1150px;
	}
}

@media screen and (max-width: 980px) {
	.we-illus {
		top: 160px;
	}

	.vm {
		flex-direction: column;
		justify-content: center;
		margin: 50px 0;
	}

	.img-vm {
		text-align: center;
		margin: 0;
		width: 80px;
	}

	.vm-text {
		width: 100%;
	}

	.header-services,
	.header-tech {
		text-align: center;
	}

	.wrap-item-service {
		margin-left: 0;
		display: none;
	}

	.wrap-item-service-carousel {
		display: inline-block;
	}

	.btn-show-services {
		display: none;
	}

	.wrap-hidden-button {
		display: inline-block;
		text-align: center;
	}

	.tech-stack {
		padding-top: 0;
	}

	.header-tech {
		margin-top: 0;
		margin-bottom: 600px;
		display: flex;
		justify-content: center;
	}

	.wrap-header-tech {
		width: 50%;
	}

	.illus-tech-stack {
		display: none;
	}

	.hidden-illus-tech-stack {
		display: block;
	}

	.img-illus-tech-stack {
		width: 120%;
	}

	.bubble-one {
		top: 1200px;
		left: 300px;
	}

	.bubble-two {
		top: 1100px;
		left: 570px;
	}

	.bubble-three {
		left: 350px;
		top: 1000px;
	}

	.bubble-four {
		top: 900px;
		left: 550px;
	}

	.bubble-five {
		left: 300px;
		top: 850px;
	}

	.bubble-six {
		left: 640px;
		top: 830px;
	}

	.bubble-seven {
		left: 410px;
		top: 780px;
	}

	.bubble-eight {
		top: 680px;
		left: 530px;
	}

	/* Page Product */
	.header-categories-product {
		margin: 0 10px;
		margin-top: 50px;
		margin-bottom: 20px;
	}
	
	.card-products {
		margin: 10px;
	}
}

@media screen and (max-width: 838px) {
	.section-hero {
		flex-direction: column-reverse;
	}

	.hero-img {
		height: 600px;
	}

	.hero-text {
		text-align: center;
		margin: 50px 0;
	}

	.hero-abstract {
		top: 810px;
		max-width: 450px;
	}

	.project-models {
		padding-bottom: 50px;
	}

	.we-illus {
		left: 20px;
		width: 320px;
		top: 280px;
	}

	.tech-stack {
		padding-top: 0;
	}

	.header-tech {
		margin-top: 0;
		margin-bottom: 600px;
		display: flex;
		justify-content: center;
	}

	.wrap-header-tech {
		width: 50%;
	}

	.illus-tech-stack {
		display: none;
	}

	.hidden-illus-tech-stack {
		display: block;
	}

	.img-illus-tech-stack {
		width: 150%;
	}

	.bubble-one {
		top: 1050px;
		left: 200px;
	}

	.bubble-two {
		top: 1000px;
		left: 470px;
	}

	.bubble-three {
		left: 280px;
		top: 900px;
	}

	.bubble-four {
		top: 850px;
		left: 470px;
	}

	.bubble-five {
		left: 220px;
		top: 740px;
	}

	.bubble-six {
		left: 560px;
		top: 750px;
	}

	.bubble-seven {
		left: 310px;
		top: 680px;
	}

	.bubble-eight {
		top: 580px;
		left: 430px;
	}

	.section-footer {
		flex-direction: column;
	}

	.img-logo-footer {
		margin-bottom: 30px;
	}

	.link-footer {
		margin: 20px;
	}

	.footer-geo-times,
	.footer-geo-rectangle {
		max-width: 100px;
	}

	.footer-geo-times {
		right: -50px;
	}

	.footer-geo-rectangle {
		left: -50px;
	}

	/* Services */
	.img-detail-service {
		width: 80%;
	}

	/* Contact */
	.contact-geo-rectangle {
		top: 1000px;
	}
}

@media screen and (max-width: 768px) {
	.hero-img {
		height: 450px;
		max-width: 350px;
	}

	.hero-abstract {
		top: 670px;
		max-width: 350px;
	}

	/* Services */
	.overlay-services-geo-rectangle {
		top: 900px;
	}

	.inside-overlay-services-geo-rectangle {
		top: 1250px;
	}

	.overlay-detail-service {
		overflow-y: auto;
	}

	.section-detail-service {
		flex-direction: column;
	}

	.view-service {
		margin-top: 100px;
	}

	.img-detail-service {
		max-width: 70%;
		text-align: center;
		margin: 0 auto;
	}

	.optional-service {
		margin: 0 auto;
		width: 100%;
		max-width: 70%;
		margin-top: 70px;
	}

	.optional-page-service {
		max-width: 100%;
	}

	.info-service {
		display: none;
	}

	.hidden-info-service {
		display: block;
	}

	/* Page Service */
	.view-page-service {
		margin-top: 400px;
	}

	/* Contact */
	.contact-geo-rectangle {
		top: 850px;
	}
}

@media screen and (max-width: 640px) {
	/* Loader */
	.loader video {
		width: 230px;
	}

	.we-abstract {
		display: inline-block;
		width: 100%;
		text-align: center;
		margin: 20px 0;
	}

	.we-abstract img {
		width: 400px;
	}

	.we-illus {
		display: none;
	}

	.partners-geo-circle {
		top: 500px;
		right: -180px;
	}

	.bubble-one {
		top: 1050px;
		left: 150px;
	}

	.bubble-two {
		top: 1000px;
		left: 390px;
	}

	.bubble-three {
		left: 230px;
		top: 900px;
	}

	.bubble-four {
		top: 850px;
		left: 370px;
	}

	.bubble-five {
		left: 160px;
		top: 790px;
	}

	.bubble-six {
		left: 440px;
		top: 780px;
	}

	.bubble-seven {
		left: 240px;
		top: 720px;
	}

	.bubble-eight {
		top: 650px;
		left: 330px;
	}

	/* Contact */
	.page-contact {
		min-height: 110vh;
	}

	.section-contact {
		margin-top: 200px;
	}

	.section-info {
		width: 90%;
		top: 100px;
		text-align: center;
		padding: 10px;
		padding-top: 20px;
		right: unset;
		border-radius: 15px;
	}

	.section-info h2 {
		margin-bottom: 10px;
	}

	.wrap-info {
		flex-direction: row;
		justify-content: space-around;
	}

	.wrap-info a {
		width: 25px;
		margin: 0;
		overflow: hidden;
	}

	.wrap-info i {
		font-size: 25px;
	}
}

@media screen and (max-width: 480px) {
	.bg-hero,
	.bg-pm,
	.bg-we,
	.bg-services,
	.bg-pps,
	.bg-tech,
	.bg-overlay-service {
		position: absolute;
		width: 100%;
	}

	.sidebar a {
		font-size: 16px;
	}

	.text-card {
		font-size: 16px;
	}

	.hero-img {
		height: 400px;
		max-width: 300px;
		margin-top: 100px;
	}

	.hero-illustration {
		width: 650px;
	}

	.hero-geo-circle,
	.overlay-services-geo-circle {
		width: 70%;
		right: -200px;
		z-index: 1;
	}

	.hero-text {
		margin: 50px 0;
	}

	.text-header {
		font-size: 25px;
	}

	.text-sub {
		width: 100%;
	}

	.hero-abstract {
		top: 650px;
		max-width: 200px;
	}

	.project-models {
		padding-top: 100px;
	}

	.we-abstract img {
		width: 300px;
	}

	.img-vm {
		width: 60px;
	}

	.vm-text {
		width: 100%;
	}

	.partners {
		margin: 100px 0;
		margin-bottom: 0;
		padding: 0;
	}

	.partners-geo-triangle {
		top: -50px;
		max-width: 150px;
	}

	.pm-geo-rectangle {
		bottom: -200px;
		max-width: 150px;
		right: -70px;
	}

	.services {
		background: none;
	}

	.header-services {
		margin-top: 0;
	}

	.hidden-bg-services {
		display: block;
	}

	.nonloop {
		margin-top: -40px;
	}

	.bg-card-pps {
		width: 100%;
	}

	.card-pps:hover .smaller-img-card-pps{
		max-width: 180px;
	}

	.wrap-header-tech {
		width: 100%;
	}

	.img-illus-tech-stack {
		width: 200%;
	}

	.bubble-one {
		top: 1000px;
		left: 80px;
	}

	.bubble-two {
		top: 950px;
		left: 300px;
	}

	.bubble-three {
		left: 110px;
		top: 850px;
	}
	
	.bubble-four {
		top: 800px;
		left: 280px;
	}

	.bubble-five {
		left: 80px;
		top: 660px;
	}

	.bubble-six {
		left: 360px;
		top: 650px;
	}

	.bubble-seven {
		left: 160px;
		top: 600px;
	}

	.bubble-eight {
		top: 520px;
		left: 250px;
	}

	.menu-footer {
		flex-direction: column;
	}

	.footer-copy {
		font-size: 14px;
	}

	.footer-geo-times {
		right: -40px;
		bottom: 800px;
	}

	.footer-geo-rectangle {
		left: -60px;
		bottom: -20px;
	}

	/* Services */
	.overlay-services-geo-rectangle {
		top: 750px;
		max-width: 200px;
		left: -100px;
	}

	.inside-overlay-services-geo-rectangle {
		top: 1550px;
	}

	.view-page-service {
		margin-top: 400px;
	}

	.img-big-thumbnail {
		max-width: 200px;
	}

	/* Contact */
	.contact-geo-rectangle {
		max-width: 200px;
		left: -100px;
	}

	.section-contact {
		margin-top: 200px;
	}

	.header-contact h1 {
		font: 40px "Poppins Bold";
	}

	.wrap-info a {
		font-size: 16px;
	}

	/* Page Tech Stack */
	.card-tech-stack {
		margin: 5px;
		height: 150px;
	}

	.card-product {
		height: 300px;
	}

	.card-product p {
		font-size: 14px;
		bottom: 35px !important;
	}

	.img-card-tech-stack {
		width: 50px;
		top: 40%;
	}

	.text-card-tech-stack {
		bottom: 20px;
	}

	/* Page Products */
	.big-img-card-products {
		width: 130px;
	}

	.header-detail-service h2 {
		margin-bottom: 0;
		margin-top: 35px;
	}
}

@media screen and (max-width: 420px) {
	nav {
		height: 80px;
	}

	.img-logo {
		width: 50px;
	}

	.hero-geo-circle,
	.overlay-services-geo-circle {
		width: 60%;
		right: -100px;
		top: -120px;
	}

	.hero-img {
		height: 300px;
		max-width: 250px;
		margin-top: 30px;
	}

	.hero-illustration {
		width: 700px;
	}

	.hero-text {
		margin: 30px 0;
	}

	.hero-abstract {
		top: 580px;
	}

	.hidden-bg-services {
		width: 380px;
	}

	.card-pps {
		height: 450px;
	}

	.text-card-pps {
		bottom: 50px;
	}

	.img-illus-tech-stack {
		width: 230%;
	}

	.bubble-one {
		top: 980px;
		left: 50px;
	}

	.bubble-two {
		top: 930px;
		left: 270px;
	}

	.bubble-three {
		left: 80px;
		top: 830px;
	}
	
	.bubble-four {
		top: 780px;
		left: 250px;
	}

	.bubble-five {
		left: 50px;
		top: 630px;
	}

	.bubble-six {
		left: 320px;
		top: 630px;
	}

	.bubble-seven {
		left: 130px;
		top: 580px;
	}

	.bubble-eight {
		top: 500px;
		left: 220px;
	}

	/* Services Page */

	.header-page-services {
		top: 120px;
	}

	.overlay-services-geo-rectangle {
		top: 700px;
		max-width: 200px;
		left: -100px;
	}

	.inside-overlay-services-geo-rectangle {
		top: 1400px;
		left: -150px;
	}

	.img-detail-service {
		width: 100%;
	}

	.img-detail-service h2 {
		font-size: 27px;
	}

	/* Contact */
	.page-contact {
		min-height: 115vh;
	}
	
	.section-contact {
		margin-top: 150px;
	}
}

@media screen and (max-width: 393px) {
	.hero-illustration {
		width: 600px;
	}

	.hero-img {
		margin-top: 70px;
	}

	.project-models {
		padding-top: 250px;
	}

	.we-abstract {
		width: 350px;
	}

	.we-illus {
		max-width: 300px;
	}

	/* Page Services */
	.item-services-page {
		height: 450px;
	}

	img.item-services-img {
		width: 120px !important;
	}

	.page-services-carousel .owl-nav {
		top: 350px !important;
	}

	.view-page-service {
		margin-top: 600px;
	}

	.img-detail-service h2 {
		font-size: 25px;
	}

	.header-detail-service h2 {
		font-size: 25px;
	}

	/* Contact */
	.section-contact {
		margin-top: 300px;
	}

	.page-contact {
		min-height: 125vh;
	}
}

@media screen and (max-width: 384px) {
	.hero-img {
		height: 260px;
		max-width: 210px;
		margin-top: 100px;
	}

	.we-illus {
		max-width: 300px;
	}

	.text-sub {
		font-size: 14px;
	}

	.hidden-bg-services {
		width: 340px;
	}

	.bubble-two {
		left: 250px;
	}

	.bubble-three {
		left: 50px;
		top: 830px;
	}
	
	.bubble-four {
		left: 230px;
	}

	.bubble-five {
		left: 40px;
		top: 650px;
	}

	.bubble-six {
		left: 300px;
		top: 640px;
	}

	.bubble-seven {
		left: 110px;
		top: 600px;
	}

	.bubble-eight {
		top: 520px;
		left: 200px;
	}

	/* Services Page */

	.item-services-page {
		height: 400px;
	}

	/* Contact */
	.page-contact {
		min-height: 135vh;
	}
}

@media screen and (max-width: 375px) {
	.hero-illustration {
		width: 500px;
	}

	.bubble-six {
		left: 280px;
	}

	.img-detail-service h2 {
		font-size: 23px;
	}

	.header-detail-service h2 {
		font-size: 23px;
	}

	/* Page Services */
	.page-services-carousel .owl-nav {
		top: 320px !important;
	}

	/* Contact */
	.section-contact {
		margin-bottom: 150px;
	}
}

@media screen and (max-width: 320px) {
	.hero-geo-circle,
	.overlay-services-geo-circle {
		width: 50%;
		right: -50px;
		top: -50px;
	}

	.hero-img {
		margin-top: 200px;
	}

	.text-header {
		font-size: 20px;
	}

	.project-models {
		padding-top: 320px;
	}

	.we-illus {
		max-width: 250px;
	}

	.services {
		padding: 50px 0;
	}

	.hidden-bg-services {
		width: 300px;
	}

	.img-card-pps {
		max-width: 150px;
	}

	.card-pps:hover .img-card-pps{
		max-width: 200px;
	}

	.bubble-two {
		left: 210px;
	}

	.bubble-four {
		left: 190px;
	}

	.bubble-five {
		left: 20px;
		top: 670px;
	}

	.bubble-six {
		left: 240px;
		top: 670px;
	}

	.bubble-seven {
		left: 90px;
		top: 620px;
	}

	.bubble-eight {
		top: 580px;
		left: 180px;
	}

	/* Services Page */
	.header-page-services {
		top: 100px;
	}
	
	.item-services-page {
		height: 400px;
	}

	.img-detail-service h2 {
		font-size: 25px;
	}

	/* Contact */
	.page-contact {
		min-height: 145vh;
	}
	
	.section-contact {
		margin-top: 300px;
	}
}

@media (max-width: 412px) and (max-height: 652px) {
	.hero-img {
		margin-top: 70px;
	}

	.project-models {
		padding-top: 300px;
	}

	/* Contact */
	.page-contact {
		min-height: 125vh;
	}

	.section-contact {
		margin-top: 280px;
	}
}

@media screen and (min-width: 768px) {
	.contact-toggle {
		padding: 15px 22px;
		border-radius: 50px 0 0 50px;
		left: -60px;
		font-size: 28px;
	}
}