@import './imports.css';

:root {
	--primaryColor: #560000;
	--accentColor: #800000;
	--accentBrighter: #871c1c;
	--accentDarker: #470000;
	--textColor: #1a1a1a;
	--grey: #adadad;
}

/* RESET */
* {
	box-sizing: border-box;
}

html,
body,
figure,
img,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
	margin: 0;
	padding: 0;
}

/* GLOBAL */
body {
	font-family: "Roboto", "Bodoni", "sans-serif";
	color: var(--textColor);
}

h1.heading1 {
	font-family: "Bodoni";
	font-weight: 700;
	font-size: 3.5vw;
}
.letter-spacing {
	letter-spacing: 1vw;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

.aws_container {
	width: 85%;
	margin: 0 auto;
	position: relative;
	height: 100%;
	padding-bottom: 5%;
}

.btn {
	padding: 0.5rem 1.5rem;
	color: white;
	border: 1px solid white;
	transition: color .5s ease, background-color .5s ease;
}

.btn:hover {
	background-color: white;
	color: var(--textColor);
}

.btn + .btn {
	margin-left: 2rem;
}

ul {
	list-style-position: outside;
	padding-left: 1rem;
}

.aws_price-details {
	list-style-type: "✔";
	padding-left: 0.5rem;
	margin-bottom: 0.6rem;
	color: var(--accentBrighter);
	font-size: 1.7vw;
	line-height: 1;
}

.aws_price-details span {
	color: var(--textColor);
	font-size: 1.2vw;
}

.aws_background-overlay--grey {
	position: absolute;
	z-index: -1;
	background-color: var(--grey);
}

/* HEADER */
.aws_header {
	position: absolute;
	width: 100%;
	z-index: 999;
}

.aws_header.sticky {
	position: fixed;
	background-color: white;
	box-shadow: 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 100px 80px rgba(0, 0, 0, 0.07);
}

.aws_header.sticky .aws_logo-container {
	width: 100px;
}

.aws_header.sticky .aws_nav-link {
	color: var(--textColor);
}

.aws_header.sticky .aws_nav-link:hover {
	color: rgba(26, 26, 26, 0.8);
}

.aws_header.sticky .aws_nav-link:after {
	background-color: var(--textColor);
}

.aws_header > .aws_container {
	justify-content: space-between;
	align-items: center;
	display: flex;
	padding-bottom: 0;
}

.ignore,
.aws_header-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30%;
}

.aws_logo-container {
	transition: width 1s ease;
	width: 200px;
}

.aws_header-nav {
	justify-content: space-between;
}

.aws_nav-link {
	color: var(--grey);
	font-size: max(12px, 1.2vw);
	transition: color .5s ease;
	position: relative;
	padding: 10px 0;
}

.aws_nav-link:after {
	content: "";
	width: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 2px;
	bottom: 0;
	background-color: white;
	position: absolute;
	opacity: 0;
	transition: width .5s ease, opacity .5s ease;
}

.aws_nav-link:hover {
	color: white;
}

.aws_nav-link:hover:after {
	width: 50%;
	opacity: 1;
}

.menu-icon-wrapper {
	display: none;
}

.menu-icon {
	width: 30px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.menu-icon span {
	display: block;
	pointer-events: none;
	width: 100%;
	border-radius: 3px;
	height: 3px;
	background: #000;
	transition: all .3s;
	position: relative;
}

.menu-icon span + span {
	margin-top: 5px;
}

.menu-icon.active span:nth-child(1) {
	animation: ease .7s top forwards;
}
.menu-icon.active span:nth-child(2) {
	animation: ease .7s scaled forwards;
}
.menu-icon.active span:nth-child(3) {
	animation: ease .7s bottom forwards;
}

.menu-icon.not-active span:nth-child(1) {
	animation: ease .7s top-2 forwards;
}

.menu-icon.not-active span:nth-child(2) {
	animation: ease .7s scaled-2 forwards;
}

.menu-icon.not-active span:nth-child(3) {
	animation: ease .7s bottom-2 forwards;
}

/* HERO */
.aws_hero {
	overflow: hidden;
	height: 100vh;
}

.aws_hero > .aws_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5% 0 0 0;
}

