@font-face {
  font-family: "alt";
  src: url("../fonts/NanumSquareNeo-aLt.ttf");
}

@font-face {
  font-family: "brg";
  src: url("../fonts/NanumSquareNeo-bRg.ttf");
}

@font-face {
  font-family: "cbd";
  src: url("../fonts/NanumSquareNeo-cBd.ttf");
}

@font-face {
  font-family: "deb";
  src: url("../fonts//NanumSquareNeo-dEb.ttf");
}

@font-face {
  font-family: "ehv";
  src: url("../fonts/NanumSquareNeo-eHv.ttf");
}

* {
  font-family: "cbd";
}

.splash {
  /*background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;*/
  background-color:#4CCEF0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 100%;
  transition: 0.5s;
}
.splash-logo {
  width: 200px;
  margin: auto;
  display: block;
}
.splash.display-none {
  display: none !important;
}

/* font families */
.brg {
  font-family: "brg";
}
.deb {
  font-family: "deb";
}
.ehv {
  font-family: "ehv";
}

body,
html {
  min-height: 100vh;
  overflow-x: hidden;
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h-screen {
  min-height: 100vh;
}

.line::after {
  width: 100%;
  height: 2px;
  background-color: white;
  counter-reset: none;
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
}

.krw {
  position: relative;
  top: 50%;
  right: 0;
}

.p-50 {
  padding: 50px;
}
.text-blue {
  color: #265fc8;
}
.text-green {
  color: #41add5;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #265fc8;
  border-radius: 50%;
}

.bg-light {
  background-color: #e6edf5 !important;
  transition: 0.4s;
  cursor: pointer;
}
.bg-light:hover {
  background-color: #265fc8 !important;
}
.bg-light:hover .text-blue {
  color: white !important;
}
.bg-light:hover .dot {
  background-color: white !important;
}

.icon {
  width: 50px;
}

.fs-14 {
  font-size: 14px;
}
.fs-13 {
  font-size: 13px;
}

.scrollable {
  height: 180px;
  overflow-y: scroll;
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.text-muted {
  color: #7c7c7c;
}

.btn-blue {
  background-color: #265fc8;
  color: white;
  transition: 0.4s;
}

.btn-blue:hover {
  background-color: #41add5;
  color: white;
}

.px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.btn-light-blue {
  background-color: #e7ebf3;
  color: #265fc8;
  padding: 10px 60px;
  transition: 0.4s;
}

.btn-light-blue:hover {
  background-color: #265fc8;
  color: white;
}
.mt-100 {
  margin-top: 100px;
}

.links {
  position: sticky;
  bottom: 0;
  left: 0;
}

.bdge {
  background-color: #f4f4f4;
  padding: 15px 60px;
}

.text-dark {
  color: #404040 !important;
}

.fs-25 {
  font-size: 25px;
}
.btn-green {
  background-color: #41add5;
  color: white;
  transition: 0.4s;
}

.btn-green:hover {
  background-color: #265fc8;
  color: white;
}

.first {
  width: 50%;
}
.second,
.third {
  width: 25%;
}

.btn-light {
  background-color: #e7ebf3;
  color: #265fc8;
  padding: 10px 60px;
  transition: 0.4s;
}

.links {
  position: fixed;
  background: white;
  padding: 20px 30px !important;
  /* box-shadow: 0 0 5px rgba(0,0,0,0.4); */
  border-radius: 20px;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

.card-body {
  padding-bottom: 200px !important;
}
.card-body.pb-50 {
  padding-bottom: 50px !important;
}

.otp-input {
  height: 55px;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid black;
}

.accordion * {
  background-color: #fff !important;
  border: unset;
  outline: unset !important;
  box-shadow: unset !important;
  color: black !important;
}

.accordion i {
  font-size: 20px;
}

.accordion i.text-blue {
  color: #265fc8 !important;
}

input {
  outline: unset !important;
  box-shadow: unset !important;
}

.keyboad{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 3rem;
}

.key, .fingerprint, .delete{
  height: 80px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .container-fluid.px-5 {
    padding: 0 15px !important;
  }
  .logo {
    width: 95px;
  }
  nav a span {
    display: none;
  }
  .options a img {
    margin: 0 !important;
    width: 25px;
    position: relative;
    top: 5px;
  }
  .p-50 {
    padding: 20px;
  }
  .dot {
    display: none;
  }
  .lead {
    font-size: 16px !important;
  }
  h4 {
    font-size: 16px;
  }
  .links {
    width: 85%;
  }
  .links a {
    font-size: 0;
  }
  .card-body {
    padding-bottom: 150px !important;
  }
  .btn-light-blue {
    background-color: #e7ebf3;
    color: #265fc8;
    padding: 5px 30px;
    transition: 0.4s;
  }
  .bdge {
    background-color: #f4f4f4;
    padding: 15px 20px;
  }
  .wrap {
    flex-wrap: wrap;
    gap: 15px;
  }
  .first,
  .second,
  .third {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .login-form .d-flex {
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
  }
  .login-form .btn {
    margin: auto;
  }
  .accordion * {
    font-size: 14px !important;
  }
  button#registerBtn {
    width: 100%;
  }
}



.product__pagination,
.blog__pagination {
	padding-top: 10px;
}

.product__pagination a,
.blog__pagination a {
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 1px solid #b2b2b2;
	font-size: 14px;
	color: #b2b2b2;
	font-weight: 600;
	line-height: 28px;
	text-align: center;
	margin-right: 16px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__pagination a:hover,
.blog__pagination a:hover {
	background: #0084ff;
	border-color: #0084ff;
	color: #ffffff;
}

.product__pagination a:last-child,




.web{  }
.mob{ display: none; }

@media (max-width:991px) {
	.web{ display: none; }
	.mob{ display: block; }
}

