/*--------------------------------------------------------------

# General

--------------------------------------------------------------*/

html {

  scroll-behavior: smooth;

}

body {

  font-family: 'Montserrat', sans-serif;

  color: #434343;

  font-size: 16px;

  line-height: 24px;

  font-weight: 300;

}

h1,
h2,
h3,
h4,
h5,
h6 {

  font-family: 'Montserrat', sans-serif;

  font-weight: 400;

  color: #3C3C3C;

}

img {

  max-width: 100%;

}

a:hover {

  text-decoration: none;

}


.btn {


  border-radius: 10px;

  padding: 12px 25px !important;

  font-size: 15px;

  line-height: 18.29px;

  font-weight: 400;

  color: #ffffff;

  text-align: center;

}

.btn:hover {

  color: #ffffff;

}


.btn-red {

  background-color: #C60029;
  ;

}


.btn.btn-outline {

  border: 2px solid #C60029;

}


.btn-wide {

  max-width: 384px;

  width: 100%;

}


.btn-semi-wide {

  max-width: 309px;

  width: 100%;

}


.btn-primary {

  display: inline-block;

  font-size: 18px;

  font-weight: bold;

  background: #fd6201;

  border: 1px solid #fd6201;

  padding: 10px 10px 12px 10px;

  line-height: 22px;

  border-radius: 8px;

}

.btn-lg {

  padding: 20px 20px;

  min-width: 227px;

}

.btn-primary:hover {

  background: #00163b;

  border-color: #00163b;

}


.flex-end {

  align-items: flex-end;

}


@media (min-width: 1200px) {

  .container,

  .container-lg,

  .container-md,

  .container-sm,

  .container-xl {

    max-width: 1300px;

  }

}

h4 {

  font-size: 24px;

}

h6 {

  font-size: 18px;

}

.main-heading {

  font-family: 'Montserrat', sans-serif;

  color: #3C3C3C;

  font-size: 36px;

  line-height: 60px;

  margin-bottom: 30px;
  font-weight: 600;

}


.main-heading strong {

  font-weight: 700;

}


.main-heading strong.underline {

  text-decoration: underline;

  text-decoration-color: #C60029;

}


.heading-2 {

  font-family: Montserrat;

  font-size: 36px;

  font-weight: 600;

  line-height: 44px;

  letter-spacing: 0em;


}

.sub-heading {

  font-family: 'Montserrat', sans-serif;

  color: #DA4327;

  font-size: 18px;

  font-weight: 600;

  margin-bottom: 16px;

}


.flex-end {

  justify-content: flex-end;

}


.grid-columns-2 {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

}


.grid-columns-3 {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

}

.grid-columns-4 {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

}

.grid-columns-5 {

  display: grid;

  grid-template-columns: repeat(5, 1fr);

}

.grid-columns-6 {

  display: grid;

  grid-template-columns: repeat(6, 1fr);

}


.grid-gap-20 {

  grid-gap: 20px;

}


.grid-gap-30 {

  grid-gap: 30px;

}


.grid-gap-40 {

  grid-gap: 40px;

}


.grid-gap-50 {

  grid-gap: 50px;

}


.nav-menu ul li.menu-btn a {

  min-width: 133px;

  background-color: #C60029;

  border-radius: 10px;

  padding: 12px, 25px, 12px, 25px !important;

  font-size: 15px;

  line-height: 18.29px;

  font-weight: 400;

  color: #ffffff;

  text-align: center;

}


section {

  padding: 80px 0;

}


/*--------------------------------------------------------------

# Header

--------------------------------------------------------------*/


#header {
    transition: all 0.5s;
    padding: 0px 0;
    background: #fff;
    z-index: 997;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}


#header.header-scrolled {

  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);

}


#header .logo img {

  padding: 0;

  margin: 0;

  max-height: 50px;

}

#header .logo {

  /*margin-top: 11px;*/

}

#header .btn-theme.btn-theme-orange {

  color: #fff;

  margin-left: 15px;

}


/*--------------------------------------------------------------

# Navigation Menu

--------------------------------------------------------------*/


/* Desktop Navigation */


.nav-menu,

.nav-menu * {

  margin: 0;

  padding: 0;

  list-style: none;

}


.nav-menu>ul>li {

  position: relative;

  white-space: nowrap;

  float: left;

}


.nav-menu a {
    display: block;
    position: relative;
    color: #101010;
    padding: 3px 15px;
    transition: 0.3s;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}


