:root {
	--color-primary: #00a651;
	--color-secondary: #12392f;
	--color-menu: #052158;
	--color-highlight: #e22443;
	--color-highlight-hover: #bf1f39;
	--color-whatsapp: #00a651;
	--color-whatsapp-hover: #e22443;
	--color-accent: #ffffff;
	--color-text: #1d2127;
	--header-height: 90px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 8px);
}

body {
	margin: 0;
	padding-top: calc(var(--header-height) + 8px);
	color: var(--color-text);
	font-family: "Poppins", Arial, sans-serif;
	background: #ffffff;
}

a,
a:hover,
a:focus {
	text-decoration: none;
}

#navigation .navbar {
	min-height: var(--header-height);
	margin: 0;
	border: 0;
	border-radius: 0;
	background: #ffffff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
	padding-bottom: 8px;
}

#navigation .navbar .container {
	min-height: var(--header-height);
}

#navigation .navbar-header {
	width: 31%;
}

#navigation .navbar-brand {
	display: flex;
	align-items: center;
	height: var(--header-height);
	padding: 0;
}

#navigation .navbar-brand h1 {
	margin: 0;
	padding: 0;
}

#navigation .navbar-brand img {
	display: block;
	width: 210px;
	max-width: 100%;
	height: auto;
}

#navigation .navbar-collapse {
	float: right;
	width: 69%;
	padding: 0;
	border: 0;
	box-shadow: none;
}

#navigation .navbar-nav.navbar-right {
	margin-top: 28px;
}

#navigation .navbar-nav.navbar-right li {
	padding: 0 1px;
}

#navigation .navbar-nav.navbar-right li a {
	color: var(--color-menu);
	font-family: "Roboto", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	padding: 6px 15px;
	text-transform: uppercase;
	transition: all 0.35s ease;
}

#navigation .navbar-inverse .navbar-nav .active a,
#navigation .navbar-inverse .navbar-nav .active a:focus,
#navigation .navbar-nav.navbar-right li a:hover,
#navigation .navbar-nav.navbar-right li a:focus {
	color: var(--color-accent);
	background-color: var(--color-menu);
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 600px;
	padding-top: 80px;
	background-image: url("../images/hero-focco-desktop.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-container {
	width: 100%;
}

.hero-content {
	max-width: 604px;
	margin-left: 64px;
}

.hero h1 {
	max-width: 430px;
	margin: 0;
	color: var(--color-accent);
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
}

.hero-button {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: 50px;
	padding: 25px 80px;
	border: 0;
	border-radius: 4px;
	color: var(--color-accent);
	background: var(--color-whatsapp);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	transition: background 0.2s ease, color 0.2s ease;
}

.hero-button:hover,
.hero-button:focus {
	color: var(--color-accent);
	background: var(--color-whatsapp-hover);
}

.hero-button-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	font-size: 24px;
	line-height: 24px;
	text-align: center;
	flex: 0 0 24px;
}

.services {
	padding: 80px 0 70px;
	background: #ffffff;
}

.title-one {
	margin: 0;
	color: var(--color-menu);
	font-size: 60px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0;
}

.section-divider {
	width: 360px;
	height: 2px;
	margin: 18px auto 20px;
	background: var(--color-highlight);
}

.services-heading {
	max-width: 520px;
	margin: 0 auto;
	color: var(--color-text);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
}

.services-grid {
	margin-top: 50px;
}

.services-grid [class*="col-"] {
	margin-bottom: 30px;
}

.single-services {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 360px;
	padding: 42px 30px 34px;
	border-radius: 10px;
	color: var(--color-accent);
	background: var(--color-menu);
	box-shadow: 5px 5px 10px rgba(8, 9, 9, 0.25);
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.single-services:hover,
.single-services:focus,
.single-services:focus-within {
	background: var(--color-highlight);
	box-shadow: 7px 10px 18px rgba(8, 9, 9, 0.28);
	transform: translateY(-4px);
	outline: none;
}

.single-services:hover .service-icon,
.single-services:focus .service-icon,
.single-services:focus-within .service-icon {
	border-color: rgba(255, 255, 255, 0.92);
	background: var(--color-highlight-hover);
}

.single-services:focus-visible {
	outline: 3px solid rgba(226, 36, 67, 0.35);
	outline-offset: 4px;
}

.service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: 24px;
	border: 2px solid rgba(255, 255, 255, 0.82);
	border-radius: 50%;
	color: var(--color-accent);
	font-size: 30px;
}

.single-services h3 {
	margin: 0;
	color: var(--color-accent);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}

