/* ======== Import Roboto, Montserrat Google Font ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import 'blog.css';

/* ======== GENERAL STYLES ========== */
html, body {
	position: relative;
	overflow-x: hidden; /* Don't do this on HTML !!! */
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-family), sans-serif;
	font-size: 18px;
	color: var(--text-color);
	cursor: default;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 700 !important;
}
h1 {
	font-size: clamp(24px, 10vw, 64px);
}

h2 {
	font-size: clamp(20px, 6vw, 40px);
}

h3 {
	font-size: clamp(18px, 4vw, 28px);
}

p {
	font-size: clamp(16px, 2vw, 20px);
	color: var(--text-foreground);
	line-height: 1.6;
}

/* ======== SPACING UTILITIES ========== */
.spacing-xs {
	padding: var(--spacing-xs);
}

.spacing-sm {
	padding: var(--spacing-sm);
}

.spacing-md {
	padding: var(--spacing-md);
}

.spacing-lg {
	padding: var(--spacing-lg);
}

.spacing-xl {
	padding: var(--spacing-xl);
}

.spacing {
	padding: var(--spacing);
}

.container-fluid {
	padding: 0;
}

/* ======== BUTTON ========== */
.btn {
	display: inline-block;
	padding: 12px 32px;
	border-radius: 10px;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	margin: 40px 0;
	width: fit-content;
	text-transform: none;
	background-color: var(--primary-color) !important;
	border: 2px solid var(--primary-color);
	color: var(--button-text);
}

.btn:hover {
	background-color: transparent !important;
	color: var(--primary-color) !important;
	border: 2px solid var(--primary-color) !important;
}

.btn:focus {
	border: 2px solid var(--primary-color) !important;
	box-shadow: none !important;
}

.btn-outline-primary {
	background-color: transparent !important;
	border: 2px solid var(--primary-color) !important;
	color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
	background-color: var(--primary-color) !important;
	color: var(--button-text) !important;
}

/* ======== NAVIGATION ========== */
a {
	text-decoration: none;
	color: #000;
	cursor: pointer !important;
}

a:hover {
	color: var(--primary-color);
}

a:focus {
	color: var(--primary-color);
}
.single-post main ul {
	list-style-type: circle;
	margin: auto;
	padding-left: 3rem;
}
.single-post p {
	margin: 15px 0 !important;
	max-width: unset;
}
ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

/* ======== HEADER & NAVIGATION ========== */
/* Absolute position header so we don't have jumping page */
.site-content {
	padding-top: 95px;
}

header {
	position: absolute;
	height: 95px;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

.navbar {
	padding: var(--spacing-md) 0;
}

.navbar-brand {
	max-width: 150px;
}

.navbar-brand img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.navbar-brand .footer-logo-img {
	margin-bottom: 0 !important;
}

.logo {
	display: block;
	height: 35px;
	font-size: 24px;
	font-weight: bold;
	color: var(--text-color);
	text-decoration: none;
}

/* Main Navigation */
.nav-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

#menu-main-menu {
	gap: 3rem;
	margin-left: 120px;
}

#menu-main-menu li a {
	color: var(--text-color);
	font-size: 17px;
	font-weight: 400;
	transition: color 0.3s ease;
}

#menu-main-menu li a:hover {
	color: var(--primary-color);
}

/* Right Menu */
#menu-right-menu {
	gap: 1rem;
	font-weight: 600;
}

#menu-right-menu a {
	border: 1px solid var(--text-color);
	padding: 10px 32px;
	border-radius: 10px;
}

#menu-right-menu a:hover {
	color: var(--white);
}

#menu-right-menu a:focus {
	color: var(--white)
}

/* Default state of the sticky navbar */
.navbar {
	transition: top 0.3s ease, background 0.1s ease;
}

.sticky-nav {
	position: fixed;
	top: -150px;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: white; /* Background color becomes white when scrolled */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional box-shadow when scrolling */
}

.sticky-nav.scrolled {
	top: 0;
}

.sticky-nav #menu-right-menu a {
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: white;
}

.sticky-nav #menu-right-menu a:hover {
	background-color: white;
	color: var(--primary-color);
}

@keyframes slideIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.mobile-navigation.active {
	display: block !important;
	padding: 0 10px;
	width: 100%;
	height: 100vh;
	margin: 0 10px;
	animation: slideIn 0.5s;
}

