/* Reset CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
html {
	scroll-behavior: smooth;
}
html * {
	max-width: 100vw;
}
body {
	font-family: lato, sans-serif;
	font-display: swap;
	scroll-snap-type: y mandatory;
	overflow-y: scroll;
	overflow-x: hidden;
	max-width: fit-content;
}
.section {
	min-height: 100vh; /* Full viewport height */
	scroll-snap-align: start;
	transition: all 1s; /* 1 second transition */
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	.section {
		min-height: unset;
	}
}
:root {
	--main-color: #2c497f;
	--secondary-color: #ffd700;
	--third-color: #6eeb83;
	--text-color: #0d0106;
	--light-text: #6b7178;
	--purple: #3d2b56;
	--variation-blue: #78ffd6;
	--salmon: #ed6a5a;
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1200px;
}
/* NAV */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,600&display=swap");
.navbar-main {
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: relative;
}
.nav-container a img {
	height: 100px;
}
.nav-main-buttons {
	display: flex;
	gap: 25px;
}
.nav-link {
	height: 100%;
	color: var(--light-text);
	letter-spacing: 2.8px;
	text-transform: uppercase;
	padding-top: 16px;
	padding-bottom: 16px;
	font-family: lato, sans-serif;
	font-size: 0.875rem;
	line-height: 17px;
	text-decoration: none;
	transition: color 0.2s;
	font-display: swap;
}
.contacts-button {
	background-color: var(--main-color);
	color: #fff;
	padding: 15px 20px;
}
.hamburger-button {
	display: none;
	color: var(--light-text);
	font-size: 2rem;
	background: transparent;
	border: none;
}
.responsive {
	display: flex;
	flex-direction: column;
}
@media screen and (max-width: 768px) {
	.navbar-main {
		flex-direction: column;
		position: relative;
	}
	.nav-main-buttons {
		position: absolute;
		top: 100%;
		background-color: #fff;
		z-index: 1000;
		flex-direction: column;
		width: 100vw;
		justify-content: center;
		align-items: center;
		background-color: #fff;
	}
	.hamburger-button {
		display: block;
	}
	.nav-main-buttons > .nav-link {
		display: none;
	}
	.nav-main-buttons.active > .nav-link {
		display: block;
		animation: fadeIn 0.8s;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* HERO */
body * {
	user-select: none;
}
#hero {
	background-color: #fff;
}
.invisible-heading {
	height: 0;
}

.invisible-heading h1 {
	font-size: 0;
}
.anima-container {
	width: 100vw;
	/* height: 100vh; */
	overflow: hidden;
}
.home_title {
	margin: 20px 0 0;
	overflow: hidden;
	padding: 13vw 0 0;
	width: 100vw;
}
.home_title li {
	display: flex;
	position: relative;
	height: 21.3vw;
	pointer-events: none;
	margin: -13vw -1.7vw 0;
}

.home_title li h2 {
	font-size: 10.7vw;
	margin: 0;
	padding: 0;
	line-height: 8.2vw;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: -0.45vw;
	width: 200%;
	overflow: hidden;
	position: relative;
	z-index: 1;
	text-align: center;
}
.home_title li h2 span {
	display: inline-block;
}

.home_title li .left {
	width: 50%;
	overflow: hidden;
	color: var(--secondary-color);
}
.home_title li .left h2 {
	transform: translateZ(0) rotate(-15deg) skewX(-15deg);
}
.home_title li .right {
	width: 50%;
	overflow: hidden;
	color: var(--text-color);
}
.home_title li .right h2 {
	margin-left: -100%;
	transform: translateZ(0) rotate(15deg) skewX(15deg);
}
@media screen and (max-width: 992px) {
	.home_title {
		margin: unset;
		padding: 140px 0;
	}
}
@media screen and (max-width: 600px) {
	.home_title li {
		display: flex;
		position: relative;
		height: 21.3vw;
		pointer-events: none;
		margin: -13vw -0.7vw 0;
	}
	.home_title li h2 {
		font-size: 10.7vw;
		margin: 0;
		padding: 0;
		line-height: 8.2vw;
		text-transform: uppercase;
		font-weight: 900;
		letter-spacing: -0.45vw;
		width: 200%;
		overflow: hidden;
		position: relative;
		z-index: 1;
		text-align: center;
	}
	.home_title li h2 span {
		display: inline-block;
	}
	.home_title li .left {
		width: 50%;
		overflow: hidden;
		color: var(--secondary-color);
	}

	.home_title li .left h2 {
		transform: translateZ(0) rotate(-15deg) skewX(-15deg);
	}
	.home_title li .right {
		width: 50%;
		overflow: hidden;
		color: var(--text-color);
	}
	.home_title li .right h2 {
		transform: translateZ(0) rotate(15deg) skewX(15deg);
	}
}
/* SERVICES  */
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Extra+Condensed:wght@700&display=swap");
#services {
	background-color: var(--main-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-wrap: wrap;
	padding-top: 100px;
}
.services-heading {
	flex: 1;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	font-size: calc(80vh / 10);
	letter-spacing: 0.3em;
	font-family: "Sofia Sans Extra Condensed", sans-serif;
	font-display: swap;
}
.all-services {
	flex: 3;
	gap: 10px;
	display: flex;
	justify-content: space-evenly; /* Center children horizontally */
	align-items: center; /* Center children vertically */
	flex-wrap: wrap; /* Allow wrapping if you have multiple service cards */
	padding: 1rem;
}
.services-wrapper {
	text-align: center;
	position: relative;
	z-index: 0;
	max-width: 30%;
	flex: 1;
}
.service-container {
	text-align: center;
	position: relative;
	z-index: 2;
}
.service {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	bottom: 0;
	box-shadow: 0 0 20px -15px #030380;
	transition: transform 0.8s;
	z-index: 3;
	flex: 1;
	height: 400px;
}
.service-logo {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	margin: -90px auto 0;
	background: #fff;
	border: 18px solid var(--main-color);
}
.service-logo img {
	width: 70%;
	margin-top: 20px;
}
.service h3 {
	height: 35px;
	width: 80%;
	background: #fff;
	margin: 50px auto;
	position: relative;
	font-weight: 700;
	font-size: 1.5rem;
}
.service p {
	font-size: 1.3rem;
}
.service-shadow-one {
	height: 200px;
	width: 80%;
	background: #fff;
	position: absolute;
	border-radius: 10px;
	bottom: 0;
	left: 10%;
	z-index: 1;
	box-shadow: 0 0 20px -15px #030380;
	transition: transform 0.8s;
}
.service-shadow-two {
	height: 200px;
	width: 64%;
	background: #fff;
	position: absolute;
	border-radius: 10px;
	bottom: 0;
	left: 18%;
	z-index: 0;
}
.services-wrapper:hover .service-container .service {
	transform: translateY(-50px);
}
.services-wrapper:hover .service-shadow-one {
	transform: translateY(-25px);
}
@media screen and (max-width: 992px) {
	.all-services {
		flex-direction: column;
		gap: 80px;
	}
	.services-wrapper {
		max-width: 70vw;
	}
	#services {
		gap: 50px;
		padding-bottom: 50px;
	}
}
@media screen and (max-width: 768px) {
	.services-heading {
		letter-spacing: unset;
		font-size: calc(80vh / 20);
		max-width: 80vh;
	}
	.service {
		height: unset;
	}
}

