* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  /* background: url(assets/images/bg-img.png); */
  background-color: rgb(36, 80, 106);
  /* background-color: #e2e1e4; */
}

/* font family */
@font-face {
  font-family: "customFont1";
  src: url("./fonts/Bodoni\ 72.ttc");
}

@font-face {
  font-family: "customFont";
  src: url("./fonts/Baloo\ Regular\ 400.ttf");
}

@font-face {
  font-family: "gujratiFont";
  src: url("./fonts/NotoSansGujarati-VariableFont_wdth\,wght.ttf");
}


@font-face {
  font-family: "hindi";
  src: url("./fonts/ITFDevanagari.ttc");
  /* src: url("./fonts/ITFDevanagari.ttc"); */
}

/* Radio button for language select css */

#language {
  background-color: rgb(38 132 188 / 71%);
  /* border-radius: 20%; */
}

#langSelect label {
  display: block;
  padding: 5px;
  position: relative;
  /* padding-left: 20px; */
}

#langSelect label input {
  display: none;
}

#langSelect label span {
  border: 1px solid #fff;
  overflow: hidden;
  font-size: 9pt;
  color: #fff;
}

#langSelect input:checked+span {
  /* background: #ccf; */
  background: #fff;
  color: black;
  border-color: black;
  /* #ccf; */
}

/* draggable dot  */
.draggable {

  /* border-radius: 50%; */
  position: absolute;
  cursor: grab;
  /* user-drag: none;  */
}

.path {
  position: absolute;
  width: 2px;
  background-color: transparent;
  transform-origin: top center;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 0.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/* animations */
#home_videoBtn,
#homeIcon,
#langSelect {
  animation: slidein1 0.5s ease-in 0s;
}

@keyframes slidein1 {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

#home_title_text,
.link_text {
  animation: fade_home 1s ease-in 0s;
}

@keyframes fade_home {
  from {
    opacity: 0.1;
  }

  to {
    opacity: 1;
  }
}


/* scrollbar hiding */

.custom-scrollbar {
  width: 300px;
  height: 300px;
  overflow: auto;
  scrollbar-width: none;
  /* Hide the scrollbar for Firefox */
  -ms-overflow-style: none;
  /* Hide the scrollbar for Internet Explorer/Edge */
}

.custom-scrollbar::-webkit-scrollbar {
  width: 0;
  /* Hide the scrollbar for Chrome and Safari */
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: transparent;
  /* Hide the scrollbar thumb for Chrome and Safari */
}

.custom-scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
  /* Hide the scrollbar track for Chrome and Safari */
}