:root {
	--col-main: #eb9729;
	--col-html: #c21010;
	--col-wordpress: #1360b9;
    --col-gray: #c1c1c1;
    --col-darkwhite: #f1f1f1;
}

*::-webkit-scrollbar {-webkit-appearance: none; width: 6px; height: 6px;}
*::-webkit-scrollbar-track-piece {background-color: var(--col-darkwhite)}
*::-webkit-scrollbar-thumb {background-color: var(--col-gray); border-radius: 10px;}
*::-webkit-scrollbar-thumb:vertical {height: 6px}
*::-webkit-scrollbar-thumb:horizontal {width: 6px}

@import url("https://fonts.googleapis.com/css?family=Lato:300,400,900");

body, input, select, textarea {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 2em;
	/* font-size: 1.25em; */
}

h1, h2, h3, h4, h5, h6 {
    color: inherit;
    line-height: 1.75em;
}

fieldset {
	padding: revert;
	border: revert;
}

.my-link {
	cursor: pointer;
}
.my-link:hover, .my-link:active {
	opacity: .7;
}

.bg-light-1 { background: lightgray !important }
.bg-main { background: var(--col-main) !important }
.text-main { color: var(--col-main) !important }
.text-main:hover { color: var(--col-main) !important }
.my-text-dark { color: #212529 !important }
a.hover-main:hover {
    color: var(--col-main) !important;
    filter: none !important;
}

a.disabled {
	pointer-events: none;
	cursor: default;
}

.font-1 { font-size: .25em !important }
.font-2 { font-size: .5em !important }
.font-3 { font-size: .75em !important }
.font-4 { font-size: 1em !important }
.font-5 { font-size: 1.5em !important }
.font-6 { font-size: 3em !important }

.w-5  { width:  5% !important }
.w-10 { width: 10% !important }
.w-15 { width: 15% !important }
.w-20 { width: 20% !important }
.w-25 { width: 25% !important }
.w-30 { width: 30% !important }
.w-35 { width: 35% !important }
.w-40 { width: 40% !important }
.w-45 { width: 45% !important }
.w-50 { width: 50% !important }
.w-55 { width: 55% !important }
.w-60 { width: 60% !important }
.w-65 { width: 65% !important }
.w-70 { width: 70% !important }
.w-75 { width: 75% !important }
.w-80 { width: 80% !important }
.w-85 { width: 85% !important }
.w-90 { width: 90% !important }
.w-95 { width: 95% !important }


/* ******************************************************** NAVBAR ******************************************************** */
.navbar-nav {
	font-size: 14px;;
}
/* .nav-item.active {
	background: var(--col-main);
} */
.nav-item.active .nav-link {
	border-bottom: 5px solid var(--col-main) !important;
}
.nav-item:hover .nav-link {
	border-bottom: 3px solid var(--col-main);
}


/* *************************************************** CUSTOM BOOTSTRAP *************************************************** */
.bg-style-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.breadcrumbs {
    width: 100%;
	height: 380px;
	display: flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
}

.image-box {
    position: relative;
    margin: auto;
    overflow: hidden;
}
.image-box img {
    max-width: 100%;
    transition: all 0.5s;
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
}
.image-box:hover img {
	transform: scale(1.1);
}

.image-zoom:hover img {
	transform: scale(1.1);
}

.bg-overlay {
    background-color: rgba(0,0,0,0.3);
}
.bg-overlay.animate {
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.bg-overlay.animate:hover {
	background-color: rgba(0,0,0,0);
}

/* .dropdown:hover .dropdown-menu { */
	/* display: block; */
/* } */

.no-border {
	border: none !important;
}

.border-animate::before,
.border-animate::after {
	box-sizing: inherit;
	content: '';
	position: absolute;
}
.border-animate::before,
.border-animate::after {
	border: 2px solid transparent;
	width: 0;
	height: 0;
}
.border-animate::before {
	top: 0;
	left: 0;
}
.border-animate::after {
	bottom: 0;
	right: 0;
}
.border-animate:hover::before,
.border-animate:hover::after {
	width: 100%;
	height: 100%;
}
.border-animate:hover::before {
	-webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
	transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.border-animate:hover::after {
	-webkit-transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
	transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}
.border-animate-html:hover::before {
	border-top-color: var(--col-html);
	border-right-color: var(--col-html);
}
.border-animate-html:hover::after {
	border-bottom-color: var(--col-html);
	border-left-color: var(--col-html);
}
.border-animate-wordpress:hover::before {
	border-top-color: var(--col-wordpress);
	border-right-color: var(--col-wordpress);
}
.border-animate-wordpress:hover::after {
	border-bottom-color: var(--col-wordpress);
	border-left-color: var(--col-wordpress);
}

.table-alternata .row:nth-child(odd) {
	background: lightgray;
}
.table-alternata .row:nth-child(even) {
	background: white;
}

.flex-row {
	display: flex;
	flex-wrap: wrap;
}
.flex-row > [class*='col-'] {
	display: flex;
	flex-direction: column;
}
.flex-row.row:after, 
.flex-row.row:before {
	display: flex;
}



/* ****************************************************** BACK OFFICE ****************************************************** */
/* ************* LEFT SIDEBAR ************* */
.nav .nav-link {
	color: darkgray;
}
.nav .nav-link.active {
    border-left: 4px solid var(--col-main); /* VIOLA */
    background: #222;
	color: white;
}
.nav .nav-link:active, .nav .nav-link:hover {
    background: #222;
	color: white;
}



/* ****************************************************** CUSTOM CSS ****************************************************** */
.breadcrumbs .shape {
    position: absolute;
    width: 100%;
}
.breadcrumbs .shape__1 {
    top: -10px;
    left: 0;
}
.breadcrumbs .shape__2 {
    top: auto;
    bottom: -8px;
}














