@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
/*** 

====================================================================
Global Settings
====================================================================

***/
:root {
  --primary-50: #f5f3ff;
  --primary-100: #ede9fe;
  --primary-300: #c4b5fd;
  --primary-600: #7c3aed;
  --primary-900: #4c1d95;
  --secondary-50: #ecfeff;
  --secondary-100: #d5fafc;
  --secondary-300: #75e3ea;
  --secondary-600: #1db5be;
  --secondary-900: #2a4e51;
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
  --white: #ffffff;
  --black: #000000;
  /* font style  */
  --fs-displayXL: 60px;
  --fs-displayLG: 48px;
  --fs-displayMD: 36px;
  --fs-displaySM: 30px;
  --fs-bodyLG: 18px;
  --fs-bodyMD: 16px;
  --fs-bodySM: 14px;
  --lh-displayXL: 72px;
  --lh-displayLG: 60px;
  --lh-displayMD: 45px;
  --lh-displaySM: 40px;
  --lh-bodyLG: 28px;
  --lh-bodyMD: 24px;
  --lh-bodySM: 20px;
}
@media (max-width: 992px) {
  :root {
    /* font style  */
    --fs-displayXL: 48px;
    --fs-displayLG: 36px;
    --fs-displayMD: 30px;
    --fs-displaySM: 24px;
    --lh-displayXL: 60px;
    --lh-displayLG: 45px;
    --lh-displayMD: 40px;
    --lh-displaySM: 32px;
  }
}
@media (max-width: 576px) {
  :root {
    /* font style  */
    --fs-displayXL: 36px;
    --fs-displayLG: 30px;
    --fs-bodyLG: 16px;
    --fs-bodyMD: 14px;
    --lh-displayXL: 45px;
    --lh-displayLG: 40px;
    --lh-bodyLG: 24px;
    -lh-bodymd: 20px;
  }
}
/*** 

====================================================================
App Default Style
====================================================================

***/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
a {
  text-decoration: none;
  cursor: pointer;
}
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}


/*** 

====================================================================
Button style's
====================================================================

***/
button,
.button {
  text-align: center;
  white-space: nowrap;
  font-size: 15px;
  line-height: 20px;
  z-index: 1;
  border-radius: 8px;
  padding: 18px 35px 15px 35px;
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.btn-theme-default {
  color: var(--primary-100);
  /* background-color: var(--primary-600); */
  background-color: #C46200;
}
.btn-theme-default:hover {
  color: var(--primary-100);
  background-color: #964B00;
}
.btn-theme-1 {
  color: var(--primary-600);
  background-color: var(--primary-100);
}
.btn-theme-1:hover {
  color: var(--primary-100);
  background-color: var(--primary-600);
}
.btn-theme-2 {
  color: var(--primary-600);
}
.btn-theme-2:hover {
  color: var(--primary-100);
  background-color: var(--primary-600);
}
/*** 

====================================================================
Font Colour
====================================================================

***/
.nav-item a,
.text-body p,
.text-body h2,
#Herosection h1,
#Features .container-body .text .title,
#Features .container-body .text .description,
#aboutFeatures .container-body .text .title,
#aboutFeatures .container-body .text .description,
.pricing-table .price {
  color: var(--neutral-900);
}
#Herosection p {
  color: var(--neutral-700);
}
#Testimonial .personal-detail .per-role,
#FAQ .accordion-item .accordion-body,
.pricing-table .price .duration {
  color: var(--neutral-500);
}
#Pricing .inner-box .table-content ul li,
.pricing-table .tag {
  color: var(--primary-600);
}
#Pricing .inner-box .title {
  color: var(--primary-900);
}
/*** 

====================================================================
Background Colour
====================================================================

***/
.bg-primary-300 {
  background-color: var(--primary-100);
}
.bg-secondary-100 {
  /* background-color: var(--secondary-100); */
  background-color: #eeeee4;
}
.bg-secondary-600 {
  background-color: var(--secondary-600);
}
.bg-neutral-50 {
  background-color: white;
}
.bg-special {
  background-color: #f1f4f8;
}
/*** 

====================================================================
Typography - fontWeight
====================================================================

***/
button,
.button,
.fw-light,
.pricing-table .duration,
.pricing-table .duration,
.pricing-table .table-content ul li {
  font-weight: 400;
}
#Footer a,
.pricing-table .title,
.pricing-table .price,
.pricing-table .table-footer a {
  font-weight: 500;
}
/*** 

====================================================================
Typography - fontSize/lineHeight/letterSpacing
====================================================================

***/
#Herosection h1,
h1 {
  font-size: var(--fs-displayXL);
  line-height: var(--lh-displayXL);
  letter-spacing: -0.025em;
}
.text-body h2,
h2 {
  font-size: var(--fs-displayLG);
  line-height: var(--lh-displayLG);
  letter-spacing: -0.025em;
}
#Metric .content-item .title {
  font-size: var(--fs-displayMD);
  line-height: var(--lh-displayMD);
  letter-spacing: -0.025em;
}
#Features .container-body .text .title,
#aboutFeatures .container-body .text .title,
#Pricing .inner-box .price {
  font-size: var(--fs-displaySM);
  line-height: var(--lh-displaySM);
}
#Testimonial .personal-detail .per-name,
#FAQ .accordion-item h2 button,
.text-body p,
.badges p {
  font-size: var(--fs-bodyLG);
  line-height: var(--lh-bodyLG);
  font-weight: 400;
}
#Metric .content-item .Description,
#Features .container-body .text .description,
#aboutFeatures .container-body .text .description,
#Pricing .inner-box .title,
#Pricing .inner-box .price span.duration,
#Pricing .inner-box .table-content ul li,
#Pricing .pricing-table .table-footer a {
  font-size: var(--fs-bodyMD);
  line-height: var(--lh-bodyMD);
}
#Testimonial .personal-detail .per-role,
#FAQ .accordion-item .accordion-body,
.pricing-table .tag
 {
  font-size: var(--fs-bodySM);
  line-height: var(--lh-bodySM);
}

