@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', sans-serif;
	overflow-x: hidden;
}

/* ALL BANNERS */
.banners {
	display: flex;
	max-width: 1300px;
	margin: 0 auto;
	padding-top: 120px;
	padding-bottom: 50px;
	justify-content: center;
	flex-wrap: nowrap;
}

.banners__fiz__lic,
.banners__yr__lic {
	text-align: center;
}

.banners__fiz__lic p,
.banners__yr__lic p {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
}

.banners__yr__lic {
	margin-top: 20px;
}

.banner-wrapper {
	position: relative;
	display: inline-block;
}

.banner-wrapper img {
	max-width: 100%;
	display: block;
}

.banner-wrapper .button {
	position: absolute;
	left: 50%;
	bottom: 10%;
	transform: translateX(-50%);
	padding: 15px 20px;
	width: 300px;
	border: 1px solid black;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 700;
	color: black;
	transition: 0.4s ease;
}

.banner-wrapper .button:hover {
	background: black;
	color: white;
}

.banners__fiz__lic img,
.banners__yr__lic img {
	margin-top: 20px;
}

@media (max-width: 1200px) {
	.banner-wrapper .button {
		width: 260px;
		padding: 12px;
		font-size: 16px;
		bottom: 8%;
	}
}

@media (max-width: 1024px) {
	.banner-wrapper .button {
		width: 220px;
		font-size: 15px;
		padding: 10px;
		bottom: 7%;
	}

	.banners__fiz__lic p,
	.banners__yr__lic p {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.banners {
		flex-direction: column;
		align-items: center;
		padding-top: 60px;
		padding-bottom: 30px;
	}

	.banner-wrapper .button {
		width: 200px;
		font-size: 14px;
		bottom: 6%;
	}

	.banners__fiz__lic p,
	.banners__yr__lic p {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.banner-wrapper .button {
		width: 160px;
		font-size: 13px;
		padding: 8px;
		bottom: 5%;
	}

	.banners__fiz__lic p,
	.banners__yr__lic p {
		font-size: 20px;
	}
}

@media (max-width: 360px) {
	.banner-wrapper .button {
		width: 140px;
		font-size: 12px;
		padding: 6px;
		bottom: 4%;
	}
}