.aws_hero_img {
	width: 100%;
	position: absolute;
	right: -70%;
	top: 0;
}

.aws_hero_img:after {
	content: '';
	position: absolute;
	z-index: -10;
	width: 320%;
	height: 350%;
	top: -80%;
	left: 64%;
	transform: rotate(-70deg);
	background-color: var(--primaryColor);
}

.aws_hero_container-left,
.aws_hero_container-right {
	width: 43%;
}

.aws_hero_container-left {
	border: 8px solid var(--grey);
	padding: 3em;
	position: relative;
}

.aws_hero_container-left h2 {
	font-weight: 400;
	font-family: Century Gothic;
	font-style: italic;
	margin-top: 1rem;
	font-size: 2.5vw;
}

.aws_hero_container-left h2 span {
	color: white;
	position: relative;
}

.aws_hero_container-left h2 span:before {
	content: "";
	position: absolute;
	right: 0.2rem;
	width: 40vw;
	height: 100%;
	padding: 20px 0;
	transform: translateY(-20px);
	background-color: var(--accentColor);
	z-index: -5;
}

.aws_hero_container-left h3 {
	margin: 3rem 0;
	font-size: 6.5vw;
	letter-spacing: 2vw;
	font-weight: 400;
	line-height: 1;
	font-family: "Bodoni";
}

.aws_hero_container-right {
	display: flex;
	flex-direction: column;
	color: var(--grey);
	width: 30%;
	padding-right: 10%;
}

.aws_hero_container-right h1.heading2 {
	font-size: 1.2vw;
	letter-spacing: 1px;
	line-height: 1.2;
	word-spacing: 2px;
	position: relative;
	font-weight: lighter;
}

.aws_hero_container-right h1.heading2:before {
	content: "";
	width: 50%;
	height: 2px;
	position: absolute;
	top: -2rem;
	background-color: white;
}

.aws_hero_container-right h1.heading2 b {
	color: white;
}

.aws_hero_button-container {
	margin-top: 2rem;
	width: max(300px, 60%);
	z-index: 1;
	font-size: max(12px, 0.8vw);
}

/* LANDING */
.aws_section_landing-page > .aws_container {
	padding-top: 10rem;
	display: flex;
	justify-content: flex-end;
}
@media (max-width: 975px) {
	.aws_section_landing-page > .aws_container {
		padding-top: 7rem;
	}
}

.aws_section_landing-page_img-container {
	position: absolute;
	width: 55%;
	left: 1.5%;
}

.aws_section_landing-page_img-container > .aws_background-overlay--grey {
	width: 75%;
	height: 85%;
	top: 20%;
	right: 0;
}

.aws_section_landing-page_img-container:before {
	content: "";
	position: absolute;
	height: 85%;
	width: 15%;
	top: -25%;
	left: -7.5%;
	z-index: -5;
	background-color: var(--accentBrighter);
}

.aws_section_landing-page_img {
	width: 96%;
	z-index: 2;
}
.aws_section_landing-page_container {
	width: 55%;
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	margin-top: 3%;
}

.aws_section_landing-page_container h1 {
	align-self: flex-start;
	margin-bottom: 1rem;
	margin-left: 5%;
	z-index: 10;
}

.aws_landing-page_pricing-details {
	border: 8px solid var(--accentBrighter);
	width: 90%;
	padding: 0 5% 0 15%;
	z-index: -2;
	font-family: Century Gothic;
}

.aws_price {
	font-size: 3vw;
	margin-top: 8%;
}

.aws_price span {
	font-weight: 300;
	font-size: 1.5vw;
}

.aws_price-net {
	font-size: 1.7vw;
	font-style: italic;
	text-decoration: line-through;
}

.aws_landing-page_details-container {
	padding: 2rem 0;
}

.aws_landing-page_details-container_top {
	display: flex;
	justify-content: space-between;
}

/* CORPORATE WEBSITE */
.aws_section_corporate-website {
	position: relative;
	overflow: hidden;
	padding-top: 5rem;
}

.aws_section_corporate-website_container {
	width: 52%;
	margin-left: 10%;
}

.aws_section_corporate-website_container h1 {
	padding-left: 2rem;
}

.aws_corporate-website_pricing-details {
	border: 8px solid var(--grey);
	width: 100%;
	padding: 10% 10% 20% 10%;
	font-family: Century Gothic;
	margin-top: 0.5rem;
}

