:root {
  scroll-behavior: auto;
}
html {
  scroll-behavior: smooth;
}
body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  position: relative;
  /* cursor: none; */
  color: var(--color-default);
  font-family: var(--font-body);
  background-color: var(--color-body);
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  width: 7px;
}
body::-webkit-scrollbar-track {
  border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  margin: 0px;
  padding: 0px;
}
button {
  cursor: pointer;
}
*:focus {
  outline: none;
}
button {
  border: none;
}
button:focus {
  outline: none;
}
a {
  text-decoration: none;
}
a:hover {
  color: inherit;
}
select {
  height: 55px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../img/select-arrow.png");
  background-position: calc(100% - 10px) 50%;
  background-repeat: no-repeat;
  padding-right: 20px;
  background-color: transparent;
  border: 0;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
form select,
textarea {
  width: 100%;
  height: 75px;
  border-radius: 0;
  background-color: #f3f4f5;
  padding: 10px 20px;
  border: 0;
  color: var(--color-black);
  font-weight: 500;
}
textarea {
  height: 100px;
}
button {
  border: 0;
}
table {
  width: 100%;
}
p,
li,
span {
  margin-bottom: 0;
}
.nice-select {
  background-color: transparent;
  height: 60px;
  line-height: 59px;
  min-height: 60px;
  padding: 0 20px;
  width: 100%;
  padding: 0 46px;
  margin-bottom: 20px;
  background-color: #242424;
  border: #f58220 1px solid;
  font-size: 16px;
}
.nice-select::after {
  border-bottom: 1.9px solid #4c6a6d;
  border-right: 1.9px solid #4c6a6d;
  height: 6px;
  right: 20px;
  width: 6px;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #776e6e;
}
.nice-select .list {
  width: 100%;
  background-color: #242424;
    min-height: 200px;
  height: 100%;
  overflow-y: auto;
  user-select: auto;
}
.nice-select .list li {
  margin-right: 0 !important;
}
.nice-select .list .option {
  color: var(--color-dark);
  font-weight: 500;
}
.nice-select .list .option.selected {
  font-weight: 600;
}
.nice-select .list .option.selected,
.nice-select .list .option:hover {
  border: none !important;
}
/* global css end */
.body_wrap {
  position: relative;
  overflow: clip;
}
.bg_img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.footer-bg {
  background-color: #04060a;
}
.black-bg {
  background: var(--color-black);
}
.gray-bg {
  background-color: var(--color-gray);
}
.gray-bg-2 {
  background-color: var(--color-gray-2);
}
.dark-bg {
  background-color: var(--color-dark);
}
.white {
  color: var(--color-white);
}
.pos-rel {
  position: relative;
}
.pos-absolute {
  position: absolute;
}
.f-right {
  float: right;
}
.border-effect a,
.border-effect-2 a {
  display: inline !important;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-image: linear-gradient(
    transparent calc(100% - 2px),
    currentColor 1px
  );
  background-size: 0 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.border-effect a:hover,
.border-effect-2 a:hover {
  background-size: 100% 100%;
  color: inherit;
}
.border-effect-2 a {
  background-image: linear-gradient(
    transparent calc(100% - 1px),
    currentColor 1px
  );
}
.btn-video {
  width: 73px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1140c0;
  position: relative;
  background-color: var(--color-white);
}
.btn-video:hover {
  color: var(--color-primary);
}
.btn-video::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  z-index: -2;
}
.btn-video-center {
  position: absolute;
  top: 50%;
  left: 50%;
}
.border_effect a {
  display: inline !important;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-image: linear-gradient(
    transparent calc(100% - 2px),
    currentColor 1px
  );
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.border_effect a:hover {
  background-size: 100% 100%;
  color: inherit;
}
.xb-close {
  /* background: rgba(0, 0, 0, 4); */
  background: rgba(0, 0, 0, 0.03);
  border: 9px solid transparent;
  color: #777;
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.xb-close::before,
.xb-close::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #1b1b1b;
}
.xb-close::before {
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.xb-close::after {
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.xb-close:hover::before,
.xb-close:hover::after {
  -webkit-transform: rotate(0);
  -khtml-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.ul_li,
.ul_li_right,
.ul_li_center,
.ul_li_between {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ul_li > li,
.ul_li_right > li,
.ul_li_center > li,
.ul_li_between > li {
  float: left;
  list-style: none;
  display: inline-block;
}
.ul_li {
  justify-content: flex-start;
}
.ul_li_center {
  justify-content: center;
}
.ul_li_right {
  justify-content: flex-end;
}
.ul_li_between {
  justify-content: space-between;
}
.ul_li_block {
  margin: 0px;
  padding: 0px;
  display: block;
}
.ul_li_block > li {
  display: block;
  list-style: none;
}
.flex-1 {
  flex: 1;
}
.color-black {
  color: var(--color-black);
}
.pagination_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -5px;
  list-style: none;
}
.pagination_wrap ul li {
  padding: 5px;
}
.pagination_wrap ul li a {
  height: 50px;
  width: 50px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  border: 1px solid #eee5e5;
  background-color: var(--color-white);
  z-index: 1;
  overflow: hidden;
}
.pagination_wrap ul li a.current_page,
.pagination_wrap ul li a:hover {
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
}
.mr-none-60 {
  margin-right: -60px;
}
.ml-none-60 {
  margin-left: -60px;
}
.pb-8 {
  padding-bottom: 8px;
}
.bg-leniar {
  background: linear-gradient(180deg, #f7f5f2 15.68%, #fff 100%);
}
.xb-odm {
  overflow: hidden;
}
.xb-odm .xbo.xbo-auto-theme .xbo-digit .xbo-digit-inner,
.xb-odm .xbo.xbo-theme-default .xbo-digit .xbo-digit-inner {
  overflow: initial;
  overscroll-behavior-y: hidden;
}
