:root {
  --ih-primary: #040161;
  --ih-secondary: #05a1b9;
  --ih-secondaryLogo: #018495;
  --ih-gray: #5a5a5a;
  --ih-white: #fff;
  --ih-dullBlue: #1b3852;
  --ih-orange: #e17e57;
  --ih-whiteGray: "#F7F7F7";
  --ih-lightgray: #f1f1f1;
  --ih-lightblue: #eff3f6;
  --ih-yellow: #ffb72a;
  --light-yellow: #f7d804;
  --ih-black: #000;
  --ih-blackSlat: #1b252e;
  --ih-lightVoilet: #6677ad;
  --ih-dullgray: #484848;
  --ih-red: rgb(163, 26, 26);
  --ih-icon1: #269e9f;
  --ih-icon2: #1b5191;
  --ih-icon3: #ffa74e;
  --ih-icon4: #6ea2d4;
  --ih-icon5: #ce3375;
  --ih-icon6: #907049;

  --bgIconColorBlue: invert(20%) sepia(9%) saturate(5132%) hue-rotate(180deg)
    brightness(98%) contrast(89%);
  --bgIconColorGray: invert(100%) sepia(3%) saturate(380%) hue-rotate(338deg)
    brightness(116%) contrast(91%);
}

@font-face {
  font-family: "myfont-play";
  src: url("../assets/fonts/Play-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "myfont-thin";
  src: url("../assets/fonts/Poppins-Thin.ttf");
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: "myfont-light";
  src: url("../assets/fonts/Poppins-Light.ttf");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "myfont-regular";
  src: url("../assets/fonts/Poppins-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "myfont-bold";
  src: url("../assets/fonts/Poppins-Bold.ttf");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "myfont-medium";
  src: url("../assets/fonts/Poppins-Medium.ttf");
  font-weight: 200;
  font-display: swap;
}

body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "myfont-regular", sans-serif;
}

@media only screen and (min-width: 1650px) {
  body {
    max-width: 1650px;
    margin: 0 auto;
  }
}

img {
  width: 100%;
  height: 100%;
}

.vw-mx-auto {
  width: 85%;
  margin: 0px auto;
}
.primaryColor {
  color: var(--ih-primary);
}
.secondaryColor {
  color: var(--ih-secondary);
}
.whiteColor {
  background-color: var(--ih-white);
}
.pt-75 {
  padding-top: 75px !important;
}

.ih-fs-heading {
  font-size: 2.5rem;
}
.height90 {
  height: 90%;
}

@media only screen and (max-width: 500px) {
  .ih-fs-heading {
    font-size: 2.2rem;
  }
}

/* cookie popup */

.cokkie-banner {
  position: fixed;
  bottom: 0;
  left: 20px;
  bottom: 20px;
  width: 100%;
  max-width: 300px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  z-index: 1000;
  display: none;
}

.show-ck-msg {
  display: flex;
}

.cookie-image {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-image img {
  width: 40px;
  height: 40px;
}

.cookies-content {
  margin-top: 20px;
  text-align: left;
}

.cookies-content p {
  font-size: 14px;
  color: #333;
  margin: 0 0 10px;
}

.cookies-content a:hover {
  text-decoration: underline;
}

.popup-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-bottom a {
  color: #007bff;
  text-decoration: none;
  font-size: small;
}

.accept-btn {
  background-color: #05a1b9;
  border: none;
  border-radius: 5px;
  padding: 7px 20px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.accept-btn:hover {
  background-color: #038fa4;
}
