/*
    Theme Name: Online Payments
    Author: 
    Author URI: 
    Description: 
    Version: 1.0
*/


/* menu */


*,
::after,
::before {
	box-sizing: border-box;
}

 @font-face {
	src: url('https://online-payments.acreative.al/font-family/AeonikPro.woff2') format('woff2');
	font-family: aeonik-pro;
}


header {
	background-color: #ffffff;
	position: sticky;
	width: 100%;
	top: 0;
}

body {
	margin: 0;
	padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
span,
button {
	font-family: aeonik-pro;


}


a {
	color: #ffffff;

}


p {
	font-size: 15px;
	line-height: 1.3em;
}


.color-black {
	color: #191c1f;
}

.color-white {
	color: #ffffff;
}

.color-gray {
	color: #8d969e
}


.color-secondary {
	color: #e1e2fc;
}


.bg-color-black {
	background-color: #191c1f;
}


.container {
	margin: auto;
}

.row {
	display: flex;
	flex-wrap: wrap;
}


.row-header {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
}


.flex-80 {
	flex: 80%;
}


.flex-70 {
	flex: 70%;
}

.flex-60 {
	flex: 60%;
}

.flex-50 {
	flex: 50%;
}


.flex-40 {
	flex: 40%;
}


.flex-33 {
	flex: 33.3%;
}


.flex-30 {
	flex: 30%;
}

.flex-20 {
	flex: 20%;
}


.space-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

.align-center {
	align-items: center;
}


h1 {
	font-size: 40px;
	font-weight: 800;

}

h1,
h2,
h3,
h4,
h5,
p {
	margin-top: 0;
	margin-bottom: 0;
}


.text-center {
	text-align: center;
}


/* header */


.logo-menu-items {
	display: inline-flex;
	gap: 20px;
	width: 100%;

}


.logo-item {
	display: flex;
	flex: 20%;

	flex-direction: column;

	justify-content: center;
	align-items: start;


}

.menu-item {
	display: flex;
	flex: 80%;

	flex-direction: column;

	justify-content: center;
	align-items: end;
}

ul.menu-list-item {
	display: flex;
}

ul.menu-list-item li {
	display: inline;
}

ul.menu-list-item li a {
	text-decoration: none;
	padding-right: 16px;
	color: #191c1f;
	font-size: 22px;
	font-weight: 500;
}


ul.menu-list-item li a:hover {
	color: #8d969e;
}


.menu-list-item li.has-megamenu .megamenu {
	display: none;
}


.menu-list-item li.has-megamenu:hover .megamenu {
	display: block;
}


.megamenu {

	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #f9f9f9;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	padding: 20px;
	top: 100%;
	animation: fadeIn 0.3s ease-in-out;
	border-top: 3px solid #191c1f;
	transform: translateX(0);
	left: unset;
}


/* footer */

.footer-col-1,
.footer-col-2,
.footer-col-3,
.footer-col-4 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: start;
	align-items: start;
	gap: 20px;

}


.footer-main-title {
	font-size: 32px;
	font-weight: 500;
}


ul.footer-subtitle-list {
	list-style-type: none;
	padding: 0;
	line-height: 30px;
	margin: 0;
}

ul.footer-subtitle-list li a {
	text-decoration: none;
	color: #8d969e;
	font-size: 16px;
	font-weight: 500;

}


ul.footer-subtitle-list li a:hover {
	color: #ffffff;

}


.fa-google-play {
	width: 30px;

}

.fa-apple {
	width: 35px;

}


.footer-app-download-buttons {
	display: flex;
	gap: 30px;
	background-color: #ffffff;
	border-radius: 10px;
	padding: 10px 30px 10px 30px;
}


.first-app-button,
.second-app-button {
	display: inline-flex;
	gap: 10px;

}


.google-play-icon,
.app-store-icon {
	flex: 20%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	align-self: center;
}


.google-play-text,
.app-store-text {
	flex: 80%;
	display: flex;
	flex-direction: column;

	justify-content: center;
	align-items: start;
	align-self: center;
}

.google-play-text-p,
.app-store-text-p {
	font-size: 10px;
	text-transform: uppercase;
}

.google-play-text-h3,
.app-store-text-h3 {
	font-size: 18px;
	font-weight: 500;

}

.footer-logo {
	display: flex;
	justify-content: start;
	align-items: center;
}


.footer-social-icons {
	display: flex;
	justify-content: end;
	align-items: center;

}


.fa-linkedin-in,
.fa-instagram,
.fa-facebook-f {
	color: #8d969e;
	border: 1px solid white;
	padding: 10px;
	border-radius: 50%;
	height: 30px;
	width: 30px;
}


.fa-linkedin-in:hover,
.fa-instagram:hover,
.fa-facebook-f:hover {
	color: #ffffff;
}


