*{
    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: 5px;
  background-color: #ffffff;
}
div#exampleModal::-webkit-scrollbar
{
  width: 0px;
  background-color: #000000;
}
::-webkit-scrollbar-thumb
{
  background-color: #004A99;
}
@font-face{
  font-family: "helveticaneuethin";
  src: url(../fonts/helveticaneuethin.otf);
}
@font-face{
  font-family: "helveticaneueheavy";
  src: url(../fonts/helveticaneueheavy.otf);
}
@font-face{
  font-family: "helveticaneuelight";
  src: url(../fonts/helveticaneuelight.otf);
}
@font-face{
  font-family: "helveticaneuemedium";
  src: url(../fonts/helveticaneuemedium.otf);
}
body{
  background: #000A15;
   transition: background 1s ease-in-out;
   overflow-x: hidden;
}
html, body {
    font-family: "helveticaneuelight";
    scroll-behavior: auto !important;
    letter-spacing: .8px;
}
#exampleModal {
    background: #ffffff33;
    background: rgb(0 0 0 / 20%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.common_padding_top {
  padding-top: 100px;
}
.common_padding_bottom {
  padding-bottom: 100px;
}
.common_paragraph p {
    color: #ffffff96;
    margin: 0;
    font-size: 16px;
    font-family: "helveticaneuethin";
}
.common_title {
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: "helveticaneuemedium";
}
.common_sub_headings{
  color: #FFFFFF;
  font-size: 24px;
}
#button {
    display: flex;
    background-color: #5f8c02;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
.fix_icons {
    position: fixed;
    top: 40%;
    right: 20px;
    z-index: 999;
    display: grid;
    gap: 10px;
}
.fix_icons a {
    text-decoration: none;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    border: 1px solid #ffffff08;
}
.mail_fix {
    background: #004A99;
}
.phone_fix {
    background: #011021;
}
.phone_fix iconify-icon{
  animation: ring 4s infinite ease-in-out;
}

@keyframes ring {
  0% { transform: rotate(0) scale(1) skew(1deg); }
  10% { transform: rotate(-10deg) scale(1) skew(1deg); }
  20% { transform: rotate(10deg) scale(1) skew(1deg); }
  30% { transform: rotate(-10deg) scale(1) skew(1deg); }
  40% { transform: rotate(0deg) scale(1) skew(1deg); }

  /* pause time */
  50% { transform: rotate(0deg) scale(1) skew(1deg); }
  60% { transform: rotate(0deg) scale(1) skew(1deg); }
  70% { transform: rotate(0deg) scale(1) skew(1deg); }
  80% { transform: rotate(0deg) scale(1) skew(1deg); }
  90% { transform: rotate(0deg) scale(1) skew(1deg); }
  100% { transform: rotate(0deg) scale(1) skew(1deg); }
}
.head_centre {
    text-align: center;
    margin-bottom: 50px;
}
.common_btn {
    background: #004A99;
    border-radius: 50px;
    padding: 10px 14px;
    border: 0;
    color: #FFFFFF;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
     transition: all .5s linear;
}
.common_btn:hover {
    background: radial-gradient(#00204400, #004a99);
    transition: all .5s linear;
}
.button-inner-hover {
    background-color: var(--base-color-brand--black);
    border-radius: 150px;
    box-shadow: inset 0 -10px 30px #6e45ffcc, inset 0 4px 120px #6e45ff1f;
}
.submit_btn{
  background: #004A99;
    border-radius: 50px;
    padding: 8px 30px;
    border: 0;
    color: #FFFFFF;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
     transition: all .5s linear;
     will-change: transform;
}
.submit_btn:hover {
    background: #00346c;
    transform: scale(1.02);
    transition: all .5s linear;
    will-change: transform;
}