
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

/* #region variables */

:root {

	/* Fonts */
	--font-primary: Roboto, system-ui, -apple-system, 'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	--font-secondary: 'Work Sans', Roboto, sans-serif;
	--font-size-base: 1rem;
	
	/* Colors */
	--color-default: #333;
	--color-default-rgb: 51, 51, 51;
	--color-primary: #005999;
	--color-primary-rgb: 0, 176, 173;
	--color-primary-light: #80d7d6;
	--color-primary-dark: #009794;
	--color-primary-shadow: #a5c2c5;
	--color-secondary: #00918e;
	--color-gray-light: #f3f3f3;

	/* Backgrounds */
	--bg-primary: #005999;
	--bg-secondary: #00918e;

	/* Margins */

	--mb-1: 1rem;
	--mb-2: 1.5rem;
	--mb-3: 2rem;
	--mb-4: 3rem;
	--mb-5: 4rem;

	--mb-header-page: 2rem;

	--mb-section-page: 2rem;
	--mb-section-page_header: 4rem;
	--mb-section-page_title: 1rem;
	--mb-section-page_subtitle: 1rem;
	--mb-section-page_description: 1.5rem;

	/* Paddings */
	
	--py-1: 1rem;
	--py-2: 1.5rem;
	--py-3: 1rem;
	--py-4: 1rem;
	--py-5: 1rem;
	
	--py-section-page: 3rem;
	--pt-section-page: 3rem;
	--pb-section-page: 3rem;

	/* Bootstrap override */
	--primary: #005999;
	--secondary: #00918e;

	/* debug */
	--debug-border: solid 0px red;
}



.cls-1 {
	fill: #00918e;
}

.cls-2 {
	fill: #005999;
}

.cls-3 {
	fill: #efcd00;
}

.cls-4 {
	fill: #878787;
}

/* #endregion */

/* #region elements */

body {
	font-family: var(--font-primary);
	color: var(--color-default);
	overflow-x: hidden;
	font-size: var(--font-size-base);
}

h1 {
	font-size: var(--font-size-base) * 2;
}

h2 {
	font-size: calc(var(--font-size-base) * 1.75);
}

h3 {
	font-size: calc(var(--font-size-base) * 1.5);
}

h4 {
	font-size: calc(var(--font-size-base) * 1.25);
}

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

/* #endregion */

/* #region bootstrap override */

.breadcrumb .breadcrumb-item {
	font-size: .9rem;
}

@media (min-width: 768px) {
	.breadcrumb .breadcrumb-item {
		font-size: 1rem;
	}
}

.btn {
	border-radius: 0;
	border-width: 2px;
}

.dropdown-menu {
	border-radius: 0;
	border: 0;
	margin-bottom: 1rem;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px;

	transition: 0.5s;
	padding: .5rem .5rem;
}

@media (max-width: 767px) {
	.dropdown-menu {
		-webkit-box-shadow: inset 0px 18px 23px -11px rgba(0, 0, 0, .2);
		box-shadow: inset 0px 18px 23px -11px rgba(0, 0, 0, .2);
	}
}

