:root {
	--blue-basic: #19305c;
	--blue-secondary: #264887;
	--blue-secondary-2: #2d3b55;

	--header-white: #ffff;

	--blue-blur: #0057b8;

	--font-button: #f4f4f4;
	--font-secondary: #fefefe;
	--font-default: #0f0f0f;

	--mobile-overlay-background: rgba(19, 19, 19, 0.89);

	--blue-banner: #19305cef;
	--font-banner: #f4f4f4;
	--product-gray-banner: #425466;
	--white-back: #e8eef8;

	--link-hover: #d5d5d5;
	--green-phone: #2b6a14;

	--first-step: #172846f3;
	--second-step: #30466ef3;
	--third-step: #1f2064f4;

	--slide-background: #5975ab;
	--slide-buttons: rgba(0, 0, 0, 0.5);
	--contact-form-blue: #154979;

	--input-blue: #2b4c7e;
	--background-form-black: #0b1f3a;
	--input-focus-blue: #4da3ff;

	--timeline-back: rgb(71, 101, 185);

	--highlight-black: rgba(255, 255, 255, 0.1);
	--highlight-black-2: rgba(255, 255, 255, 0.2);

	--gray-product: #425d8b;
}

@keyframes smooth-appear {
	to {
		opacity: 1;
	}
}

html {
	scroll-behavior: smooth;
	margin: 0;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	color: var(--font-default);
	margin: 0;
}

/* Header */

@media (min-width: 600px) {
	.mobile {
		display: none;
	}
	#logo {
		margin-left: 20px;
	}
}

@media (max-width: 600px) {
	.desktop {
		display: none;
	}
	#logo {
		width: 30px;
		margin-left: 0px;
	}
	.mobile-call {
		margin-left: 20px;
	}
	.menu-icon {
		margin-right: 20px;
	}
}

.mobile-call {
	width: 25px;
	height: fit-content;
	text-align: center;
	border-radius: 15px;
	background-color: var(--blue-basic);
	color: var(--font-button);
	transition: background-color 0.45s;
	padding: 10px 10px;
	margin-right: 20px;
	border-radius: 50%;
}

.call {
	margin-right: 20px;
}

#logo {
	width: 80px;
	height: auto;
}

#logo-side {
	position: absolute;
	top: 20px;
	left: -20px;
	width: 50px;
	background-color: white;
	margin-left: 50px;
	border: 2px solid black;
	border-radius: 4px;
}

.side-menu {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 9999;
	top: 0;
	right: 0;
	background-color: var(--blue-basic);
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
}

.side-menu .link {
	margin-top: 10px;
	text-decoration: none;
	font-size: 25px;
	color: var(--font-secondary);
	display: block;
	text-shadow: 2px 2px black;
	transition: 0.3s;
}

.side-menu .link:nth-child(3) {
	margin-top: 50px;
}

.side-menu .close {
	position: absolute;
	top: -15px;
	right: 10px;
	font-size: 36px;
	margin-left: 50px;
}

.menu-icon {
	font-size: 28px;
	font-weight: 600;
}

header {
	position: fixed;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	box-shadow:
		0 6px 12px 0 rgba(0, 0, 0, 0.2),
		0 3px 12px 0 rgba(0, 0, 0, 0.19) !important;
	padding: 10px 0px;
	width: 100%;
	background-color: var(--header-white);
	z-index: 9998;
}

nav {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: var(--font-default);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.link {
	padding: 20px 30px;
	font-size: 20px;
	transition: background-color 0.45s;
}

.link:hover {
	background-color: var(--link-hover);
	transition: background-color 0.45s;
}

/* Main section */

h1 {
	text-align: left;
	margin-top: 10px;
	color: var(--header-white);
	text-shadow: 2px 2px black;
	font-size: 3.8rem;
	margin-bottom: 20px;
}

@media (max-width: 520px) {
	h1 {
		font-size: 2.6rem;
	}
}

.description {
	color: var(--header-white);
	font-size: 1.2rem;
	text-shadow: 2px 2px black;
	line-height: 1.7;
	color: var(--header-white);
	text-align: left;
	font-size: 18px;
	display: flex;
	max-width: 600px;
	padding-left: 10px;
	padding-right: 10px;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
}

#main {
	position: relative;
	min-height: 700px;
	overflow: hidden;
	display: flex;
	padding-left: 10%;
	align-items: left;
	justify-content: center;
}