.mobile-navigation.active .nav-links {
	display: flex;
	flex-direction: column !important;
	align-items: flex-start;
	gap: 10px;
	font-size: 20px;
}

#mobile-buttons li {
	display: inline-block;
	padding: 12px 32px;
	border-radius: 10px;
	font-weight: bold;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	margin-bottom: 10px;
	text-align: center;
	width: 100%;
	text-transform: none;
	background-color: var(--primary-color) !important;
	border: 2px solid var(--primary-color);
	color: var(--button-text);
}

#mobile-buttons li:first-child {
	color: var(--primary-color);
	background-color: transparent !important;
}

#mobile-buttons li:first-child a {
	color: var(--primary-color);
}

#mobile-buttons li:hover {
	color: var(--primary-color);
	background-color: transparent !important;
}

#mobile-buttons li:hover a {
	color: var(--primary-color);
}

footer .sub-menu {
	display: none !important;
}

footer .container {
	padding-bottom: 15px;
}

.sub-menu {
	display: none;
	min-width: 200px;
	padding: 5px 10px;
	background-color: white;
	animation: slideIn 0.5s;
}

.sub-menu li {
	width: 100%;
	margin-bottom: 5px;
	padding: 3px 5px;
	border-radius: 5px;
}

.sub-menu li:hover {
	background-color: var(--primary);
}

.sub-menu li a {
	font-size: 16px !important;
}

.menu-item-has-children > .menu-item-toggle::before {
	content: "\f078";
	font-family: 'Font Awesome 5 Free', sans-serif;
	font-weight: 900;
	font-size: 0.8rem;
	margin-left: 5px;
	position: absolute;
	left: 90%;
}

.menu-item-has-children.active > .menu-item-toggle::before {
	content: "\f077";
	transition: slideIn 0.5s;
}

.menu-item-has-children:active, .menu-item-has-children:focus {
	display: block;
}

.menu-item-has-children:hover > .sub-menu, .menu-item-has-children:active {
	display: block;
}

.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
	display: block;
}

/* ======== HAMBURGER ========== */
#hamburger {
	width: 25px;
	position: relative;
	margin: 11px 0;
	transform: rotate(0deg);
	transition: 0.5s ease-in-out;
	cursor: pointer;
	padding: 5px 0 !important;
}

#hamburger > span {
	display: block;
	position: absolute;
	height: 2.2px;
	width: 100%;
	border-radius: 9px;
	background: #000;
	left: 0;
	transform: rotate(0deg);
	transition: 0.25s ease-in-out;
}

#hamburger > span:nth-child(1) {
	top: 0;
}

#hamburger > span:nth-child(2) {
	display: none;
}

#hamburger > span:nth-child(3) {
	top: 8px;
}

#hamburger.active span:nth-child(1) {
	top: 8px;
	transform: rotate(135deg);
}

#hamburger.active span:nth-child(2) {
	opacity: 0;
	width: 0;
}

#hamburger.active span:nth-child(3) {
	top: 8px;
	transform: rotate(-135deg);
}

/* ======== HERO ========== */
.pre_title {
	background-color: var(--primary-color);
	color: var(--button-text);
	margin-top: var(--spacing-sm);
	padding: 5px 14px;
	font-size: 12px;
}

.hero_title {
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	padding: 30px 0;
	margin: 0 auto;
}

span {
	font-size: 17px;
}

.border_img {
	border-radius: 15px;
	object-fit: cover;
}

.hero_img {
	width: 100%;
	height: 30vh;
	margin: var(--spacing-lg) 0;
}

