@import "./css/constants.css";

body {
  font-family: var(--font-family) !important;
}
.header-color {
  background-color: var(--cust-header-color) !important;
}

.custom-h1 {
  font-size: var(--cust-h1-font-size) !important;
  margin: 0 !important;
}
.custom-p {
  font-size: var(--cust-p-font-size) !important;
  margin: 0 !important;
}

.backdrop-blur {
  backdrop-filter: blur(var(--backdrop-blur-10));
}
.backdrop-blur-lighter {
  backdrop-filter: blur(var(--backdrop-blur-5));
}
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.video-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%;
  min-height: 100%;

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */

  /* Center the video */
  position: absolute;

  object-fit: cover;
}
.logo-icon {
  height: 60px;
  width: 60px;
}
.social-icon {
  height: 25px;
  width: 25px;
}
.sticky-top {
  position: sticky;
  top: 0;
}
.footer-sub-text {
  font-size: 1rem;
}
.footer-heading-text {
  font-size: 1.5rem;
}

/* Hide scrollbar but keep scroll funtionality */
/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.h-15 {
  height: 15%;
}
.h-70 {
  height: 70%;
}

.flex-sticky-main-container {
  /* required style to make footer sticky */
  /* refer here https://css-tricks.com/couple-takes-sticky-footer/ */
  flex: 1 0 auto;
  /** border because of flex white line bug */
  border: 1px solid transparent;
}
.flex-sticky-footer {
  /* required style to make footer sticky */
  /* refer here https://css-tricks.com/couple-takes-sticky-footer/ */
  flex-shrink: 0;
}

.social-icon.animation-scale-glow:hover {
  border-radius: 4px;
  transform: scale(1.1);
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.7);
}

#footer-icon {
  display: flex;
}
.text-wrap-balance {
  text-wrap: balance;
}
/* // Small devices (landscape phones, 576px) */
@media screen and (max-width: 576px) {
  .custom-h1 {
    font-size: 1rem !important;
  }
  .custom-p {
    font-size: 0.5rem !important;
  }
  .logo-icon {
    width: 50px;
    height: 50px;
  }
  .social-icon {
    height: 16px;
    width: 16px;
  }
  .footer-sub-text {
    font-size: 0.5rem;
  }
  .footer-heading-text {
    font-size: 0.6rem;
  }
  #footer-icon {
    display: none !important;
  }
}
/* EXTREMELY SMALL SCREENS */
@media screen and (max-width: 320px) {
  .custom-h1 {
    font-size: 0.8rem !important;
  }
  .custom-p1 {
    font-size: 0.5rem !important;
  }

  .social-icon {
    height: 10px;
    width: 10px;
  }
  .footer-sub-text {
    font-size: 0.4rem;
  }
  .footer-heading-text {
    font-size: 0.6rem;
  }
  #footer-icon {
    display: none !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 400px) {
  /* hiding logo text on very small devices */
  .custom-h1 {
    font-size: 0.8rem !important;
  }
  .custom-p1 {
    font-size: 0.5rem !important;
  }
  .social-icon {
    height: 12px;
    width: 12px;
  }
  .footer-sub-text {
    font-size: 0.4rem;
  }
  .footer-heading-text {
    font-size: 0.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  #footer-icon {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .custom-h1 {
    font-size: 1rem !important;
  }
  .custom-p {
    font-size: 0.5rem !important;
  }
  .logo-icon {
    width: 50px;
    height: 50px;
  }

  .social-icon {
    height: 15px;
    width: 15px;
  }
  .footer-sub-text {
    font-size: 0.625rem;
  }
  .footer-heading-text {
    font-size: 0.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  #footer-icon {
    display: none !important;
  }
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .social-icon {
    height: 17px;
    width: 17px;
  }
  #footer-icon {
    display: none;
  }
  .footer-sub-text {
    font-size: 0.625rem;
  }
  .footer-heading-text {
    font-size: 0.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  #footer-icon {
    display: flex !important;
  }
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .social-icon {
    height: 20px;
    width: 20px;
  }

  .footer-sub-text {
    font-size: 0.625rem;
  }
  .footer-heading-text {
    font-size: 0.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .footer-sub-text {
    font-size: 0.625rem;
  }
  .footer-heading-text {
    font-size: 0.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  p {
    font-size: 0.938rem;
  }
  .nav-item {
    font-size: 0.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}
/* 
// XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .custom-h1 {
    font-size: 1.5rem !important;
  }
  .custom-p {
    font-size: 0.625rem !important;
  }
  .logo-icon {
    width: 80px;
    height: 80px;
  }
  .social-icon {
    height: 25px;
    width: 25px;
  }
  .footer-sub-text {
    font-size: 0.625rem;
  }
  .footer-heading-text {
    font-size: 0.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  p {
    font-size: 0.938rem;
  }
  .nav-item {
    font-size: 0.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

.text-black {
  color: black;
}

.partner-icon-item {
  height: 30px;
  width: 120px;
  margin: 0.25rem 0.25rem;
}