/* PORTFOLIO*/
#portfolio {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	background-color: rgb(249, 252, 255);
}
.portfolio-heading {
	color: var(--main-color);
	text-transform: uppercase;
	font-weight: 700;
	font-size: calc(80vh / 10);
	margin-top: 140px;
	font-family: "Sofia Sans Extra Condensed", sans-serif;
	font-display: swap;
	letter-spacing: 0.3em;
}
.listitem {
	position: relative;
	width: 80%;
	max-width: 1150px;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	padding: 1rem;
	height: 40%;
	z-index: 0;
}
.listitem a {
	text-decoration: none;
}
.portfolio1 {
	background-color: var(--secondary-color);
	box-shadow: 0 0 20px -15px var(--light-text);
	margin-top: 50px;
	min-height: 400px;
}
.portfolio2 {
	background-color: var(--main-color);
	min-height: 400px;
}
.portfolio3 {
	background-color: rgb(249, 252, 255);
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.laptop-image {
	position: absolute;
	top: 30%;
	right: -100px; /* Space from the right of the .listitem */
	width: 70%; /* or your preferred width */
	height: auto; /* maintains the aspect ratio */
	transition: transform 0.8s;
	z-index: -1;
}
.listitem:hover .laptop-image {
	transform: translateY(-30%);
}
.cs-card_big {
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.is-upper {
	text-transform: uppercase;
}
.cs-card_big-thumbnail {
	margin: 2rem 4rem;
}
.cs-card-big_button {
	display: flex;
	gap: 20px;
	transition: transform 2s ease-in-out;
}
.listitem:hover .cs-card-big_button {
	transform: rotateX(360deg);
}
.rotate-180 {
	transform: rotate(180deg);
}
.max-width-small {
	margin: 4rem;
}
.single-portfolion-heading {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.2em;
}
.single-portfolion-small {
	font-size: 1.2rem;
}
.flexful {
	display: flex;
	flex-direction: column;
}
.bottom-line {
	width: 70%;
	height: 20px;
	background-color: var(--main-color);
}
@media screen and (max-width: 768px) {
	.listitem {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.laptop-image {
		position: unset;
	}
	.portfolio-heading {
		letter-spacing: unset;
		font-size: calc(80vh / 20);
	}
	.listitem:hover .laptop-image {
		transform: unset;
	}
}
/* CONTACTS */
#contacts {
	display: flex;
	justify-content: space-around;
	align-items: center;
	background-image: url(/assets/images/yellow-and-grey.webp);
	background-size: 130%;
}
.form {
	width: 50%;
	height: auto; /* Changed from fixed height to auto to adjust to the form's content */
	background: #e6e6e6;
	border-radius: 8px;
	box-shadow: 0 0 40px -10px #000;
	margin: calc(50vh - 220px) auto;
	padding: 20px 30px;
	max-width: calc(100vw - 40px);
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
	font-display: swap;
	position: relative;
	padding: 30px 30px 70px 30px;
}
.form h2 {
	margin: 10px 0;
	padding-bottom: 10px;
	width: 180px;
	color: #78788c;
	border-bottom: 3px solid #78788c;
}
.form input,
textarea {
	/* Added textarea to the styles */
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	background: none;
	outline: none;
	resize: none;
	border: 0;
	font-family: "Montserrat", sans-serif;
	font-display: swap;
	transition: all 0.3s;
	border-bottom: 2px solid #bebed2;
}
.form input:focus,
textarea:focus {
	/* Added textarea to the styles */
	border-bottom: 2px solid #78788c;
}
.form label {
	/* Added styles for label */
	display: block;
	margin-top: 20px;
	font-size: 14px;
	color: #5a5a5a;
}
.form button {
	float: right;
	padding: 8px 12px;
	margin: 8px 0 0;
	font-family: "Montserrat", sans-serif;
	font-display: swap;
	border: 2px solid #78788c;
	background: 0;
	color: #5a5a6e;
	cursor: pointer;
	transition: all 0.3s;
}
.form button:hover {
	background: #78788c;
	color: #fff;
}
.contact-rectragle {
	content: "Hi";
	position: absolute;
	bottom: -15px;
	right: -10%;
	background: #50505a;
	color: #fff;
	width: 40%;
	padding: 16px 4px 16px 0;
	border-radius: 6px;
	font-size: 13px;
	box-shadow: 10px 10px 40px -14px #000;
	text-align: center;
}
.form span {
	margin: 0 5px 0 15px;
}
.form a {
	color: #fff;
	text-decoration: none;
}
.g-recaptcha {
	background: transparent;
	background-color: transparent;
	border: none;
}
@media screen and (max-width: 1600px) {
	.contact-rectragle {
		width: 50%;
		right: -5%;
	}
}
@media screen and (max-width: 1300px) {
	.form {
		width: 80%;
	}
	.contact-rectragle {
		width: 100%;
		right: 0;
		top: 550px;
		font-size: 14px;
	}
}
@media screen and (max-width: 420px) {
	.contact-rectragle {
		display: none;
	}
}
/* FOOTER */
#footer {
	background-color: var(--main-color);
}
.contact-div {
	padding: 1rem;
	display: flex;
	border-bottom: 1px solid #373636;
	justify-content: center;
	gap: 30%;
	max-width: 1140px;
	margin: auto;
}
.contact-item {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: left;
	box-sizing: border-box;
	/* flex: 0 0 33.333333%;
	max-width: 33.333333%; */
}
.contact-item i {
	color: var(--secondary-color);
	font-size: 40px;
	float: left;
	margin-top: 8px;
}
.cta-text {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: left;
	box-sizing: border-box;
	padding-left: 15px;
	display: inline-block;
}
.cta-text h5 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 2px;
}
.cta-text span a {
	color: lightgray;
	font-size: 20px;
	text-decoration: none;
}
.middle-div {
	padding: 1rem;
	display: flex;
	border-bottom: 1px solid #373636;
	justify-content: center;
	gap: 30%;
	max-width: 1140px;
	margin: auto;
}
.footer-logo img {
	width: 150px;
}
.useful-links h5 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 2px;
}
.useful-links ul li {
	list-style: none;
	margin: 0.8rem 0;
}
.useful-links ul li a {
	color: lightgray;
	font-size: 15px;

	text-decoration: none;
	text-transform: capitalize;
}
.copyinfo {
	text-align: center;
	color: white;
	padding: 1rem;
	background-color: #20365f;
}
@media screen and (max-width: 600px) {
	.contact-div {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 10px;
		text-align: center;
		padding: unset;
	}
	.contact-item {
		text-align: center;
		width: 50%;
	}
	.contact-item * {
		text-align: center;
	}
}
@media screen and (max-width: 450px) {
	.contact-item {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.contact-item * {
		text-align: center;
	}
	.middle-div {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 10px;
		text-align: center;
		padding: unset;
	}
	.footer-logo {
		text-align: center;
	}
	.useful-links {
		text-align: center;
	}
	.useful-links ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}
	.useful-links ul li {
		width: 100%;
		text-align: center;
	}
}