#main .bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

#main .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background-color: var(--blue-basic);
	opacity: 0.7;

	z-index: 2;
}

#main .content {
	position: relative;
	z-index: 3;

	max-width: 1200px;
	color: var(--header-white);
	text-align: center;
}

/* Sections */

section {
	padding-top: 40px;
	padding-bottom: 40px;
	box-shadow:
		0 6px 12px 0 rgba(0, 0, 0, 0.2),
		0 3px 12px 0 rgba(0, 0, 0, 0.19) !important;
}

#main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
}

h2 {
	text-align: center;
	padding: 20px;
}

/* Offer */

.products-title {
	color: var(--blue-basic);
	max-width: 600px;
	text-align: left;
	font-size: 40px;
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-items: left;
	margin-left: 5%;
	margin-bottom: 40px;
}

.products-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 40px;
	margin-left: 5%;
	margin-right: 5%;
}

.product-banner {
	position: relative;
	background-color: var(--white-back);
	border-radius: 20px;
	padding: 40px;
	min-height: 260px;

	display: flex;
	flex-direction: column;

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;

	overflow: hidden;
}

.product-banner:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 35px rgba(0, 40, 120, 0.12);
}

.product-banner h3 {
	font-size: clamp(1.6rem, 2vw, 2rem);
	line-height: 1.2;
	margin: 0 0 20px;
	color: var(--blue-basic);
	font-weight: 700;
}

.product-banner p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--product-gray-banner);
	margin: 0;
	max-width: 95%;
}

.product-link {
	margin-top: auto;

	display: inline-flex;
	align-items: center;
	gap: 10px;

	font-size: 1.15rem;
	font-weight: 700;
	color: var(--blue-basic);

	text-decoration: none;
	padding-top: 30px;
}

.product-link span {
	transition: transform 0.25s ease;
}

.product-banner:hover .product-link span {
	transform: translateX(6px);
}

.product-banner::after {
	content: "";

	position: absolute;
	right: -40px;
	bottom: -40px;

	width: 180px;
	height: 180px;

	border-radius: 50%;
	border: 24px solid rgba(30, 70, 170, 0.08);
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;

	padding: 8px 14px;
	border-radius: 999px;

	background: linear-gradient(
		135deg,
		var(--blue-basic),
		var(--blue-secondary)
	);

	color: var(--font-secondary);
	font-size: 14px;
	font-weight: 500;

	border: 1px solid rgba(255, 255, 255, 0.25);

	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);

	cursor: pointer;

	transition: all 0.2s ease;
	user-select: none;
}

@media (max-width: 992px) {
	.products-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.products-list {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.product-banner {
		padding: 28px 24px;
		min-height: auto;
	}

	.product-banner h3 {
		font-size: 1.5rem;
	}

	.product-banner p {
		font-size: 1rem;
	}
}

.motto {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 20px;

	background: linear-gradient(
		135deg,
		var(--blue-basic),
		var(--blue-secondary)
	);
	text-shadow: 2px 2px black;
	padding: 20px 30px;
	border-radius: 16px;

	color: var(--header-white);
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 80px;
	margin-bottom: 80px;

	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.motto .item {
	flex: 1;
	text-align: center;
	padding: 10px 15px;

	border-right: 1px solid var(--highlight-black-2);
}

.motto .item:last-child {
	border-right: none;
}

.motto .number {
	display: block;
	font-size: 2rem;
	font-weight: 700;
}

.motto .text {
	font-size: 0.88rem;
	opacity: 0.9;
}

.motto .highlight {
	background-color: var(--highlight-black);
	border-radius: 12px;
}

.motto {
	animation: fadeUp 0.8s ease;
}

.motto .item .number:nth-child(1) {
	font-size: 25px;
}

.motto .item:nth-child(4) {
	font-size: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (min-width: 360px) and (max-width: 530px) {
	.motto {
		gap: 8px;
		display: flex;
		flex-wrap: wrap;
	}
	.motto .item:nth-child(3) {
		border-right: none;
	}
}

@media (max-width: 360px) {
	.motto {
		gap: 8px;
		display: flex;
		flex-wrap: wrap;
	}
	.motto .item {
		border: none;
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Process */

#proces {
	position: relative;
	min-height: 600px;
	overflow: hidden;

	display: flex;
	align-items: center;
	justify-content: center;
}

#proces .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background: linear-gradient(135deg, var(--header-white), gray);
	opacity: 0.7;

	z-index: 2;
}

#proces .content {
	position: relative;
	z-index: 3;

	max-width: 1200px;
	padding: 40px;
	margin-bottom: -150px;

	color: var(--header-white);
	text-align: center;
}

.process-title {
	color: var(--blue-basic);
	max-width: 600px;
	text-align: left;
	font-size: 40px;
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-items: left;
}
.timeline {
	margin-bottom: 200px;
}

.timeline-title {
	text-align: center;
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--blue-basic);
	margin-bottom: 6rem;
}
.timeline-line {
	position: relative;
	max-width: 900px;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding: 4rem 0;
}

.timeline-line::before {
	content: "";
	position: absolute;
	left: 24px;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(
		180deg,
		var(--first-step),
		var(--second-step),
		var(--third-step)
	);
	border-radius: 20px;
}

.timeline-item {
	position: relative;
	display: flex;
	align-items: flex-start;
	width: 100%;
}

.dot {
	position: absolute;
	left: 12px;
	top: 22px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: white;
	border: 5px solid var(--blue-banner);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
	z-index: 2;
}

.card {
	margin-left: 70px;
	width: calc(100% - 80px);
	font-size: 1.2rem;
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	color: var(--font-banner);
	position: relative;
}

.first-step {
	background: var(--first-step);
}
.second-step {
	background: var(--second-step);
}
.third-step {
	background: var(--third-step);
}
.top .card::after,
.bottom .card::after {
	display: none;
}

@media (max-width: 600px) {
	#proces .content {
		padding: 5px;
	}
	.card {
		margin-left: 50px;
		font-size: 0.8rem;
		padding: 10px;
	}
	.timeline {
		padding: 0;
	}
}

