* {
  font-family: Poppins, sans-serif;
}
:root {
  --web-col: #e3a53c;
  --main-col: #333333;
  --menu-col: #252525;
  --card-col: #111;
  --hover-col: linear-gradient(0deg, #313131, #545454);
  --hover-bg-col: #1d1d1d;
  --but-col: linear-gradient(
    25deg,
    #bf953f,
    #ead26e,
    #f0dc77,
    #d3b151,
    #aa771c
  );
}
body {
  background: #111 !important;
}
ul li {
  list-style: none;
}
a {
  color: #fff !important;
  text-decoration: none !important;
}
a:hover {
  color: #e2a540;
}
#banner {
  background-color: var(--main-col);
  padding: 20px 0;
}
.p-3 {
  padding: 30px;
}
.p-10 {
  padding: 10px;
}
.b-r {
  border-radius: 21px;
}
img {
  width: 100%;
  height: 100%;
}
img {
  width: 100%;
}
.w-5 {
  width: 50% !important;
}
.w-10 {
  width: 10% !important;
}
.w-20 {
  width: 20% !important;
}
.w-35 {
  width: 35% !important;
}
.w-40 {
  width: 70% !important;
}
.w-90 {
  max-width: 90% !important;
}
.d-f {
  display: flex;
  justify-content: space-around;
}
.button {
  font-size: 22px;
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 8px 8px;
  cursor: pointer;
  gap: 0.4rem;
  font-weight: 700;
  border-radius: 13px;
  text-shadow: 2px 2px 3px rgb(136 0 136 / 50%);
  background: var(--but-col);
  background-size: 300%;
  color: #fff;
  border: none;
  background-position: left center;
  box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  letter-spacing: 2px;
}
.button:hover {
  background-size: 320%;
  background-position: right center;
  text-shadow: 3px 2px 5px #000;
}
.button:hover svg {
  fill: #766c6c;
}
.button svg {
  width: 23px;
  fill: #fff;
  box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}
.social {
  position: fixed;
  top: 30%;
  display: flex;
  flex-direction: column;
  background-color: transparent;
}
.social ul {
  list-style: none;
  padding: 0;
  transform: translateX(-270px);
}
.social ul li {
  display: block;
  margin: 5px;
  background: rgba(0, 0, 0, 0.5);
  width: 300px;
  text-align: right;
  padding: 10px;
  border-radius: 0 30px 30px 0;
  transition: all 1s;
}
.social ul li:hover {
  transform: translateX(110px);
}
.social ul li#twitter:hover {
  background-image: linear-gradient(90deg, #e3a53c, #00acee);
}
.social ul li#instagram:hover {
  background-image: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}
