body {
	font-family: "Inter", sans-serif;
	overflow-x: hidden !important;
}

img, svg {
	max-width: 100%;
}

.container {
	width: 95% !important;
	max-width: 1320px !important;
}

.modal-dialog {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1.5rem;
	height: 100%;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	max-width: 800px !important;
}

.modal-header {
	border-bottom: 0;
	padding: 2rem;
	padding-bottom: 1rem;
}

.modal-body {
	padding: 2rem;
}

.slick-list {
	margin-left: -0.75rem;
	margin-right: -0.75rem;
}

.slick-track {
	display: flex;
	align-items: stretch;
}

.slick-slide {
	float: none;
	height: auto;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.slick-slide img {
	display: inline-block;
}

.slick-initialized .slick-slide {
	display: flex;
	flex-direction: column;
}

.slick-dots {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.slick-dots li {
	width: auto;
	height: auto;
	margin: 0;
}

.slick-dots li:only-child {
	display: none;
}

.slick-dots li button {
	width: auto;
	height: auto;
	padding: 0;
}

.slick-dots li button::before {
	content: "\f111";
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
	position: static;
	width: auto;
	height: auto;
	font-size: 0.5rem;
	line-height: 1;
	transition: opacity 0.125s ease-in-out;
}

.scroll {
	max-height: 200px;
	overflow-y: scroll;
	padding-right: 1rem;
}

/* Font */.h1, h1 {	font-size: 2rem;	line-height: 1.25;}
.h2, h2 {	font-size: 1.5rem;	line-height: 1.25;}.h3, h3 {	font-size: 1.375rem;	line-height: 1.25;}.h4, h4 {	font-size: 1.25rem;	line-height: 1.25;}.h5, h5 {	font-size: 1.125rem;	line-height: 1.25;}.h6, h6 {	font-size: 1rem;	line-height: 1.25;}p {	font-size: 1rem;	line-height: 1.25;}
.fs-60 {
	font-size: 3.75rem !important;
	line-height: 1.0625;
}

.fs-45 {
	font-size: 2.8125rem !important;
	line-height: 1.0625;
}

.fs-40 {
	font-size: 2.5rem !important;
	line-height: 1.0625;
}

.fs-35 {
	font-size: 2.1875rem !important;
	line-height: 1.0625;
}

.fs-30 {
	font-size: 1.875rem !important;
	line-height: 1.0625;
}

.fs-24 {
	font-size: 1.5rem !important;
	line-height: 1.25;
}

.fs-22 {
	font-size: 1.375rem !important;
	line-height: 1.25;
}

.fs-20 {
	font-size: 1.25rem !important;
	line-height: 1.25;
}

.fs-14 {
	font-size: 0.875rem !important;
	line-height: 1.25;
}

.fs-12 {
	font-size: 0.75rem !important;
	line-height: 1.25;
}

.fw-400 {
	font-weight: 400;
}

.fw-700 {
	font-weight: 700;
}

.fw-800 {
	font-weight: 800;
}

/* Colors */

.bg-white {
	background-color: #F4F4F4 !important;
}

.bg-black {
	background-color: #51545F !important;
}

.bg-truck {
	background-color: #f6f6f6;
	background-image: url("../images/truck.jpg");
	background-size: auto 110%;
	background-position: left center;
	background-repeat: no-repeat;
}

.bg-trucks {
	background-image: url("../images/trucks.jpg");
	background-size: auto 100%;
	background-position: right center;
	background-repeat: no-repeat;
}

.bg-tire {
	background-image: url("../images/tire.jpg");
	background-size: 80% auto;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #51545f;
}

/* Colors */

.color-white {
	color: #fff;
}

.color-white-2 {
	color: #f4f4f4;
}

.color-black {
	color: #1C1C1C;
}

.color-purple {
	color: #0155DE;
}

/* Buttons */

.button {
	position: relative;
	display: inline-block;
	background: #a974ff;
	background: linear-gradient(135deg, #a974ff 0%, #0155de 100%);
	color: #fff;
	padding: 1.25rem 3rem;
	border-radius: 0.5rem;
	transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
}

.button:after {
	content: "";
	background: #1C1C1C;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.25s ease-in-out;
	border-radius: 0.5rem;
}

.button > span {
	position: relative;
	z-index: 1;
}

.button:hover {
	color: #fff;
}

.button:hover:after {
	opacity: 1;
}

a.button {
	text-decoration: none;
}

a.button:hover {
	text-decoration: none;
}

button.button {
	outline: none;
	box-shadow: 0;
	border: 0;
}

.button-2 {
	background: #04EB84;
	background: linear-gradient(135deg, #04EB84 0%, #0155DE 100%);
}

.button-small {
	padding: 1rem 2rem;
}

.button-light {
	display: inline-block;
	color: #fff;
	border: 1px solid #fff;
	padding: 0.625rem 1.5rem;
	border-radius: 0.1875rem;
	transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
}

.button-light:hover {
	background: #fff;
	color: #3f1dba;
}

a.button-light {
	text-decoration: none;
}

a.button-light:hover {
	text-decoration: none;
}

.button-more {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	background: #1C1C1C;
	color: #fff;
	padding: 0.375rem 1.5rem;
	border-radius: 40px;
	transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
}

.button-more:hover {
	background: #3f1dba;
	color: #fff;
}

a.button-more {
	text-decoration: none;
}

a.button-more:hover {
	text-decoration: none;
}

.modal-header .button.btn-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	z-index: 1;
	padding: 0;
	margin: 0;
	opacity: 1;
	transform: translate(50%, -50%);
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24) !important;
}

.modal-header .button.btn-close:after {
	border-radius: 50%;
}

.button-slider {
	background: none;
	outline: none;
	box-shadow: 0;
	border: 0;
}

.button-slider-left {
	position: absolute;
	top: 50%;
	left: -2.5rem;
	transform: translateY(-50%);
}

.button-slider-right {
	position: absolute;
	top: 50%;
	right: -2.5rem;
	transform: translateY(-50%);
}

.button-offer {
	border-radius: 0;
	padding: 0.25rem 0.625rem;
	border: 2px solid #2F5FDB !important;
	background: #2F5FDB;
	transition: border 0.25s ease-in-out;
}

.button-offer:after {
	border-radius: 0;
}

.button-offer:hover {
	border-color: #1C1C1C !important;
}

/* Headline */

.headline {
	display: inline-flex;
	align-items: stretch;
	border-radius: 40px;
	border: 2px solid #1C1C1C;
	color: #1C1C1C;
}

.headline > h1,
.headline > h2,
.headline > span {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	border-radius: 40px;
	padding: 0.75rem 1.25rem;
}

.headline-bg {
	background: #a974ff;
	background: linear-gradient(135deg, #a974ff 0%, #0155de 100%);
	color: #fff;
}

.headline-2 {
	color: #f4f4f4;
	border-color: #f4f4f4;
}

.headline-2 .headline-bg {
	background: #04EB84;
	background: linear-gradient(135deg, #04EB84 0%, #0155DE 100%);
	color: #f4f4f4;
}

.headline-green {
	border-color: #3BAD49;
}

.headline-green .headline-bg {
	background: #3BAD49;
}

.headline-green svg path {
	fill: #3BAD49;
}

.headline-red {
	border-color: #EB3131;
}

.headline-red .headline-bg {
	background: #EB3131;
}

.headline-red svg path {
	fill: #EB3131;
}

.headline-blue {
	border-color: #0155DE;
}

.headline-blue .headline-bg {
	background: #0155DE;
}

.headline-blue svg path {
	fill: #0155DE;
}

/* Form */

p.invalid {
	margin-top: 0.25rem;
	margin-bottom: 0;
	color: #c0392b;
	font-size: 0.875rem;
	line-height: 1.25;
	font-weight: 600;
}

.form-input {
	position: relative;
}

.form-input input {
	font-size: inherit;
	font-weight: inherit;
	background: transparent;
	color: #2F5FDB;
	display: flex;
	align-items: center;
	width: 100%;
	border-radius: 40px;
	border: 2px solid #2F5FDB;
	padding: 0.75rem 1.5rem;
	transition: background 0.25s ease-in-out, color 0.25s ease-in-out, border 0.25s ease-in-out;
	outline: none;
	font-style: italic;
}

.form-offer input {
	border-radius: 0;
	padding: 0.25rem 0.5rem;
	text-align: center;
	font-style: normal;
}

.form-input input:placeholder {
	color: inherit;
}

.form-input input:not(.disabled):hover {
	border-color: #1C1C1C;
	color: #777;
}

.form-input input.invalid {
	color: #b71c1c;
	background: #ffebee;
	border-color: #ef9a9a;
}

.form-textarea {
	position: relative;
}

.form-textarea textarea {
	font-size: inherit;
	font-weight: inherit;
	background: transparent;
	color: #2F5FDB;
	display: flex;
	align-items: center;
	width: 100%;
	border-radius: 20px;
	border: 2px solid #2F5FDB;
	padding: 0.75rem 1.5rem;
	transition: background 0.25s ease-in-out, color 0.25s ease-in-out, border 0.25s ease-in-out;
	outline: none;
	font-style: italic;
	resize: none;
}

.form-textarea textarea:placeholder {
	color: #2F5FDB;
}
.form-textarea textarea:not(.disabled):hover {
	border-color: #1C1C1C;
}

.form-textarea textarea.invalid {
	color: #b71c1c;
	background: #ffebee;
	border-color: #ef9a9a;
}

.form-select-2 {
	position: relative;
}

.form-select-2 select {
	font-size: inherit;
	font-weight: inherit;
	background: transparent;
	color: #2F5FDB;
	display: flex;
	align-items: center;
	width: 100%;
	border-radius: 40px;
	border: 2px solid #2F5FDB;
	padding: 0.75rem 1.5rem;
	transition: background 0.25s ease-in-out, color 0.25s ease-in-out, border 0.25s ease-in-out;
	outline: none;
	font-style: italic;
}

.form-offer select {
	border-radius: 0;
	padding: 0.25rem 0.75rem;
	text-align: center;
	font-style: normal;
}

.form-select-2 select:not(.disabled):hover {
	border-color: #1C1C1C;
	color: #777;
}

.form-select-2 select.invalid {
	color: #b71c1c;
	background: #ffebee;
	border-color: #ef9a9a;
}

.form-checkbox {
	position: relative;
}

.form-checkbox input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -1;
	pointer-events: none;
	cursor: pointer;
}

.form-checkbox label {
	display: inline-flex;
	align-items: baseline;
	cursor: pointer;
}

.form-checkbox label:before {
	content: "\f0c8";
	display: inline-block;
	color: #2F5FDB;
	font-size: 1rem;
	font-family: "Font Awesome 6 Free";
	font-weight: 400;
	flex-shrink: 0;
	margin-right: 0.5rem;
	line-height: 1;
}

.form-checkbox input:checked + label:before {
	content: "\f14a";
	font-weight: 900;
}

.form-checkbox-big label:before {
	font-size: 1.75rem;
}

.form-checkbox-medium label:before {
	font-size: 1.5rem;
}

.form-radio {
	position: relative;
}

.form-radio input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -1;
	pointer-events: none;
	cursor: pointer;
}

.form-radio label {
	display: inline-flex;
	align-items: baseline;
	cursor: pointer;
}

.form-radio label:before {
	content: "\f0c8";
	display: inline-block;
	color: #2F5FDB;
	font-size: 1rem;
	font-family: "Font Awesome 6 Free";
	font-weight: 400;
	flex-shrink: 0;
	margin-right: 0.5rem;
	line-height: 1;
}

.form-radio input:checked + label:before {
	content: "\f14a";
	font-weight: 900;
}

.form-radio-big label:before {
	font-size: 1.75rem;
}

.form-radio-medium label:before {
	font-size: 1.5rem;
}

/* Box */

.box {
	background: #fff;
	padding: 2rem 2.5rem;
	border-radius: 30px;
}

/* Cat */

.cat {
	background: #2F5FDB;
	color: #fff;
	padding: 1rem 1.5rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Accordion */

.accordion-item {
	color: #fff !important;
	background: transparent !important;
}

.accordion-button {
	color: #fff !important;
	background: transparent !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.accordion-button:focus {
	border-color: transparent !important;
	box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
	border-bottom: 1px solid #fff !important;
	box-shadow: none !important;
}

.accordion-button::after {
	background-image: url("../images/icon-plus.svg") !important;
}

.accordion-button:not(.collapsed)::after {
	background-image: url("../images/icon-minus.svg") !important;
}

.accordion-button > span:first-child {
	min-width: 200px;
}

/* Pagination */

.pagination {
	display: inline-block;
}

.pagination-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	row-gap: 0.25rem;
	column-gap: 0.5rem;
}

.pagination-items {
	display: flex;
	align-items: center;
	justify-content: center;
	row-gap: 0.25rem;
	column-gap: 0.5rem;
}

.pagination a {
	text-decoration: none;
	background: transparent;
	border: 2px solid #1C1C1C;
	color: #1C1C1C;
	padding: 0.375rem 0.625rem;
	border-radius: 0.25rem;
	font-weight: 500;
	transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
}

.pagination a:hover {
	background: #1C1C1C;
	color: #fff;
}

/* Header */

.menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 1rem;
	padding: 1rem 3rem;
	background: url("../images/menu-bg.png");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.header-box {
	min-height: 65vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 4rem 8rem;
	position: relative;
	overflow: hidden;
}

.header-box-bg {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: transform 0.4s linear;
}

.header-box:hover .header-box-bg {
	transform: scale(1.1);
}

.header-box-2 {
	min-height: 60vh;
}

/* Articles */

.article-image {
	min-height: 300px;
	position: relative;
	overflow: hidden;
}

.article-image-bg {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: transform 0.4s linear;
}

.article-image:hover .article-image-bg {
	transform: scale(1.1);
}

/* BKT */

.bkt-image {
	min-height: 200px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.bkt-image-bg {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: transform 0.4s linear;
}

.bkt-image:hover .bkt-image-bg {
	transform: scale(1.1);
}

/* Footer */

.footer {
	background: url("../images/footer-bg.png");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

@media (min-width: 992px) {
	
	.w-lg-50 {
		width: 50% !important;
	}
}

@media (max-width: 1399.98px) {
	
	.bg-trucks {
		background-position: calc(100% + 5vw) center;
	}
}

@media (max-width: 1199.98px) {
	
	.fs-60 {
		font-size: 2.8125rem !important;
		line-height: 1.0625;
	}
	
	.fs-45 {
		font-size: 2.5rem !important;
		line-height: 1.0625;
	}

	.fs-40 {
		font-size: 2.1875rem !important;
		line-height: 1.0625;
	}

	.fs-35 {
		font-size: 1.875rem !important;
		line-height: 1.0625;
	}

	.fs-30 {
		font-size: 1.5rem !important;
		line-height: 1.0625;
	}

	.fs-24 {
		font-size: 1.375rem !important;
		line-height: 1.25;
	}

	.fs-22 {
		font-size: 1.25rem !important;
		line-height: 1.25;
	}

	.fs-20 {
		font-size: 1.125rem !important;
		line-height: 1.25;
	}
	
	.bg-trucks {
		background-image: none;
	}
	
	.header-box {
		padding: 3rem;
	}
}

@media (max-width: 991.98px) {
	
	.fs-60 {
		font-size: 2.5rem !important;
		line-height: 1.0625;
	}
	
	.fs-45 {
		font-size: 2.1875rem;
		line-height: 1.0625 !important;
	}

	.fs-40 {
		font-size: 1.875rem;
		line-height: 1.0625 !important;
	}

	.fs-35 {
		font-size: 1.5rem;
		line-height: 1.0625 !important;
	}

	.fs-30 {
		font-size: 1.375rem !important;
		line-height: 1.25;
	}

	.fs-24 {
		font-size: 1.25rem !important;
		line-height: 1.25;
	}

	.fs-22 {
		font-size: 1.125rem !important;
		line-height: 1.25;
	}

	.fs-20 {
		font-size: 1rem !important;
		line-height: 1.25;
	}
	
	.bg-truck {
		background-image: none;
	}
	
	.bg-tire {
		background-image: none;
	}
	
	.accordion-button > span:first-child {
		min-width: 10vw;
	}
}

@media (max-width: 767.98px) {
	
}

@media (max-width: 575.98px) {
	
	.fs-60 {
		font-size: 2rem !important;
		line-height: 1.0625;
	}
	
	.fs-45 {
		font-size: 1.75rem !important;
		line-height: 1.0625;
	}

	.fs-40 {
		font-size: 1.5rem !important;
		line-height: 1.0625;
	}
	
	.fs-35 {
		font-size: 1.375rem !important;
		line-height: 1.25;
	}
	
	.fs-30 {
		font-size: 1.25rem !important;
		line-height: 1.25;
	}
	
	.fs-24 {
		font-size: 1.125rem !important;
		line-height: 1.25;
	}
	
	.button {
		padding: 1rem 2rem;
	}
	
	.box {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	
	.menu {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	
	.menu > div:first-child svg {
		width: 40px;
	}
	
	.header-box,
	.header-box-2 {
		min-height: 50vh;
	}
	
	.headline.fs-40 {
		font-size: 4vw !important;
	}
}

@media (max-width: 399.98px) {
	
	.headline.fs-40 {
		font-size: 5vw !important;
	}
	
	.headline > span {
		padding: 0.5rem 1rem;
	}
	
	.box {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	
	.cat {
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
	}
}