*{
    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: #8BDC19;
  border-radius: 10px;
}

body{
  background: #ffffff;
   transition: background 1s ease-in-out;
}
body, html{
 font-family: "Instrument Sans", 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: #595472;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
}
.common_paragraph_light p {
    color: #c9c9c9!important;
}
.common_title {
    color: #1E0F6E;
    font-size: 40px;
    margin: 0;
    transition: all .5s linear;
    font-weight: 600;
    margin-bottom: 15px;
}
.common_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1E0F6E;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 0;
    background: transparent;
}
.common_btn:hover{
  color: #1E0F6E;
}
.btn_arrow{
    background: #F4A221;
    border: 0;
    border-radius: 50px;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    transition: all .5s linear;
}
.btn_arrow img {
    width: 16px;
}
.fix_icons {
    position: fixed;
    right: 10px;
    top: 50%;
    z-index: 99999;
}
.fix_icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1e0f6e;
    font-size: 20px;
    margin-top: 5px;
    border-radius: 50%;
    border: 1px solid #0056d430;
}
.whatsapp {
    background: #f4a222 !important;
    color: #fff !important;
    font-size: 22px !important;
    border: 1px solid #ffffff24 !important;
}
.flex_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}
.bg_blue{
  background: #1E0F6E;
}
.head_centre {
    text-align: center;
}
.head_centre p {
    color: #ECD9D9;
    font-weight: 400;
    width: 390px;
    margin: auto;
}
.text_yellow {
    color: #F4A222;
}
.head_centre p span{
  font-weight: 600;
}
.bg_yellow{
  background: #F4A222;
}
.text_white{
  color: #fff;
}
.small_title {
    color: #F4A222;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
        animation: ani 1s;
}
@keyframes ani{
  0% {
    letter-spacing: 5px;
    filter: blur(5px);
    opacity: 0;
}
100% {
    letter-spacing: 0;
    filter: blur(0);
    opacity: 1px;
}
}
.line {
    width: 29px;
    height: 1px;
    background: #F4A222;
}
.common_btn02 {
    background: #F4A222;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
    transition: all .5s linear;
}
.common_btn02:hover{
  background: #1E0F6E;
  transition: all .5s linear;
  color: #fff;
}
.enquiry_submit_btn:hover{
  background: #1E0F6E;
  transition: all .5s linear;
  color: #fff;
  cursor: pointer;
}
/* 404 */
.four-not-four {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .error {
    width: 100%;
    height: 400px;
    margin: auto;
    margin: 0px auto;
	  text-align: center;
  }
.error img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
  .error-text {
    width: 100%;
    text-align: center;
    margin-top: 0px;
  }
.error-text p {
    font-size: 14px;
    color:#2b2b2b9d;
    font-weight: 400;
    margin: 0 auto;
    width: 380px;
}
.error-text a {
    background: #1E0F6E;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .5s linear;
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 20px auto 0px;
}
.error img {
    width: 100%;
    height: 100%;
	animation: bounce 5s ease infinite alternate;
}
@keyframes bounce {
  0% {
      transform:translateY(0px);
  }
  100% {
    transform:translateY(-10px);
  }
}
  @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;
	  }
  }
.wpcf7-not-valid-tip {
    font-size: 14px!important;
    margin-top: 5px!important;
}
.wpcf7-response-output {
    font-size: 14px !important;
}