/* Realization */

.slider-title {
	color: var(--blue-basic);
	max-width: 600px;
	text-align: left;
	font-size: 40px;
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-items: left;
	margin-left: 5%;
	margin-bottom: 10px;
}

.gallery-wrapper {
	overflow: hidden;
	position: relative;
}

.gallery {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 20px;

	/* smooth feel */
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;

	cursor: grab;
}

.gallery:active {
	cursor: grabbing;
}

.gallery::-webkit-scrollbar {
	display: none;
}

.gallery-wrapper {
	overflow: hidden;
	position: relative;
}

.gallery {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 20px;

	/* smooth feel */
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;

	cursor: grab;
}

.gallery:active {
	cursor: grabbing;
}

.gallery::-webkit-scrollbar {
	display: none;
}

.gallery-wrapper {
	overflow: hidden;
	position: relative;
}

.gallery {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 20px;

	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;

	cursor: grab;
}

.gallery:active {
	cursor: grabbing;
}

.gallery::-webkit-scrollbar {
	display: none;
}

.gallery-wrapper {
	position: relative;
}

.gallery {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 20px;
	scrollbar-width: none;
}

.gallery::-webkit-scrollbar {
	display: none;
}

.gallery-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	cursor: pointer;

	background: rgba(0, 0, 0, 0.4);
	color: white;
	font-size: 32px;

	display: flex;
	align-items: center;
	justify-content: center;

	opacity: 0;
	transition: 0.25s ease;
	z-index: 10;
}

.gallery-wrapper:hover .gallery-btn {
	opacity: 1;
}

.gallery-btn:hover {
	background: rgba(0, 0, 0, 0.7);
}

.gallery-btn.left {
	left: 10px;
}

.gallery-btn.right {
	right: 10px;
}

.photo {
	min-width: 260px;
	flex: 0 0 auto;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	scroll-snap-align: start;
	transition: transform 0.25s ease;
}