.aws_corporate-website_pricing-details > .aws_price {
	margin-top: 0;
}

.aws_corporate-website_pricing-details > .aws_price-net {
	margin-bottom: 5%;
}

.aws_section_corporate-website_img-container {
	position: absolute;
	top: 25%;
	right: -5%;
	width: 50%;
	display: flex;
	justify-content: flex-end;
	z-index: 10;
}

.aws_section_corporate-website_img {
	width: 96%;
	position: relative;
}

.aws_section_corporate-website_img:before {
	content: '';
	position: absolute;
	width: 70%;
	height: 22%;
	left: 50%;
	top: -40%;
	background-color: var(--accentBrighter);
}

.aws_section_corporate-website_img-container > .aws_background-overlay--grey {
	width: 70%;
	height: 85%;
	bottom: -5%;
	left: 0;
}

.aws_corporate-website_background {
	position: absolute;
	bottom: 0;
}

.trapezium {
	width: 89vw;
	height: 35vw;
	clip-path: polygon(290% 0, 100% 0%, 100% 100%, -70% 100%);
	background: var(--primaryColor);
}

/* E-COMMERCE */
.aws_section_ecommerce {
	overflow: hidden;
}

.aws_section_ecommerce > .aws_container {
	display: flex;
	justify-content: flex-end;
	padding: 8% 0 10%;
}

.aws_section_graphic-design_container p {
	font-size: 1.2vw;
	margin: 3% 0;
}

.aws_section_ecommerce_img-container {
	top: 28%;
	left: 0;
	position: absolute;
	width: 50%;
	display: flex;
	justify-content: flex-end;
}

.aws_section_ecommerce_img {
	width: 95%;
}

.aws_section_ecommerce_img-container > .aws_background-overlay--grey {
	width: 60%;
	height: 95%;
	top: -10%;
	left: -3%;
}

.aws_section_ecommerce_img-container:after {
	content: '';
	position: absolute;
	width: 80%;
	height: 20%;
	bottom: -25%;
	right: 60%;
	background-color: var(--accentBrighter);
}

.aws_section_ecommerce_container {
	width: 55%;
	border: 8px solid var(--accentBrighter);
	padding: 4% 7%;
	font-family: Century Gothic;
}

.aws_section_ecommerce_container > .aws_price {
	margin-top: 3%;
}

.aws_section_ecommerce_container > ul {
	margin-top: 7%;
}
/* GRAPHIC DESIGN */
.aws_section_graphic-design {
	position: relative;
	overflow: hidden;
	padding: 5%;
}

.aws_section_graphic-design > .aws_container {
	padding: 0;
	display: flex;
	align-items: center;
}

.aws_section_graphic-design_container {
	width: 70%;
	padding: 5% 15% 5% 5%;
	border: 8px solid var(--grey);
}

.aws_graphic-design_details-container_top {
	display: flex;
}

.aws_graphic-design_details-container_top > div:last-of-type {
	margin-left: 5%;
}

.aws_graphic-design_details-container {
	margin-bottom: 5%;
}

.aws_section_graphic-design_container > .aws_graphic-design_quote {
	background-color: var(--primaryColor);
	color: white;
	font-weight: bold;
	font-size: 1.1vw;
	padding: 0.5rem 1rem;
}

.aws_section_graphic-design_img {
	position: absolute;
	width: 50%;
	right: -3%;
}

.aws_section_graphic-design_img img {
	width: 100%;
}

.aws_graphic-design_background-skewed {
	position: absolute;
	z-index: -10;
	width: 180%;
	left: -20%;
	height: 150%;
	transform: rotate(-70deg);
	background-color: var(--primaryColor);
}
/* TESTIMONIALS */
.aws_section_testimonials {
	padding: 15% 0;
}

.aws_section_testimonials > .aws_container {
	width: 100%;
	background-color: var(--accentBrighter);
	padding: 0 7.5%;
	display: flex;
}

.aws_section_testimonials_container-left {
	width: 45%;
	padding: 8% 0 5%;
}

.aws_section_testimonials_container-left h1 {
	font-size: 3vw;
	color: white;
	position: relative;
}