.dropdown-menu li a {
	padding: .5rem 1rem;
	border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child a {
	border: 0;
}

.dropdown:hover .dropdown-menu {
	display: block;
	margin-top: 0;
	transition: 0.5s;
}

.form-control {
	border-radius: 0;
}

.navbar-toggler {
	border-radius: 0;
	padding: 0 .4rem !important;
	height: 3rem;
	margin-top: 5px;
}

/* #endregion */

/* #region bootstrap appends */

.bg-primary-dark {
	background-color: #005999;
}

.offcanvas-dark {
	background-color: var(--bs-dark) !important;
}

.offcanvas-dark .btn-close {
	filter: invert(1) grayscale(100%) brightness(200%)
}

.offcanvas-dark .offcanvas-header {
	color: var(--bs-light) !important;
}

.offcanvas-primary {
	background-color: var(--bs-primary) !important;
}

.offcanvas-primary .btn-close {
	filter: invert(1) grayscale(100%) brightness(200%)
}

.offcanvas-primary .offcanvas-header {
	color: var(--bs-light) !important;
}

/* #endregion */

/* #region bootstrap based components */

.btn-icon i {
	margin-right: .75rem;
}

.btn-icon-bi i::before {
	margin-right: .75rem;
}

.card-product {
	border-radius: 0;
	box-shadow: 0 0 .75rem rgba(0, 0, 0, 0.25) !important;
	border: 0;
	text-align: center;
	height: 100%;
	display: flex !important;
}

.card-product .img-wrapper {
	margin-bottom: 1rem;
}

.card-product .img-wrapper img {
	display: inline-block;
}

.card-product .title {
	font-size: 1rem;
	text-align: center;
	margin-bottom: 1rem;
	flex-grow: 1;
}

.card-product .card-body {
	display: flex;
	flex-direction: column;
}

.card-product-category {
	border-radius: 0;
	box-shadow: 0 0 .75rem rgba(0, 0, 0, 0.25) !important;
	border: 0;
	text-align: center;
	height: 100%;
	display: flex;
}

.card-product-category .title {
	font-size: 1rem;
	text-align: center;
	margin-bottom: 1rem;
	flex-grow: 1;
}

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

.list-menu li a {
	color: var(--color-default);
	text-decoration: none;
}

.list-menu a:hover,
.list-menu a:focus {
	text-decoration: none;
	color: var(--color-primary);
}

.list-vertical-spaced li {
	margin-bottom: .75rem;
}

.list-vertical-spaced li:last-child {
	margin-bottom: 0;
}

/* #endregion */

/* #region slick carousel override */

.slick-multiple-items .slick-slide {
	padding: 1rem;
}

.carousel-brands img {
	max-width: 200px;
	margin: 0 auto;
}

/* #endregion */

/* #region page preloader */

#pagePreloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: rgba(255, 255, 255, 1);
	transition: all 0.6s ease-out;
}

#pagePreloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #fff;
	border-color: var(--color-primary) transparent var(--color-primary) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1.5s linear infinite;
	animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* #endregion */

/* #region header */

.header {
	margin-bottom: var(--mb-header-page);
	-webkit-box-shadow: 5px -6px 20px 20px rgba(0, 0, 0, 0.1);
	/* border-top: solid 10px #00918e; */
}

.header .navbar {
}

.header .nav-item {
	padding-bottom: 0;
}

.header .nav-link {
	display: inline-block;
	color: #fff;
	border: solid 0px red;
	margin-bottom: 0;
	line-height: 1.6rem;
}

.header .nav-item:hover,
.header .nav-item:focus {
	background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
	.header {
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		border-top: solid 10px #005999;
	}
}

/* #endregion */

/* #region main-section */

.main-section {
	/* margin-bottom: var(--mb-5); */
	border: var(--debug-border);
	padding-top: var(--pt-section-page);
	padding-bottom: var(--pb-section-page);
}

.main-section:nth-child(1) {
	background-color: #e2eaef;
}

.main-section:nth-child(odd) {
	background-color: #e2eaef;
}

.main-section_content {
	padding-top: var(--mb-section-page_title);
	padding-bottom: var(--mb-section-page_title);
}

.main-section_header {
	text-align: center;
	margin-bottom: 2rem;
}

.main-section_title {
	width: 100%;
	padding-bottom: 1rem;
	position: relative;
	font-weight: 600;
	font-size: 2rem;
	
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 2rem;
	font-family: var(--font-secondary);
}

.main-section_title::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	width: 100px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	border-bottom: .25rem solid var(--primary);
}

.main-section_description {
	opacity: .75;
	text-align: center;
}

/* #endregion */

/* #region main-sections > billboard */

.main-section-billboard {
	padding-top: 0;
	background-color: #d9e5f2;
	/* background: linear-gradient(180deg, rgb(216, 231, 240) 0%, rgb(85, 113, 150) 100%);
	-webkit-box-shadow: inset 0px 18px 23px -11px rgba(0, 0, 0, 0.25);*/
	box-shadow: inset 0px 10px 30px 0px rgba(0, 21, 49, .1); 
}

@media (min-width: 768px) {
	.main-section-billboard {
		padding-top: 2rem;
		padding-bottom: 1rem;
	}

}

/* #endregion */




















/* */