.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {

  color: #101010;

  text-decoration: none;

}

.nav-menu a:hover,
.nav-menu li:hover>a {

  color: #0097BA;

  text-decoration: none;

}

.nav-menu .drop-down ul {

  display: block;

  position: absolute;

  left: 0;

  top: 100%;

  z-index: 99;

  opacity: 0;

  visibility: hidden;

  padding: 10px 0;

  background: #fff;

  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);

  transition: ease all 0.3s;

}


.nav-menu .drop-down:hover>ul {

  opacity: 1;

  top: 100%;

  visibility: visible;

  min-width: 223px;

}


.nav-menu .drop-down li {

  min-width: 180px;

  position: relative;

}


.nav-menu .drop-down ul a {

  padding: 10px 20px 10px 58px;

  font-size: 14px;

  font-weight: 500;

  text-transform: none;

  color: #101010;

  font-family: 'Inter', sans-serif;

  font-weight: 400;

}


.nav-menu .drop-down ul a:hover,

.nav-menu .drop-down ul .active>a,

.nav-menu .drop-down ul li:hover>a {

  color: #102136;
  ;

}


.nav-menu .drop-down>a:after {

  content: "\ea99";

  font-family: IcoFont;

  padding-left: 5px;

  color: #0097BA;

  font-weight: normal;

  font-size: 14px;

}

.mid-menu ul {

  display: flex;

  justify-content: center;

}

.nav-menu .drop-down .drop-down ul {

  top: 0;

  left: 100%;

}

.nav-menu .drop-down ul a:before {

  content: "";

  width: 13px;

  height: 10px;

  position: absolute;

  top: 15px;

  left: 30px;

  background-size: contain !important;

  background: url(../img/icon/dropdown-item-arrow.svg) no-repeat;

}

.nav-menu .drop-down .drop-down:hover>ul {

  opacity: 1;

  top: 0;

}


.nav-menu .drop-down .drop-down>a {

  padding-right: 35px;

}


.nav-menu .drop-down .drop-down>a:after {

  content: "\eaa0";

  font-family: IcoFont;

  position: absolute;

  right: 15px;

}


.search-icon {

  width: 20px;

}


@media (max-width: 1366px) {

  .nav-menu .drop-down .drop-down ul {

    left: -90%;

  }

  .nav-menu .drop-down .drop-down:hover>ul {

    left: -100%;

  }

  .nav-menu .drop-down .drop-down>a:after {

    content: "\ea9d";

  }

}


@media screen and (min-width:992px) and (max-width:1199px) {

  .nav-menu a {

    padding: 12px 12px;

    font-size: 14px;

  }

}


/* Mobile Navigation */


.mobile-nav {

  position: fixed;

  top: 0;

  bottom: 0;

  z-index: 9999;

  overflow-y: auto;

  left: -260px;

  width: 260px;

  padding-top: 18px;

  background: #101010;

  transition: 0.4s;

}


.mobile-nav * {

  margin: 0;

  padding: 0;

  list-style: none;

}


.mobile-nav a {

  display: block;

  position: relative;

  color: #e3f0fc;

  padding: 10px 20px;

  font-weight: 500;

}


.mobile-nav a:hover,

.mobile-nav .active>a,

.mobile-nav li:hover>a {

  color: #16ABB3;

  text-decoration: none;

}


.mobile-nav .drop-down>a:after {

  content: "\ea99";

  font-family: IcoFont;

  padding-left: 10px;

  position: absolute;

  right: 15px;

}


.mobile-nav .active.drop-down>a:after {

  content: "\eaa0";

}


.mobile-nav .drop-down>a {

  padding-right: 35px;

}


.mobile-nav .drop-down ul {

  display: none;

  overflow: hidden;

}


.mobile-nav .drop-down li {

  padding-left: 20px;

}


.mobile-nav-toggle {

  position: fixed;

  right: 15px;

  top: 20px;

  z-index: 9998;

  border: 0;

  background: none;

  font-size: 24px;

  transition: all 0.4s;

  outline: none !important;

  line-height: 1;

  cursor: pointer;

  text-align: right;

}


.mobile-nav-toggle i {

  color: #16ABB3;

}


.mobile-nav-overly {

  width: 100%;

  height: 100%;

  z-index: 9997;

  top: 0;

  left: 0;

  position: fixed;

  background: rgba(31, 53, 72, 0.7);

  overflow: hidden;

  display: none;

}


