*{
    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;
}
html,body {
 font-family: "Inter", sans-serif;
}
.bg_light{
    background: #F0F0F0;
}
#exampleModal {
    background: #ffffff33;
    background: rgb(0 0 0 / 20%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.common_padding_top {
  padding-top: 60px;
}
.common_padding_bottom {
  padding-bottom: 60px;
}
.common_paragraph p {
    color: #686868;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
.common_title {
    color: #06121E;
    font-size: 34px;
    line-height: 38px;
    font-weight: 600;
    margin: 0;
    transition: all .5s linear;
    text-transform: capitalize;
}
.text_orange{
  color: #EC8A00;
}
.titlesec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.text_dark{
  color: #fff;
  transition: all .5s linear;
}
.section.active .text_dark {
    color: #252525;
    transition: all .5s linear;
}
.small_title {
    color: #EC8A00;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.section.active .text_blue {
    color: #0056D4;
    display: inline-block; 
    transform: translateY(100%);
    transition: all .5s linear;
}
.text_blue {
    color: #fff;
    transition: all .5s linear;
}
.reveal-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom; 
}
.common_btn {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all .5s linear;
    border: 1px solid #EC8A00;
    background: #EC8A00;
    border-radius: 50px;
    gap: 10px;
    padding: 8px 12px;
    font-weight: 500;
    width: fit-content;
}
.common_btn span {
    width: 25px;
    height: 25px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    transition: 0.3s linear;
}
.common_btn:hover span {
    background: #EC8A00;
    transition: 0.3s linear;
}
.common_btn:hover {
    background: transparent;
}
.section.active .common_btn{
    color: #0056D4;
    transition: all .5s linear;
}
.cmnmarg{
    margin-bottom: 60px;
}
.ftr_logo a img {
     transition: all .5s linear;
}
.common_btn:hover {
  transition: all .5s linear;
  color: #252525;
}
.common_btn:hover .btn_arrow 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);
}
}
.btn_arrow {
    width: 42px;
    height: 42px;
    background: #252525;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.btn_arrow img{
  width: 26px;
  transition: all 1.4s linear;
}
/* image reveal */
.reveal img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: top;
}
.reveal {
  visibility: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
	height: 100%;
}
.image_reveal_wrap {
    overflow: hidden;
    height: 100%;
}
/* .bg_blue{
  background: #0056D4;
} */
.section.active .text_white{
  color: #FFFFFF;
  transition: all .5s linear;
}
.text_light{
  font-family: "Inter", sans-serif;
}
.head_centre {
    text-align: center;
    margin-bottom: 80px;
}
.common_btn2 {
    position: relative;
    text-decoration: none;
    border: 1px solid #0000004d;
    padding: 8px 12px;
    border-radius: 50px;
    color: #000000d1;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    overflow: hidden;
    display: inline-block;
    transition: all .5s linear;
    width: fit-content;
}
.section.active .common_btn2{
  border: 1px solid #ffffff;
  color: #ffffffd1;
  transition: all .5s linear;
}
.common_btn2::after{
  position: absolute;
  content: '';
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #252525;
  transition: all .5s linear;
}
.common_btn2 span{
  position: relative;
  z-index: 9;
  transition: all .5s linear;
}
.common_btn2:hover::after{
  bottom: 0;
  transition: all .5s linear;
}
.common_btn2:hover{
  color: #fff;
  border-color: #252525;
}

#button {
  display: inline-block;
  background-color: #EC8A00;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 10%;
  right: 20px;
  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: 20px;
}
#button:hover {
  cursor: pointer;
  background-color: #1E222B;
  box-shadow: rgb(0 0 0 / 9%) 0px 2px 8px 0px;
}
#button:active {
  background-color: #1E222B;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
.width_81 {
    width: 81%;
    margin: auto;
}
.flex_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.sub_title {
    color: #5D5D5D;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
/* 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: #0000009d;
    font-weight: 400;
    margin: 0 auto;
    width: 380px;
}
.error svg {
    width: 100%;
    height: 110%;
}
.error-text a {
    border: 0;
    background: #EC8A00;
    border-radius: 4px;
    padding: 10px 40px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all .5s linear;
    display: flex;
    width: fit-content;
    margin: 20px auto 0px;
}
  @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: 13px!important;
    margin-top: 5px;
}