@font-face {
  font-family: "BLOVERLY";
  src: url("../../fonts/BLOVARY/BLOVERLY.otf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: "Nohemi";
  src: url("../../fonts/Nohemi/Nohemi-Regular-BF6438cc58b98fc.otf")
    format("truetype");
  font-weight: normal;
}

html,
body {
  overflow-x: hidden;
}

/* ================================Header styles================================*/
/* Header style large screen */
header .navbar {
  padding: 0.4rem 21.9rem !important; /* Increased padding */
  background: rgba(45, 45, 45, 0.7);
  backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030; /* Higher than the default Bootstrap z-index for .navbar */
}

.nav-link {
  font-family: "Inter Tight", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #f1f1f1;
}

.active-link {
  color: #9d9d9d !important;
}

/* Header style large screen */

/* Header style md screen */
@media (min-width: 1200px) and (max-width: 1280px) {
  header .navbar {
    padding: 0.4rem 20rem !important; /* Adjust padding for medium screens */
  }
  .footer {
    background-color: #eeeeee;
    font-family: sans-serif;
    padding: 1rem 10rem;
  }
}
/* Header style md screen */

/* Header style tab screen */
@media (min-width: 768px) and (max-width: 1024px) {
  header .navbar {
    padding: 0.4rem 1rem !important; /* Adjust padding for tablet screens */
  }
  .footer {
    background-color: #eeeeee;
    font-family: sans-serif;
    padding: 1rem 6rem !important;
  }
  .social-media-part {
    text-align: left !important;
  }
}
/* Header style tab screen */

/* Header style mobile screen */
@media (max-width: 767px) {
  header .navbar {
    padding: 0.4rem 1rem !important; /* Adjust padding for mobile screens */
  }
  .footer {
    background-color: #eeeeee;
    font-family: sans-serif;
    padding: 1rem 2rem !important;
  }
  .social-media-part {
    text-align: left !important;
  }
}
/* Header style mobile screen */
/* ================================Header styles================================*/

/* ================================Sidenav styles================================*/
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0; /* Changed from 'left: 0' to 'right: 0' */
  background-color: #ffffff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 30px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #444444;
  display: block;
  transition: 0.3s;
  text-align: center;
}

.sidenav a:hover {
  color: #f1f1f1;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}

.media-links {
  font-family: "Inter Tight", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px !important;
  line-height: 25px;
  color: #c0c0c0;
  width: 33.33%;
  text-align: left;
  align-self: flex-end;
  padding: 10px !important;
}

.links {
  font-family: "Inter Tight", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 25px;
  color: #c0c0c0;
  text-align: center;
  display: flex;
  /* Use flexbox */
  flex-direction: column;
  /* Arrange items vertically */
  justify-content: center;
  /* Center items vertically */
}

.links a {
  height: 33.33%;
}

.links {
  font-family: "Inter Tight", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 25px;
  color: #c0c0c0;
}

.nav-link {
  display: block;
  margin: 1rem 0;
}

.links ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.links li {
  height: 33.33%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .display-div-of-menu-nav {
    height: 20%;
    padding: 0.5rem 2rem;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
}

footer ul li a:hover {
  color: rgb(62, 60, 60);
}

footer ul li a {
  font-family: "Inter Tight", sans-serif !important;
}
/* ================================Sidenav styles================================*/

/* ================================Preloader stles================================*/
/* CSS for preloader */
.preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999999999999999999;
}

.lds-ripple,
.lds-ripple div {
  box-sizing: border-box;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }

  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }

  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }

  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}
/* ================================Preloader stles================================*/

/* ================================Footers styles================================*/
.footer {
  background-color: #eeeeee;
  font-family: "Inter Tight", sans-serif !important;
}

.upper-footer-container {
  padding: 1rem 14rem;
}

.lower-footer-container {
  padding: 0 14rem;
}

.footer-container {
  padding: 1rem 10rem;
}

.footer-nav-section {
  margin-bottom: 1rem;
}

.footer-nav-section h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #323232;
  font-weight: 600;
}

.footer-nav-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-nav-section ul li a {
  text-decoration: none;
  color: #6f6f6f;
  font-size: 15px;
  font-family: "Inter Tight", sans-serif !important;
}

.social-media-list li {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background-color: #323232;
  padding: 7px;
  border-radius: 3px;
  text-align: center;
  line-height: 26px;
}

.footer-logo,
.footer-copywrite {
  margin-bottom: 10px;
}

.footer-copywrite p {
  font-size: 14px;
  color: #666;
}

.fa {
  font-size: 24px;
}

.social-media-title {
  font-family: "Inter Tight", sans-serif !important;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 121%;
  color: #323232;
}

.footer-logo {
  width: 100px;
  height: 100px;
}

.footer .row.mt-4 {
  align-items: center;
}

/* Media queries for mobile and tablet */
@media (max-width: 1024px) {
  .upper-footer-container,
  .lower-footer-container {
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 768px) {
  .upper-footer-container,
  .lower-footer-container {
    padding: 0.5rem 1rem;
  }

  .social-media-list li {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
    line-height: 10px; /* Adjust line-height to center the icon vertically */
  }

  .fa {
    font-size: 20px; /* Adjust font size to fit within the smaller icon size */
  }
}
/* ================================Footers styles================================*/