/*** 

====================================================================
Theme Style
====================================================================

***/
#Herosection,
#Features .container,
#aboutFeatures .container,
.section .container
{
  padding-top: 80px;
  padding-bottom: 80px;
}
#Pricing .container
{
  padding-top: 40px;
  padding-bottom: 40px;
}
#Features .text-body h1,
#Features .text-body p,
#aboutFeatures .text-body h1,
#aboutFeatures .text-body p,
#Pricing .text-body h1,
#Pricing .text-body p {
  max-width: 800px;
}
/*** 

====================================================================
App
====================================================================

***/
.app {
  min-height: fit-content;
  overflow-x: hidden;
}
/*** 

====================================================================
Navbar Section
====================================================================

***/
#Navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  overflow: visible;
  /* background-color:#f9f8f0; */
  background-color: white;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--neutral-900);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: #ED5910;
}

@media (min-width: 992px) {
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}
}

@media (min-width: 992px) {
  .me-5 {
    margin-right: 7.5rem!important;
  }
  .ms-5 {
    margin-left: 7.5rem!important;
  }
  }

  @media (min-width: 1368px) {
    .me-5 {
      margin-right: 10rem!important;
    }
    .ms-5 {
      margin-left: 10rem!important;
    }
    }

.nav-scrolled {
  box-shadow: 0px 4px 8px -2px rgba(17, 24, 39, 0.1),
    0px 2px 4px -2px rgba(17, 24, 39, 0.06);
}
.nav-item a {
  font-weight: 600;
}
.nav-right {
  width: fit-content;
}
.BrandLogo,
.badge-item .item {
  height: 35px;
}

/* Hero Section */

.servdtl-overview {
  width: 100%;
  height: auto;
  margin: auto;
  margin-top: 40px;
}

.servdtl-overview h3 {
  margin: 0px;
  color: #2e2842;
  font-size: 24px;
  position: relative;
  margin-bottom: 25px;
  font-weight: 500;
}

.servdtl-overview p {
  margin: 0px;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  padding-top: 20px;
}

.servdtl-overview h5 {
  margin: 0px;
  font-size: 20px;
  font-weight: 600;
  color: #2e2842;
  padding-top: 40px;
}

.lnk-gfq {
  width: 100%;
  height: auto;
  margin: auto;
  margin-top: 30px;
}

.lnk-gfq a {
  width: 170px;
  width: 150px;
  display: block;
  background: #ED5910;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  border-radius: 3px;
  height: 45px;
  line-height: 45px;
  transition: all 0.3s ease-in;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
}