.mobile-nav-active {

  overflow: hidden;

}


.mobile-nav-active .mobile-nav {

  left: 0;

}


.mobile-nav-active .mobile-nav-toggle i {

  color: #fff;

}


/*--------------------------------------------------------------

# Homepage Banner

--------------------------------------------------------------*/


#homepage-banner {
    background-color: rgba(246, 246, 246, 1);
    background-size: cover;
    background-position: center;
    position: relative;
}
#homepage-banner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #FFF;
    opacity: 0.6;
}

#homepage-banner .banner-content-wrap {

  background-size: contain;

  background-repeat: no-repeat;

  background-position: center right;

}


#homepage-banner h2 {

  font-size: 38px;

  font-weight: 900;

  line-height: 60px;

  margin-bottom: 5px;

}
#homepage-banner h3 {

  font-size: 26px;

  font-weight: 500;

  line-height: 40px;

  margin-bottom: 25px;

}

#homepage-banner h2 strong {

  font-weight: 700;

  color: rgba(60, 60, 60, 1);

}


#homepage-banner h2 .underline {

  text-decoration: underline;

  text-decoration-color: #C60029;

}


#homepage-banner ul {

  list-style-type: none;

  padding-left: 0;

  margin-bottom: 25px;


}

#homepage-banner ul li {

  display: flex;

  align-items: center;

  position: relative;

  margin-left: 42px;

}


#homepage-banner ul li:before {

  content: url(../img/icon/check-circle.svg);

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  height: 32px;

  width: 32px;

  margin-left: -42px;

}

#homepage-banner ul li {

  font-weight: 700;

  font-size: 24px;

  line-height: 44px;

}


/*--------------------------------------------------------------

# Homepage 

--------------------------------------------------------------*/

.steps-wrap {

  padding-left: 80px;

  padding-right: 80px;

}


.steps-wrap .step-item {

  text-align: center;

  padding-left: 25px;

  padding-right: 25px;

  position: relative;

}


.steps-wrap .step-item:before {

  content: '';

  width: 50%;

  height: 1px;

  background-color: #919191;

  position: absolute;

  left: 0;

  top: 40px;

}


.steps-wrap .step-item:first-child {

  padding-left: 0;

}


.steps-wrap .step-item:first-child:before {

  width: 50%;

  left: auto;

  right: 0;

  background-color: #C60029;

}


.steps-wrap .step-item:nth-child(2):before {

  background-color: #C60029;

}


.steps-wrap .step-item:nth-child(2):after {

  content: '';

  width: 50%;

  height: 1px;

  background-color: #919191;

  position: absolute;

  left: auto;

  right: 0;

  top: 40px;

}


.steps-wrap .step-item:last-child:before {

  width: 50%;

  left: 0;

  right: auto;

}


.steps-wrap .step-item:last-child {

  padding-right: 0;

}


.steps-wrap .step-item .step-count-container {

  margin-bottom: 12px;

}


.steps-wrap .step-item .step-count {

  width: 80px;

  height: 80px;

  border-radius: 50%;

  background-color: #919191;

  font-family: Montserrat;

  font-size: 36px;

  font-weight: 700;

  line-height: 60px;

  letter-spacing: 0em;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: auto;

  position: relative;

  z-index: 2;

}


.steps-wrap .step-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 25px!important;
}


.steps-wrap .step-item:first-child .step-count {

  background-color: #C60029;

}


section.full-width-sec .full-image-col {

  position: relative;

}


section.full-width-sec .content-col {

  padding: 100px 0 100px 140px;

}


section.full-width-sec .content-col p {

  font-size: 18px;

  font-weight: 400;

  line-height: 44px;

  letter-spacing: 0em;

}


section.full-width-sec .content-col .image-container {

  margin-bottom: 20px;

}


section.full-width-sec .col-lg-6 {

  background-size: cover;

  background-repeat: no-repeat;

  background-position: center;

}


section.full-width-sec .col-lg-6.content-col {

  background-position: center right;

}


.full-image-col .logo-overlay {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  background-color: #ffffff;

  border-radius: 10px;

  box-shadow: 0px 4px 20px 0px #0000000D;

  padding: 15px 20px;

  position: absolute;

  top: 48%;

  right: 0;

  margin-right: -100px;

  z-index: 2;


}


.content-wrapper ul {

  list-style-type: none;

  padding-left: 0;

  margin-bottom: 25px;


}

