@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&family=Roboto&display=swap");
html {
  scroll-behavior: smooth;
}

:root {
  --theme-color: #FCB614;
  --theme-color-primary: #014E9C;
  --theme-color-warning: #FFE760;
  --theme-color-light: #FFF28F;
  --h-color: #333333;
  --t-color: #757575;
  font-size: 16px;
  --theme-normal-font: 'Roboto', sans-serif;
  --theme-heading-font: 'Raleway', sans-serif;
  --theme-bg-color: #ffffff;
  --global-border-bottom: #F5F5F5;
  --theme-text-color: #ffffff;
  --contact-form-input-border: #f5f5f5;
  --theme-btn-color: #419FFF;
}

a {
  text-decoration: none;
}

.fa-brands,
.fa-regular {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
}

/***************************/
.btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  font-family: 'Raleway', sans-serif;
  vertical-align: top;
  border-radius: 30px;
  letter-spacing: 0em;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  text-transform: capitalize;
}

/* .btn-primary {
    border: none !important;
    color: #fff !important;
    background: linear-gradient(90deg, var(--theme-color-primary) -4.05%, var(--theme-btn-color) 100%) !important;
    
}

.btn-primary:hover,.btn-primary.focus,.btn-primary:focus{
    border: none !important;
    color: #ffffff !important;
    background: var(--theme-color-primary) !important;
    
} */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}

h1,
.h1 {
  font-size: 50px;
}

h2,
.h2 {
  font-size: 45px;
}

h3,
.h3 {
  font-size: 32px;
}

h4,
.h4 {
  font-size: 26px;
}

h5,
.h5 {
  font-size: 12px;
}

/********** Back To Top Button************************************************************************/
#scroll {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 99999;
  cursor: pointer;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 43px;
  background: #014E9C;
  color: #fff !important;
  border-radius: 8rem !important;
}

#scroll:hover {
  opacity: .7;
}

.navbar .navbar-nav .nav-link {
  color: var(--h-color);
  padding: 10px 3px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--theme-heading-font);
  border-bottom: 1px solid transparent;
}

.navbar .navbar-nav .active > .nav-link,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show > .nav-link,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover {
  color: var(--theme-color) !important;
}

.nav-link {
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.nav-link:after {
  display: block;
  content: '';
  border-bottom: solid 3px var(--theme-color);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}

.nav-link:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
}

/*******************************Ipad Device L***************************************/
@media (min-width: 991.98px) and (max-width: 1199.98px) {
  .navbar-nav > li + li {
    margin-left: 20px !important;
  }
}

/******************************* Max-width-768 ***************************************/
@media (min-width: 768px) {
  .navbar-nav > li + li {
    margin-left: 40px;
  }
}

/******************************* Ipad Device W ***************************************/
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-nav > li + li {
    margin-left: 30px !important;
  }
}

/******************************* Max-width-640 ***************************************/
/******************************* Mobile ***************************************/
/*# sourceMappingURL=global.css.map */