.single-services p {
	max-height: 0;
	margin: 0;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.92);
	opacity: 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
	transform: translateY(10px);
	transition: max-height 0.25s ease, margin-top 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.single-services:hover p,
.single-services:focus p,
.single-services:focus-within p {
	max-height: 220px;
	margin-top: 20px;
	opacity: 1;
	transform: translateY(0);
}

.consulting {
	position: relative;
	overflow: hidden;
	padding: 80px 0;
	background: #ffffff;
}

.consulting .container {
	position: relative;
	z-index: 1;
}

.consulting-row {
	display: flex;
	align-items: center;
}

.consulting-card {
	margin-right: 0;
	margin-left: 0;
	border-radius: 10px;
	background: var(--color-menu);
}

.consulting-card > [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

.consulting-figure {
	align-self: flex-end;
}

.consulting-content {
	max-width: 620px;
	padding: 0 0 30px 30px;
}

.consulting h2 {
	margin: 0;
	color: var(--color-accent);
	font-size: 60px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 1px;
}

.consulting-divider {
	width: 30%;
	height: 2px;
	margin: 10px 0 10px;
	background: var(--color-highlight);
}

.consulting p {
	max-width: 72%;
	margin: 0 0 24px;
	color: var(--color-accent);
	font-size: 20px;
	font-weight: 400;
	line-height: 25px;
}

.consulting-button {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 20px 80px;
	border: 0;
	border-radius: 4px;
	color: var(--color-accent);
	background: var(--color-whatsapp);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	transition: background 0.2s ease, color 0.2s ease;
}

.consulting-button:hover,
.consulting-button:focus {
	color: var(--color-accent);
	background: var(--color-highlight);
}

.consulting-image {
	text-align: left;
}

.consulting-image img {
	display: inline-block;
	width: 90%;
	max-width: 350px;
	height: auto;
	margin-top: -100px;
	padding-left: 30px;
	vertical-align: bottom;
}

.about {
	padding: 50px 0 0;
	background: #ffffff;
}

.about-row {
	display: flex;
	align-items: center;
}

.about-content {
	padding: 0 50px 50px 0;
}

.about h2 {
	margin: 0;
	color: var(--color-text);
	font-size: 70px;
	font-weight: 900;
	line-height: 1.2;
}

.about-divider {
	width: 30%;
	height: 2px;
	margin: 10px 0 18px;
	background: var(--color-highlight);
}

.about p {
	margin: 0;
	color: var(--color-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
}

.about-image {
	text-align: right;
}

.about-image img {
	display: inline-block;
	width: 90%;
	max-width: 520px;
	height: auto;
	vertical-align: bottom;
}

.mission-values {
	padding: 70px 0 20px;
	background: #ffffff;
}

.mission-values-grid {
	display: flex;
	flex-wrap: wrap;
}

.mission-values-grid [class*="col-"] {
	display: flex;
	margin-bottom: 30px;
}

.mission-card {
	width: 100%;
	min-height: 310px;
	padding: 34px 28px 30px;
	border-radius: 10px;
	border: 0;
	background: var(--color-menu);
	box-shadow: 5px 5px 10px rgba(8, 9, 9, 0.16);
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mission-card:hover,
.mission-card:focus-within {
	background: var(--color-highlight);
	box-shadow: 7px 10px 18px rgba(8, 9, 9, 0.22);
	transform: translateY(-4px);
}

.mission-icon {
	display: inline-block;
	margin-bottom: 22px;
	color: var(--color-accent);
	font-size: 52px;
	line-height: 1;
	transition: color 0.25s ease;
}

.mission-card:hover .mission-icon,
.mission-card:focus-within .mission-icon {
	color: var(--color-accent);
}

.mission-card h3 {
	margin: 0 0 16px;
	color: var(--color-accent);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	transition: color 0.25s ease;
}

.mission-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
	transition: color 0.25s ease;
}

.mission-card:hover h3,
.mission-card:hover p,
.mission-card:focus-within h3,
.mission-card:focus-within p {
	color: var(--color-accent);
}

.contact {
	padding: 55px 0 0;
	background: var(--color-menu);
}

.contact-title {
	margin: 0;
	color: var(--color-accent);
	font-size: 60px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0;
}

.contact-grid {
	display: flex;
	align-items: flex-start;
	margin-top: 0;
}

.contact-column {
	padding: 0 22px;
}

.focco-form {
	display: grid;
	gap: 16px;
	margin-top: 22px;
	padding: 0;
}

.focco-form input,
.focco-form textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 4px;
	color: var(--color-text);
	background: rgba(255, 255, 255, 0.98);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	box-shadow: none;
	outline: none;
}

.focco-form textarea {
	min-height: 130px;
	resize: vertical;
}

.focco-form input:focus,
.focco-form textarea:focus {
	border-color: rgba(255, 255, 255, 0.6);
}

.focco-form button {
	width: fit-content;
	padding: 14px 24px;
	border: 0;
	border-radius: 4px;
	color: var(--color-accent);
	background: var(--color-highlight);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: background 0.2s ease, color 0.2s ease;
}

.focco-form button:hover,
.focco-form button:focus {
	background: #c01733;
}

.contact-info {
	margin-top: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 32px;
	padding: 0 22px 34px;
}

.contact-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	border: 0;
	border-radius: 0;
	color: var(--color-accent);
	background: transparent;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.contact-chip:hover,
.contact-chip:focus {
	color: var(--color-accent);
	background: transparent;
}

.contact-chip i {
	width: 16px;
	color: var(--color-accent);
	font-size: 16px;
	text-align: center;
	flex: 0 0 16px;
}

.contact-chip-social {
	width: auto;
}

.contact-social {
	display: none;
}

.contact-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 6px;
	color: var(--color-accent);
	font-size: 22px;
	background: rgba(255, 255, 255, 0.08);
	transition: background 0.2s ease, color 0.2s ease;
}