.aws_section_testimonials_container-left h1:before {
	content: '';
	position: absolute;
	width: 40%;
	height: 2px;
	background-color: white;
	top: -15%;
	left: -3%;
}

.aws_section_testimonials_container-right {
	width: inherit;
	position: relative;
	display: flex;
	align-items: center;
	margin-left: 5%;
}

.aws_testimonials_cards {
	position: absolute;
	background-color: var(--primaryColor);
	transition: all 1s ease;
	border: 6px solid var(--accentDarker);
	color: white;
	opacity: 0;
	height: 100%;
	width: 40%;
	left: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 8% 5% 8% 8%;
}

.aws_testimonials_cards.pos_1 {
	height: 130%;
	top: -15%;
	width: 52%;
	z-index: 3;
	opacity: 1;
}

.aws_testimonials_cards.pos_2 {
	height: 110%;
	width: 44%;
	top: -5%;
	left: 51%;
	opacity: 1;
	z-index: 2;
}

.aws_testimonials_cards .testimonial {
	font-size: 1.8vw;
	padding-right: 25%;
	line-height: 1.5;
	position: relative;
	max-height: 90%;
	overflow: hidden;
}

.aws_testimonials_cards.pos_2 .testimonial {
	padding-right: 10%;
}

.aws_testimonials_cards::before {
	content: open-quote;
	position: absolute;
	top: 20%;
	left: 8%;
	font-size: 7vw;
	line-height: 0;
}

.aws_testimonials_cards::after {
	content: close-quote;
	font-size: 7vw;
	position: absolute;
	line-height: 0;
	bottom: 25%;
	right: 10%;
}

.aws_testimonials_cards .testimonial-by {
	align-self: flex-end;
	font-size: 1.2vw;
}

.aws_testimonials_cards.pos_2 .testimonial {
	font-size: 1.4vw;
}

.aws_testimonials_cards.pos_2 .testimonial-by {
	font-size: 1vw;
}

.aws_testimonials_slider-button {
	color: white;
	font-size: 4vw;
	right: -5%;
	position: absolute;
	background: none;
	border: none;
	outline: none;
	cursor: pointer;
}

.dots-container {
	position: absolute;
	right: 5%;
	bottom: -30%;
}

.dots-container .dots {
	font-size: 4vw;
	color: var(--grey);
	transition: color 0.5s ease;
	cursor: pointer;
}

.dots-container .dots.active {
	pointer-events: none;
	color: var(--accentBrighter);
}

.aws_section_testimonials .aws_background-overlay--grey {
	width: 30%;
	height: 130%;
	top: -15%;
	left: 4%;
}

/* CONTACT */
.aws_section_contact_container-left {
	width: 65%;
	border: 8px solid var(--grey);
	padding: 5% 4%;
}

.aws_section_contact_container-left h1 span {
	position: relative;
	color: white;
}

.aws_section_contact_container-left h1 span:before {
	content: "";
	position: absolute;
	right: -0.5rem;
	width: 40vw;
	height: 100%;
	padding: 20px 0;
	transform: translateY(-20px);
	background-color: var(--accentColor);
	z-index: -5;
}

.aws_section_contact_container-left p {
	width: 45%;
	font-size: 1.3vw;
	padding: 6% 0 20%;
	font-family: Century Gothic;
}

.aws_section_contact_img {
	position: absolute;
	width: 45%;
	top: 25%;
	left: 15%;
	z-index: 1;
}

.aws_section_contact_container-right {
	position: absolute;
	right: -8.8%;
	background-color: var(--primaryColor);
	width: 60%;
	top: 10%;
	padding: 7.5% 7.5% 15% 7.5%;
}

.aws_section_contact_form-container {
	width: 90%;
	position: relative;
}

.aws_section_contact_form-container:after {
	content: '';
	position: absolute;
	right: -10%;
	bottom: -10%;
	width: 80%;
	height: 80%;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	pointer-events: none;
}

.aws_section_contact_form-container form {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.aws_contact-form_input {
	border: 2px solid white;
	width: 100%;
	background: none;
	padding: 1.5% 3%;
	color: white;
	margin-bottom: 3%;
	font-size: 1.2vw;
	font-family: Century Gothic;
}

.aws_contact-form_input::placeholder {
	color: white;
}

.aws_contact-form_input#message {
	min-height: 9em;
	font-family: Century Gothic;
}

