@font-face {
  font-family: 'PowerGrotesk-Regular';
  src: url('global/webfonts/PowerGrotesk-Regular.otf') format('opentype'),
    /* Modern Browsers */
    url('global/webfonts/PowerGrotesk-Regular.ttf') format('truetype');
  /* Older Browsers */
}


body {
  font-family: 'PowerGrotesk-Regular', sans-serif;
  /* Apply the custom font to the body */
}

/* Loader Styles start here */
.loader-wrapper {
  --line-width: 2.5px;
  --curtain-color: #f1faee;
  --outer-line-color: #ecf0f1;
  --middle-line-color: #d9232e;
  --inner-line-color: #a852ee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Change to -1 so the percentage loader will appear on the front and this loader is at the back */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.loaderText {
  text-align: center;
  color: #ecf0f1;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center vertically */
}

.preloader-text {
  font-family: 'PowerGrotesk-Regular', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
}

/* Rest of your CSS code here */

/* Percentage Preloader Styles start here */
.main-preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999999999;
  background-color: #000;
  text-align: center;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.main-preloader .preloader-percentage {
  color: #10B981;
  margin: 0;
}

.main-preloader .preloader-percentage span {
  display: inline-block;
  font-size: 30px;
  font-family: 'PowerGrotesk-Regular', sans-serif;
  text-align: center;
  letter-spacing: 1px;
  /* Use text-align to center the text */
}





/*Unknown ????*/
/*Unknown ????*/
.blog-header {            
  background-size: cover;
  text-align: center;
  margin-bottom: 50px;
}
.blog-overlay {
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
}
.header-content{
  padding: 100px 0;
}
.header-content img{
  margin-top: 30px;
}
.header-content a{
  padding: 20px 30px;
  color: #000;
  background: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 20px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  font-family: "Work Sans", sans-serif;
  border-radius: 2px;

} 
.header-content a:hover {
  color: #5C55FD;
  box-shadow: 0 10px 65px 0 rgba(248, 247, 255, 0.32);
  -moz-box-shadow: 0 10px 65px 0 rgba(248, 247, 255, 0.32);
  -webkit-box-shadow: 0 10px 65px 0 rgba(248, 247, 255, 0.32);
  -o-box-shadow: 0 10px 65px 0 rgba(248, 247, 255, 0.32);
}
.content {
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
.content p {
  padding: 20px;
}
.preview{
  display: inline-block;
  padding: 20px;
  margin-bottom: 20px;
}
.preview img {
  box-shadow: 0px 5px 20px 0px rgba(51,73,94,0.05);
  transition: all 400ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
}
.preview a:hover img {
  box-shadow: 0px 20px 65px 0px rgba(51,73,94,0.15);
}
img {
  vertical-align: top;
}

.rating{
  margin-top: 60px;
}
.rating img{
  padding: 30px;
}
.copyright{
  padding: 20px 0;
}
@media only screen 
and (max-width: 992px) {
  .preview {
      display: block;
      padding: 10px;
  }
  .preview img{            
      max-width:100%;
      height:auto;
  }
   .header-content a{
      display: block;
      margin-bottom: 20px;
   }

}
/*Unknown ????*/
/*Unknown ????*/

/* ... (Other styles) ... */



.loaderImage {
  display:block;
  position: initial;
  height: 45px;
  width: 45px;
  margin-bottom: 0.5rem;
}

/* Define the flip animation OPTIONAL IF YOU WANT TO ACTIVATE */
/* @keyframes flip {
  0% {
      transform: rotateY(0deg);
  }
  50% {
      transform: rotateY(180deg);
  }
  100% {
      transform: rotateY(360deg);
  }
} */



/* Apply the animation to the image */
/* Define the animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

/* Apply the animation to the image */
.loaderImage {
  animation: spin 2s linear infinite reverse;
}

.loader {
  display:block;
  position: absolute;
  top:50%;
  left:50%;
/*   transform: translate(-50%, -50%); */
  width:150px;
  height:150px;
  margin:-75px 0 0 -75px;
  border:var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius:100%;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  z-index:1001;
}


.loader:before {
  content:"";
  position: absolute;
  top:4px;
  left:4px;
  right:4px;
  bottom:4px;
  border:var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius:100%;
  -webkit-animation: spin 3s linear infinite;
          animation: spin 3s linear infinite;
}

.loader:after {
  content:"";
  position: absolute;
  top:14px;
  left:14px;
  right:14px;
  bottom:14px;
  border:var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius:100%;
  -webkit-animation: spin 1.5s linear infinite;
          animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0%   { 
    -webkit-transform: rotate(0deg); 
      -ms-transform: rotate(0deg); 
          transform: rotate(0deg);
  }
  100% { 
    -webkit-transform: rotate(360deg); 
      -ms-transform: rotate(360deg); 
          transform: rotate(360deg);
  }
}
@keyframes spin {
  0%   { 
    -webkit-transform: rotate(0deg); 
      -ms-transform: rotate(0deg); 
          transform: rotate(0deg);
  }
  100% { 
    -webkit-transform: rotate(360deg); 
      -ms-transform: rotate(360deg); 
          transform: rotate(360deg);
  }
}





.loader-wrapper .loader-section {
  position:fixed;
  top:0;
  background: linear-gradient(90deg, #16142e 100%, rgb(17, 214, 185) 100%); /*#4b4b4b Preloader Background*/
  width:51%;
  height:100%;
  z-index:1000;
}

.loader-wrapper .loader-section.section-left {
  left:0
}
.loader-wrapper .loader-section.section-right {
  right:0;
}

/* Loaded Styles */ 
.loaded .loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
}
.loaded .loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
}
.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.loaded .loader-wrapper {
  visibility: hidden;
  transform:translateY(-100%);
  transition: all .3s 1s ease-out;
}
