/*!
 * Percent-Preloader CSS - v1
 * @author JDM Digital - https://jdmdigital.co
 * Copyright (c) 2022
 */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	margin: auto;
	width: 100vw;
	height: 100vh;
	background: #797979;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	z-index: 99;
	transition-delay: 0.65s;
}
.preloader .inner {
	width: 100vw;
	height: 100vh;
}
.preloader:before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 200px 100vh 0;
	border-color: transparent #797979 transparent transparent;
	position: absolute;
	left: -200px;
	top: 0;
}
.preloader:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100vh 0 0 200px;
	border-color: transparent transparent transparent #797979;
	position: absolute;
	right: -200px;
	top: 0;
}

.preloader * {
	/*-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);*/
}

.transition-overlay {
	width: 100vw;
	height: 100vh;
	position: fixed;
	right: calc(-100% - 200px);
	bottom: 0;
	background: #797979;
	z-index: 9999;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	visibility: hidden;
}
.preloader .inner .percentage {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  font-family: "Josefin Slab", Sans-serif;
}
.navigation__transparent.navbar{
	visibility: hidden;
}
.page-loaded .preloader .percentage {
	margin-left: 100px;
	opacity: 0;
}
.page-loaded .preloader {
	left: calc(-100% - 200px);
	visibility: hidden;
}


/*========== Custum Css Start =========*/

.preloader {
  background-color: #FAF5EF;
}

.preloader .inner {
  padding-top: 310px;
  padding-left: 80px;
  padding-right: 80px;
}

.preloader .inner .loader_logo {
  margin-bottom: 25px;
}

.preloader .inner .loader_logo img {
  width: 165px;
  height: auto;
}

.preloader .inner .progress {
  background-color: #E1E1E1;
  height: 6px;
}

.preloader .inner .progress .progress-bar {
  background-color: #588E2E;
  transition: inherit;
}

.preloader .inner .loading_text {
  width: 100%;
  display: inline-block;
  margin-top: 10px;
}

/*#loader-progress {
  display: inline-block;
  color: #000;
  background-color: #588E2E;
  height: 6px;
  position: relative;
  z-index: 999;
}*/