

.btn-secondary,
.btn-primary {
	min-width: 130px;
}

.container-home {
    padding: 0;
}

@media (min-width: 800px) {
	.container-home {
		padding: 0 20px;
	}
}




/* ======================== */
/* HERO SECTION             */
/* ======================== */
.hero {
	text-align: center;
	padding: 2rem 0;
	margin: 0 0 4rem 0;
	background: #ffffff;
}

.slogan-main {
	font-size: 2.2rem;
}

@media (min-width: 800px) {	
	.hero {
		padding: 3rem 0;
	}
}

.slogan-text {
	font-size: 1.2rem;
	padding: 1rem 0;
	margin: 0 auto;
}

.hero-try {
	margin-top: 1rem;
	text-align: center;
}

.hero-try .btn-try-it {
	font-size: 1.25rem;
}

/* ======================== */
/* CAMMON SECTION
/* ======================== */



/* ======================== */
/* APPLICATIONS SECTION     */
/* ======================== */
.applications {
	background: #f0f0f0;
	padding: 2rem 1rem 4rem 1rem;
	border-radius: var(--r-01);
	border: 1px solid #e9e9e9;
	margin: 0 -20px;
}

.applications-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.application {
	background: #ffffff;
	padding: 1.5rem 4%;
	border: 1px solid #e9e9e9;
	border-radius: var(--r-01);
}

.application-columns {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.application-image-column,
.application-content-column {
	flex: 1;
}

.application-image-column {
	display: flex;
	align-items: center;
	justify-content: center;
}

.application-content-column {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.application-content-column header {
	margin-top: -1rem;
}

.application-title {
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
}

.application-title sup {
	font-size: 0.67em;
	color: #fa4004;
}

.application-buttons {
	text-align: center;
	margin: 2rem 0 1rem;
	display: flex;
	gap: 1rem;
}

.application-buttons .btn-secondary,
.application-buttons .btn-primary {
	flex: 1;
	min-width: auto;
}

@media (min-width: 800px) {
	.application-buttons {
		text-align: right;
		display: block;
	}
	
	.application-buttons .btn-secondary,
	.application-buttons .btn-primary {
		flex: none;
		width: auto;
		min-width: 130px;
	}
	
	.btn-try-it {
		margin-left: 1rem;
	}
}

.section-title {
	text-align: center;
	padding-bottom: 1.5rem;
}

.application-image {
	width: 100%;
	max-width: 30rem;
	margin: 0 auto;
}

.application-image img {
	width: 100%;
	height: auto;
	display: block;
}

.more-text {
	margin-top: 1rem;
}

/* ======================== */
/* DEMO SECTION             */
/* ======================== */
.demo {
	background: #ffffff;
	text-align: center;
	margin: 10rem auto;
}

.demo p {
	margin: -1rem auto;
	padding-bottom: 2rem;
	width: 90%;
}

/* ======================== */
/* TEXT ELEMENTS            */
/* ======================== */
.application-text p,
.advantage-content p,
.more-text p,
.more-text ul,
.more-text ol,
.more-text li,
.slogan-text,
.demo p,
.faq-answer p {
	font-size: 1.2rem;
}

/* ======================== */
/* LIST STYLING             */
/* ======================== */
.more-text ul {
	list-style-type: '▸ ';
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.more-text ol {
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.more-text li {
	margin-bottom: 0.5rem;
}

/* ======================== */
/* ADVANTAGES SECTION       */
/* ======================== */
.advantages {
	background: #f0f0f0;
	padding: 2rem 1rem 4rem 1rem;
	border-radius: var(--r-01);
	border: 1px solid #e9e9e9;
	margin: 0 -20px;
}

.advantages-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.advantage {
	background: #ffffff;
	padding: 1rem 4%;
	border: 1px solid #e9e9e9;
	border-radius: var(--r-01);
}

.advantage-buttons {
	text-align: right;
	margin: 1rem 0;
}

/* ======================== */
/* FAQ SECTION              */
/* ======================== */
.faq {
	background: #f0f0f0;
	padding: 2rem 1rem 4rem 1rem;
	border-radius: var(--r-01);
	border: 1px solid #e9e9e9;
	margin: 0 -20px;
}

.faq .section-title {
	text-align: center;
}

.faq-list {
	max-width: 100%;
	padding-bottom: 0.5rem;
}

.faq-item {
	border: 1px solid #e9e9e9;
	margin: 0.75rem 0;
	padding: 1.5rem;
	background: #ffffff;
	border-radius: var(--r-01);
}

.faq-question {
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	padding-right: 2rem;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	font-weight: 600;
	transition: all 0.5s ease;
}

.faq-question.active::after {
	content: '−';
	transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
	font-size: 1rem;
	color: #222222;
	display: none;
}

.faq-answer.active {
	padding: 1.5rem 0 0 0;
	max-height: 500px;
}

/* ======================== */
/* PARTNERS SECTION         */
/* ======================== */
.partners {
	background: #ffffff;
	padding: 2rem 1rem 4rem 1rem;
	text-align: center;
	margin: 2rem 0;
	border-bottom: 1px solid #e9e9e9;
	border-radius: var(--r-01);
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 1rem;
}

.partner-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem;
}

.partner-logo img {
	max-width: 100%;
	max-height: 4rem;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.partner-logo:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ======================== */
/* CONTACT FORM SECTION     */
/* ======================== */
.contact {
	padding: 2rem 1rem 4rem 1rem;
	background: #ffffff;
	text-align: center;
	margin: 2rem 0 2.5rem;
}

.contact-container {
	max-width: 800px;
	margin: 0 auto;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
	padding: 1rem;
	border: 1px solid #000;
	border-radius: var(--r-01);
	font-family: inherit;
	font-size: 1.1rem;
	background-color: white;
}

.form-group textarea {
	min-height: 200px;
}

.checkbox-group {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-top: 0.25rem;
}

.checkbox-group label {
	font-size: 0.9rem;
	line-height: 1.4;
	text-align: left;
}

.submit-group {
	margin-top: 1rem;
	display: flex;
	justify-content: center;
}

.submit-group button {
	padding: 0.75rem 2rem;
}

/* ======================== */
/* RESPONSIVE STYLES        */
/* ======================== */
@media (min-width: 600px) {
	.partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 800px) {
	.application-columns {
		flex-direction: row;
	}
	.slogan-text {
		margin: 3rem auto;
		width: 80%;
	}
	.demo p {
		width: 80%;
	}
}

@media (min-width: 1300px) {
	.partners-grid { grid-template-columns: repeat(6, 1fr); }
	.slogan-text { width: 60%; }
	.demo { margin: 12rem auto; }
	.demo p { width: 50%; }
}