.aws_contact-form_button-container .aws_contact-form_button {
	/*padding: 3% 10%;*/
	/*width: 50%;*/
	font-size: 1.2vw;
	color: white;
	border: 1px solid white;
	background: none;
	cursor: pointer;
	transition: color .5s ease, background-color .5s ease;
}

.aws_contact-form_button-container .aws_contact-form_button ~ .aws_contact-form_button {
	margin-left: 1em;
}

.aws_contact-form_button-container {
	display: flex;
}

.aws_contact-form_button-container .aws_contact-form_button:hover {
	color: black;
	background-color: white;
}

@media (max-width: 975px) {
	.menu-icon-wrapper {
		width: 30%;
		display: flex;
		justify-content: flex-end;
	}

	.aws_header-nav {
		position: absolute;
		overflow: hidden;
		flex-direction: column;
		width: 100%;
		top: 100%;
		/*left: -9%;*/
		background: white;
		max-height: 0vh;
		transition: max-height 0.8s ease;
		box-shadow: 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 100px 80px rgba(0, 0, 0, 0.07);
	}

	.aws_header-nav.active {
		max-height: 80vh;
	}

	.aws_nav-link {
		font-size: max(20px, 3vw);
		width: 100%;
		padding: 2% 0;
		text-align: center;
		border-bottom: 1px solid #e4e4e4;
	}

	.aws_nav-link:hover {
		color: var(--textColor);
	}

	h1 {
		font-size: 4vw;
	}

	.aws_price-details {
		font-size: max(15px, 2vw);
	}

	.aws_price-details span,
	.aws_section_graphic-design_container p,
	.aws_section_contact_container-left p {
		font-size: 1.5vw;
	}

	.aws_logo-container {
		width: 150px;
	}

	.aws_hero {
		height: 100%;
	}

	.aws_hero > .aws_container {
		flex-direction: column;
		align-items: baseline;
		padding-top: max(10em, 20%);
	}

	.aws_hero_container-left {
		width: 60%;
		padding: 5%;
	}

	.aws_hero_container-left h1.heading2 span:before {
		padding: 20% 0;
		transform: translateY(-30%);
	}

	.aws_hero_container-left h3 {
		margin: 10% 0 0 0;
		font-size: 9vw;
	}

	.aws_hero_img:after {
		top: 70%;
		left: -80%;
		transform: rotate(-20deg);
	}

	.aws_hero_container-right {
		width: 75%;
		align-self: center;
		padding: 0 0 5% 0;
		margin-top: 25%;
		align-items: center;
	}

	.aws_hero_container-right h1.heading2:before {
		left: 50%;
		transform: translateX(-50%);
	}

	.aws_hero_container-right h1.heading2 {
		text-align: center;
		font-size: max(12px, 2.5vw);
	}

	.aws_hero_button-container {
		font-size: max(10px, 1.6vw);
		display: flex;
		justify-content: center;
	}

	.aws_section_contact_container-left h1 span:before {
		padding: 10% 0;
		transform: translateY(-20%);
	}

	.aws_graphic-design_details-container {
		margin-bottom: 10%;
	}

	.aws_section_graphic-design_container > .aws_graphic-design_quote {
		font-size: max(10px, 1.6vw);
	}

	.aws_graphic-design_background-skewed {
		width: 200%;
		left: -25%;
	}

	.aws_contact-form_button-container .aws_contact-form_button {
		/*padding: 4% 13%;*/
	}

	.aws_testimonials_cards {
		padding: 8% 3% 5% 8%;
	}

	.aws_testimonials_cards .testimonial-by {
		font-size: 1.5vw;
		width: 70%;
	}

	.aws_testimonials_cards.pos_2 .testimonial-by {
		font-size: 1.2vw;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 6vw;
	}

	.aws_price {
		font-size: max(20px, 4vw);
	}

	.aws_price-net {
		font-size: max(14px, 2vw);
	}

	.aws_price span {
		font-size: max(13px, 2vw);
	}

	.aws_section_landing-page_img-container {
		width: 65%;
	}

	.aws_section_landing-page_container {
		margin-top: 20%;
		width: 90%;
	}

	.aws_section_landing-page_container h1 {
		font-size: 6vw;
		width: 35%;
		align-self: auto;
	}

	.aws_landing-page_details-container {
		padding: 1rem 0;
	}

	.aws_price-details span,
	.aws_section_graphic-design_container p,
	.aws_section_contact_container-left p {
		font-size: max(12px, 2vw);
	}

	.aws_section_corporate-website_container h1 {
		padding-left: 0;
	}

	.aws_section_corporate-website_img-container {
		width: 60%;
		top: 10%;
	}

	.aws_section_corporate-website_container {
		width: 80%;
		margin-left: 0;
		padding-top: 20%;
	}

	.aws_section_corporate-website_container h1 {
		width: 50%;
	}

	.trapezium {
		height: 45vw;
	}

	.aws_section_ecommerce_img-container {
		width: 65%;
		top: 15%;
	}

	.aws_section_ecommerce_img-container:after {
		bottom: -40%;
	}

	.aws_section_ecommerce_container {
		width: 70%;
		margin-top: 45%;
		padding-top: 10%;
	}

	.aws_section_graphic-design_img {
		width: 60%;
		top: 0;
	}

	.aws_section_graphic-design_container {
		width: 90%;
		margin-top: 25%;
	}

	.aws_section_graphic-design_container h1 {
		width: 50%;
	}

	.aws_section_graphic-design_img {
		width: 70%;
		right: -13%;
		top: 0;
	}

	.aws_graphic-design_background-skewed {
		width: 300%;
		left: -40%;
	}

	.aws_section_testimonials > .aws_container {
		flex-direction: column;
		background-color: inherit;
	}

	.aws_section_testimonials_container-left {
		width: 100%;
		text-align: center;
	}

	.aws_section_testimonials_container-left h1 {
		color: var(--textColor);
		font-size: 6vw;
	}

	.aws_section_testimonials_container-left h1:before {
		left: 50%;
		transform: translateX(-50%);
		background-color: var(--textColor);
		width: 25%;
		top: -30%;
	}

	.aws_section_testimonials_container-right {
		background-color: var(--accentBrighter);
		height: max(150px, 20vh);
		margin-top: 5%;
		margin-left: 0;
	}

	.aws_testimonials_cards {
		border-width: 4px;
		padding: 5% 5% 2% 6%;
	}

	.aws_testimonials_cards .testimonial {
		font-size: 2vw;
		padding-right: 15%;
	}

	.aws_testimonials_cards.pos_1 {
		width: 40%;
		left: 10%;
	}

	.aws_testimonials_cards.pos_2 {
		width: 35%;
		left: 48%;
	}

	.aws_testimonials_cards.pos_2 .testimonial {
		font-size: 1.6vw;
	}

	.aws_testimonials_cards .testimonial-by {
		font-size: 1.8vw;
	}

	.aws_testimonials_cards.pos_2 .testimonial-by {
		font-size: 1.5vw;
	}

	.aws_testimonials_slider-button {
		font-size: 6vw;
		right: 5%;
	}

	.dots-container .dots {
		font-size: 6vw;
	}

	.aws_section_testimonials .aws_background-overlay--grey {
		display: none;
	}

	.aws_section_contact {
		padding-top: 10%;
	}

	.aws_section_contact_container-left {
		width: 80%;
	}

	.aws_section_contact_container-left p {
		width: 70%;
		padding-bottom: 50%;
	}

	.aws_section_contact_img {
		width: 53%;
		top: -10%;
		left: 50%;
	}

	.aws_section_contact_container-right {
		right: 0%;
		width: 80%;
		top: 45%;
		padding-top: 15%;
	}

	.aws_contact-form_input {
		padding: 3% 5%;
		font-size: 1.8vw;
	}

	.aws_contact-form_button-container .aws_contact-form_button {
		font-size: 1.8vw;
	}
}