/* ======== BLOKKEN ========== */
/* half media at md+ */
@media (min-width: 992px) {
	.flex-md-50 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

/* let content take remaining space */
.blok-content {
	flex: 1 1 0;
	min-width: 0;
}

.blokken_row, .functions-container, .cards_container, .number_container, .pricing_container, .cta_container, .faq_container {
	margin: var(--spacing-lg) 0;
}

.blokken_row {
	padding: 40px 0;
	margin: 0;
}

.blokken_image {
	padding: 0;
}

.blok_img {
	margin: 0 auto;
	width: 95%;
	object-fit: cover;
	max-height: 400px;
}

.check-icon {
	padding: 0;
	background-color: var(--primary-color);
	border-radius: 100%;
	display: flex;
	align-items: center;
	min-width: 25px !important;
	width: 25px;
	height: 25px;
	justify-content: center;
}

.blok_list {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 20px;
	column-gap: 40px;
	width: 100%;
	padding-top: 20px;
}

.blok_list li {
	display: flex;
	gap: 0.5rem;
	font-size: 18px;
	color: var(--text-color);
	text-align: left;
	line-height: 1.3;
}

.thin_h2 {
	font-weight: 400;
	line-height: 1.3;
	text-transform: uppercase;
}

/* ======== FUNCTIONS ========== */
.functions-container {
	background-color: var(--gray);
	padding-bottom: var(--spacing-lg);
}

.function_item {
	background-color: var(--white);
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	text-align: left;
	padding: 20px;
	border-radius: 20px;
	border: 1px solid var(--border-color);
	margin-bottom: 20px;
	min-height: 230px;
}

.icon_container {
	background-color: var(--light-gray);
	border: 1px solid var(--border-color);
	padding: 15px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
	width: fit-content;
}

.icon_container i {
	font-size: 25px;
	color: var(--primary-color);
}

.card_item {
	padding: 25px;
}

.card_top {
	width: 100%;
	margin: auto;
}

.card_top p {
	font-size: 17px;
}

.card_item_title {
	padding: 0;
	height: fit-content;
	margin: auto 0;
}

h3 {
	font-size: 1.5rem;
	line-height: 1.5rem;
	font-weight: 300;
	color: var(--text-color);
	margin: 15px 0;
}

.function_item p {
	font-size: 17px;
	font-weight: 500;
	line-height: 1.6;
}

/* ======== CARDS ========== */
.cards_item {
	background-color: var(--gray);
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	text-align: left;
	padding: 20px;
	border-radius: 20px;
	border: 1px solid var(--border-color);
	margin-bottom: 20px;
	justify-content: center;
	width: 100%;
	min-height: 180px;
}

.cards_img {
	width: 100%;
	height: 400px;
	margin-bottom: 50px;
}

/* ======== PRICING ========== */
.pricing_container {
	background-color: var(--gray);
}

.pricing_content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px;
	margin: auto;
}

.pricing_content .price {
	font-size: 50px;
}

.pricing_content .small_title {
	font-size: 20px;
}

.border-left-1 {
	border-top: 1px solid var(--border-color);
	padding-left: 20px;
}

.pricing_content .col-md-6 {
	width: 100%;
	height: 100%;
}

.value-display {
	background: var(--white);
	padding: 10px 20px;
	border-radius: 10px;
	font-size: 16px;
	position: absolute;
	top: -80px;
	transform: translateX(-50%);
	color: black;
}

.value-display .pointer {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid var(--white);
}

#currentValue {
	display: block;
}

.slider-container {
	width: 100%;
	margin: 40px 0;
}

.slider-wrapper {
	position: relative;
}

.custom-slider {
	-webkit-appearance: none;
	width: 100%;
	height: 4px;
	background: var(--border-color);
	outline: none;
	border-radius: 2px;
}

.custom-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	background: var(--primary-color);
	border-radius: 50%;
	cursor: pointer;
	border: 2px solid white;
	box-shadow: 0 0 0 1px var(--primary-color);
}

.aantal_gebruikers {
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center
}

.aantal_gebruikers h3 {
	height: fit-content;
	margin: 13px;
	padding: 0;
	text-align: left;
}

.aantal_gebruikers .custom-number {
	border: 1px solid var(--border-color);
	height: fit-content;
	min-height: 50px;
	width: 68px;
	padding: 10px;
	border-right: 5px;
}

.aantal_gebruikers .custom-number:focus-visible {
	outline: 1px solid var(--primary-color);
}

/* ======== FAQ ========== */
.accordion {
	background: none !important;
	border: none !important;
	margin-top: var(--spacing-lg) !important;
}

.accordion-item {
	background-color: var(--primary-color) !important;
	border: none !important;
	margin-bottom: 15px !important;
	border-radius: 8px !important;
	padding: 40px 20px !important;
	cursor: pointer
}

.accordion-item:after {
	background: none;
}

.accordion-button {
	color: var(--text-color) !important;
	font-size: 20px !important;
	font-weight: 600 !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 8px !important;
	height: 0 !important;
	padding: 0 !important;
}

