@font-face {
	font-family: Pelak R;
	src: url('../fonts/pelak-regular.ttf');
}

@font-face {
	font-family: Pelak B;
	src: url('../fonts/pelak-black.ttf');
}

:root {
	--purple: #6950a3;
	--green: #8cc63e;
	--grey: #f0f0f0;
}

::selection {
	background-color: var(--purple);
	color: #fff;
}

body {
	direction: rtl;
	font-family: Pelak R;
	overflow-x: hidden;
	color: #333;
}

body :not(.responsive-menu) * {
	transition: .2s all ease-out;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	color: inherit;
}

ul,
ol {
	padding: 0;
	list-style: none;
}

header {
	position: absolute;
	width: 80vw;
	height: auto;
	max-height: 100px;
	background-color: var(--purple);
	left: 10vw;
	top: 50px;
	border-radius: 20px;
	color: #fff;
	padding: 30px 50px;
	z-index: 2;
	box-shadow: 0px 0px 10px -5px #fff;
	z-index: 4;
}

header .logo {
	max-width: 200px;
}

header .logo img {
	max-width: 100%;
}

header nav {
	margin-right: auto;
	margin-left: 1.5rem;
}

header nav ul {
	margin: 0;
}

header ul li {
	display: inline-block;
	margin-left: 10px;
	font-weight: 600;
}

header ul li:last-child {
	margin-left: 0;
}

header ul li a {
	position: relative;
}

header ul li a:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -15px;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background-color: var(--green);
	transition: .2s all ease-out;
}

header ul li:hover a,
header ul li.active a {
	color: var(--green);
}

header ul li:hover a:after {
	width: 100%;
}

.responsive-menu {
	display: none;
}
.responsive-menu ul {
	box-shadow: 0px 0px 10px -7px #000;
}

.hero {
	width: 100vw;
	height: 500px;
	overflow: hidden;
	position: relative;
}

.hero:before {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.4);
	z-index: 2;
}

.hero > img {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

.hero h1 {
	position: absolute;
	left: 50%;
	bottom: 100px;
	transform: translateX(-50%);
	font-family: Pelak B;
	color: #fff;
	white-space: nowrap;
	z-index: 3;
}

.home .about-us {
	padding-top: 5em;
}

.home .about-us .image-container {
	text-align: left;
}

.home .about-us img {
	max-width: 100%;
}

.section-title {
	position: relative;
}

.section-title:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	width: 200px;
	height: 3px;
	background-color: var(--purple);
}

.section-title h3 {
	font-family: Pelak B;
}
.section-title span {
	font-weight: 600;
}

.feature,
.category {
	position: relative;
	border-radius: 20px;
}

.feature:hover,
.category:hover {
	background-color: var(--purple);
}

.feature i,
.category i {
	color: var(--green);
	font-size: 50px;
}

.feature img,
.category img {
	max-width: 150px;
}

.feature label,
.category h5 {
	font-weight: 600;
	font-size: 1.2em;
	white-space: nowrap
}

.feature:hover *,
.category:hover * {
	color: #fff;
}

.feature:hover img,
.category:hover img {
	filter: brightness(100);
}

.side-image .image-container {
	overflow: hidden;
	border-radius: 0 20px 20px 0;
	position: relative;
}

.side-image .image-container img {
	max-width: auto;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(1.1);
}

.side-image .image-container:hover img {
	transform: translate(-50%, -50%) scale(1.2);
}

.side-image .content-area {
	background-color: var(--purple);
	color: #fff;
	border-radius: 20px 0 0 20px;
}

.side-image .section-title:after {
	background-color: var(--green);
	left: auto;
	right: 0;
	transform: none;
}

.side-image .content-area ul li {
	padding-right: 1.5em;
	margin-bottom: 10px;
	position: relative;
}

.side-image .content-area ul li:before {
	content: '\f00c';
	position: absolute;
	right: 0;
	top: 0;
	font-family: "FontAwesome";
	color: var(--green);
}

.deco {
	overflow: hidden;
}

.deco.deco1 {
	margin-top: -30px;
}

.deco.deco3 {
	margin-top: -60px;
}

.deco.deco4 {
	margin-top: 20px;
}

.deco > img {
	max-width: 100%;
	filter: grayscale(1);
}

.deco:hover > img {
	filter: grayscale(0);
}

