*{
    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: #ffff;
}
div#exampleModal::-webkit-scrollbar
{
  width: 0px;
  background-color: #fff;
}
::-webkit-scrollbar-thumb
{
  background-color: #F5821F;
  /*border-radius: 10px;*/
}

body{
  background: #ffffff;
   transition: background 1s ease-in-out;
}
html,body {
 font-family: "Raleway", sans-serif;
}
#button {
    position: fixed;
    right: 20px;
    bottom: 40px;
    background: #f5821f;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    z-index: 999;
    opacity: 0;
    cursor: pointer;
    transition: all .5s linear;
}
#button.show{
  opacity: 1;
  transition: all .5s linear;
}
.common_btn {
    text-decoration: none;
    background: #F5821F;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
        display: flex;
    width: fit-content;
    border: 0;
    position: relative;
    overflow: hidden;
    transition: all .5s linear;
}
.common_btn span{
  position: relative;
  z-index: 1;
}
.common_btn::after{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000;
  transition: all .5s linear;
}
.common_btn:hover::after{
  width: 100%;
  transition: all .5s linear;
}
.common_btn:hover span{
    color: #fff;
}
.common_btn:hover{
    color: #fff;
}
.btn_dark::after {
    background: #272727;
}
.common_padding_top{
  padding-top: 90px;
}
.common_padding_bottom{
  padding-bottom: 90px;
}
.sub_title {
    color: #F5821F;
    font-size: 15px;
    margin: 0;
    width: fit-content;
    padding: 5px 10px;
    background: #FFF0E5;
    border-radius: 50px;
        margin-bottom: 10px;
        text-transform: capitalize;
}
.bg_dark{
  background: #222222;
}
.text_white{
  color: #fff!important;
}
.common_title {
    font-size: 36px;
    font-weight: 600;
    /*text-transform: capitalize;*/
}
.head_centre {
    text-align: center;
    margin-bottom: 70px;
}
.head_centre .sub_title {
    margin: 0 auto 30px;
}
.sub_title_dark{
  background: #353535;
}
.common_paragraph p {
    color: #3B3B3B;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.medium_title {
    color: #000000;
    font-size: 22px;
    font-weight: 600;
}
.btn_dark {
    background: #020202;
}
.btn_dark:hover {
    background: #020202;
}
.reveal {
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
}
.head_centre p {
    width: 573px;
    margin: 20px auto 0;
}
.bg_light{
  background: #f3f3f3;
}
.common_list ul{
  padding: 0;
  margin: 0;
  list-style: none;
}
.common_list ul li{
  padding-left: 25px;
  color: #3B3B3B;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    position: relative;
    margin-bottom: 20px;
}
.common_list ul li::after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F5821F;
    top: 8px;
    left: 0;
}
.flex_title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 60px;
}
.text_orange{
  color: #F5821F;
}
.fix_icons {
    position: fixed;
    bottom: 22%;
    right: 20px;
    z-index: 9999;
}
.fix_icons .whatsapp{
  font-size: 40px;
}
.pulse {
    width: 48px;
    height: 48px;
    background: #42c553;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 84px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pulse:before,
.pulse:after
{
    content: '';
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #42c553;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite; 
    opacity: 0;
}

.pulse:after {
    animation-delay: .5s;
}

@keyframes animate 
{
    0%
    {
        transform: scale(0.01);
        opacity: 0;
    }
    50% {
        
        opacity: 1;
    }
    100%
    {
        transform: scale(1.01);
        opacity: 0;
    }
    
}


.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-mask img {
    width: 90px;
    /* filter: invert(1) grayscale(1); */
}
/* 404 */
.four-not-four {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .error {
    width: 100%;
    height: 350px;
    margin: 0px auto 30px;
	  text-align: center;
  }
.error img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
  .error-text {
    width: 100%;
    text-align: center;
    margin-top: 0px;
  }
 .error-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #020202;
    margin: 0px 0px 5px;
}
.error-text p {
    font-size: 16px;
    color: #0000009d;
    font-weight: 500;
    margin: 0 auto;
    width: 380px;
    line-height: 22px;
}
.error-text a {
    margin: 20px auto 0px;
    display: flex;
    width: fit-content;
}
  @media(max-width: 575px){
    .error{
        height: unset;
        text-align: center;
    }
    .error img{
        height: unset;
        width: 70%;
    }
    .error-text h2 {
        font-size: 24px;
    }
	  .error-text p{
		  width: unset;
	  }
  }