.social-button-container {
	display: flex;
	justify-content: center;
	padding: 1em;
}

.social-button-container ul {
	/* position: absolute; */
	/* top: 50%;
	left: 50%; */
	/* transform: translate(-50%, -50%); */
	margin: 0;
	padding: 0;
	display: flex;
}
.social-button-container ul li {
	list-style: none;
}
.social-button-container ul li a {
	display: block;
	position: relative;
	width: 100px;
	height: 100px;
	line-height: 100px;
	font-size: 40px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	margin: 0 30px;
	transition: 0.5s;
}
.social-button-container ul li a span {
	position: absolute;
	transition: transform 0.5s;
}
.social-button-container ul li a span:nth-child(1),
.social-button-container ul li a span:nth-child(3) {
	width: 100%;
	height: 3px;
	background: #fff;
}
.social-button-container ul li a span:nth-child(1) {
	top: 0;
	left: 0;
	transform-origin: right;
}
.social-button-container ul li a:hover span:nth-child(1) {
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s;
}

.social-button-container ul li a span:nth-child(3) {
	bottom: 0;
	left: 0;
	transform-origin: left;
}
.social-button-container ul li a:hover span:nth-child(3) {
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s;
}

.social-button-container ul li a span:nth-child(2),
.social-button-container ul li a span:nth-child(4) {
	width: 3px;
	height: 100%;
	background: #fff;
}
.social-button-container ul li a span:nth-child(2) {
	top: 0;
	left: 0;
	transform: scale(0);
	transform-origin: bottom;
}
.social-button-container ul li a:hover span:nth-child(2) {
	transform: scale(1);
	transform-origin: top;
	transition: transform 0.5s;
}
.social-button-container ul li a span:nth-child(4) {
	top: 0;
	right: 0;
	transform: scale(0);
	transform-origin: top;
}
.social-button-container ul li a:hover span:nth-child(4) {
	transform: scale(1);
	transform-origin: bottom;
	transition: transform 0.5s;
}