.content-wrapper ul li {

  display: flex;

  align-items: center;

  position: relative;

  margin-left: 42px;

}


.content-wrapper ul li:before {

  content: url(../img/icon/check-circle.svg);

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  height: 32px;

  width: 32px;

  margin-left: -42px;

}

.content-wrapper ul li {

    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 20px

}

section.two-column-heading-text-sec .left-content-wrapper {

  width: 100%;

  max-width: 371px;

  margin-left: auto;

  margin-right: auto;

}

section.mid-cta-sec {

  padding-bottom: 50px !important;

}

section.mid-cta-sec .cta-box {

  min-height: 292px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  box-shadow: 14px 28px 31px 0 rgba(0, 0, 0, 0.09)
}

section.mid-cta-sec .cta-box h2 {

  line-height: 60px;

  margin-bottom: 0;

}

section.mid-cta-sec .cta-box .btn-wrap {

  margin-top: 30px;

}

section.faq-sec {}

#faqAccordion .card {

  border-radius: 10px;

  border: 1px solid rgba(225, 225, 225, 1);

  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);

  margin-bottom: 16px;

}

#faqAccordion .card-header {

  padding: 0;

  background-color: #fff;

  border-bottom: none;

}

#faqAccordion .card-header button.btn {

  font-family: 'Montserrat', sans-serif;

  font-size: 18px;

  font-weight: 600;

  line-height: 18px;

  letter-spacing: 0em;

  text-align: left;

  width: 100%;

  color: rgba(67, 67, 67, 1);

  padding: 18px 25px !important;

}

#faqAccordion .card-header button.btn:focus {

  outline: 0;

  box-shadow: none !important;

}

section.faq-sec .content-wrapper {

  width: 100%;

  max-width: 780px;

  margin-left: auto;

  margin-right: auto;

}

#faqAccordion .card-header button.btn .fa-stack {

  text-align: right;

}

#faqAccordion .card-header button.btn .fa {

  font-size: 20px;

}

.card-header h2 button .fa:before {

  content: "\f106" !important;

}

.card-header h2 button.collapsed .fa:before {

  content: "\f107" !important;

}

#faqAccordion .card-body {

  padding: 0 25px 18px;

}

#footer {

  padding-top: 80px;

  background-color: rgba(67, 67, 67, 1)
}

#footer .phone-wrapper a {

  font-size: 24px;

  font-weight: 700;

  line-height: 60px;

  letter-spacing: 0em;

  text-align: left;


}

#footer .date-time-wrapper p {

  font-size: 16px;

  font-weight: 300;

  line-height: 20px;

  letter-spacing: 0em;

  text-align: left;

  margin-bottom: 0;

  color: rgba(255, 255, 255, 1);

}

#footer .menu li a {

  font-size: 15px;

  font-weight: 300;

  line-height: 30px;

  letter-spacing: 0em;

  text-align: left;

  color: rgba(255, 255, 255, 1);

}

.foo-border {

  border-top: 1px solid rgba(255, 255, 255, 0.1);

}

footer .legal-link {

  display: flex;

  justify-content: flex-end;

  gap: 30px;

}

footer .legal-link a {

  font-size: 15px;

  font-weight: 300;

  line-height: 30px;

  letter-spacing: 0em;

  text-align: left;

  color: rgba(255, 255, 255, 1);

}