.faq-icon {
	background-color: white;
	width: 10px;
	height: 10px;
	padding: 20px;
	border-radius: 20px;
	position: absolute;
	right: 0;
}

.accordion-button::after {
	font-size: 18px !important;
	color: #2f3e4e !important;
	margin-left: auto !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2312263F'%3E%3Cpath fill-rule='evenodd' d='M8 1a.5.5 0 0 1 .5.5v6h6a.5.5 0 0 1 0 1h-6v6a.5.5 0 0 1-1 0v-6h-6a.5.5 0 0 1 0-1h6v-6A.5.5 0 0 1 8 1z'/%3E%3C/svg%3E") !important;
	z-index: 99;
	margin-right: 10px;
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2312263F'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E") !important;
	z-index: 99;
}

.accordion-header {
	margin: 0 !important;
}

.accordion-body {
	background-color: inherit !important;
	text-align: left;
	padding: 0 !important;
	padding-top: 30px !important;
	cursor: default;
}

button.accordion-button {
	color: var(--faq-text) !important;
}

.accordion-body p {
	margin: 0 !important;
	color: var(--faq-text);
}

/* ======== FAQ ========== */
.cta_container {
	background-color: var(--gray);
	padding: 40px 20px !important;
	border-radius: 20px;
	margin-top: 60px !important;
	margin-bottom: 40px !important;
}

.btn-cta {
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 8px;
}

/* ======== FOOTER ========== */
footer {
	background-color: var(--gray);
	padding: 40px 0;
	color: var(--text-color);
	margin-top: 50px;
}

.social-media-icons {
	margin-top: 20px;
	display: flex;
	gap: 10px;
}

.social-media-icons i {
	font-size: 23px;
	background: black;
	border-radius: 5px;
	color: white;
	width: 36px;
	height: 36px;
	margin: auto;
	text-align: center;
	padding-top: 7px;
}

i:hover {
	color: var(--primary-color);
}

footer .col-md-3 {
	margin-top: 20px;
	width: 50%;
}

.footer-logo {
	text-align: left;
}

.footer-logo-img {
	max-width: 200px !important;
	margin-bottom: 10px;
}

footer pre, footer p, footer a {
	font-size: 16px !important;
	font-family: inherit !important;
	margin-bottom: 10px !important;
	cursor: default;
	color: var(--text-color);
}

.footer-logo p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-foreground);
}

.footer-menu h5, footer h4 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	text-transform: capitalize;
}

.footer-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu ul li {
	margin-bottom: 10px;
}

.footer-menu ul li a {
	text-decoration: none;
	font-size: 14px;
}

.footer-menu ul li a:hover {
	color: var(--primary-color);
}

.footer-bottom {
	border-top: 1px solid var(--border-color);
	padding-top: 30px;
	margin-top: 20px;
}

.footer-area-five p {
	font-family: inherit;
	font-size: 14px;
	text-align: left;
	margin: 0;
}

/* ======== Scroll ========== */
#faq, #over-ons {
	scroll-margin-top: 100px !important;
}

#functies {
	scroll-margin-top: 70px !important;
}

#prijzen {
	scroll-margin-top: 200px !important;
}

/* ======== RESPONSIVE STYLES ========== */
@media only screen and (max-width: 768px)
{
	.hero_title {
		padding: 30px 0 0 0;
	}

	.function_img {
		text-align: center !important;
	}
}

