@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,600;1,300;1,600&display=swap');


body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

p {
  font-size: 1.1em;
}

.fw-bold {
  font-weight: 700;
}

h1 {
  font-weight: 600;
}

.others ol {
  list-style-type: none;
  counter-reset: item 0;
  margin: 0px;
  padding: 0px;
}

.others ol li {
  display: table;
  counter-increment: item 1;
  margin-bottom: 2em;
}

.others ol li::before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}

.others ol li li {
  margin: 0px;
}

.others ol li li::before {
  content: counters(item, ".") " ";
}

ol.special li {
  display: list-item;
  list-style-type: disc;
  margin-left: 1.6em;
}

.specials {
  font-size: 1em;
  margin-left: 2em;
}

ol.special.alpha li {
  display: list-item;
  list-style-type: lower-alpha;
}

ol.special li::before {
  content: unset;
  margin-left: 1.6em;
}

.bg-black {
  background-color: rgb(18, 26, 41);
}

.cyan {
  color: rgb(21, 212, 197);
}

.white {
  color: rgb(255, 255, 255);
}

.icon {
  height: 50px;
  width: 50px;
}

.fs-13 {
  font-size: 0.8125rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.fs-16 {
  font-size: 1rem;
}

#preloader {
  position: fixed;
  inset: 0px;
  background-color: rgb(255, 255, 255);
  z-index: 99999;
  overflow: hidden;
}

#status {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url("../img/loader.gif");
  z-index: 9999;
  background-repeat: no-repeat;
  background-position: center center;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: grey;
  color: rgb(255, 255, 255);
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}

.up {
  width: 20px;
  filter: invert(1);
}

#myBtn:hover {
  background-color: rgb(85, 85, 85);
}

.custom-list ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

.custom-list ul li {
  display: flex;
  align-items: center;
  background: url("../img/ic-tick-white@2x.png") left top / 30px 30px no-repeat;
  padding-left: 40px;
  min-height: 30px;
  margin-bottom: 20px;
}

.footer {
  color: rgb(255, 255, 255);
}

.footer_subtext li {
  color: rgb(255, 255, 255);
  display: list-item;
  margin-right: 15px;
  margin-bottom: 15px;
}

.footer_subtext li a {
  color: rgb(255, 255, 255);
}

.footer_logo {
  width: 240px;
}

.nav-link {
  color: rgb(255, 255, 255) !important;
}

.nav-link:hover {
  text-decoration: underline;
}

input {
  width: 100%;
  height: 60px;
  margin-bottom: 40px;
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  border-bottom: 1px solid rgb(97, 115, 143);
  color: rgb(97, 115, 143);
}

textarea {
  width: 100%;
  height: 60px;
  margin-bottom: 40px;
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  border-bottom: 1px solid rgb(97, 115, 143);
  color: rgb(97, 115, 143);
}

.btn-primary {
  background: rgb(21, 212, 197);
  border: none;
  color: rgb(11, 20, 33) !important;
}

.btn-primary:hover {
  background: rgb(4, 170, 154);
}

.btn-submit {
  width: 160px;
  height: 60px;
}

.btn-submit:hover {
  box-shadow: rgb(136, 136, 136) 5px 10px 18px;
}

::placeholder {
  color: rgb(97, 115, 143);
  opacity: 1;
}

table, th, td {
  border-collapse: collapse;
  border: 1px solid gray;
  padding: 20px;
}