.pages-title {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFF;
  margin-bottom: 100px;
}

.pages-title-index {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #070707;
  margin-bottom: 100px;
}

.mt-5, .my-5 {
  margin-top: 5rem !important;
}

@media screen and (max-width: 359.98px)
{
  .contact-info-layer {
    text-align: center;
  }
}

@media screen and (max-width: 550px)
{
  .contact-info-layer {
    text-align: center;
  }
  }


@media screen and (max-width: 425px)
{
  .contact-info-layer {
    text-align: center;
  }
  }


.contact-right-layer {
  padding: 50px;
  box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
  border-top: solid 5px var(--secundary-color);
}

.custom-form {
  display: block;
  width: 100%;
  height: calc(2em + 1rem + 2px);
  padding: 8px 25px !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-color);
  background-color: #C6C6C6;
  background-clip: padding-box;
  border: none;
  border-radius: 5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-family: 'Open Sans', sans-serif;
}

.btn-default.disabled, .btn-default:disabled {
  color: #fff;
  background-color: orangered;
  border-color: var(--secundary-color);
  opacity: 1;
}

.btn-default {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  padding: 10px 30px;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.3333333;
  letter-spacing: 1px;
  font-weight: 600;
  color: #FFF;
  background-color: var(--secundary-color);
  border: 1px solid var(--secundary-color);
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border-radius: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: #fff;
  transition: all 0.3s ease-in-out 0s;
}

textarea.form-control {
  height: auto;
}
/* .message-form {
  border-radius: 10px !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  padding: 20px 25px;
}
.message-form {
  background-color: #C6C6C6 !important;
} */