.photo img {
	-webkit-user-drag: none;
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.photo:hover img {
	transform: scale(1.05);
}

.photo span {
	position: absolute;
	left: 10px;
	bottom: 10px;
	background-color: var(--blue-basic);
	color: white;
	padding: 6px 10px;
	border-radius: 10px;
	font-size: 14px;
	opacity: 0.89;
	transition: 0.2s;
}

.photo:hover span {
	opacity: 1;
	background: rgba(0, 0, 0, 0.8);
}

.lightbox {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

	background-color: rgba(0, 0, 0, 0.85);
	justify-content: center;
	align-items: center;
}

.lightbox img {
	max-width: 90%;
	max-height: 85%;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	animation: zoom 0.3s ease;
}

@keyframes zoom {
	from {
		transform: scale(0.7);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.lightbox .close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 40px;
	color: white;
	cursor: pointer;
}

/* Contact form */

.form-container {
	background-color: var(--contact-form-blue);
	padding: 40px;
	border-radius: 16px;
	width: 100%;

	max-width: 600px;
	color: var(--header-white);
}

.contact-img {
	max-width: 650px;
	height: auto;
	margin-left: 40px;
	margin-right: 40px;
	margin-bottom: 0px;
	border-radius: 25px;
}

@media (max-width: 600px) {
	.contact-img {
		max-width: 300px;
		margin-bottom: 40px;
	}
}

@media (max-width: 1400px) {
	.contact-img {
		margin-bottom: 40px;
	}
}

.form-container h2 {
	margin-bottom: 20px;
	font-size: 32px;
	text-align: center;
	letter-spacing: 0.5px;
	text-shadow: 2px 2px black;
}

.input-group {
	margin-bottom: 15px;
}

label {
	display: block;
	margin-bottom: 6px;
	font-size: 18px;
	text-shadow: 2px 2px black;
	color: var(--font-secondary);
}

input {
	width: 95%;
	padding: 12px 14px;
	border: 1px solid var(--input-blue);
	border-radius: 10px;
	background-color: var(--background-form-black);
	color: var(--font-banner);
	outline: none;
	font-size: 18px;
	transition: 0.2s ease;
}

input:focus {
	border-color: var(--input-focus-blue);
	box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.2);
}

/* Contact page form */

.contact-h1 {
	margin-top: 100px;
	margin-left: 10%;
	color: var(--blue-basic);
	text-shadow: none;
}

.form-container-2 {
	background-color: var(--contact-form-blue);
	padding: 40px;
	border-radius: 16px;
	width: 100%;
	margin-top: 40px;
	margin-bottom: 40px;
	max-width: 600px;
	box-shadow:
		0 6px 12px 0 rgba(0, 0, 0, 0.2),
		0 6px 12px 0 rgba(0, 0, 0, 0.2),
		0 6px 12px 0 rgba(0, 0, 0, 0.2),
		0 6px 12px 0 rgba(0, 0, 0, 0.2) !important;
	color: var(--header-white);
}

.contact-grid {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.contact-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.info-card {
	background-color: var(--contact-form-blue);
	border: 1px solid var(--blue-secondary);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 5px;
	width: 400px;
	backdrop-filter: blur(6px);
	transition: all 0.25s ease;
}

@media (max-width: 500px) {
	.info-card {
		width: 300px;
	}
}

.info-card h3 {
	margin-bottom: 10px;
	font-size: 18px;
	color: var(--font-secondary);
	text-shadow: 2px 2px black;
}

.info-card a,
.info-card p {
	color: var(--font-banner);
	text-decoration: none;
	line-height: 1.6;
}

.info-card a:hover {
	color: var(--link-hover);
}

select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--blue-secondary);
	border-radius: 10px;
	background-color: var(--blue-basic);
	color: var(--font-secondary);
	font-size: 18px;
	outline: none;
	cursor: pointer;
	transition: 0.2s ease;
}

select:focus {
	border-color: var(--blue-blur);
	box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.2);
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 20px 0;
	cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 3px;
	flex-shrink: 0;
	accent-color: var(--blue-blur);
}

.checkbox-group span {
	color: var(--font-secondary);
	font-size: 14px;
	line-height: 1.5;
}

input,
select {
	width: 100%;
	box-sizing: border-box;
	background-color: var(--blue-basic);
	border: 1px solid var(--blue-secondary);
	color: var(--font-secondary);
}

input:focus,
select:focus {
	border-color: var(--blue-blur);
	box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.2);
}

/* About */

.about-h1 {
	margin-top: 100px;
	color: var(--blue-basic);
	text-shadow: none;
	text-align: center;
}

.about-article {
	padding: 40px 20px;
	text-align: left;
}

.about-column {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
}

.about-article h2 {
	font-size: 2.5rem;
	color: var(--blue-basic);
	margin-bottom: 20px;
	text-align: left;
	max-width: 1200px;
	margin: 0 auto;
}

.about-article h3 {
	font-size: 1.5rem;
	color: var(--blue-basic);
	margin-bottom: 20px;
	text-align: left;
	max-width: 1200px;
	margin: 0 auto;
}