.contact-social a:hover,
.contact-social a:focus {
	color: var(--color-accent);
	background: var(--color-highlight);
}

.contact-map {
	margin-top: 22px;
	overflow: hidden;
	border-radius: 8px;
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: 300px;
	border: 0;
}

#footer {
	display: block;
	width: 100%;
	background-color: #000000;
	color: #ffffff;
	font-size: 16px;
	position: relative;
	padding: 32px 0 64px 0;
}

#footer p {
	margin: 0;
	line-height: 1.5;
}

@media (max-width: 991px) {
	#navigation .navbar-header {
		flex-basis: 28%;
	}

	#navigation .navbar-brand img {
		width: 190px;
	}

	#navigation .navbar-nav.navbar-right li a {
		font-size: 14px;
		padding-right: 10px;
		padding-left: 10px;
	}

	.hero-content {
		margin-left: 36px;
	}

	.hero h1 {
		max-width: 380px;
	}

	.services {
		padding: 60px 0 50px;
	}

	.title-one {
		font-size: 50px;
	}

	.single-services {
		min-height: 335px;
	}

	.consulting {
		padding: 20px;
	}

	.consulting h2 {
		font-size: 35px;
	}

	.consulting p {
		max-width: 300px;
		font-size: 18px;
	}

	.consulting-content {
		padding: 20px 0;
	}

	.consulting-image img {
		width: 100%;
		margin-top: -70px;
		padding-left: 0;
	}

	.about-content {
		padding: 0 20px 40px 10px;
	}

	.about h2 {
		font-size: 35px;
	}

	.about-image img {
		width: 100%;
	}

	.mission-values {
		padding: 55px 0 10px;
	}

	.mission-values-grid [class*="col-"] {
		display: flex;
		margin-bottom: 20px;
	}

	.mission-card {
		min-height: 0;
		padding: 28px 22px 26px;
	}

	.mission-card h3 {
		font-size: 22px;
	}

	.mission-icon {
		font-size: 46px;
	}

	.contact {
		padding: 42px 0 0;
	}

	.contact-title {
		font-size: 35px;
	}

	.contact-grid {
		display: block;
		margin-top: 18px;
	}

	.contact-column {
		padding: 0 10px;
	}

	.focco-form {
		padding: 0;
	}

	.contact-info {
		flex-wrap: wrap;
		gap: 18px 28px;
		padding: 28px 10px 30px;
	}

}