.footer-social-icons-group {
	display: flex;
	gap: 20px;
}


.footer-container-3-col-1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

}


hr.footer-hr {
	border: 0;
	border-top: 1px solid #8d969e;
	width: 100%;
	padding-top: 20px;
	margin-top: 30px;


}


.pt-60 {
	padding-top: 60px;
}

.pb-60 {
	padding-bottom: 60px;
}


.pt-20 {
	padding-top: 20px;
}

.pb-20 {
	padding-bottom: 20px;
}


.icon {
	display: none;
	font-size: 24px;
	cursor: pointer;
	color: #191c1f;
	
}


@media only screen and (max-width: 768px) {
	.container {
		padding-right: 20px;
		padding-left: 20px;
	}

	.row {
		flex-direction: column;
	}


	.grid-4-footer-container-1,
	.grid-4-footer-container-2 {

		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 30px;

	}


	.pt-60-maxw-991 {
		padding-top: 60px;
	}


	.pt-60-maxw-768 {
		padding-top: 60px;
	}


	.pt-15-maxw-768 {
		padding-top: 15px;
	}

	.pb-15-maxw-768 {
		padding-bottom: 15px;
	}

	.pb-30-maxw-768 {
		padding-bottom: 30px;
	}


	.menu-list-item {
		display: none;
	}


	.footer-main-title {
		font-size: 25px;
	}


	.maxw-768-hidden {
		display: none;
	}


	.icon {
		display: block;
	}

	ul.menu-list-item {
		display: none;
		flex-direction: column;
		width: 100%;
		background-color: #ffffff;
		position: absolute;
		top: 100%;
		left: 0;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		padding: 10px 0;
		z-index: 999;
	}


	ul.menu-list-item.active {
		display: flex;

		margin: 0;
		padding-left: 20px;
		padding-right: 20px;
		gap: 25px;
	}


	.megamenu {
		position: static;
		width: 100%;
		box-shadow: none;
		padding: 10px;
		border-top: none;
		transform: none;
	}


}


@media only screen and (min-width: 769px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}


	.grid-4-footer-container-1,
	.grid-4-footer-container-2 {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 40px;


	}

	.pt-60-maxw-991 {
		padding-top: 60px;
	}

	.pt-60-minw-769 {
		padding-top: 60px;
	}

	.pt-20-maxw-991 {
		padding-top: 20px;
	}

	.pb-20-maxw-991 {
		padding-bottom: 20px;
	}


	.minw-769-hidden {
		display: none;
	}


	.footer-container-2-col-2-minw-769-hidden {
		display: none;
	}

	.footer-container-2-col-3-minw-769-hidden {
		display: none;
	}


	.footer-logo-minw-769-order {
		order: 1;
	}

	.footer-social-icons-minw-769-order {
		order: 2;
	}


}


@media only screen and (min-width: 992px) {
	.container {
		padding-left: 30px;
		padding-right: 30px;

	}


	.grid-4-footer-container-1,
	.grid-4-footer-container-2 {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 40px;


	}


	.minw-992-hidden {
		display: none;
	}


	.footer-container-2-col-2-minw-992-hidden {
		display: none;
	}

	.footer-container-2-col-3-minw-992-hidden {
		display: none;
	}

	.footer-logo-minw-992-order {
		order: 1;
	}

	.footer-social-icons-minw-992-order {
		order: 2;
	}


}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}


	.grid-4-footer-container-1,
	.grid-4-footer-container-2 {

		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-gap: 20px;

	}


	.pt-60-maxw-1200 {
		padding-top: 60px;
	}


	.pt-60-minw-1200 {
		padding-top: 60px;
	}


	.minw-1200-hidden {
		display: none;
	}


	.footer-logo-minw-1200-order {
		order: 1 !important;
	}

	.footer-container-2-col-2-minw-1200-order {
		order: 2 !important;
	}

	.footer-container-2-col-3-minw-1200-order {
		order: 3 !important;
	}


	.footer-social-icons-minw-1200-order {
		order: 4 !important;
	}

	hr.footer-hr {
		max-width: 94%;
		margin-left: 0;
	}


}


@media only screen and (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}


	.grid-4-footer-container-1,
	.grid-4-footer-container-2 {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-gap: 20px;

	}


	.pt-60-maxw-1200 {
		padding-top: 0;
	}


	.minw-1400-hidden {
		display: none;
	}


	.footer-logo-minw-1400-order {
		order: 1;
	}

	.footer-container-2-col-2-minw-1400-order {
		order: 2;
	}

	.footer-container-2-col-3-minw-1400-order {
		order: 3;
	}


	.footer-social-icons-minw-1400-order {
		order: 4;
	}

	hr.footer-hr {
		max-width: 93%;
		margin-left: 0;
	}


}