.social ul li#telegram:hover {
  background-image: linear-gradient(90deg, #e3a53c, #08c);
}
.social ul li a {
  color: #fff;
  text-decoration: none;
}
.social ul li i {
  text-align: center;
  color: #000;
  margin-left: 16px;
  background: var(--but-col);
  padding: 9px;
  border-radius: 50%;
  width: 39px;
  font-size: 20px;
  transform: rotate(0);
}
.social ul li:hover i {
  transform: rotate(360deg);
  transition: all 1s;
}
nav {
  height: 80px;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  box-shadow: 0 0 8px var(--nav-sha);
  z-index: 1000;
  color: #fff;
}
nav .menu-btn i {
  color: #fff8e6;
  color: var(--nav-col);
  font-size: 25px;
  cursor: pointer;
  display: none;
}
#click {
  display: none;
}
nav ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
nav ul li {
  margin: 0 5px;
  list-style: none;
}
nav ul li a {
  border-radius: 62px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 5px;
  background: var(--hover-bg-col);
}
nav ul li a:hover {
  background-color: var(--main-col);
  color: #fff;
  text-decoration: none;
}
nav ul li i {
  padding-right: 20px;
}
nav .logo {
  width: 14%;
}
.menu {
  position: relative;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropdown {
  position: initial;
}
.dropbtn,
.home {
  background-color: transparent;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 20px;
  border: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--hover-bg-col);
  box-shadow: 0 8px 16px 0 #12111133;
  z-index: 3;
  left: -536px;
  transition: all 0.3s ease;
}
.dropdown-content a {
  color: #fff;
  padding: 15px 15px;
  text-decoration: none;
  display: block;
  border-bottom: 4px solid transparent;
}
.dropdown-content a:hover {
  background-color: var(--card-col);
  border-bottom: 4px solid var(--web-col);
  transition: all 0.3s ease;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.active,
.dropdown:hover .dropbtn,
.home:hover a {
  color: var(--web-col) !important;
}
.dropdown-content .drop-imgs {
  width: 100%;
  height: 100%;
  padding: 0 28px 0 28px;
  column-gap: 25px;
  row-gap: 25px;
  grid-template-columns: repeat(4, auto);
}
.dropdown-content .drop-imgs .drop-img {
  width: 100%;
  height: 100%;
}
.d-s-n {
  display: none;
}
.drop-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.drop-img a img {
  width: 115px;
}
.dia {
  background: #000;
  padding: 3px;
}
.h-50 {
  height: 50%;
  width: 74px !important;
}
@media (max-width: 700px) {
  .d-n {
    display: none;
  }
  .d-b {
    display: block;
  }
  .d-s-n {
    display: block;
  }
  .menu {
    position: initial;
    justify-content: flex-start;
    overflow-x: scroll;
  }
  .menu::-webkit-scrollbar {
    display: none;
  }
  .dropdown-content {
    position: static;
    width: 95%;
    z-index: 3;
    left: 11px;
  }
}
@media (max-width: 700px) {
  nav .menu-btn i {
    display: block;
  }
  nav .menu-btn {
    position: absolute;
  }
  #click:checked ~ .menu-btn i:before {
    content: "\f00d";
  }
  nav .logo {
    width: 49%;
    margin: auto;
  }
  nav ul {
    position: fixed;
    top: 80px;
    left: -110%;
    background-color: var(--nav-sha);
    height: auto;
    width: 100%;
    display: block;
    box-shadow: -1px 5px 5px var(--nav-sha);
    transition: all 0.3s ease;
  }
  #click:checked ~ ul {
    left: 0;
  }
  nav ul li {
    margin: 12px 20px;
    list-style: none;
  }
  nav ul li a {
    display: block;
    font-size: 20px;
    width: 50px;
  }
  nav ul {
    padding: 10px;
    display: flex;
    background-color: var(--menu-col);
    justify-content: center;
    position: absolute;
  }
}
@media (max-width: 500px) {
  nav ul li {
    margin: 11px 5px;
  }
  nav ul li a {
    width: 45px;
  }
}
@media (max-width: 420px) {
  nav ul li {
    margin: 11px 5px;
  }
  nav ul li a {
    width: 45px;
  }
}
@media (max-width: 395px) {
  .about-text-par ul li {
    padding: 9px 2px;
    font-size: 7px;
  }
}
.nav-game {
  width: 100%;
  color: #fff;
  padding: 0 10px;
  background-color: #141414;
  margin-top: 8px;
}
.nav-game .games {
  width: 100%;
  align-items: center;
  justify-content: center;
}
.nav-game .games a {
  padding: 8px 10px;
}
.nav-game .games .text:hover {
  color: #f8c029;
}
.img-text {
  align-items: center;
}
.img-text .img {
  width: 25px;
}
.img-text .text {
  margin: 0 5px;
  text-transform: uppercase;
  font-size: 13px;
  font-style: italic;
}
@media (max-width: 700px) {
  .nav-game .games {
    overflow-x: scroll;
    justify-content: start;
  }
  .nav-game .games a {
    padding: 11px 10px 14px;
  }
  .w-inc1 {
    width: 185px;
  }
  .w-inc2 {
    width: 105px;
  }
  .w-inc3 {
    width: 119px;
  }
}
.marqueee {
  width: 100%;
  background-color: #000;
  padding: 5px;
  margin: 10px 0;
}
.marqueee span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffc51d;
  animation: 1s ease-in-out infinite glow-bullet;
}
.marqueee span {
  font-size: 16px;
  font-style: italic;
  padding-left: 15px;
  margin-right: 50px;
  position: relative;
  animation: 1s ease-in-out infinite glow;
}
.marqueee span,
h1,
h2,
h3,
h4 {
  text-transform: capitalize;
}
.marqueee span {
  color: #f0db76;
  text-align: center;
  font-weight: 400;
}
#mobile-button {
  width: 100%;
  text-align: center;
  padding: 10px;
  display: none;
}
#mobile-button a {
  font-size: 11px;
  font-weight: 500;
  border-radius: 5px;
  text-shadow: 2px 2px 3px rgb(136 0 136 / 50%);
  background: var(--but-col);
  background-size: 300%;
  color: #000;
  background-position: left center;
  box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  letter-spacing: 2px;
  padding: 5px;
}
#mobile-button a:hover {
  background-size: 320%;
  background-position: right center;
  text-shadow: 3px 2px 5px #000;
}
@media (max-width: 700px) {
  #mobile-button {
    display: block;
  }
}
.banner-right-top .top-left img,
.banner-right-top .top-right img {
  border-radius: 25px;
}
.content {
  text-align: center;
  color: #fff;
}
.content .con-head {
  position: relative;
  padding: 10px;
  background-image: linear-gradient(45deg, #efaa17, #efaa17, transparent);
  color: transparent;
  -webkit-background-clip: text;
}
.content .con-head::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 3px;
  background-color: #efaa17;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%);
}
.cont-par {
  padding: 20px;
  margin-top: 10px;
}
#about .content {
  padding: 0;
}
.about-img {
  box-shadow: -8px 7px 0 #daa520;
  padding: 7px 10px 0 0;
  border-radius: 11px;
}
.about {
  padding: 10px 40px 16px;
}
.about-text-list {
  justify-content: center;
}
.about-text-par {
  padding: 20px 12px 0;
}
.about-text-par ul {
  padding: 0;
  margin: 0;
}
.about-text-par ul li {
  padding: 10px;
  display: flex;
  align-items: center;
  font-size: 12px;
}
.about-text-par ul li i {
  background-color: #daa520;
  padding: 4px 5px;
  font-size: 12px;
  border-radius: 16px;
  margin: 0 5px;
}
#Our-Partners {
  background-color: transparent;
  width: 100%;
}
.text-center {
  text-align: center;
  color: #fff;
}
.w-100 {
  width: 100%;
}
#Partners,
.Partners {
  width: 100%;
  text-align: center;
  padding: 8px;
  background-image: url(img/bg3-min.html);
}
.Partners {
  padding: 37px 10px;
}
#Partners .content .con-head h2 {
  font-size: 35px;
  font-weight: 500;
}
.partnes-card {
  box-shadow: -3.828px -3.828px 10px 0 rgb(255 200 39 / 40%),
    8px 10px 10px 0 rgb(255 82 1 / 20%);
  border-radius: 10px;
  background-image: url(img/shape.html);
  padding: 0;
  width: 21%;
}
.partnes-card img {
  margin: 10px auto;
}
.partners-img .appa-book {
  width: 85%;
  height: 100px;
}
.partners-img .Sky {
  width: 85%;
  height: 100px;
}
.partners-img .diamond {
  width: 85%;
  height: 100px;
}
.partners-img .lotus {
  width: 85%;
  height: 100px;
}
.forlogo {
  color: #fff;
  margin: 0;
  padding: 11px;
  text-align: center;
}
.tts {
  display: block;
  padding: 10px;
  width: 50%;
  margin: 10px auto;
  background: linear-gradient(
    to right,
    #bf953f,
    #ead26e,
    #f0dc77,
    #d3b151,
    #aa771c
  ) !important;
  color: #000 !important;
  border-radius: 7px;
  font-size: 16px;
  box-shadow: -3.828px -3.828px 6px 0 rgb(255 200 39 / 40%),
    3px 5px 8px 0 rgb(255 82 1 / 20%) !important;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
}
.about-text-par .tts {
  letter-spacing: 1px;
  width: 45%;
}
.bbt {
  width: 33%;
}
@media (max-width: 700px) {
  h1,
  h2,
  h3,
  h4 {
    text-transform: capitalize;
    font-size: 18px;
  }
  .Partners {
    padding: 10px 0;
  }
  .partnes-card {
    width: 80%;
    margin: 15px auto 35px;
    padding: 10px;
  }
  .forlogo {
    padding: 8px;
  }
}
.m-7 {
  margin: 7px auto !important;
}
.cont {
  width: 100%;
  height: 500px;
  padding: calc(0px + (30px)) 15px 30px 15px;
  background-size: cover;
  background-position: center 50%;
  background-color: #000;
}
.cont-contain {
  padding: 40px 0;
  align-items: center;
}
.cont-contain-img .contain-img {
  width: 89%;
  height: 322px;
  margin: auto;
  border-radius: 38px;
}
.cont-contain-img .contain-img img {
  border-radius: 38px;
}
.cont-box {
  width: 259px;
  margin: 10px;
  padding: 15px 0;
  border-radius: 10px;
  box-shadow: 0 0 4px #000;
  transition: all 0.3s ease;
}
.cont-box:hover {
  background: linear-gradient(
    130deg,
    #1a1a1a 0,
    var(--menu-col) 48%,
    var(--main-col) 48%
  );
}
.cont-card {
  grid-template-columns: repeat(2, auto);
  place-items: center;
}
.cont-icon {
  width: 53%;
  height: 100%;
  padding: 0;
  border-radius: 50px;
  margin: auto;
}
.cont-icon-text {
  width: 65%;
  margin: auto;
}
.cont-head {
  font-size: 21px;
  color: #efaa17;
}
.bonus {
  font-size: 40px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
}
@media (max-width: 500px) {
  .bonus {
    padding: 10px;
    font-size: 28px;
  }
  .cont {
    height: 880px;
    padding: calc(0px + (30px)) 5px 30px 5px;
  }
  .cont-contain-img .contain-img {
    width: 100%;
  }
}
#banner .h-395 {
  height: 395px;
}
#carouselExampleControls,
.carousel-inner,
.carousel-item,
.carousel-item img {
  height: 100%;
  border-radius: 10px;
}
#banner #carouselExampleControls,
#banner .carousel-inner,
#banner .carousel-item,
#banner .carousel-item img {
  height: 376px;
}
.top {
  width: 33%;
  padding: 10px;
  position: relative;
}
.top-1::after {
  position: absolute;
  width: 90px;
  height: 22px;
  content: "CRICKET";
  text-align: center;
  color: #fff;
  font-weight: 600;
  bottom: 10px;
  right: 11px;
  text-shadow: 0 0 17px #000;
  letter-spacing: 3px;
  background-color: #e2a540;
}
.top-2::after {
  position: absolute;
  width: 90px;
  height: 22px;
  content: "SOCCER";
  text-align: center;
  color: #fff;
  font-weight: 600;
  bottom: 10px;
  right: 11px;
  text-shadow: 0 0 17px #000;
  letter-spacing: 3px;
  background-color: #e2a540;
}
.top-3::after {
  position: absolute;
  width: 90px;
  height: 22px;
  content: "CASINO";
  text-align: center;
  color: #fff;
  font-weight: 600;
  bottom: 10px;
  right: 11px;
  text-shadow: 0 0 17px #000;
  letter-spacing: 3px;
  background-color: #e2a540;
}
.top::before {
  position: absolute;
  width: 50%;
  height: 22px;
  content: "";
  bottom: 10px;
  right: 19px;
  background-color: #e2a540;
  transform: skewX(325deg);
}
.right-top {
  height: 25%;
}
.right-bottom {
  height: 75%;
}
.bottom-right-down,
.bottom-right-up {
  height: 48%;
  background: #303030;
  margin: 0 0 15px 0;
}
.bottom-right-down {
  background: #303030
    url(data:image/png;base64,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)
    100% 100% no-repeat;
}
.bottom-right-down ul {
  padding: 0;
}
.bottom-right-down ul li a {
  padding: 3px 7px;
  display: block;
  font-size: 12px;
}
.down-heading {
  padding: 3px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #e2a540;
  text-align: center;
}
.bottom-right-down ul li a .span {
  width: 25px;
  display: inline-block;
  margin-right: 15px;
}
.up {
  border-bottom: 2px solid;
  height: 50%;
  width: 90%;
  margin: auto;
}
.up span {
  padding: 7px;
  font-size: 23px;
  font-weight: 800;
  font-family: sans-serif;
  color: #e2a540;
}
.up-left {
  border-right: 2px solid #212529;
}
.up-left,
.up-right {
  text-align: center;
  margin: 13px 0 13px 0;
  font-size: 10px;
  color: #fff;
}
.down {
  height: 50%;
  align-items: center;
  justify-content: space-around;
}
.meter {
  position: relative;
  width: 43%;
  text-align: center;
}
#disk_d::after,
#disk_d::before,
#disk_w::after,
#disk_w::before {
  position: absolute;
  top: 0;
}
#disk_d::after {
  color: #fff;
  content: "Instant";
  top: -24px;
  left: 25%;
  font-size: 17px;
  display: block;
  padding: 4px;
  font-weight: 600;
  letter-spacing: 1px;
}
#disk_w::after {
  color: #fff;
  content: " Instant";
  top: -24px;
  left: 25%;
  font-size: 17px;
  display: block;
  padding: 3px;
  font-weight: 600;
  letter-spacing: 1px;
}
#disk_d::before {
  content: " DEPOSIT TIME";
  top: 25px;
  color: #fff;
  left: 0;
  font-size: 14px;
  display: block;
  padding: 0;
  font-weight: 600;
  letter-spacing: 1px;
}
#disk_w::before {
  content: " WITHDRAW TIME";
  top: 25px;
  color: #fff;
  left: 0;
  font-size: 12px;
  display: block;
  padding: 3px 0 0 0;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 700px) {
  #banner #carouselExampleControls,
  #banner .carousel-inner,
  #banner .carousel-item,
  #banner .carousel-item img {
    height: 100%;
  }
}
@media (max-width: 700px) {
  .top-1::after,
  .top-2::after,
  .top-3::after {
    width: 69px;
    height: 18px;
    font-weight: 600;
    right: 10px;
    font-size: 11px;
  }
  .top::before {
    height: 18px;
    right: 22px;
  }
}
.m-7 {
  margin: 7px auto !important;
}
.services {
  width: 100%;
  padding: calc(0px + (30px)) 15px 30px 15px;
  background-size: cover;
  background: linear-gradient(
    130deg,
    #1a1a1a 0,
    var(--menu-col) 48%,
    var(--main-col) 48%
  );
  background-position: center 50%;
}
.service-contain {
  padding: 40px 0;
  align-items: center;
}
.service-contain-img .contain-img {
  width: 89%;
  height: 322px;
  margin: auto;
  border-radius: 38px;
  background: #1e1e1e;
  box-shadow: 0 0 124px #000;
}
.service-contain-img .contain-img img {
  border-radius: 38px;
}
.service-box {
  width: 259px;
  background-color: var(--card-col);
  margin: 10px;
  padding: 15px 0;
  border-radius: 10px;
  box-shadow: 0 0 4px #000;
  transition: all 0.3s ease;
}
.service-box:hover {
  background: linear-gradient(
    130deg,
    #1a1a1a 0,
    var(--menu-col) 48%,
    var(--main-col) 48%
  );
}
.service-card {
  grid-template-columns: repeat(2, auto);
  place-items: center;
}
.service-icon {
  width: 35%;
  height: 100%;
  padding: 0;
  box-shadow: 0 0 10px var(--card-col);
  background: linear-gradient(45deg, #000, transparent, transparent);
  border-radius: 50px;
  margin: auto;
}
.service-icon-text {
  width: 65%;
  margin: auto;
}
.service-head {
  font-size: 15px;
  color: #efaa17;
}
.promotion {
  width: 75%;
  margin: 44px auto 0;
}
.promotion h2 {
  font-size: 30px;
  text-align: center;
  color: #ffc827;
  font-weight: 500;
  font-family: Poppins, sans-serif;
}
.promotion p {
  font-weight: 300;
  font-size: 15px;
  font-family: Poppins, sans-serif;
  color: #fff;
  text-align: center;
}
@media (max-width: 700px) {
  .promotion {
    width: 100%;
    padding: 20px 11px 0;
  }
}
#faq {
  width: 90%;
  margin: auto;
}
.faq-section h2 {
  font-weight: 500;
  text-transform: uppercase;
  color: #daa520;
  letter-spacing: 5px;
  text-shadow: 0 0 3px #000;
}
.faq-section {
  margin: 50px 0;
  padding: 10px;
  background-color: #000;
  width: 100%;
  text-align: center;
}
.faq-box div {
  margin: 0;
  padding: 10px;
  background-color: #232323;
  color: #fff;
  font-size: 20px;
  margin: 10px;
}
.faq-box p {
  padding: 10px;
  background-color: #2f2f2f;
  color: #fff;
  font-size: 10px;
  margin: 14px -8px -8px -8px;
  display: none;
}
.faq-box h3,
h3 i {
  display: flex;
  justify-content: space-between;
  color: #fff;
  cursor: pointer;
}
.faq-box .f1,
.faq-box .f2,
.faq-box .f3,
.faq-box .f4,
.faq-box .f5,
.faq-box .f6 {
  position: relative;
}
.faq-box h3 {
  margin: 0;
  font-weight: 100;
  font-size: 12px;
}
.faq-box i {
  color: #daa520;
}
.faq-img img {
  border-radius: 14px;
  width: 85%;
  margin: 60px 60px;
  height: 80%;
  box-shadow: inset -5px 8px 18px 0;
  padding: 16px;
}
@media (max-width: 500px) {
  .faq-box h3 {
    font-size: 10px;
  }
  .faq-img img {
    width: 100%;
    margin: 17px 0;
  }
  .faq-box p {
    padding: 8px;
  }
}
.w-30 {
  width: 25%;
}
#Celebs {
  background-image: linear-gradient(0deg, #000, #1f190959, transparent),
    url(https://appabookoriginal.com/img/background-1939128_1280.webp);
}
#Celebs h2 {
  font-size: 45px;
  font-weight: 600;
}
.Celeb-img {
  justify-content: space-around;
  align-items: center;
  padding: 23px 25px 60px;
}
.Celeb-imgs a {
  border-radius: 14px;
  width: 87%;
  height: 406px;
  box-shadow: inset 0 5px 29px 6px #daa520;
  padding: 16px;
  display: block;
  margin: auto;
}
.Celeb-imgs a:hover {
  animation: blink 0.9s infinite;
  transform: scale(1.1);
  transition: all 0.5s ease;
}
@keyframes blink {
  0% {
    box-shadow: inset 0 5px 29px 6px #daa520;
  }
  100% {
    box-shadow: none;
  }
}
.Celeb-imgs a img {
  border-radius: 14px;
}
@media (max-width: 700px) {
  .Celeb-imgs a {
    margin: 20px auto;
  }
  .Celeb-over {
    overflow-x: scroll;
    scroll-behavior: smooth;
  }
  .Celeb-img {
    width: 1000px;
    padding: 23px 25px 25px;
  }
}
.marquee img {
  width: 80%;
  height: 60px;
  width: 80%;
  height: 60px;
  border: 2px solid #daa520;
  margin: 20px;
  padding: 7px;
  width: 100%;
  height: 73px;
  border: 4px solid #daa520;
  margin: 20px;
  padding: 7px;
  box-shadow: 0 0 10px #daa520;
}
.marquee {
  width: 100%;
  margin: 14px auto 30px;
  height: 100px;
  overflow: hidden;
}
.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling 33s linear infinite;
}
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-180vw);
  }
}
.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20vw;
  flex-shrink: 0;
  font-size: 5rem;
  white-space: nowrap;
}
.marquee-content li a {
  display: block;
}
.marquee-content li a:hover {
  transform: scale(1.2);
}
@media (max-width: 700px) {
  .hh h2 {
    font-size: 27px;
  }
  .marquee-content li {
    width: 36vw;
  }
  .marquee img {
    margin: 0;
  }
}
.imgs {
  display: block;
}
#phone {
  background-image: linear-gradient(45deg, #000, transparent),
    url(images/backk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.imgs img {
  width: 80%;
}
.imgs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.phoneapp {
  display: flex;
}
.phoneimg {
  width: 50%;
}
.phonebutton {
  width: 37%;
  padding-top: 152px;
  text-align: center;
}
.phonebutton h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffc837;
  text-align: center;
}
.phonebutton p {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.button {
  width: 55%;
  height: 10%;
  background-color: #ffc837;
  font-size: 20px;
  border-radius: 10px;
  font-weight: 500;
  border-style: none;
  margin: 10px auto;
  justify-content: center;
}
@media (max-width: 500px) {
  .phoneapp {
    display: block;
    padding: 10px 0;
  }
  .phoneimg {
    width: 100%;
  }
  .phonebutton {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .phonebutton h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffc837;
    text-align: center;
  }
  .phonebutton p {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    text-align: center;
  }
  .phonebutton button {
    width: 40%;
    height: 10%;
    background-color: #ffc837;
    font-size: 15px;
    border-radius: 30px;
    margin-left: -1px;
    font-weight: 500;
    border-style: none;
    margin: auto;
  }
}
.m-top {
  margin-top: 50px;
}
figure.testimonial {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  padding: 0 20px;
  text-align: left;
  box-shadow: none !important;
}
figure.testimonial * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.testimonial {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 30px 30px 130px;
  margin: 0 15px 30px 15px;
  overflow: hidden;
  position: relative;
}
.testimonial .description {
  font-size: 15px;
  letter-spacing: 1px;
  color: #6f6f6f;
  line-height: 25px;
  margin-bottom: 15px;
}
.testimonial .title {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #29d18b;
  margin: 0;
}
.testimonial .post {
  display: inline-block;
  font-size: 17px;
  color: #29d18b;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .testimonial {
    padding: 20px;
    text-align: center;
  }
}
.review {
  padding: 20px;
}
.review-head {
  background-color: var(--main-col);
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
}
.review-box {
  margin-top: 20px;
  padding: 20px;
  border-radius: 8px;
}
.review-box-card {
  background-color: var(--main-col);
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
}
.review-box-card-img .review-img {
  margin: auto;
  overflow: hidden;
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 50px;
}
.review-box-card-img .review-img img {
  width: 60px;
  height: 60px;
  padding: 4px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.review-box-card-text {
  color: #fff;
  padding: 10px;
}
.review-date {
  font-size: 10px;
  padding: 5px 0;
}
.w-80 {
  width: 80%;
}
.footer-up {
  margin-top: 20px;
  width: 100%;
  background: linear-gradient(
    130deg,
    #1a1a1a 0,
    var(--menu-col) 42%,
    var(--main-col) 62%
  );
  background-position: center 50%;
}
.footer-up {
  padding: 20px 0 20px 87px;
  color: #fff;
}
.footer-up .footer-img {
  width: 110px;
  padding: 10px;
}
.footer-social {
  padding: 10px;
}
.footer-social .footer-social-icon img {
  padding: 6px;
  width: 45px;
  border-radius: 50px;
  margin-right: 10px;
  background: var(--menu-col);
  box-shadow: 0 0 5px #000;
}
.footer-social .footer-social-icon img:hover {
  background: var(--card-col);
  transform: scale(1.1);
}
.footer-linkes {
  justify-content: space-around;
}
.footer-contant h4 {
  font-size: 29px;
  color: var(--web-col);
}
.footer-contant ul {
  padding: 0;
}
.footer-contant ul li {
  padding: 5px;
}
.footer-linkes {
  row-gap: 25px;
  column-gap: 25px;
  grid-template-columns: repeat(4, auto);
}
.footer-contant h4 {
  font-size: 24px;
  color: var(--web-col);
}
.footer-contant ul li a {
  font-size: 15px;
}
.footer-contant ul li a:hover {
  color: var(--web-col) !important;
  transition: all 0.3s ease;
}
@media (max-width: 700px) {
  .footer-linkes {
    grid-template-columns: repeat(2, auto);
  }
}
.disclaimer {
  padding: 15px;
  width: 90%;
  margin: auto;
}
.disclaimer-img {
  width: 400px;
  padding: 22px;
}
.disclaimer-img img {
  width: 100%;
}
@media (max-width: 700px) {
  .disclaimer-img {
    width: 236px;
    padding: 17px 0;
  }
}
.css-1gddqmt {
  margin: 0 0 16px;
  padding: 0;
  text-align: center;
}
.css-futkjh {
  display: inline-block;
  list-style-type: none;
  margin: 8px 14px;
}
.css-1gddqmt {
  margin: 22px 0 16px;
  padding: 22px 80px;
}
.css-uqqz4d.bwFooter__logoImage--alt {
  max-height: 34px;
}
.css-12f73hr {
  background-color: #6d6d6d;
  border: none;
  height: 2px !important;
  margin: 30px 100px 0;
}
@media (max-width: 700px) {
  .css-1gddqmt {
    margin: 22px 0 16px;
    padding: 0 0;
  }
  .css-12f73hr {
    background-color: #6d6d6d;
    border: none;
    height: 2px !important;
    margin: 16px 15px 0;
  }
}
.footer-down {
  padding: 20px;
  color: #fff;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 10px 82px;
}
.footer-copy-imgs img {
  width: 143px;
  padding: 10px;
  height: 62px;
}
.goggle-span {
  font-size: 21px;
  letter-spacing: -1px;
  color: #fff;
}
.goggle-span span:nth-child(1) {
  color: #4c4cff;
  text-transform: uppercase;
  font-size: 23px;
}
.goggle-span span:nth-child(2) {
  color: #ff3e3e;
}
.goggle-span span:nth-child(3) {
  color: #e7e72d;
}
.goggle-span span:nth-child(4) {
  color: #4c4cff;
}
.goggle-span span:nth-child(5) {
  color: #3cff3c;
}
.goggle-span span:nth-child(6) {
  color: #ff4141;
}
.g-img {
  display: flex;
  align-items: center;
  font-size: 10px;
}
.g-img img {
  width: 50px;
  padding: 10px;
}
.agency {
  color: #fff;
}
.agency span {
  color: #daa520;
}
.agency br {
  display: none;
}
.goggle-liks a {
  display: block;
  padding: 5px 16px;
  background: #efaa17;
  box-shadow: 0 0 10px #000;
  text-shadow: 0 0 10px #000;
  border-radius: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}
@media (max-width: 500px) {
  .goggle-text {
    width: 294px;
  }
  .goggle-liks a {
    width: 100%;
    font-size: 13px;
    margin: auto;
    text-align: center;
    padding: 2px 15px;
  }
  .g {
    left: 0 !important;
  }
  .agency {
    font-size: 17px;
  }
  .agency br {
    display: block;
  }
}
@media (max-width: 700px) {
  .footer-down {
    padding: 20px 10px;
  }
  .footer-copy-imgs {
    justify-content: center;
  }
  .footer-up .img-text {
    text-align: center;
  }
}
.wtaap-social-link {
  background: #000;
  padding: 10px;
  align-items: center;
  justify-content: space-evenly;
  position: sticky;
  z-index: 1000;
  bottom: 0;
}
.wtaap-social-link a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wtaap-social-link a:hover img {
  transform: scale(1.2);
  transition: all 0.3s ease;
}
.wtaap-social-link a img {
  width: 35px !important;
}
@media (max-width: 700px) {
  .d-b {
    display: block;
  }
  p {
    text-align: justify;
    font-size: 12px;
  }
  .w-05,
  .w-10,
  .w-20,
  .w-30,
  .w-35,
  .w-5,
  .w-80,
  .w-90 {
    width: 100% !important;
  }
  .dropdown-content .drop-imgs {
    grid-template-columns: repeat(2, auto);
  }
  #carouselExample,
  #carouselExampleControls,
  .carousel-inner,
  .carousel-item,
  .carousel-item img {
    height: 100%;
  }
  .right-top {
    margin-top: 13px;
  }
  .up {
    height: inherit;
  }
  .up-left,
  .up-right {
    font-size: 7px;
  }
  .up span {
    font-size: 13px;
  }
  #disk_d::after {
    top: -18px;
    font-size: 12px;
  }
  #disk_d::before {
    font-size: 9px;
    padding-top: 0;
  }
  #disk_w::after {
    top: -17px;
    left: 0;
    font-size: 11px;
  }
  #disk_w::before {
    font-size: 9px;
    top: 23px;
    width: 86px;
  }
  .down-heading {
    padding: 3px;
    font-size: 10px;
  }
  .bottom-right-down ul li a .span {
    width: 14px;
    display: inline-block;
    margin-right: 0;
  }
  .bottom-right-down ul li a {
    padding: 4px;
    display: block;
    font-size: 13px;
  }
  #banner .h-395 {
    height: auto;
    padding: 0;
  }
  .right {
    background: var(--card-col);
    padding-bottom: 10px;
  }
  .card-img {
    margin: 10px 0;
  }
  .cards p {
    font-size: 16px;
    padding-left: calc(100% - 80%);
  }
  .cards p:nth-child(1) {
    padding: 6px 20px;
    letter-spacing: 1px;
    font-size: 20px;
    text-align: center;
  }
  .card-upi .upi {
    display: inline-block;
    margin: 10px 0;
  }
  .card-Bonus {
    padding: 13px 0;
  }
  .services {
    background: linear-gradient(
      105deg,
      #1a1a1a 0,
      var(--menu-col) 48%,
      var(--main-col) 48%
    );
  }
  .services .content .con-head h2 {
    font-size: calc(2.25rem + 0.9vw);
  }
  .services .content {
    padding: 0;
  }
  .service-box {
    width: 85%;
    background-color: var(--card-col);
    padding: 8px 0;
  }
  .service-contain-img .contain-img {
    width: 95%;
    height: 222px;
    margin: 25px auto 0;
  }
  .service-contain-img .contain-img img {
    border-radius: 17px;
  }
  .service-contain {
    padding: 0;
    flex-direction: column-reverse;
    background: 0 0;
  }
  .service-contain-text {
    padding-top: 20px;
  }
  .about {
    padding: 0;
  }
  .about-img {
    box-shadow: none;
    padding: 16px 7px 0 16px;
  }
  .about-img img {
    box-shadow: -8px 7px 0 #daa520;
    padding: 0 0;
    border-radius: 11px;
  }
  .about-text-par ul li {
    font-size: 9px;
  }
  .review-box-card {
    margin: 10px 0;
  }
  figure.testimonial {
    padding: 0;
  }
  .footer-up {
    padding: 0;
  }
  .footer-up .footer-img {
    margin: auto;
  }
  .footer-social {
    text-align: center;
  }
  .footer-contant h4 {
    font-size: 26px;
    font-family: auto;
  }
  .footer-social-icon {
    justify-content: center;
  }
  .footer-contant ul li {
    padding: 0;
  }
  .footer-contant ul li a {
    font-size: 12px;
  }
}
@media (max-width: 450px) {
  .dropdown-content .drop-imgs {
    grid-template-columns: repeat(2, auto);
    padding: 0;
    column-gap: 0;
    row-gap: 18px;
  }
  .meter {
    width: 50%;
  }
  .w-90 {
    max-width: 100% !important;
  }
  .bottom-right-down ul li a {
    padding: 3px;
    display: block;
    font-size: 9px;
  }
}
@media (max-width: 400px) {
  #disk_d::after {
    top: -15px;
    font-size: 10px;
    left: 11%;
  }
  #disk_d::before {
    font-size: 7px;
    left: 12%;
  }
  #disk_w::after {
    top: -13px;
    left: 12%;
    font-size: 9px;
  }
  #disk_w::before {
    font-size: 6px;
    width: 74px;
  }
  .about-text-par ul li {
    padding: 9px 2px;
    font-size: 7px;
  }
}
@media (max-width: 395px) {
  .about-text-par ul li {
    padding: 9px 2px;
    font-size: 7px;
  }
}
@charset "UTF-8"; /*!
 * Bootstrap v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
}
*,
::after,
::before {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}
hr:not([size]) {
  height: 1px;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.h1,
h1 {
  font-size: calc(1rem + 1.5vw);
}
@media (min-width: 1200px) {
  .h1,
  h1 {
    font-size: 2.5rem;
  }
}
.h2,
h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .h2,
  h2 {
    font-size: 2rem;
  }
}
.h3,
h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  .h3,
  h3 {
    font-size: 1.75rem;
  }
}
.h4,
h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .h4,
  h4 {
    font-size: 1.5rem;
  }
}
.h5,
h5 {
  font-size: 1.25rem;
}
.h6,
h6 {
  font-size: 1rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
ul {
  padding-left: 2rem;
}
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
ul ul {
  margin-bottom: 0;
}
b {
  font-weight: bolder;
}
a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
code {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}
code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
figure {
  margin: 0 0 1rem;
}
img,
svg {
  vertical-align: middle;
}
table {
  caption-side: bottom;
  border-collapse: collapse;
}
caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
label {
  display: inline-block;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
button,
input {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button {
  text-transform: none;
}
[role="button"] {
  cursor: pointer;
}
[list]::-webkit-calendar-picker-indicator {
  display: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}
::-webkit-inner-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
  padding: 0;
}
::file-selector-button {
  font: inherit;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
summary {
  display: list-item;
  cursor: pointer;
}
[hidden] {
  display: none !important;
}
.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}
.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}
.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}
.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}
.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}
.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}
.figure {
  display: inline-block;
}
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}
.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}
.container,
.container-md {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-md {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-md {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-md {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.col {
  flex: 1 0 0%;
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.g-0 {
  --bs-gutter-x: 0;
}
.g-0 {
  --bs-gutter-y: 0;
}
.g-1 {
  --bs-gutter-x: 0.25rem;
}
.g-1 {
  --bs-gutter-y: 0.25rem;
}
.g-2 {
  --bs-gutter-x: 0.5rem;
}
.g-2 {
  --bs-gutter-y: 0.5rem;
}
.g-3 {
  --bs-gutter-x: 1rem;
}
.g-3 {
  --bs-gutter-y: 1rem;
}
.g-4 {
  --bs-gutter-x: 1.5rem;
}
.g-4 {
  --bs-gutter-y: 1.5rem;
}
.g-5 {
  --bs-gutter-x: 3rem;
}
.g-5 {
  --bs-gutter-y: 3rem;
}
@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .g-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}
.caption-top {
  caption-side: top;
}
.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}
.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #badce3;
}
.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check:disabled + .btn,
.btn-check[disabled] + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
}
.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn:disabled {
  pointer-events: none;
  opacity: 0.65;
}
.btn-check:focus + .btn-primary {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary {
  color: #fff;
  background-color: #0a58ca;
  border-color: #0a53be;
}
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:focus + .btn-secondary {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-check:active + .btn-secondary,
.btn-check:checked + .btn-secondary {
  color: #fff;
  background-color: #565e64;
  border-color: #51585e;
}
.btn-check:active + .btn-secondary:focus,
.btn-check:checked + .btn-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-check:focus + .btn-success {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:active + .btn-success,
.btn-check:checked + .btn-success {
  color: #fff;
  background-color: #146c43;
  border-color: #13653f;
}
.btn-check:active + .btn-success:focus,
.btn-check:checked + .btn-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-info:hover {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
}
.btn-check:focus + .btn-info,
.btn-info:focus {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:active + .btn-info,
.btn-check:checked + .btn-info,
.btn-info.active,
.btn-info:active {
  color: #000;
  background-color: #3dd5f3;
  border-color: #25cff2;
}
.btn-check:active + .btn-info:focus,
.btn-check:checked + .btn-info:focus,
.btn-info.active:focus,
.btn-info:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-info:disabled {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:focus + .btn-warning {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:active + .btn-warning,
.btn-check:checked + .btn-warning {
  color: #000;
  background-color: #ffcd39;
  border-color: #ffc720;
}
.btn-check:active + .btn-warning:focus,
.btn-check:checked + .btn-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:focus + .btn-danger {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:active + .btn-danger,
.btn-check:checked + .btn-danger {
  color: #fff;
  background-color: #b02a37;
  border-color: #a52834;
}
.btn-check:active + .btn-danger:focus,
.btn-check:checked + .btn-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:focus + .btn-light {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:active + .btn-light,
.btn-check:checked + .btn-light {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:active + .btn-light:focus,
.btn-check:checked + .btn-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:focus + .btn-dark {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:active + .btn-dark,
.btn-check:checked + .btn-dark {
  color: #fff;
  background-color: #1a1e21;
  border-color: #191c1f;
}
.btn-check:active + .btn-dark:focus,
.btn-check:checked + .btn-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:focus + .btn-outline-primary {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:active + .btn-outline-primary:focus,
.btn-check:checked + .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:focus + .btn-outline-secondary {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:active + .btn-outline-secondary,
.btn-check:checked + .btn-outline-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:active + .btn-outline-secondary:focus,
.btn-check:checked + .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:focus + .btn-outline-success {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:active + .btn-outline-success,
.btn-check:checked + .btn-outline-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:active + .btn-outline-success:focus,
.btn-check:checked + .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:focus + .btn-outline-info {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:active + .btn-outline-info,
.btn-check:checked + .btn-outline-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:active + .btn-outline-info:focus,
.btn-check:checked + .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:focus + .btn-outline-warning {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:active + .btn-outline-warning,
.btn-check:checked + .btn-outline-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:active + .btn-outline-warning:focus,
.btn-check:checked + .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:focus + .btn-outline-danger {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:active + .btn-outline-danger,
.btn-check:checked + .btn-outline-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:active + .btn-outline-danger:focus,
.btn-check:checked + .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:focus + .btn-outline-light {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:active + .btn-outline-light,
.btn-check:checked + .btn-outline-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:active + .btn-outline-light:focus,
.btn-check:checked + .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:focus + .btn-outline-dark {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:active + .btn-outline-dark,
.btn-check:checked + .btn-outline-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:active + .btn-outline-dark:focus,
.btn-check:checked + .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
}
.btn-link:hover {
  color: #0a58ca;
}
.btn-link:disabled {
  color: #6c757d;
}
.dropdown {
  position: relative;
}
.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}
.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}
.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}
.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:focus,
.nav-link:hover {
  color: #0a58ca;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}
.card-title {
  margin-bottom: 0.5rem;
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1rem;
}
.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom,
.card-img-top {
  width: 100%;
}
.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}
@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}
.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: block;
}
.active.carousel-item-end,
.carousel-item-next:not(.carousel-item-start) {
  transform: translateX(100%);
}
.active.carousel-item-start,
.carousel-item-prev:not(.carousel-item-end) {
  transform: translateX(-100%);
}
.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-next,
  .carousel-control-prev {
    transition: none;
  }
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}
@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.link-info {
  color: #0dcaf0;
}
.link-info:focus,
.link-info:hover {
  color: #3dd5f3;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.align-top {
  vertical-align: top !important;
}
.align-middle {
  vertical-align: middle !important;
}
.align-bottom {
  vertical-align: bottom !important;
}
.align-text-bottom {
  vertical-align: text-bottom !important;
}
.align-text-top {
  vertical-align: text-top !important;
}
.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-scroll {
  overflow: scroll !important;
}
.d-grid {
  display: grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-flex {
  display: flex !important;
}
.d-none {
  display: none !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.top-0 {
  top: 0 !important;
}
.top-50 {
  top: 50% !important;
}
.top-100 {
  top: 100% !important;
}
.bottom-0 {
  bottom: 0 !important;
}
.bottom-50 {
  bottom: 50% !important;
}
.bottom-100 {
  bottom: 100% !important;
}
.start-0 {
  left: 0 !important;
}
.start-50 {
  left: 50% !important;
}
.start-100 {
  left: 100% !important;
}
.end-0 {
  right: 0 !important;
}
.end-50 {
  right: 50% !important;
}
.end-100 {
  right: 100% !important;
}
.border {
  border: 1px solid #dee2e6 !important;
}
.border-0 {
  border: 0 !important;
}
.border-top {
  border-top: 1px solid #dee2e6 !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-end {
  border-right: 1px solid #dee2e6 !important;
}
.border-end-0 {
  border-right: 0 !important;
}
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-start {
  border-left: 1px solid #dee2e6 !important;
}
.border-start-0 {
  border-left: 0 !important;
}
.border-info {
  border-color: #0dcaf0 !important;
}
.border-white {
  border-color: #fff !important;
}
.border-1 {
  border-width: 1px !important;
}
.border-2 {
  border-width: 2px !important;
}
.border-3 {
  border-width: 3px !important;
}
.border-4 {
  border-width: 4px !important;
}
.border-5 {
  border-width: 5px !important;
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-around {
  align-content: space-around !important;
}
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.me-0 {
  margin-right: 0 !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.me-4 {
  margin-right: 1.5rem !important;
}
.me-5 {
  margin-right: 3rem !important;
}
.me-auto {
  margin-right: auto !important;
}
.ms-0 {
  margin-left: 0 !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.ms-4 {
  margin-left: 1.5rem !important;
}
.ms-5 {
  margin-left: 3rem !important;
}
.ms-auto {
  margin-left: auto !important;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.pe-0 {
  padding-right: 0 !important;
}
.pe-1 {
  padding-right: 0.25rem !important;
}
.pe-2 {
  padding-right: 0.5rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}
.pe-4 {
  padding-right: 1.5rem !important;
}
.pe-5 {
  padding-right: 3rem !important;
}
.text-start {
  text-align: left !important;
}
.text-end {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.text-info {
  color: #0dcaf0 !important;
}
.text-white {
  color: #fff !important;
}
.text-body {
  color: #212529 !important;
}
.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}
.bg-info {
  background-color: #0dcaf0 !important;
}
.bg-body {
  background-color: #fff !important;
}
.bg-white {
  background-color: #fff !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.bg-gradient {
  background-image: var(--bs-gradient) !important;
}
.pe-none {
  pointer-events: none !important;
}
.pe-auto {
  pointer-events: auto !important;
}
@media (min-width: 768px) {
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
} /*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: FontAwesome;
  src: url(https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0);
  src: url(https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0)
      format("embedded-opentype"),
    url(https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0)
      format("woff2"),
    url(https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0)
      format("woff"),
    url(https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0)
      format("truetype"),
    url(https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular)
      format("svg");
  font-weight: 400;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-search:before {
  content: "\f002";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-times:before {
  content: "\f00d";
}
.fa-home:before {
  content: "\f015";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-download:before {
  content: "\f019";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-book:before {
  content: "\f02d";
}
.fa-font:before {
  content: "\f031";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-image:before {
  content: "\f03e";
}
.fa-play:before {
  content: "\f04b";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-share:before {
  content: "\f064";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-upload:before {
  content: "\f093";
}
.fa-phone:before {
  content: "\f095";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-users:before {
  content: "\f0c0";
}
.fa-link:before {
  content: "\f0c1";
}
.fa-copy:before {
  content: "\f0c5";
}
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-circle:before {
  content: "\f111";
}
.fa-code:before {
  content: "\f121";
}
.fa-info:before {
  content: "\f129";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-toggle-down:before {
  content: "\f150";
}
.fa-toggle-up:before {
  content: "\f151";
}
.fa-toggle-right:before {
  content: "\f152";
}
.fa-inr:before,
.fa-rupee:before {
  content: "\f156";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-apple:before {
  content: "\f179";
}
.fa-android:before {
  content: "\f17b";
}
.fa-toggle-left:before {
  content: "\f191";
}
.fa-try:before {
  content: "\f195";
}
.fa-bank:before {
  content: "\f19c";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-support:before {
  content: "\f1cd";
}
.fa-send:before {
  content: "\f1d8";
}
.fa-send-o:before {
  content: "\f1d9";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-tv:before {
  content: "\f26c";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-industry:before {
  content: "\f275";
}
.fa-edge:before {
  content: "\f282";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-card:before {
  content: "\f2c2";
}
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-s15:before {
  content: "\f2cd";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1s.ttf)
    format("truetype");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJA.ttf)
    format("truetype");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1s.ttf)
    format("truetype");
} /*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: FontAwesome;
  src: url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0);
  src: url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0)
      format("embedded-opentype"),
    url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0)
      format("woff2"),
    url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0)
      format("woff"),
    url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0)
      format("truetype"),
    url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular)
      format("svg");
  font-weight: 400;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-search:before {
  content: "\f002";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-times:before {
  content: "\f00d";
}
.fa-home:before {
  content: "\f015";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-download:before {
  content: "\f019";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-book:before {
  content: "\f02d";
}
.fa-font:before {
  content: "\f031";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-image:before {
  content: "\f03e";
}
.fa-play:before {
  content: "\f04b";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-share:before {
  content: "\f064";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-upload:before {
  content: "\f093";
}
.fa-phone:before {
  content: "\f095";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-users:before {
  content: "\f0c0";
}
.fa-link:before {
  content: "\f0c1";
}
.fa-copy:before {
  content: "\f0c5";
}
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-circle:before {
  content: "\f111";
}
.fa-code:before {
  content: "\f121";
}
.fa-info:before {
  content: "\f129";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-toggle-down:before {
  content: "\f150";
}
.fa-toggle-up:before {
  content: "\f151";
}
.fa-toggle-right:before {
  content: "\f152";
}
.fa-inr:before,
.fa-rupee:before {
  content: "\f156";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-apple:before {
  content: "\f179";
}
.fa-android:before {
  content: "\f17b";
}
.fa-toggle-left:before {
  content: "\f191";
}
.fa-try:before {
  content: "\f195";
}
.fa-bank:before {
  content: "\f19c";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-support:before {
  content: "\f1cd";
}
.fa-send:before {
  content: "\f1d8";
}
.fa-send-o:before {
  content: "\f1d9";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-tv:before {
  content: "\f26c";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-industry:before {
  content: "\f275";
}
.fa-edge:before {
  content: "\f282";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-card:before {
  content: "\f2c2";
}
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-s15:before {
  content: "\f2cd";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
body {
  scroll-behavior: smooth;
  background: #111;
}
.g-img {
  display: flex;
  align-items: center;
  font-size: 10px;
}
.g-img img {
  width: 50px;
  padding: 10px;
}
#service-info {
  background-color: #000;
  color: #000;
  display: flex;
  justify-content: space-around;
  height: 100%;
  text-align: center;
  padding: 21px;
}
.service-info-card a {
  text-decoration: none;
  color: #000;
}
.service-info-card .cricle {
  font-size: 38px;
  color: #fff;
  background-color: #2a002a;
  width: 77px;
  height: 76px;
  border-radius: 50px;
  margin: 12px auto;
  padding: 10px;
  box-shadow: 0 0 20px #e4ab31;
  position: relative;
}
.service-info-card .whatsapp {
  background-color: green;
}
.service-info-card .text {
  font-size: 17px;
  font-weight: 500;
  text-transform: capitalize;
}
.service-info-card .cricle:hover {
  background-color: #e4ab31;
}
.service-info-card .cricle:hover::after {
  position: absolute;
  content: "";
  background-color: #e4ab31da;
  width: 382px;
  height: 10px;
  top: 50%;
  left: 78px;
  transform: translatey(-50%);
  transition: all 0.3s ease;
  animation: slide-1-card 0.5s forwards;
}
@keyframes slide-1-card {
  0% {
    width: 0;
  }
  100% {
    width: 358px;
  }
}
.info-card-mid .cricle:hover::after {
  position: absolute;
  content: "";
  background-color: #e4ab31da;
  width: 100px;
  height: 10px;
  top: 50%;
  left: 79px;
  transform: translatey(-50%);
  transition: all 0.3s ease;
  animation: slide-mid1-card 0.5s forwards;
}
@keyframes slide-mid1-card {
  0% {
    width: 0;
  }
  100% {
    width: 380px;
  }
}
.info-card-mid .cricle:hover::before {
  position: absolute;
  content: "";
  background-color: #e4ab31da;
  width: 100px;
  height: 10px;
  top: 50%;
  right: 79px;
  transform: translatey(-50%);
  transition: all 0.3s ease;
  animation: slide-mid2-card 0.5s forwards;
}
@keyframes slide-mid2-card {
  0% {
    width: 0;
  }
  100% {
    width: 348px;
  }
}
.info-card .cricle:hover::after,
.info-card .cricle:hover::before {
  position: absolute;
  content: "";
  background-color: #e4ab31da;
  width: 345px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 518px;
  transition: all.3s ease;
}
.info-card .cricle:hover::after {
  left: -356px;
  width: 347px;
}
@media (max-width: 700px) {
  #service-info {
    overflow: hidden;
    flex-direction: column;
  }
  .service-info-card {
    padding: 15px 0;
  }
}