.facebook:hover {
	color: #1da1f2;
}
.facebook:hover span {
	background: #1da1f2;
}
.twitter:hover {
	color: #1da1f2;
}
.twitter:hover span {
	background: #1da1f2;
}
.instagram:hover {
	color: #F56040;
}
.instagram:hover span {
	background: #F56040;
}
.google:hover {
	color: #dd4b39;
}
.google:hover span {
	background: #dd4b39;
}
.social-button-container ul li a .twitter {
	color: #1da1f2;
}
.social-button-container ul li a:hover:nth-child(3) {
	color: #c32aa3;
}
.social-button-container ul li a:hover:nth-child(4) {
	color: #dd4b39;
}

/* WHYUS */
#why-us {
	-webkit-text-size-adjust: 100%;
	color: #333;
	font-family: lato, sans-serif;
	font-display: swap;
	font-size: 14px;
	line-height: 20px;
	box-sizing: border-box;
	background-color: #fff;
	padding: 100px 0;
	background-image: url(/assets/images/background-pattern.webp);
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.headers-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.why-us-heading {
	flex: 1;
	color: var(--main-color);
	text-transform: uppercase;
	font-weight: 700;
	font-size: calc(80vh / 10);
	letter-spacing: 0.3em;
	font-family: "Sofia Sans Extra Condensed", sans-serif;
	font-display: swap;
	text-align: center;
}
.why-us-sub-heading {
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
	color: #06111c;
	text-align: left;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 0;
	font-family: lato, sans-serif;
	font-display: swap;
	font-size: 2.563rem;
	font-weight: 300;
	line-height: 150%;
}
.light-why-us-heading {
	color: var(--light-text);
}
.blue-bold-why-us-heading {
	-webkit-text-size-adjust: 100%;
	text-align: left;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-family: lato, sans-serif;
	font-display: swap;
	font-size: 2.563rem;
	line-height: 150%;
	box-sizing: border-box;
	font-weight: 800;
	color: var(--secondary-color);
	display: inline-block; /* Needed for transform to work on inline elements like <span> */
	animation: shake 5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
	transform: translate3d(0, 0, 0); /* Enable GPU acceleration for smoother animations */
}
@keyframes shake {
	0% {
		transform: translate(1px, 1px) rotate(0deg);
	}
	10% {
		transform: translate(-1px, -2px) rotate(-1deg);
	}
	20% {
		transform: translate(-2px, 0px) rotate(1deg);
	}
	30% {
		transform: translate(1px, 2px) rotate(0deg);
	}
	40% {
		transform: translate(1px, -1px) rotate(1deg);
	}
	50% {
		transform: translate(-1px, 2px) rotate(-1deg);
	}
	60% {
		transform: translate(-1px, 1px) rotate(0deg);
	}
	70% {
		transform: translate(1px, 1px) rotate(-1deg);
	}
	80% {
		transform: translate(-1px, -1px) rotate(1deg);
	}
	90% {
		transform: translate(1px, 2px) rotate(0deg);
	}
	100% {
		transform: translate(1px, -2px) rotate(-1deg);
	}
}
.grid-4x4 {
	flex: 3;
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	grid-auto-columns: 1fr;
	justify-content: space-around;
	align-items: center;
	margin: 0 2rem;
	padding: 2rem 18em;
}
.grid-item {
	max-width: 700px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10%;
	height: 80%;
}
.why-us-text-heading {
	text-transform: uppercase;
	font-size: 1.4rem;
	color: var(--main-color);
	font-weight: 700;
	letter-spacing: 0.3rem;
	padding-bottom: 1rem;
}
.why-us-text-p {
	color: var(--light-text);
	font-size: 1.1rem;
}
@media screen and (max-width: 1400px) {
	.grid-4x4 {
		padding: 2rem 2rem;
	}
}
@media screen and (max-width: 992px) {
	.grid-4x4 {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr 1fr 1fr;
		padding: 1rem 1rem;
	}
	.grid-item {
		padding: 1rem;
	}
	.why-us-sub-heading {
		text-align: center;
	}
}
@media screen and (max-width: 600px) {
	.why-us-heading {
		letter-spacing: unset;
		font-size: calc(80vw / 7);
	}
	.why-us-sub-heading {
		font-size: 1.563rem;
	}
	.section {
		min-height: unset;
	}
}
/* THANKS */
#thankyou {
	text-align: center;
	margin-top: 100px;
	font-size: 30px;
	font-weight: bold;
	color: var(--main-color);
	height: 50vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 200px;
}
#thankyou p {
	font-size: 20px;
	font-weight: normal;
	color: var(--light-text);
}
.svg-thanks {
	width: 300px;
	max-width: 90%;
}
