@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body {
  background: #fff !important;
  color: #2a2a2a;
  font-size: 16px;
  height: 100%;
  line-height: 1.5;
  overflow-x: hidden;
  font-family: "Poppins" !important;
}
body {
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins" !important;
  margin-top: 0;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}
a {
  text-decoration: none !important;
}
.card {
  border: none !important;
}

.btn-outline-white {
  border: 0.1px solid #fff !important;
  color: #fff !important;
}
.btn-outline-white:hover {
  color: #000 !important;
  background-color: #fff !important;
  border-color: #fff !important;
}
.btn-outline-white.focus,
.btn-outline-white:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5) !important;
}
.btn-white {
  color: #000 !important;
  background-color: #fff !important;
  border-color: #fff !important;
}
.btn-white:hover {
  color: #000 !important;
  background-color: #ffffffe1 !important;
  border-color: #ffffffe1 !important;
}
.btn-white.focus,
.btn-white:focus {
  color: #000 !important;
  background-color: #ffffffe1 !important;
  border-color: #ffffffe1 !important;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5) !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000 !important; 
  background-color: #ffffffe1 !important;
  border-color: #ffffffe1 !important;
}

.cursor-pointer {
  cursor: pointer;
}
/* html{
    scroll-behavior: smooth;
    transition: 20s ease-in-out;
} */


.nav-bar{
    background: transparent !important;
}
.RightToLeft{
    animation: RightToLeft 4s infinite linear;
}

@keyframes RightToLeft{
    from{
        transform: translateX(0%);
    }
    To{
        transform: translateX(-100%);
    }
}

.LeftToRight{
    animation: LeftToRight 5s infinite linear;
}

@keyframes LeftToRight{
    from{
        transform: translateX(-100%);
    }
    To{
        transform: translateX(0%);
    }
}