/* For medium screens and up (tablets) */
@media only screen and (min-width: 768px) {
	.menu-item-has-children > .menu-item-toggle::before {
		content: "\f078";
		font-family: 'Font Awesome 5 Free', sans-serif;
		font-size: 0.8rem;
		margin-left: 10px;
		position: static;
	}

	.sub-menu {
		display: none;
		min-width: 200px;
		position: absolute;
		box-shadow: 1px 1px 5px rgb(143 143 143 / 10%);
		border: 1px solid var(--gray);
		top: 80%;
		padding: 5px 10px;
		background-color: white;
		animation: slideIn 0.5s;
	}

	.sticky-navbar .sub-menu {
		top: 105%;
	}

	.sub-menu li {
		width: 100%;
		margin-bottom: 5px;
		padding: 3px 5px;
		border-radius: 5px;
	}

	.sub-menu li:hover {
		background-color: var(--primary);
	}

	.sub-menu li a {
		font-size: 16px !important;
	}

	.menu-item-has-children:hover > .sub-menu {
		display: block;
	}

	.menu-item-has-children .sub-menu .menu-item-has-children .sub-menu {
		top: 40px;
		left: 105%;
		background-color: white;
	}

	.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
		display: block;
	}

	span {
		font-size: 20px;
	}

	.pre_title {
		padding: 10px 19px;
		font-size: 14px;
	}

	.blok_img {
		height: 500px;
	}

	.functions-container, .pricing_container {
		padding: var(--spacing) 0;
	}

	.function_item {
		width: 320px;
		margin: 10px;
	}

	.cards_content {
		height: fit-content;
	}

	.cards_container .blok_paragraph {
		width: 75%;
	}

	.cards_container .cards {
		position: relative;
	}

	.cards2_container .cards_item {
		margin-left: 1%;
		position: sticky;
		width: 350px;
		margin-right: 20px;
	}

	.cards2_container .cards_item:nth-child(2n) {
		top: 60px;
		position: inherit;
	}

	.cards_item {
		width: 100%;
	}

	.pricing_content .col-md-6 {
		width: 47%;
		height: 90%;
	}

	.pricing_content {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
		padding: 20px;
		margin: auto;
		min-height: 450px;
	}

	.border-left-1 {
		border-top: none;
		border-left: 1px solid var(--border-color);
		padding-left: 20px;
	}

	.pricing_container .blok_list {
		padding-top: 0;
	}

	.cta_container {
		background-color: var(--gray);
		padding: 40px !important;
		border-radius: 20px;
	}

	footer .col-md-3 {
		margin: 0;
		width: 15%;
	}

	footer {
		padding: 40px 0 0 0;
	}

	footer .container {
		min-height: 450px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	#faq, #over-ons {
		scroll-margin-top: 100px !important;
	}

	#functies {
		scroll-margin-top: 0 !important;
	}

	#prijzen {
		scroll-margin-top: 0 !important;
	}

	.cards_img {
		width: 80%;
		height: 450px;
	}
}

/* For large screens (desktops) */
@media only screen and (min-width: 992px) {
	.pre_title {
		margin-top: var(--spacing-lg);
	}

	.hero_img {
		height: 60vh;
		object-position: 50% 80%;
	}

	.swap {
		flex-direction: row-reverse !important;
	}
}

@media only screen and (min-width: 1250px) {
	.blok_list {
		grid-template-columns: 1fr 1fr !important;
	}
}

/* For extra large screens (large desktops) */
@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1400px;
	}
}

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

	.function_item {
		width: calc(94% / 4);
		min-height: 255px;
	}
}

/* ========== LINES ========== */
#page {
	position: relative;
}

.lines-container {
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
	top: -20px;
	z-index: -1;
}

.lines-container .bg-line {
	position: absolute;
	width: 250vw;
	height: var(--line-height);
	background: black;
	transform: rotate(45deg);
	left: -75%;
	z-index: -1;
}

.lines-container .bg-line:nth-child(even) {
	background: var(--cream);
}

.lines-container .bg-line:nth-child(odd) {
	background: -webkit-linear-gradient(bottom, var(--line-border-color) 20%, var(--primary-color) 0%);
	background: -moz-linear-gradient(bottom, var(--line-border-color) 20%, var(--primary-color) 0%);
	background: -ms-linear-gradient(bottom, var(--line-border-color) 20%, var(--primary-color) 0%);
	background: linear-gradient(to top, var(--line-border-color) 20%, var(--primary-color) 0%);
}

.lines-container .line0 {
	left: -25%;
}

@media only screen and (max-width: 768px) {
	.lines-container .line0 {
		top: 0 !important;
		left: 100px;
	}
}

.wrapper {
	--font-color-dark: #323232;
	--font-color-light: #fff;
	--bg-color: #fff;
	--main-color: #323232;
	--secondary-color: #505050;
	position: relative;
	width: 200px;
	height: 50px;
	background-color: var(--bg-color);
	border: 1px solid var(--border-color);
	border-radius: 34px;
	display: flex;
	flex-direction: row;
	margin: auto;
	align-items: center;
	justify-content: space-between;
}

.option {
	width: 45%;
	height: 85%;
	position: relative;
	top: 0;
	left: 5px;
	border-radius: 34px;
	transition: 0.25s cubic-bezier(0, 0, 0, 1);
}