@media (max-width: 600px) {
	h1 {
		font-size: max(23px, 5vw);
	}

	.aws_section_landing-page_img-container {
		width: 70%;
	}

	.aws_section_landing-page_container {
		width: 100%;
	}

	.aws_section_landing-page_container h1 {
		padding-left: 8%;
	}

	.aws_landing-page_pricing-details {
		padding: 5%;
	}

	.aws_section_testimonials > .aws_container {
		padding: 0;
	}

	.aws_section_testimonials_container-right {
		margin-left: 0;
	}

	.aws_testimonials_cards .testimonial {
		font-size: 2.3vw;
	}

	.aws_testimonials_cards.pos_2 .testimonial {
		font-size: 1.9vw;
	}

	.aws_testimonials_cards.pos_1 {
		width: 45%;
		left: 5%;
	}

	.aws_testimonials_cards.pos_2 {
		width: 40%;
		left: 49%;
	}

	.aws_testimonials_cards {
		padding: 8% 5% 2% 6%;
	}

	.aws_testimonials_cards .testimonial {
		font-size: max(11px, 2.5vw);
	}

	.aws_testimonials_cards .testimonial-by {
		font-size: max(10px, 2vw);
		width: 85%;
	}

	.aws_testimonials_cards.pos_2 {
		padding: 6% 5% 2% 6%;
	}

	.aws_testimonials_cards.pos_2 .testimonial {
		font-size: max(9px, 2.1vw);
	}

	.aws_testimonials_cards.pos_2 .testimonial-by {
		font-size: max(8px, 1.8vw);
	}

	.aws_testimonials_slider-button {
		right: 3%;
	}

	.trapezium {
		width: 100vw;
	}
}