.cta {
	background-color: var(--purple);
	color: #fff;
	padding: 8em 0;
	background-image: url(../images/bg-pattern.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.cta h3 {
	font-weight: 900;
	font-size: 2em;
}

.cta a {
	font-size: 2em;
	/* border: 3px dashed #fff; */
	padding: 15px 30px;
	border-radius: 40px;
	position: relative;
	background-color: var(--green);
}

.cta a:hover {
	padding-right: 70px;
}

.cta a i {
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
}

.cta a:hover i {
	opacity: 1;
}

.cta a > .highlight {
	position: absolute;
	left: -50px;
	top: -15px;
	background-color: #fff;
	color: var(--purple);
	padding: 0.5em 1em;
	font-size: .4em;
	font-weight: 600;
	border-radius: 20px;
}

.back-to-top {
	position: fixed;
	left: 2rem;
	bottom: 2rem;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: var(--purple);
	padding: 0.5rem;
	border: none;
	cursor: pointer;
	opacity: 100%;
	transition: opacity 0.5s;
	color: var(--green);
	box-shadow: 0px 0px 10px -5px #fff;
}

.hidden {
	opacity: 0%;
}

.primary-btn {
	background-color: var(--purple);
	color: #fff;
	border-radius: 40px;
	display: inline-block;
	font-weight: 600;
	outline: 0;
	border: 0;
}

.primary-btn:hover {
	background-color: var(--green);
	color: #fff;
}

.secondary-btn {
	background-color: var(--grey);
	border-radius: 40px;
	display: inline-block;
	font-weight: 600;
	margin-right: .5em;
	outline: 0;
	border: 0;
}

.secondary-btn:hover {
	background-color: #e0e0e0;
	/* color: #fff; */
}

.white-btn {
	background-color: #fff;
	color: var(--purple);
	border-radius: 40px;
	display: inline-block;
	font-weight: 600;
	outline: 0;
	border: 0;
}

.white-btn:hover {
	background-color: var(--green);
}

footer {
	background-color: #f0f0f0;
}

footer .top-row .links img {
	max-width: 150px;
	margin-left: 30px;
}

footer .top-row .links a {
	margin-left: 15px;
	font-weight: 600;
}

footer .top-row .links a:hover {
	color: var(--purple);
}

footer .top-row .socials a {
	font-size: 2em;
	margin-left: 5px;
	color: var(--purple);
	line-height: 1;
}

footer .top-row .socials a:last-child {
	margin-left: 0;
}

footer .top-row .socials a:hover {
	color: var(--green);
}

footer .copyright {
	background-color: var(--purple);
	color: #fff;
	padding: 1em;
}

footer .copyright p {
	margin-bottom: 0;
}

/*
	About
*/

body:not(.home) .about-us {
	padding-top: 5em;
	padding-bottom: 5em;
}

.about-us .about-image img {
	max-width: 100%;
	border-radius: 20px;
}

.about-us .section-title::after {
	left: auto;
	right: 0;
	transform: none;
}

.timeline .timeline-content .timeline-item {
	margin-bottom: 20px;
	padding: 1.5em;
	border-radius: 20px;
}

.timeline .timeline-content .timeline-item:nth-of-type(even) {
	background-color: #f0f0f0;
}

.timeline .timeline-content .timeline-item .time .date {
	font-size: 40px;
	font-family: Pelak B;
	font-weight: 900;
	color: var(--purple);
}

.timeline .timeline-content .timeline-item .time .info {
	font-weight: 900;
}

.timeline .timeline-content .timeline-item .description {
	position: relative;
	padding-right: 3em;
}

.timeline .timeline-content .timeline-item .description:before {
	content: '';
	position: absolute;
	right: .7em;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--green);
	z-index: 2;
}

.timeline .timeline-content .timeline-item .description:after {
	content: '';
	position: absolute;
	right: 1.2em;
	top: 50%;
	transform: translateY(-50%);
	height: 200%;
	width: 5px;
	background-color: var(--purple);
}

.timeline .timeline-content .timeline-item:first-child .description:after {
	top: 50%;
	transform: translateY(0%);
	height: 100%;
}

.timeline .timeline-content .timeline-item:last-child .description:after {
	top: 0%;
	height: 100%;
}

.customer-service .gray-area {
	background-color: #f0f0f0;
	border-radius: 20px 0 0 0;
}

.customer-service .gray-area h3 {
	font-family: Pelak B;
	padding-left: 50px;
}

.customer-service .content-area {
	padding: 2em 4em;
}

.customer-service .content-area ul {
	margin-top: 10px;
}

.customer-service .content-area ul li {
	margin-bottom: 5px;
	position: relative;
	padding-right: 20px;
}

/* .customer-service .content-area ul li:hover { */
	/* padding-right: 18px; */
/* } */

.customer-service .content-area ul li:before {
	content: '\f0a8';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-family: "FontAwesome";
	font-size: .9em;
	color: var(--purple);
	transition: .2s all ease-out
}

/*
	Employment
*/

.employment form .form-group-half {
	width: calc(50% - 8px);
	margin: 0 4px 10px;
	position: relative;
}

.employment form .form-group {
	width: calc(100% - 4px);
	margin: 0 2px 10px;
	position: relative;
}

.employment form .form-group-half label {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.employment form .form-group label {
	position: absolute;
	right: 20px;
	top: 20px;
}

.employment form input,
.employment form select,
.employment form textarea {
	background-color: #f0f0f0;
	border: 0;
	border-radius: 40px;
	padding: 1em 1.5em;
	outline: 0;
	width: 100%;
}

.employment form textarea {
	min-height: 200px;
	border-radius: 30px;
}

.employment form input:focus,
.employment form input:active,
.employment form select:focus,
.employment form select:active,
.employment form textarea:focus,
.employment form textarea:active {
	background-color: var(--purple);
	color: #fff;
}

.swal-title,
.swal-text,
.swal-button {
	font-family: Pelak R;
}

/*
	Agency
*/

.agencies .nav-pills .nav-link {
	padding: 1em 1.5em;
	border-radius: 30px;
	background-color: var(--purple);
	margin: 0 0 10px 5px;
	color: #fff;
	min-width: 120px;
}

.agencies .nav-pills .nav-link:hover {
	background-color: var(--green);
}

.agencies .nav-pills .nav-link.active {
	background-color: var(--green);
}

.agency {
	border: 1px solid var(--purple);
	border-radius: 20px;
	margin-left: 10px;
	margin-bottom: 10px;
}

.agency img {
	max-width: 30px;
	margin-left: 8px;
}

.agency-name {
	font-family: Pelak B;
}

.agency:hover {
	background-color: var(--purple);
}

.agency:hover img {
	filter: brightness(100);
}

.agency:hover * {
	color: #fff;
}

/*
	Supply
*/

.supply .supply-cat {
	padding: 1em 1.5em;
	border-radius: 20px;
}

.supply .supply-cat img {
	max-width: 50px;
	margin-left: 10px;
}

.supply .supply-cat label {
	font-weight: 600;
}

.supply .supply-cat:hover {
	background-color: var(--purple);
	color: #fff;
}

.supply .supply-cat:hover img {
	filter: brightness(100);
}

.priorities li {
	padding-right: 20px;
	position: relative;
	margin-bottom: 10px;
}

.priorities li:before {
	content: '\2b';
	position: absolute;
	right: 0;
	top: 0;
	/* transform: translateY(-50%); */
	font-family: "FontAwesome";
	color: var(--purple);
}

/*
	Offer
*/

.offer .section-title::after {
	left: auto;
	right: 12px;
	transform: translateX(0%);
	width: 160px;
}

.conditions li {
	padding-right: 25px;
	position: relative;
	margin-bottom: 10px;
}

.conditions li:before {
	content: '\f058';
	position: absolute;
	right: 0;
	top: 0;
	font-family: "FontAwesome";
	color: var(--green);
}

.offer-info {
	margin-left: 20px;
	padding: 1em;
	border-radius: 20px;
}

.offer-info:hover {
	background-color: var(--purple);
	color: #fff;
}

.offer-info img {
	max-width: 30px;
	margin-left: 10px;
}

.offer-info:hover img {
	filter: brightness(100);
}

/*
	Contact
*/

.innerpage .hero {
	height: 400px;
	background-color: #f0f0f0;
}

.innerpage .hero:before {
	display: none;
}

.innerpage .hero h1 {
	bottom: 80px;
	color: #333;
}

.contact-info .map iframe {
	width: 100%;
	height: 100%;
}

.contact-info .details {
	padding-top: 5em;
	padding-bottom: 5em;
}

.contact-info .details .detail {
	margin-bottom: 15px;
}

.contact-info .details .detail img {
	max-width: 30px;
	margin-left: 10px;
}

.contact-info .details .detail strong {
	margin-left: 2px;
}

.contact-info .cta {
	background-color: var(--purple);
	border-radius: 20px;
	background-image: none;
}

.contact-info .cta img {
	max-width: 100px;
	/* filter: brightness(100); */
}

.contact-info .cta strong {
	font-size: 1.5em;
	margin-right: 20px;
}

@media screen and (max-width: 1200px) {
	header .logo {
		max-width: 200px;
	}
	
	.hero h1 {
		bottom: 100px;
	}
	
	.feature {
		padding: 1.5rem !important;
	}
	
	.feature img,
	.category img {
		max-width: 100px;
	}
	
	.feature label, .category h5 {
		font-size: 1em;
	}
	
	.side-image {
		flex-direction: column !important;
	}
	
	.side-image .image-container,
	.side-image .content-area {
		width: 100%;
	}
	
	.side-image .image-container {
		height: 700px;
		position: relative;
		overflow: hidden;
		border-radius: 20px 20px 0 0;
	}
	
	.side-image .image-container img {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		height: auto;
	}
	
	.side-image .image-container:hover img {
		transform: translate(-50%, -50%) scale(1.1);
	}
	
	.side-image .content-area {
		border-radius: 0 0 20px 20px;
	}
}

@media screen and (max-width: 1000px) {
	header {
		max-height: inherit;
		flex-wrap: wrap;
		padding: 25px 30px;
	}
	
	header .logo {
		max-width: 200px;
		order: 1;
	}
	
	header nav {
		margin: 30px 1.5rem 0;
		order: 3;
		width: 100%;
		text-align: center;
	}

	header .shop-link {
		order: 2;
	}

	.hero {
		height: 400px;
	}

	.hero h1 {
		bottom: 50px;
	}

	.home .about-us > .row {
		flex-direction: column;
	}

	.home .about-us .image-container,
	.home .about-us .content-container {
		width: 100%;
		text-align: center;
	}

	.home .about-us .content-container {
		margin-bottom: 80px;
	}

	.home .about-us .image-container img {
		max-width: 400px;
	}

	.feature-container {
		width: 50%;
		margin-bottom: 10px;
	}
	
	.feature label,
	.category h5 {
		font-size: 1.1em;
	}
	
	.side-image .image-container {
		height: 500px;
	}
	
	.category-container {
		width: 33.333%;
		margin-bottom: 10px;
	}
	
	.decor-container {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	
	.cta {
		padding: 8em 3em;
	}
	
	.contact-info > .row {
		flex-direction: column !important;
	}
	
	.contact-info > .row .map,
	.contact-info > .row .details {
		width: 100%;
	}
	
	.contact-info .details {
		padding-top: 2em;
		padding-bottom: 2em;
		padding-right: 2em !important;
		padding-left: 2em !important;
	}
	
	.contact-info .map iframe {
		height: 400px;
	}
	
	.contact-info .cta {
		margin-top: 0 !important;
		padding-right: 2em !important;
		padding-left: 2em !important;
	}
	
	.about-us .about-content,
	.about-us .about-image {
		width: 100% !important;
	}
	
	.about-us .about-content {
		margin-bottom: 35px;
	}
	
	.about-us .about-content .section-title {
		text-align: center;
	}
	
	.about-us .section-title::after {
		left: 50%;
		right: auto;
		transform: translateX(-50%);
	}
	
	.about-us .about-image {
		height: 500px;
		overflow: hidden;
		position: relative;
	}
	
	.about-us .about-image img {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		width: calc(100% - var(--bs-gutter-x));
	}
	
	.agencies-info .nav,
	.agencies-info .tab-content {
		width: 100%;
	}
	
	.agencies-info .agency {
		margin-left: 0;
	}
	
	.timeline .timeline-content {
		width: 100% !important;
		margin-right: 0 !important;
	}
	
	.customer-service .content-area {
		padding: 3em;
	}
	
	.cats {
		width: 100% !important;
		margin-right: 0px !important;
	}
	
	.cats .supply-cat:nth-of-type(2) {
		margin-left: 1.5em !important;
		margin-right: 1.5em !important;
	}
	
	.cats .supply-cat label {
		white-space: nowrap;
	}
	
	footer.py-5 {
		padding-bottom: 2rem !important;
	}
	
	footer > .container {
		flex-direction: column !important;
	}
	
	footer .top-row .links {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 800px) {
	header nav {
		display: none;
	}
	
	.responsive-menu {
		display: block;
		position: relative;
		border-width: 2px 0 2px 0;
		border-color: #fff;
		border-style: solid;
		width: 30px;
		height: 20px;
		cursor: pointer;
		order: 2;
		margin-right: auto;
		margin-left: 1rem;
	}

	header .shop-link {
		order: 3;
	}
	
	.responsive-menu:hover {
		border-color: var(--green);
	}
	
	.responsive-menu:before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 100%;
		height: 2px;
		background-color: #fff;
		transition: .2s all ease-out;
	}
	
	.responsive-menu:hover:before {
		background-color: var(--green);
	}
	
	.responsive-menu ul {
		position: absolute;
		left: 0;
		top: calc(100% + 20px);
		background-color: #fff;
		color: #333;
		min-width: 250px;
		padding: 1em 2em;
		border-radius: 20px;
		transition-delay: 0s;
		transition-duration: 0s;
		transition-property: all;
		transition-timing-function: ease;
	}
	
	.responsive-menu ul li {
		display: block;
		margin-bottom: 15px;
	}
	
	.responsive-menu ul li:last-child {
		margin-bottom: 0;
	}
	
	.responsive-menu ul li a:after {
		display: none;
	}

	.hero {
		height: 350px;
	}
	
	.category-container {
		width: 50%;
	}
}

@media screen and (max-width: 768px) {
	.deco {
		margin-right: 0.2em !important;
		margin-left: 0.2em !important;
	}
	
	.cta h3 {
		line-height: 1.7;
		font-size: 1.7em;
	}
	
	.cta a {
		font-size: 1.5em;
		padding: 10px 25px;
	}
	
	.cta a > .highlight {
		font-size: .45em;
	}
	
	.timeline .timeline-content .timeline-item .time {
		width: 20%;
	}
	
	.timeline .timeline-content .timeline-item .time .date {
		font-size: 30px;
	}
	
	.timeline .timeline-content .timeline-item .description {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		width: 80%;
	}
	
	.customer-service .gray-area {
		width: 35%;
		justify-content: center !important;
	}
	
	.customer-service .gray-area h3 {
		padding-left: 0;
	}
	
	.customer-service .content-area {
		padding: 2em;
		width: 65%;
	}
	
	.employment form .form-group-half {
		width: calc(100% - 4px);
		margin: 0 2px 10px;
	}
	
	.agencies-info {
		flex-direction: column;
	}
	
	#v-pills-tab {
		margin-left: 0;
		margin-bottom: 30px;
	}
	
	.cats {
		flex-direction: column;
	}
	
	.cats .supply-cat {
		flex-direction: column;
		margin-bottom: 30px;
		width: 300px;
		padding: 1.5em;
		margin-right: auto;
		margin-left: auto;
	}
	
	.cats .supply-cat:nth-of-type(2) {
		margin-right: auto !important;
		margin-left: auto !important;
	}
	
	.cats .supply-cat:last-child {
		margin-bottom: 0;
	}
	
	.cats .supply-cat img {
		margin-bottom: 20px;
	}
	
	footer .top-row .links {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	footer .top-row .links img {
		width: 200px;
		margin-left: calc(calc(100% - 200px)/2);
		margin-bottom: 30px;
		position: relative;
		display: block;
		max-width: 200px;
		clear: both;
		margin-right: calc(calc(100% - 200px)/2);
	}
}

@media screen and (max-width: 600px) {
	header {
		padding-right: 30px;
		padding-left: 30px;
	}
	
	header .logo {
		max-width: 150px;
	}

	header .shop-link {
		padding-top: .7rem !important;
		padding-bottom: .7rem !important;
		padding-right: 1.2rem !important;
		padding-left: 1.2rem !important;
	}
	
	.decor-container {
		padding-left: 1em !important;
		padding-right: 1em !important;
	}
	
	.side-image .image-container,
	.side-image .content-area {
		border-radius: 0;
	}
	
	.cta h3 {
		font-size: 1.5em;
	}
	
	.contact-info .details {
		padding-top: 1.5em;
		padding-bottom: 1.5em;
		padding-right: 1.5em !important;
		padding-left: 1.5em !important;
	}
	
	.contact-info .cta {
		margin-right: 1em !important;
		margin-left: 1em !important;
		width: calc(100% - 2em) !important;
	}
	
	.customer-service > .row > div {
		flex-direction: column;
	}
	
	.customer-service .gray-area,
	.customer-service .content-area {
		width: 100%;
	}
	
	.customer-service .gray-area {
		padding: 4em 2em;
		border-radius: 0;
	}
	
	footer {
		padding-right: 2em;
		padding-left: 2em;
	}
	
	footer .copyright {
		width: calc(100% + 4em);
		margin-left: -2em;
		margin-right: -2em;
	}
}

@media screen and (max-width: 500px) {
	header .shop-link {
		width: 100%;
		margin-top: 25px;
		text-align: center;
	}

	.home .about-us .image-container img {
		max-width: 300px;
	}

	.feature-container {
		width: 100%;
	}
	
	.feature {
		padding-top: 2em !important;
		padding-bottom: 2em !important;
	}
	
	.contact-info .cta {
		flex-direction: column;
	}
	
	.contact-info .cta span {
		text-align: center;
		margin: .5em 0;
	}
	
	.timeline .timeline-content .timeline-item {
		flex-direction: column !important;
		align-items: center !important;
		margin-bottom: 30px;
	}
	
	.timeline .timeline-content .timeline-item .time {
		width: 100%;
	}
	
	.timeline .timeline-content .timeline-item .description {
		padding-right: 0;
		padding-top: 2em !important;
		text-align: center;
		width: 100%;
	}
	
	.timeline .timeline-content .timeline-item .description:before {
		right: 50%;
		top: 1.1em;
		transform: translate(50%, -50%);
	}
	
	.timeline .timeline-content .timeline-item .description:after,
	.timeline .timeline-content .timeline-item:first-child .description::after, 
	.timeline .timeline-content .timeline-item:last-child .description::after {
		right: 50%;
		top: 1em;
		transform: translate(50%, 0%);
		width: 50%;
		height: 3px;
	}
	
	.offer-contact {
		flex-direction: column;
		align-items: center;
	}
	
	.offer-contact .offer-info {
		width: fit-content;
		margin-left: 0;
		margin-bottom: 5px;
	}
	
	footer .copyright {
		font-size: .9em;
	}
}

@media screen and (max-width: 460px) {
	.hero h1 {
		padding: 0 1.2em;
		width: 100vw;
		white-space: normal;
		line-height: 1.5;
	}
	
	.content-area {
		padding: 2em !important;
	}
	
	.category-container {
		width: 100%;
	}
	
	.decor > .row {
		padding-top: 0 !important;
	}
	
	.decor-container {
		padding-top: 1em !important;
	}
	
	.deco {
		margin: 0 !important;
	}
	
	.decor-container:hover .deco > img {
		filter: grayscale(0);
	}
	
	.cta {
		padding: 5em 2em;
	}
	
	.about-us .about-image {
		height: 300px;
	}
	
	.back-to-top {
		width: 40px;
		height: 40px;
		left: 1em;
		bottom: 1em;
	}
	
	footer .links {
		flex-direction: column;
		align-items: center;
	}
	
	footer .links a {
		margin-left: 0;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 400px) {
	.primary-btn,
	.secondary-btn {
		display: block;
		width: 100%;
		text-align: center;
		margin: 0 0 10px;
	}
}

@media screen and (max-width: 360px) {
	header {
		flex-direction: column !important;
		max-height: inherit;
	}
	
	.responsive-menu {
		margin-top: 30px;
		margin-right: auto;
		margin-left: auto;
	}
	
	.responsive-menu ul {
		left: 50%;
		transform: translateX(-50%);
	}

	.home .about-us .image-container img {
		max-width: 250px;
	}
	
	.side-image .image-container {
		height: 300px;
	}
	
	.contact-info .details {
		padding-top: 1em;
		padding-bottom: 1em;
		padding-right: 1em !important;
		padding-left: 1em !important;
	}
	
	.contact-info .details .detail {
		flex-direction: column;
		margin-bottom: 20px;
	}
	
	.contact-info .details .detail img {
		margin-left: 0;
		margin-bottom: 10px;
	}
	
	.contact-info .details .detail span {
		text-align: center;
	}
}

@media screen and (max-width: 320px) {
	.side-image {
		padding-top: 0 !important;
	}
	
	.content-area {
		padding: 1.2em !important;
	}
	
	.cta a:hover {
		padding-right: 50px;
	}
	
	.cta a i {
		right: 20px;
	}
	
	.cats .supply-cat {
		width: 200px;
		padding: 1em .5em;
	}
}