.option:last-child {
	margin-right: 10px;
}

.option:hover {
	background-color: var(--primary-color);
}

.option:hover .span {
	color: var(--font-color-light);
}

.input {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	appearance: none;
	cursor: pointer;
}

.option-btn {
	width: 100%;
	height: 100%;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.span {
	color: var(--font-color-dark);
}

.input:checked + .option-btn {
	background-color: var(--primary-color);
	transition: 0.2s cubic-bezier(0, 0, 0, 1);
}

.input:checked + .option-btn .span {
	color: var(--white);
	transition: 0.25s cubic-bezier(0, 0, 0, 1);
}

.wa__btn_popup_txt span {
	font-size: 17px !important;
}

/* ======== CONTACT ========== */
#contact {
	padding: var(--spacing-lg) 0;
}

.contact_container p {
	max-width: 100%;
}

.contact_title {
	font-size: 32px;
	font-weight: bold;
	line-height: 1.1;
	padding-top: var(--spacing-lg);
	padding-bottom: var(--spacing-sm);
}

.contact_container {
	display: grid;
	grid-template-columns: 1fr;
	justify-items: end;
}

.contact-socials {
	margin-top: 30px;
}

.contact-socials a {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	border: 1px solid var(--light-gray);
	padding: 5px 15px 5px 5px;
	width: fit-content;
	border-radius: 10px !important;
	background-color: var(--light-gray);
}

.contact-socials a:hover {
	background-color: var(--primary-color);
	color: white;
}

.contact-socials a:hover i {
	background-color: white;
	color: var(--primary-color);
}

.contact-socials i {
	background-color: var(--primary-color);
	padding: 10px;
	border-radius: 5px;
	color: white;
}

.contact-socials span {
	font-size: 18px;
}

.contact_form {
	padding: 20px;
	border-radius: 10px;
	height: fit-content;
	background-color: var(--light-gray);
	width: 100%;
	margin: auto;
}

#contact input, #contact label, #contact textarea {
	width: 100%;
}

#contact label {
	margin: 10px 0 !important;
	font-size: 1rem;
}

#contact input, #contact textarea {
	border: 1px solid oklch(0.97 0 0) !important;
	border-radius: 5px;
	margin-top: 5px !important;
}

#contact textarea.contact-textarea {
	height: 150px;
}

#contact .gform_button {
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: 5px;
	padding: 10px 20px;
	margin-top: 10px;
	font-weight: bold;
	outline: none !important;
}

.contact_info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.company-item {
	background-color: var(--light-gray);
	padding: 20px !important;
	width: 300px !important;
	border-radius: 10px !important;
}

.company-item i {
	background-color: var(--primary-color);
	padding: 10px;
	border-radius: 5px;
	color: white;
	margin-bottom: 10px !important;
}

.company-item h6 {
	font-size: 1rem;
	font-weight: bold;
	margin: 5px 0;
}

@media only screen and (min-width: 768px) {
	.contact_title {
		font-size: 45px;
		max-width: 700px;
	}

	.contact_container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		justify-items: end;
	}

	.contact_form {
		width: 70%;
	}
}

@media only screen and (max-width: 1261px) {
	.main-menu, .right-menu {
		display: none !important;
	}

	#hamburger {
		display: block !important;
	}
}

.tutorials-container > div {
	opacity: 1;
	transform: scale(1);
}

.tutorials-container > div.hidden {
	pointer-events: none;
	opacity: 1;
	display: none;
}

.tutorial-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
}

.tutorial-btn {
	padding: 5px 20px;
	background: transparent !important;
	color: var(--primary-color);
	margin: 0 !important;
}

.tutorial-btn:hover {
	background: var(--primary-color) !important;
	color: white !important;
}

.tutorial-btn.active {
	background: var(--primary-color) !important;
	color: white !important;
}

.tutorials-container {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
}

.tutorials-container iframe {
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tutorials-container .lead {
	font-size: 1rem !important;
}

.badge {
	margin: 5px 0;
	font-size: 0.8rem;
	padding: 5px 10px;
	border-radius: 5px;
	background-color: var(--primary-color);
	color: white;
}

@media only screen and (min-width: 480px) {
	.tutorials-container {
		margin-top: 30px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media only screen and (min-width: 968px) {
	.tutorials-container {
		margin-top: 30px;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}
}