*{
    padding: 0;
    margin: 0;
}
div#exampleModal {
    padding-right: 0 !important;
}
body.modal-open {
    padding-right: 0 !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none!important;
  margin: 0!important;
}

input[type=number] {
  -moz-appearance: textfield!important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
::-webkit-scrollbar
{
  width: 0px;
  background-color: #000000;
}
div#exampleModal::-webkit-scrollbar
{
  width: 0px;
  background-color: #000000;
}
::-webkit-scrollbar-thumb
{
  background-color: #ececec;
  border-radius: 10px;
}

body{
  background: #353A43;
   transition: background 1s ease-in-out;
   font-family: "Manrope", sans-serif; 
}
body, html{
 font-family: "Manrope", sans-serif;
     letter-spacing: 1.05px;
}
p{
 font-family: "Manrope", sans-serif;  
}
div#exampleModal {
    background: #ffffff33;
    background: rgb(0 0 0 / 20%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.common_padding_top {
  padding-top: 80px;
}
.common_padding_bottom {
  padding-bottom: 80px;
}
.common_paragraph p {
    color: #f8fafcc7;
    font-size: 17px;
    line-height: 28px;
    margin: 0;
    font-weight: 300;
}
.common_title {
    color: #FFFFFF;
    font-size: 32px;
    margin: 0;
    transition: all .5s linear;
    font-weight: 500;
    font-family: "Inter Tight", sans-serif;
}
.head_centre {
    text-align: center;
    margin-bottom: 40px;
}
.test_orange {
    color: #FF7600;
}
/* .width_87 {
    width: 87%;
    margin: auto;
} */
.common_btn {
    color: #FFFFFFCC;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 0px 5px 5px 5px;
    overflow: hidden;
    transition: all .5s linear;
}
.common_btn:hover {
    color: #FF7600;
    transition: all .5s linear;
}
.common_btn::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #ffffffad;
}
.common_btn:hover img {
  animation-name: bounceAlpha;
  animation-duration: 1.4s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes bounceAlpha {
  0% {
    opacity: 1;
    transform: translateX(0px) scale(1);
}

25% {
    opacity: 0;
    transform: translate(20px, -20px) scale(0.9);
}
26% {
    opacity: 0;
    transform: translate(-20px, 20px) scale(0.9);
}
55% {
    opacity: 1;
    transform: translateX(0px) scale(1);
}
}

.mb60{
    margin-bottom: 60px;
}
.smalltitle {
    color: #fff;
    font-size: 20px;
    margin: 0;
    font-family: 'Inter Tight';
    font-weight: 400;
}
.medium_title {
    color: #fff;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 400;
    font-family: 'Inter Tight';
    line-height: 30px;
}
.mt-60{
    margin-top: 50px;
}

.innercta {
    padding-top: 80px !important;
}
#button {
    background-color: #FF7600;
    width: 48px;
    height: 48px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 10%;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
	    font-size: 22px;
}
#button:hover {
  cursor: pointer;
  background-color: #2A2E36;
}
#button:active {
  background-color: #2A2E36;
}
#button.show {
  opacity: 1;
  visibility: visible;
}