.hero-bg {
  --band-right-offset: 0px;
  --band-left-offset: 0px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-bg .bg {
  left: 0px;
  top: 0px;
  right: 0px;
  height: 100%;
  background: rgba(242, 247, 255, 0.7);
  /* background-image: url(Images/imgbg.jpg); */
  backdrop-filter: blur(100px);
}

@media (min-width: 1200px) {
  .hero-bg .bg {
    width: 100%;
  }
}

.hero-bg .purple-circle {
  position: absolute;
  width: 406px;
  height: 406px;
  right: -107px;
  top: -37px;
  z-index: -1;
}
.band {
  position: absolute;
  z-index: 1;
}


.lii-block-text {
  padding-top: 6.25rem;
  /* padding-bottom: 5rem;
  border-bottom: 1px solid #d0dbe5; */
}
.clear-bottom {
  border-bottom: none!important;
  padding-bottom: 0!important;
  margin-bottom: 0!important;
}
@media print, screen and (min-width: 40em) {
.grid-container {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
}
.grid-container {
  /* padding-right: 3.125rem;
  padding-left: 3.125rem; */
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (min-width: 40em) {
.grid-margin-x {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}
}
.grid-margin-x {
    margin-left: -3.125rem;
    margin-right: -3.125rem;
}
.grid-x {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

@media print, screen and (min-width: 40em) {
.grid-margin-x>.small-12 {
    width: calc(100% - 3rem);
}
}

.grid-margin-x>.small-12 {
    width: calc(100% - 6.25rem);
}

@media print, screen and (min-width: 40em) {
.grid-margin-x>.cell {
    width: calc(100% - 3rem);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}
}

.grid-margin-x>.cell {
    width: calc(100% - 6.25rem);
    margin-left: 3.125rem;
    margin-right: 3.125rem;
}

.grid-x>.small-12 {
    width: 100%;
}

.lii-block-text p {
  font-size: 1.5rem;
  line-height: 1.5;
  max-width: 49em;
  font-weight: 400;
  color: #314657;
  margin-bottom: 2.5rem;
  max-width: 100%;
}
.align-center, .align-text-center, .has-text-align-center {
  text-align: center;
}
.align-center {
  margin-left: auto;
  margin-right: auto;
}

.align-center {
  justify-content: center;
}

.padding-max-bottom {
  padding-bottom: 5rem;
}
@media print, screen and (min-width: 40em) {
.grid-container {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
}

.grid-container {
  /* padding-right: 3.125rem;
  padding-left: 3.125rem; */
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}

.lead-gen-main {
  /* font-family: "Proxima Nova W01", Helvetica, Roboto, Arial, sans-serif; */
  font-weight: 400;
}
.lead-gen-main {
  /* font-family: "Proxima Nova W01", Helvetica, Roboto, Arial, sans-serif; */
  color: #485964;
  font-size: 0.9375rem;
  line-height: 1.3em;
  font-weight: 200;
}
.lead-gen-module-container {
  width: 100%;
  background-color: #EEF3F9;
}

.lead-gen-main *, .select2-container *, #popover-container * {
  transition: none;
}
.lead-gen-form, .lead-gen-module {
  padding-right: 0.9375rem!important;
  padding-left: 0.9375rem!important;
  max-width: 71.25rem!important;
}

.lead-gen-module {
  /* background-color: #FF6813; */
  margin-left: auto;
  margin-right: auto;
  /* padding-top: 7.5rem;
  padding-bottom: 7.5rem; */
  width: 85%;
  max-width: 62.5rem;
  min-width: 50rem;
}

.lead-gen-module h1, .lead-gen-module h2 {
  font-size: 3rem !important;
  line-height: 1rem !important;
  letter-spacing: -0.02;
  margin: 0;
  padding: 0;
  color: #FCB414;
  font-weight: 700 !important;
  color: #11253E;
}

.lead-gen-module p {
  color: #485865;
  font-size: 1.125rem !important;
  line-height: 1.333em !important;
  padding-top: 1.875rem !important;
  padding-bottom: 1.5rem !important;
  max-width: 51.25rem !important;
  margin-bottom: 0 !important;
}

.lead-gen-module .sentence {
  max-width: 56.25rem;
  letter-spacing: 0;
  font-size: 2rem;
  line-height: 1.1em;
  color: #314657;
  cursor: default;
  user-select: none;
  padding-bottom: 0.9375rem;
}

/*** 

====================================================================
Footer Section
====================================================================

***/
#Footer {
  /* background-color: var(--black); */
  /* background-color: #ECEFF1; */
  background-color: #062645;
}
#Footer a {
  color: var(--white);
  padding-left: 0px;
}
#Footer a:hover {
  color: var(--secondary-300);
}
/*** 

====================================================================
ArrowToTop Section
====================================================================

***/
.arrow-back-to {
  font-size: 1.2rem;
  position: fixed;
  width: 42px;
  height: 42px;
  right: 40px;
  bottom: 80px;
  mix-blend-mode: normal;
  filter: drop-shadow(0px 4px 4px rgba(19, 56, 77, 0.03));
  cursor: pointer;
  transition: all 0.5s ease;
  z-index: 20;
}

/*** 

====================================================================
indexAbout Section
====================================================================

***/

.abt-hm-mndiv {
  width: 100%;
  height: auto;
  margin: auto;
  padding-top: 70px;
  padding-bottom: 70px;
}

.row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.abt-hm-lftbx {
  width: 100%;
  height: auto;
  margin: auto;
}

.abt-hm-rgtbx {
  width: 100%;
  height: auto;
  margin: auto;
}

.abt-hm-rgtbx h2 {
  margin: 0px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #a4a4aa;
  position: relative;
}

.abt-hm-rgtbx h3 {
  margin: 0px;
  font-size: 32px;
  font-weight: 700;
  text-align: left;
  padding-top: 20px;
  line-height: 45px;
  color: #2e2842;
}

.abt-hm-rgtbx h3 span {
  /* color: #91c244; */
  color: #ED5910;
}

.abt-hm-rgtbx p {
  margin: 0px;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  padding-top: 20px;
  color: #33475b;
}

.abt-hm-rgtbx a {
  display: inline-block;
  /* background: #91c244; */
  background: #ED5910;
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 40px;
  border-radius: 40px;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  color: #ffffff;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s ease-in;
}

/*** 

====================================================================
indexServices Section
====================================================================

***/

.srv-hm-mndiv {
  width: 100%;
  height: auto;
  margin: auto;
  /* padding-top: 70px;
  padding-bottom: 70px; */
  background: #f1f4f8;
  position: relative;
}

.hm-allsec-cmn-hd {
  width: 100%;
  height: auto;
  margin: auto;
  position: relative;
  /* z-index: 111; */
}

.hm-allsec-cmn-hd h5 {
  margin: 0px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #a4a4aa;
  position: relative;
}

.hm-allsec-cmn-hd h4 {
  margin: 0px;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  padding-top: 30px;
  line-height: 45px;
  color: #2e2842;
}

.srvhm-mnbx {
  width: 100%;
  height: auto;
  margin: auto;
  margin-top: 40px;
  position: relative;
  /* z-index: 111; */
}

.srv-mnbx-1 {
  width: 100%;
  height: auto;
  margin: auto;
  background: #ffffff;
  margin-top: 15px;
}

.srvbx1-lft {
  width: 50%;
  height: auto;
  float: left;
  position: relative;
  overflow: hidden;
}

.srvbx1-rgt {
  width: 50%;
  height: auto;
  float: left;
  padding: 50px;
}

.srvbx1-rgt p {
  margin: 0px;
  font-size: 15px;
  line-height: 30px;
  padding-top: 25px;
  color: #33475b;
}

.srv-a {
  display: inline-block;
  /* background: #91c244; */
  background: #ED5910;
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 40px;
  border-radius: 40px;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  color: #ffffff;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s ease-in;
}

@media only screen and (max-width: 767.98px) {
  .srvhm-mnbx {
    max-width: 380px;
}
.srvbx1-lft {
    width: 100%;
}
.srvbx1-rgt {
    padding: 20px;
    width: 100%;
}
.dflx{
  display: flex;
  flex-direction: column;
}
}

/*** 

====================================================================
aboutAbout Section
====================================================================

***/

.inner-content-main-block {
  width: 100%;
  height: auto;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 50px;
  /* background: url(../images/leftcnbn4.png) no-repeat left; */
  /* background-position-x: left;
  background-position-y: center;
  background-attachment: scroll;
  background-origin: padding-box;
  background-origin: border-box;
  background-attachment: scroll; */
  /* background-position: 0px 30px; */
  min-height: 500px;
}

.abtpg-top-hd h2 strong {
  color: #2e2842;
  /* color: #004E9C; */
  font-weight: 700;
}

.abtpg-top-hd {
  width: 100%;
  height: auto;
  margin: auto;
}

.abtpg-top-hd h2 {
  margin: 0px;
  font-size: 30px;
  font-weight: 600;
  color: #ED5910;
  line-height: 50px;
}

.abtpg-top-hd h3 {
  margin: 0px;
  font-size: 28px;
  /* font-weight: 300; */
  padding-top: 20px;
  line-height: 38px;
}

.abtpg-top-hd p {
  margin: 0px;
  /* font-size: 15px; */
  font-weight: 400;
  line-height: 30px;
  padding-top: 20px;
}

.abtpg-prt2-mndiv {
  width: 100%;
  height: auto;
  margin: auto;
  background: #f1f4f8;
  position: relative;
  padding: 40px;
  /* margin-top: 170px; */
}

.abtpg-prt2-lftbx {
  width: 100%;
  height: auto;
  margin: auto;
  /* z-index: 2222; */
  position: relative;
}

.abtpg-prt2-lftbx h5 {
  margin: 0px;
  font-size: 30px;
  font-weight: 600;
  padding-top: 20px;
  line-height: 38px;
}

.abtpg-prt2-lftbx h5 span {
  font-weight: 700;
  color: #ED5910;
}

.abtpg-prt2-lftbx p {
  margin: 0px;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  padding-top: 20px;
}

.abtpg-prt2-lftbx ul {
  margin: 0px;
  padding: 0px;
}

.abtpg-prt2-lftbx ul li {
  list-style-type: none;
  width: 50%;
  float: left;
  margin-top: 20px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: baseline;
}

@media screen and (max-width: 359.98px)
{
  .abtpg-prt2-lftbx ul li {
    list-style-type: none;
    width: 50%;
    /* float: left; */
    margin-top: 20px;
    font-weight: 600;
    /* font-size: 15px; */
    display: flex;
    align-items: baseline;
  }
}

@media screen and (max-width: 550px)
{
  .abtpg-prt2-lftbx ul li {
    list-style-type: none;
    width: 75%;
    /* float: left; */
    margin-top: 20px;
    font-weight: 600;
    /* font-size: 15px; */
    display: flex;
    align-items: baseline;
  }
}

@media screen and (max-width: 425px)
{
  .abtpg-prt2-lftbx ul li {
    list-style-type: none;
    width: 100%;
    /* float: left; */
    margin-top: 20px;
    font-weight: 600;
    /* font-size: 15px; */
    display: flex;
    align-items: baseline;
  }
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.abtpg-prt2-rgtbx {
  width: 100%;
  height: auto;
  margin: auto;
}

.abtpg-prt2-rgtbx img {
  width: 100%;
}

/*** 

====================================================================
aboutHero Section
====================================================================

***/

.innrpg-tophead-bnnr {
  width: 100%;
  height: auto;
  margin: auto;
  position: relative;
}

.inner-page-hd-bnnrs {
  width: 100%;
  height: auto;
  margin: auto;
  position: relative;
}

.inner-page-hd-bnnrs img {
  width: 100%;
}

.inner-page-head-maindiv {
  width: 100%;
  height: auto;
  margin: auto;
  position: absolute;
  bottom: 130px;
}


.inner-page-head-maindiv .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.inner-pghead {
  width: 100%;
  height: auto;
  margin: auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.inner-pghead h2 {
  margin: 0px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 15px;
  position: relative;
}

  .inner-pghead h2:before {
    width: 120px;
    height: 2px;
    content: "";
    position: absolute;
    top: 54px;
    left: 0px;
    right: 0px;
    margin: auto;
    background: #91c244;
}


/*** 

====================================================================
servicesCTA Section
====================================================================

***/

.lead-gen-mobile {
  display: none;
}
.lead-gen-module-container {
  width: 100%;
  background-color: #EEF3F9;
}

.lead-gen-module {
  /* background-color: #FF6813; */
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 85%;
  max-width: 62.5rem;
  min-width: 50rem;
  /* font-family: "Proxima Nova W01", Helvetica, Roboto, Arial, sans-serif; */
}

.lead-gen-module h1, .lead-gen-module h2 {
  font-size: 3rem !important;
  line-height: 1rem !important;
  letter-spacing: -0.02;
  /* text-transform: uppercase; */
  margin: 0;
  padding: 0;
  color: #FCB414;
  /* font-family: "Avenir Next W00", Helvetica, Roboto, Arial, sans-serif !important; */
  font-weight: 700 !important;
  color: #11253E;
}

.lead-gen-module p {
  color: #485865;
  font-size: 1.125rem !important;
  line-height: 1.333em !important;
  padding-top: 1.875rem !important;
  padding-bottom: 1.5rem !important;
  max-width: 51.25rem !important;
  margin-bottom: 0 !important;
}

.lead-gen-module h2 span {
  display: inline-block !important;
  color: #FF6813;
}

.lead-gen-module b {
  /* font-family: "Proxima Nova W01", Helvetica, Roboto, Arial, sans-serif; */
  /* font-family: ProximaNova-Semibold, verdana, helvetica, sans-serif; */
  /* font-weight: bold; */
  font-weight: 700 !important;
  color: #000 !important;
}

p.lead-gen-ctaPhone {
  color: white !important;
  padding: 0 !important;
  font-weight: 700 !important;
  font-size: 1.375rem !important;
}

.hide-until-page-loaded {
  visibility: hidden;
}
.lead-gen-button {
  border: 1px solid #004E9C;
  margin-top: 2rem;
  /* margin-right: 0.625rem; */
  /* font-size: 1.25rem !important; */
  /* padding: 12px 1.25rem 12px 1.25rem !important; */
  text-transform: none;
  cursor: pointer;
    padding: 0.7rem 1.875rem;
    font-size: 1.125rem;
    line-height: 1.125;
    font-weight: 700;
    color: #fff!important;
    text-decoration: none;
    border: 1px solid #004e9c;
    background-color: #004e9c;
    margin: 0 0.5rem 0.2rem 0;
    border-radius: 100px;
    transition: background-color .15s;

}

/* hide LeadGen for small screen sizes (mobile) */
.lead-gen-mobile {display: none;}
@media only screen and (max-width: 47.9375em) {
	.lead-gen-module {
		min-width: initial;
	}

  .lead-gen-module h2 {
    font-size: 2.5rem !important;
    line-height: 1em !important;
  }

	.lead-gen-main {
		display: none;
	}
	/* show alternative call to action */
	.lead-gen-mobile {
		display: block;
	}
}

/*** 

====================================================================
indexHero2 Section
====================================================================

***/

.slider-mndiv {
  width: 100%;
  height: auto;
  margin: auto;
  position: relative;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner > .carousel-item > img {
  margin: auto;
  width: 100% !important;
  height: 610px;
  position: relative;
}

.text-box {
  width: 750px;
  position: absolute;
  top: 20%;
  left: 6%;
  right: 6%;
  color: #fff;
  text-align: center;
  z-index: 111;
}

.text-box h2 {
  margin: 0px;
    text-align: left;
    color: #ffffff;
    padding-top: 60px;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.7px;
}

.text-box p{
  margin: 0px;
  text-align: left;
  color: #fff;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0.7px;
}

.carousel {
  position: relative;
}

.slider-btm-swirl {
  width: 100%;
  position: absolute;
  left: 0px;
  right: 0px;
  z-index: 1; /* Modified so that NavBar doesn't hide behind it*/
  bottom: 0px;
}

.slider-btm-swirl img {
  width: 100%; /* to change the design pattern */
  height: auto;
  display: block;
  user-select: none;
  float: left;
}

.text-box h2 span {
  color: #ED5910;
}

@media screen and (max-width: 575.98px) {
  /******Home Page Css******/
  .hd-lft p {
      font-size: 10px;
      letter-spacing: 1px;
  }
  .hd-lft a {
      font-size: 10px;
      letter-spacing: 1px;
  }
  .hd-rgt-scl-lst {
      display: none;
  }
  .hd-rgt-scl-lst ul a {
      font-size: 13px;
      margin-left: 5px;
  }

  .carousel-inner{
    padding-top: 65px;
  }
  
  .carousel-inner > .carousel-item > img {
      height: auto;
      min-height: 200px;
  }
  .text-box {
      width: 90%;
      top: 0%;
  }
  .text-box h2 {
      font-size: 14px;
      line-height: 20px;
      padding-top: 30px;
      font-weight: 600;
  }
  .text-box p {
      padding-top: 9px;
      font-size: 12px;
      line-height: 20px;
  }
}

/*** 

====================================================================
contactHero Section
====================================================================

***/

.innrpg-tophead-bnnr {
  width: 100%;
  height: auto;
  margin: auto;
  position: relative;
}

.innrpg-tophead-bnnr:before {
  width: 100%;
  height: 150px;
  height: 200px;
  position: absolute;
  content: "";
  bottom: -50px;
  left: 0px;
  z-index: 1;
  background: url(Images/inner-bnnr-4.png) no-repeat left;
  background-size: 100% 100px;
}

.inner-page-hd-bnnrs {
  width: 100%;
  height: auto;
  margin: auto;
  position: relative;
}

.inner-page-hd-bnnrs img {
  width: 100%;
}

.inner-page-head-maindiv {
  width: 100%;
  height: auto;
  margin: auto;
  position: absolute;
  bottom: 130px;
}

.inner-pghead {
  width: 100%;
  height: auto;
  margin: auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.inner-pghead h2 {
  margin: 0px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 15px;
  position: relative;
}

.innrpg-tophead-bnnr:after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  background: rgba(0, 0, 0, 0.7);
}

.inner-pghead h2:before {
  width: 120px;
  height: 2px;
  content: "";
  position: absolute;
  top: 54px;
  left: 0px;
  right: 0px;
  margin: auto;
  background: #ED5910;
}

@media screen and (max-width: 359.98px) {
.inner-page-hd-bnnrs img {
    width: 100%;
    min-height: 100px;
}
.innrpg-tophead-bnnr::before {
  
  display: none;
}
inner-pghead h2 {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 4px;
  top: 50px
}
.inner-pghead h2::before {
  width: 70px;
  top: 27px;
}
}

@media only screen and (max-width: 991.98px) {
.inner-page-hd-bnnrs img {
    width: 100%;
    min-height: 180px;
}
.inner-pghead h2 {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 5px;
}
.inner-pghead h2::before {
  width: 90px;
  top: 37px;
}
}

@media only screen and (max-width: 1199.98px) {
.inner-pghead h2 {
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 7px;
    top: 50px
}
.inner-pghead h2::before {
  width: 100px;
  height: 2px;
  /* top: 44px; */
}
}

/* whiteSpace Section */
.whiteSpace{
  padding-top: 50px;
}

/* About Section Responsiveness */