/* base.css */

:root{
	--imeba-red:#d71920;
	--imeba-red-dark:#a90f15;
	--imeba-black:#0d0f11;
	--imeba-dark:#171a1d;
	--imeba-text:#1d2125;
	--imeba-muted:#687078;
	--imeba-line:#dde2e6;
	--imeba-soft:#f4f6f8;
	--imeba-white:#ffffff;
	--imeba-shell:1280px;
	--imeba-side:28px;
}

*{
	box-sizing:border-box;
}

html{
	width:100%;
	max-width:100%;
	overflow-x:hidden;
	scroll-behavior:smooth;
}

body{
	position:relative;
	width:100%;
	max-width:100%;
	margin:0;
	overflow-x:hidden;
	background:var(--imeba-white);
	color:var(--imeba-text);
	font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;
	-webkit-font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

main,
section,
header,
footer,
nav,
article,
aside{
	display:block;
	max-width:100%;
}

img{
	display:block;
	max-width:100%;
	height:auto;
}

svg{
	max-width:100%;
}

a{
	color:inherit;
	text-decoration:none;
	transition:color .2s ease,background .2s ease,border-color .2s ease,transform .2s ease,opacity .2s ease;
}

a:hover,
a:focus{
	text-decoration:none;
}

button,
input,
select,
textarea{
	font:inherit;
}

button{
	cursor:pointer;
}

ul,
ol{
	margin:0;
	padding:0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p{
	margin-top:0;
}

.imeba-shell{
	width:100%;
	max-width:var(--imeba-shell);
	min-width:0;
	margin:0 auto;
	padding-right:var(--imeba-side);
	padding-left:var(--imeba-side);
}

.imeba-section{
	padding:68px 0;
}

.imeba-kicker{
	display:block;
	margin-bottom:10px;
	color:var(--imeba-red);
	font-size:11px;
	font-weight:700;
	letter-spacing:1.5px;
	line-height:1.3;
	text-transform:uppercase;
}

.imeba-kicker-light{
	color:var(--imeba-white);
}

.imeba-section-head{
	display:flex;
	align-items:flex-end;
	justify-content:space-between;
	width:100%;
	min-width:0;
	margin-bottom:30px;
}

.imeba-section-head h2{
	margin:0;
	color:var(--imeba-black);
	font-size:36px;
	font-weight:800;
	letter-spacing:-.8px;
	line-height:1.1;
}

.imeba-section-head-center{
	justify-content:center;
	text-align:center;
}

.imeba-text-link{
	display:inline-flex;
	align-items:center;
	color:var(--imeba-red);
	font-size:12px;
	font-weight:700;
	text-transform:uppercase;
}

.imeba-text-link i{
	margin-left:8px;
}

.imeba-text-link:hover{
	color:var(--imeba-red-dark);
}

.imeba-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:46px;
	padding:0 22px;
	border:2px solid transparent;
	border-radius:0;
	font-size:12px;
	font-weight:700;
	letter-spacing:.4px;
	line-height:1;
	text-align:center;
	text-transform:uppercase;
}

.imeba-btn i{
	margin-left:10px;
}

.imeba-btn-red{
	border-color:var(--imeba-red);
	background:var(--imeba-red);
	color:var(--imeba-white);
}

.imeba-btn-red:hover,
.imeba-btn-red:focus{
	border-color:var(--imeba-red-dark);
	background:var(--imeba-red-dark);
	color:var(--imeba-white);
}

.imeba-btn-dark{
	border-color:var(--imeba-black);
	background:var(--imeba-black);
	color:var(--imeba-white);
}

.imeba-btn-dark:hover,
.imeba-btn-dark:focus{
	border-color:var(--imeba-red);
	background:var(--imeba-red);
	color:var(--imeba-white);
}

.imeba-btn-outline-light{
	border-color:var(--imeba-white);
	background:transparent;
	color:var(--imeba-white);
}

.imeba-btn-outline-light:hover,
.imeba-btn-outline-light:focus{
	background:var(--imeba-white);
	color:var(--imeba-black);
}

.imeba-btn-outline-dark{
	border-color:var(--imeba-black);
	background:transparent;
	color:var(--imeba-black);
}

.imeba-btn-outline-dark:hover,
.imeba-btn-outline-dark:focus{
	background:var(--imeba-black);
	color:var(--imeba-white);
}

.imeba-grid-2{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:28px;
	min-width:0;
}

.imeba-grid-3{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:24px;
	min-width:0;
}

.imeba-grid-4{
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:20px;
	min-width:0;
}

.imeba-grid-2 > *,
.imeba-grid-3 > *,
.imeba-grid-4 > *{
	min-width:0;
}

.imeba-card{
	min-width:0;
	border:1px solid var(--imeba-line);
	background:var(--imeba-white);
}

.imeba-muted{
	color:var(--imeba-muted);
}

.imeba-bg-soft{
	background:var(--imeba-soft);
}

.imeba-bg-dark{
	background:var(--imeba-black);
	color:var(--imeba-white);
}

.imeba-hidden{
	display:none;
}

@media(max-width:1100px){
	:root{
		--imeba-side:22px;
	}

	.imeba-grid-4{
		grid-template-columns:repeat(2,minmax(0,1fr));
	}
}

@media(max-width:991px){
	.imeba-grid-3{
		grid-template-columns:repeat(2,minmax(0,1fr));
	}

	.imeba-section{
		padding:58px 0;
	}
}

@media(max-width:767px){
	:root{
		--imeba-side:16px;
	}

	html,
	body{
		width:100%;
		max-width:100%;
		overflow-x:hidden;
	}

	.imeba-shell{
		width:100%;
		max-width:100%;
		min-width:0;
		padding-right:16px;
		padding-left:16px;
	}

	.imeba-section{
		padding:50px 0;
	}

	.imeba-section-head{
		display:block;
		min-width:0;
	}

	.imeba-section-head h2{
		font-size:28px;
	}

	.imeba-text-link{
		margin-top:14px;
	}

	.imeba-grid-2,
	.imeba-grid-3,
	.imeba-grid-4{
		grid-template-columns:1fr;
	}

	.imeba-btn{
		width:100%;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	p,
	a,
	span,
	strong{
		max-width:100%;
		overflow-wrap:anywhere;
		word-break:normal;
	}

	input,
	select,
	textarea{
		max-width:100%;
	}
}