:root {
	--first-color: #8FA83E;
	--second-color: #28382D;
	--third-color: #BB7142;
	--fourth-color: #F7DC53;

	--white-color: #FFF;
	--black-color: #2E231A;
	--grey-color: #808080;
	--red-color: #ff0000;
	--green-color: #008000;
	/* --bs-body-font-family: Brush Script MT; */
	/* --bs-body-font-family: Arial; */
	--bs-body-font-family: 'Gotham';

	--navbar-height: 5rem;
}


@font-face {
    font-family: 'Gotham';
    src: url("../../../fonts/Gotham/GothamBlack-8ff94e98c7b1184097a05279fba1735f.otf") format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url("../../../fonts/Gotham/GothamBold-c6271d5e3a70f55d17bca3f60ea51fab.otf") format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url("../../../fonts/Gotham/GothamBook-0637e5e29c6ec459f4e0b610768efe7c.otf") format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url("../../../fonts/Gotham/GothamExtraLight-b84da8a9bfe103e39dd4504abf2d9186.otf") format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url("../../../fonts/Gotham/GothamExtraLightItalic-475bc5e4637f82f19fa7a9ecc77efe1c.otf") format('opentype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham';
    src: url("../../../fonts/Gotham/GothamItalic-69497b6606e3733f2f075afbce8d6d63.otf") format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham';
    src: url("../../../fonts/Gotham/GothamItalicBold-b185365b36bce578a6dffacf4981b22d.otf") format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham';
    src: url("../../../fonts/Gotham/GothamLight-8f28044f8b2c380020a31acab959d25b.otf") format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url("../../../fonts/Gotham/GothamMedium-64d159da7515f568615daef2f647ae54.otf") format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url("../../../fonts/Gotham/GothamRegular-870ad322011e5ed2a35d3b55a255e20a.otf") format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url("../../../fonts/Gotham/GothamThin-5741bf36a716755c8bffcb30dd8f2343.otf") format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url("../../../fonts/Gotham/GothamThinItalic-b3de0608d4348b74b948c87069e9eb7a.otf") format('opentype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham';
    src: url("../../../fonts/Gotham/GothamUltra-45678a93304a560125c3a5189a23012b.otf") format('opentype');
    font-weight: 800;
    font-style: normal;
}

body {
	font-weight:300;
}


/*--------------------------------------------------------------
	TITLES
--------------------------------------------------------------*/
h1 {
	color: var(--second-color);
	font-weight: 700;
	letter-spacing: 3px;
	margin-bottom: 3rem;
	/* text-transform: uppercase; */
}

h1:after {
	background-color: var(--third-color);
	content: '';
	display: block;
	height: 5px;
	width: 30px;
	margin-top: 0.5%;
}

.h1-center {
	text-align: center;
}

.h1-center:after {
	margin-left: 45%;
}


h3 {
	color: var(--second-color);
	font-weight: 700;
	letter-spacing: -1px;
	margin-bottom: 1rem;
}

h3:after {
	background-color: var(--third-color);
	content: '';
	display: block;
	height: 3px;
	width: 20px;
	margin-top: -2px;
}


h4 {
	letter-spacing: 2px;
	font-size: 15px;
	margin-top: 16px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
}

/*--------------------------------------------------------------
	COLORS
--------------------------------------------------------------*/
.first-color {
	color: var(--first-color) !important;
}

.second-color {
	color: var(--second-color) !important;
}

.third-color {
	color: var(--third-color) !important;
}

.fourth-color {
	color: var(--fourth-color) !important;
}

.white-color {
	color: var(--white-color) !important;
}

.black-color {
	color: var(--black-color) !important;
}

.grey-color {
	color: var(--grey-color) !important;
}

.red-color {
	color: var(--red-color) !important;
}

.green-color {
	color: var(--green-color) !important;
}

/*--------------------------------------------------------------
	BACKGROUND COLORS
--------------------------------------------------------------*/
.first-background-color {
	background-color: var(--first-color) !important;
}

.second-background-color {
	background-color: var(--second-color) !important;
}

.third-background-color {
	background-color: var(--third-color) !important;
}

.fourth-background-color {
	background-color: var(--fourth-color) !important;
}

.white-background-color {
	background-color: var(--white-color) !important;
}

.black-background-color {
	background-color: var(--black-color) !important;
}

.grey-background-color {
	background-color: var(--grey-color) !important;
}


/* HR */
.hr-first-background-color {
	background-color: var(--first-color);
	opacity: 0.80;
	height: 2px !important;
}



/*--------------------------------------------------------------
	BODY
--------------------------------------------------------------*/
body {
	font-family: var(--bs-body-font-family);
	color: var(--black-color);
	background-color: var(--white-color);
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.main-container {
	flex: 1;
}



/*--------------------------------------------------------------
	NABVAR
--------------------------------------------------------------*/
.my-navbar {
	height: var(--navbar-height);
	/* border-bottom: 2px solid var(--black-color); */
}

.factis-navbar{
	height: var(--navbar-height);
}

.navbar-logo-img {
	height: auto;
	opacity: 0;
}


/* xs < 576px */
@media (min-width: 1px) {
	.navbar-logo-img {
		width: 50px;
		margin-left: 25%;
	}
}


/* md >= 768px */
@media (min-width: 768px) {
	.navbar-logo-img {
		width: 60px;
		margin-left: 5%;
	}
}


/* xl >= 1200px */
@media (min-width: 1200px) {
	.navbar-logo-img {
		width: 80px;
		margin-left: 10%;
	}
}

.my-navbar .nav-item,
.dropdown-menu {
	background-color: var(--first-color);
}


.nav-link {
	color: var(--second-color);
}

/*--------------------------------------------------------------
	FOOTER
--------------------------------------------------------------*/
.footer {

}

.footer .copyright {
	margin: 0;
	text-decoration: none;
}

.footer .footer-right {
	text-align: right;
}

.footer .footer-left {
	text-align: left;
}

.footer .social-medias a
{
	text-decoration: none;
}

/*--------------------------------------------------------------
	FONT
--------------------------------------------------------------*/
.ftz-10 {
	font-size: 10px;
}

.ftz-12 {
	font-size: 12px;
}

.ftz-15 {
	font-size: 15px;
}

.ftz-16 {
	font-size: 16px;
}

.ftz-18 {
	font-size: 18px;
}

.ftz-20 {
	font-size: 20px;
}

.ftz-24 {
	font-size: 24px;
}

.ftz-30 {
	font-size: 30px;
}

.ftz-50 {
	font-size: 45px;
}

.ftz-75 {
	font-size: 75px;
}

.ftw-100 {
	font-weight: 100;
}

.ftw-300 {
	font-weight: 300;
}

.ftw-500 {
	font-weight: 500;
}

.ftw-700 {
	font-weight: 700;
}

.ftw-900 {
	font-weight: 900;
}

.ft-italic {
	font-style: italic;
}

.text-justify {
	text-align: justify;
}

.text-align-right {
	text-align: right;
}

.font-alt {
	text-transform: uppercase;
}

.text-deco-no {
	text-decoration: none;
}

.display-none {
	display: none;
}


/*--------------------------------------------------------------
	SORTABLE ITEMS
--------------------------------------------------------------*/
.sortable-items {
	cursor: pointer;
}


/*--------------------------------------------------------------
	MODALS
--------------------------------------------------------------*/
.modal-header {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}


.nav-pills .nav-link {
	border-radius: 0px;
}


.accordion-button:not(.collapsed) {
	color: var(--first-color);
	background-color: var(--white-color);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}




/*--------------------------------------------------------------
	MARGIN
--------------------------------------------------------------*/
.mt-6 {
	margin-top: 6rem !important;
}

.mb-6 {
	margin-bottom: 6rem !important;
}

.my-6 {
	margin-top: 6rem !important;
	margin-bottom: 6rem !important;
}

.mt-7 {
	margin-top: 8rem !important;
}

.mb-7 {
	margin-bottom: 8rem !important;
}

.my-7 {
	margin-top: 8rem !important;
	margin-bottom: 8rem !important;
}

.mt-8 {
	margin-top: 10rem !important;
}

.mb-8 {
	margin-bottom: 10rem !important;
}

.my-8 {
	margin-top: 10rem !important;
	margin-bottom: 10rem !important;
}



/*--------------------------------------------------------------
	Preloader
--------------------------------------------------------------*/
:root {
	--loader-logo-initial-width: 70px;
	--loader-logo-initial-margin: -35px 0 0 -35px;
	--loader-logo-initial-opacity: -0.3;

	--loader-logo-final-width: 120px;
	--loader-logo-final-margin: -60px 0 0 -60px;
	--loader-logo-final-opacity: 1;
}

.page-loader {
	position: fixed;
	background: var(--first-color);
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	z-index: 9998;
}

.loader {
	position: absolute;
	width: var(--loader-logo-initial-width);
	margin: var(--loader-logo-initial-margin);
	left: 50%;
	top: 40%;
	text-indent: -9999em;
	z-index: 9999;
	animation: load 2s infinite linear;
}


@-webkit-keyframes load {
	0% {
		opacity: var(--loader-logo-initial-opacity);
		width: var(--loader-logo-initial-width);
		margin: var(--loader-logo-initial-margin);
	}

	50% {
		opacity: var(--loader-logo-final-opacity);
		width: var(--loader-logo-final-width);
		margin: var(--loader-logo-final-margin);
	}

	100% {
		opacity: var(--loader-logo-initial-opacity);
		width: var(--loader-logo-initial-width);
		margin: var(--loader-logo-initial-margin);
	}
}

@keyframes load {
	0% {
		opacity: var(--loader-logo-initial-opacity);
		width: var(--loader-logo-initial-width);
		margin: var(--loader-logo-initial-margin);
	}

	50% {
		opacity: var(--loader-logo-final-opacity);
		width: var(--loader-logo-final-width);
		margin: var(--loader-logo-final-margin);
	}

	100% {
		opacity: var(--loader-logo-initial-opacity);
		width: var(--loader-logo-initial-width);
		margin: var(--loader-logo-initial-margin);
	}
}


/*--------------------------------------------------------------
	PROGRESS BAR
--------------------------------------------------------------*/
.progress-bar{
	background-color: var(--first-color);
}




/*--------------------------------------------------------------
	SWEET ALERT
--------------------------------------------------------------*/
.swal-button {
    border-radius: 0px;
}

.swal-button--delete {
    background-color: #d33;
    color: #fff;
    border: 1px solid #d33;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.swal-button--delete:not([disabled]):hover,
.swal-button--delete:focus,
.swal-button--delete:active,
.swal-button--delete:hover 
{
    background-color: #b52b27;
    border: 1px solid #b52b27;
}