.about-article p {
	font-size: 1.2rem;
	line-height: 1.9;
	color: var(--font-default);
	max-width: 1200px;
	margin: 0 auto;
}

.about-list {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	font-size: 1.2rem;
}
.about-list li {
	margin: 10px 0;
}
.about-why {
	max-width: 600px;
}

.about-img {
	max-height: 700px;
	height: auto;
	margin-left: 40px;
	margin-right: 40px;
	margin-bottom: 0px;
	border-radius: 25px;
}

.why-item {
	padding: 20px;
}

.onas-motto {
	text-align: center;
	background-image: url(../assets/images/background.jpg);
	min-height: 500px;
	margin-top: 50px;
}

.onas-motto p {
	margin: 5px;
	color: var(--blue-basic);
	font-weight: 600;
	font-size: 2.3rem;
}

.onas-motto-first {
	padding-top: 50px !important;
	color: var(--blue-basic);
	font-weight: 600;
	font-size: 2.3rem;
	text-align: center;
	margin-top: 40px;
}

@media (max-width: 500px) {
	.about-img {
		max-width: 280px;
		margin: 0;
		padding: 0;
	}
}

@media (max-width: 1300px) {
	.about-why {
		max-width: 1300px;
	}
	.about-img {
		margin-top: 50px;
	}
}

#oferta {
	scroll-margin-top: 100px;
	background: linear-gradient(135deg, var(--header-white), gray);
	padding-top: 80px;
	padding-bottom: 80px;
}

#proces {
	scroll-margin-top: 100px;
	background-image: url(../assets/images/34.jpeg);
	background-repeat: no-repeat;
	background-size: 200% 200%;
	animation: bgDrift 18s ease-in-out infinite;
}

#kontakt {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding-bottom: 80px;
	padding-top: 80px;
}

#onas {
	padding-bottom: 100px;
}

@keyframes bgDrift {
	0% {
		background-position: 30% 50%;
	}
	50% {
		background-position: 70% 50%;
	}
	100% {
		background-position: 30% 50%;
	}
}

#realizacje {
	scroll-margin-top: 100px;
}

/* Buttons */

.button {
	width: 120px;
	height: fit-content;
	text-align: center;
	border-radius: 15px;
	background-color: var(--blue-basic);
	color: var(--font-button);
	text-shadow: 2px 2px black;
	border: 2px solid white;
	transition: background-color 0.45s;
	padding: 10px 10px;
	cursor: pointer;
}

.submit-button {
	margin-top: 40px;
	margin-bottom: 20px;
	width: 100%;
	font-size: 18px;
}

.big {
	width: 280px;
}

@media (max-width: 500px) {
	.big {
		width: 240px;
		margin-left: -10px;
	}
}

.separate {
	display: flex;
	align-content: center;
	justify-content: space-around;
	box-shadow:
		0 6px 12px 0 rgba(0, 0, 0, 0.2),
		0 6px 12px 0 rgba(0, 0, 0, 0.2),
		0 6px 12px 0 rgba(0, 0, 0, 0.2),
		0 6px 12px 0 rgba(0, 0, 0, 0.2) !important;
}
.button:hover {
	background-color: var(--blue-secondary);
	transition: background-color 0.45s;
}
.separate-big {
	margin-top: 20px;
	box-shadow:
		0 6px 12px 0 rgba(0, 0, 0, 0.2),
		0 6px 12px 0 rgba(0, 0, 0, 0.2),
		0 6px 12px 0 rgba(0, 0, 0, 0.2),
		0 6px 12px 0 rgba(0, 0, 0, 0.2) !important;
}

/* Banners animated */

.banner {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.6s ease;
}

.banner.show {
	opacity: 1;
	transform: translateY(0);
}

/* Footer */

footer {
	box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.2);
	padding: 20px;
	font-size: 18px;
	text-align: left;
	background: linear-gradient(
		135deg,
		var(--blue-basic),
		var(--blue-secondary)
	);
	color: var(--font-secondary);
	text-shadow: 2px 2px black;
}

footer a {
	text-shadow: 2px 2px black;
	color: var(--font-secondary);
}

.footer-contact {
	text-align: left;
}

.footer-section {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-evenly;
}

.footer-motto {
	font-size: 20px;
}

.footer-logo {
	background-color: var(--header-white);
	border: 2px solid black;
	border-radius: 10px;
	margin-top: 20px;
	width: 100px;
	height: 100px;
}