/*******Responsive css*********/
@media (max-width: 767px)
{
  #homepage-banner h2 {
    font-size: 40px;
    line-height: 45px;
    text-align: center;
}
#homepage-banner h2.heading {
    font-size: 24px;
    line-height: 30px;
}
.steps-wrap.grid-columns-3 {
    padding-left: 20px;
    padding-right: 20px;
    display: block;
}
.steps-wrap .step-item h4 {
    line-height: 25px;
}
.steps-wrap .step-item {
    margin-bottom: 90px;
    padding-left: 0px!important;
    padding-right: 0px!important;
}
.steps-wrap .step-item:before {
  content: none;
}
.steps-wrap .step-item:after {
    content: '';
    width: 1%;
    height: 1px;
    background-color: #C60029;
    position: absolute;
    right: unset;
       left: 50%;
    transform: translate(-50%, 44%);
    height: 30%;
    bottom: -50px;
        top: unset;
}
.steps-wrap .step-item:nth-child(2):after {
     content: ''!important;
    width: 1%!important;
    height: 1px!important;
    background-color: #919191!important;
    position: absolute!important;
    right: unset!important;
        left: 50%;
    transform: translate(-50%, 44%);
    height: 30%!important;
    bottom: -50px!important;
        top: unset;
}
.steps-wrap .step-item:nth-child(3):after {
     content: none!important;
     }
     .steps-wrap .step-item:last-child {
    margin-bottom: 0px;
}
.vector-group-img {
    margin-top: 40px;
}
section#homepage-banner {
    padding: 40px 0px;
}
section.full-width-sec .col-lg-6.content-col {
    padding: 15px 15px 40px;
    text-align: center;
}
.full-image-col .logo-overlay {
    left: 50%;
    transform: translate(-50%, -50%);
    top: unset;
}
section.full-width-sec .content-col .image-container {
    margin-bottom: -30px;
}
.main-heading {
    font-size: 30px;
    line-height: 40px;
}
section.two-column-heading-text-sec {
    padding: 40px 0px;
}
.heading-2 {
    font-size: 32px;
    line-height: 40px;
}
.content-wrapper ul li {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
}
section.mid-cta-sec {
    padding-bottom: 20px!important;
}
section.mid-cta-sec .cta-box h2 {
    line-height: 35px;
    margin-bottom: 20px;
}
.content-wrapper ul {
    margin-bottom: 0px;
}
section.faq-sec {
    padding: 40px 0px;
}
section.mid-cta-sec .cta-box {
    padding: 20px;
    background-position: right center!important;
    position: relative;
}
section.mid-cta-sec .cta-box:after {
    content: '';
    background: #4a4a4aa3;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
}
#homepage-banner h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 25px;
  text-align: center;

}
#homepage-banner ul li {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
}
.content-wrapper {
    z-index: 2;
}
footer#footer {
    padding-top: 40px;
    padding-bottom: 40px!important;
    text-align: center;
}
ul#menu-footer-menu {
    padding-left: 0px;
}
footer .legal-link {
    justify-content: center;
}
section.two-column-heading-text-sec .left-content-wrapper {
    max-width: 100%;
}
}
#faqAccordion .card-header button.btn {
    text-decoration: none;
        line-height: 23px;
}
@media (max-width: 980px)
{
  #homepage-banner h2 br {
    display: none;
}

section.how-does-it-work-sec {
    padding: 40px 0px;
}
}
@media (max-width: 991px)
{
  section#homepage-banner {
/*    background-image: unset!important;*/
}
#homepage-banner h2 br {
    display: none;
}
.steps-wrap .step-item h4 {
    line-height: 20px;
    font-size: 16px;
}
.description p br {
    display: none;
}
.description p {
    font-size: 14px;
}
}
@media (min-width:768px) and (max-width:980px)
{
  section.full-width-sec .content-col {
    padding: 50px 0 50px 40px;
}
.full-image-col .logo-overlay {
    margin-right: -30px;
    top: 40%;
}
.main-heading br {
    display: none;
}
.main-heading {
    line-height: 50px;
}
section.mid-cta-sec .cta-box {
    padding: 20px;
    background-position: right center!important;
    position: relative;
}
.content-wrapper {
    z-index: 2;
}

}

.list-box span {
    width: 40px;
    height: 40px;
    line-height: 24px;
    border-radius: 50%;
    display: inline-block;    margin: 15px;
}
.error{ color:#cc3300 }
form#doc_form label {
    font-weight: bold;
}
.list-box {
    background: #FFF;
    padding: 22px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0px 0px 15px rgba(0,0,0,.9);min-height: 222px;  margin: 15px;
}
.list-box span img {
    max-width: 40px;filter: invert(20%) sepia(76%) saturate(7478%) hue-rotate(340deg) brightness(75%) contrast(112%);
}


ul#ulcss li:before {
    content: url(../img/icon/check-circle.svg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
    width: 32px;
    margin-left: -42px;
}
ul#ulcss li {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
}


main#main {
    min-height: calc(100vh - 400px);
}

@media (max-width: 767px)
{
  section.full-width-sec .col-lg-6.content-col {
    padding-top: 65px;
}
section.full-width-sec .content-col p {
    font-size: 16px;
    line-height: 24px;
}
ul#ulcss li {
    font-size: 16px;
}
ul#ulcss li:before {
    top: 35%;
    margin-left: -40px;
    left: 0px;
}
}