@media (max-width: 767px) {
	:root {
		--header-height: 75px;
	}

	#navigation {
		width: 100%;
	}

	#navigation .navbar .container {
		display: block;
		min-height: var(--header-height);
		padding-right: 20px;
		padding-left: 20px;
	}

	#navigation .navbar {
		background: #ffffff;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
	}

	#navigation .navbar-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: var(--header-height);
	}

	#navigation .navbar-brand {
		width: 50%;
		height: var(--header-height);
	}

	#navigation .navbar-brand img {
		width: 80%;
		min-width: 150px;
	}

	#navigation .navbar-toggle {
		margin: 20px 0 0;
		border: 1px solid var(--color-menu);
		background: #ffffff;
	}

	#navigation .navbar-toggle:hover,
	#navigation .navbar-toggle:focus {
		background: #ffffff;
	}

	#navigation .navbar-toggle .icon-bar {
		background-color: var(--color-menu);
	}

	#navigation .navbar-collapse {
		float: none;
		width: auto;
		margin-right: -20px;
		margin-left: -20px;
		padding: 0;
		background: #ffffff;
	}

	#navigation .navbar-nav.navbar-right {
		display: block;
		float: none;
		margin-top: 0;
		margin-right: 0;
		margin-left: 0;
		padding-top: 0;
	}

	#navigation .navbar-nav.navbar-right li a {
		color: var(--color-menu);
		font-size: 15px;
		padding: 6px 15px;
	}

	#navigation .navbar-inverse .navbar-nav .active a,
	#navigation .navbar-inverse .navbar-nav .active a:focus,
	#navigation .navbar-nav.navbar-right li a:hover,
	#navigation .navbar-nav.navbar-right li a:focus {
		color: #ffffff;
		background-color: var(--color-menu);
	}

	.hero {
		min-height: 590px;
		padding-top: 0;
		background-image: url("../images/hero-focco-mobile.jpg");
		background-position: top center;
	}

	.hero-container {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 590px;
	}

	.hero-content {
		width: 100%;
		margin-left: 0;
		padding-top: 150px;
		text-align: center;
	}

	.hero h1 {
		width: 240px;
		max-width: 240px;
		margin-right: auto;
		margin-left: auto;
		text-align: left;
		font-size: 25px;
	}

	.hero-button {
		justify-content: center;
		width: auto;
		max-width: calc(100% - 40px);
		margin-top: 50px;
		padding: 20px 25px;
		white-space: normal;
	}

	.services {
		padding: 50px 0 35px;
	}

	.title-one {
		font-size: 30px;
	}

	.section-divider {
		width: 240px;
	}

	.services-heading {
		padding-right: 20px;
		padding-left: 20px;
		font-size: 16px;
	}

	.services-grid {
		margin-top: 28px;
	}

	.services-grid [class*="col-"] {
		margin-bottom: 20px;
	}

	.single-services {
		min-height: 0;
		padding: 32px 24px;
	}

	.single-services h3 {
		font-size: 21px;
	}

	.consulting {
		padding: 30px 0 0;
		text-align: center;
	}

	.consulting-row {
		display: block;
	}

	.consulting-card {
		margin-right: 0;
		margin-left: 0;
		border-radius: 10px;
	}

	.consulting-content {
		max-width: none;
		padding: 20px;
	}

	.consulting h2 {
		font-size: 30px;
	}

	.consulting-divider {
		width: 140px;
		margin-right: auto;
		margin-left: auto;
	}

	.consulting p {
		max-width: 346px;
		margin: 0 auto 24px;
		padding-right: 10px;
		padding-left: 10px;
		font-size: 20px;
		line-height: 25px;
	}

	.consulting-button {
		width: auto;
		max-width: calc(100% - 40px);
		padding: 15px 30px;
	}

	.consulting-image {
		display: none;
	}

	.about {
		padding: 35px 0 0;
		text-align: center;
	}

	.about-row {
		display: block;
	}

	.about-content {
		padding: 0 20px;
	}

	.about h2 {
		font-size: 30px;
	}

	.about-divider {
		width: 140px;
		margin-right: auto;
		margin-left: auto;
	}

	.about p {
		font-size: 15px;
		line-height: 1.6;
		text-align: left;
	}

	.about-image {
		margin-top: 30px;
		text-align: center;
	}

	.about-image img {
		width: 100%;
	}

	.mission-values {
		padding: 40px 0 0;
	}

	.mission-values-grid [class*="col-"] {
		display: block;
		margin-bottom: 18px;
	}

	.mission-card {
		min-height: 0;
		padding: 30px 22px 26px;
	}

	.mission-card h3 {
		font-size: 21px;
	}

	.mission-icon {
		font-size: 42px;
		margin-bottom: 18px;
	}

	.mission-card p {
		text-align: left;
	}

	.contact {
		padding: 32px 0 0;
	}

	.contact-title {
		font-size: 30px;
	}

	.contact-grid {
		margin-top: 14px;
	}

	.contact-column {
		padding: 0 20px;
	}

	.focco-form {
		gap: 10px;
	}

	.focco-form button {
		width: 100%;
	}

	.contact-info {
		justify-content: flex-start;
		gap: 14px;
		padding: 24px 20px 28px;
	}

	.contact-map {
		margin-top: 18px;
	}

	.contact-map iframe {
		height: 260px;
	}

	#footer p {
		font-size: 14px;
	}
}