@media (max-width: 500px) {
	.aws_container {
		width: 90%;
	}

	.aws_section_graphic-design_container h1 {
		width: 100%;
		margin-top: 25%;
	}

	.aws_section_ecommerce_container {
		width: 80%;
	}

	.aws_section_graphic-design_container {
		padding-right: 11%;
	}
	.aws_graphic-design_background-skewed {
		width: 400%;
		left: -60%;
	}
}

@media (max-width: 400px) {
	.aws_section_ecommerce_container {
		margin-top: 50%;
	}

	.aws_section_contact_container-right {
		top: 75%;
	}

	.aws_section_contact_img {
		top: 25%;
	}

	.aws_hero_img:after {
		left: -110%;
	}
}

@media (min-width: 975px) {
	.aws_hero_img {
		width: min(385px, 37%);
		left: 50%;
		top: auto;
		bottom: 0%;
	}

	.aws_hero_img:after {
		left: 50%;
		width: 350%;
	}
}

	.aws_hero {
		height: 100%;
	}

@media (min-width: 975px) {
	.aws_hero > .aws_container {
		padding: 5% 0;
	}
}

@keyframes top {
	0% {
		top: 0;
		transform: rotate(0);
	}
	50% {
		top: 8px;
		transform: rotate(0);
	}
	100% {
		top: 8px;
		transform: rotate(45deg);
	}
}

@keyframes top-2 {
	0% {
		top: 8px;
		transform: rotate(45deg);
	}
	50% {
		top: 8px;
		transform: rotate(0deg);
	}
	100% {
		top: 0;
		transform: rotate(0deg);
	}
}

@keyframes bottom {
	0% {
		bottom: 0;
		transform: rotate(0);
	}
	50% {
		bottom: 8px;
		transform: rotate(0);
	}
	100% {
		bottom: 8px;
		transform: rotate(135deg);
	}
}

@keyframes bottom-2 {
	0% {
		bottom: 8px;
		transform: rotate(135deg);
	}
	50% {
		bottom: 8px;
		transform: rotate(0);
	}
	100% {
		bottom: 0;
		transform: rotate(0);
	}
}

@keyframes scaled {
	50% {
		transform: scale(0);
	}
	100% {
		transform: scale(0);
	}
}

@keyframes scaled-2 {
	0% {
		transform: scale(0);
	}
	50% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}

.mt-3 {
  margin-top: 1rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}

.mobile_only, .mobile_only_flex { display: none; }
.desktop_only { display: inherit; }

.aws_hero_img.desktop_only {
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}
	
@media (max-width: 975px) {
	.mobile_only { display: inherit; }
	.mobile_only_flex { display: flex; }
	.desktop_only { display: none; }
}

@media (min-width: 1340px) {
	.aws_hero_img.desktop_only {
		width: 37%;
	}	
}

.scroll-reach-end .fb-customerchat, .scroll-reach-end .fb_dialog_content { display: none; }