@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700");

@font-face {
  font-family: "Helvetica Neue Light";
  src: url("../fonts/HelveticaNeue/HelveticaNeue-Light.eot");
  src: url("../fonts/HelveticaNeue/HelveticaNeue-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/HelveticaNeue/HelveticaNeue-Light.woff2") format("woff2"),
    url("../fonts/HelveticaNeue/HelveticaNeue-Light.woff") format("woff"),
    url("../fonts/HelveticaNeue/HelveticaNeue-Light.ttf") format("truetype"),
    url("../fonts/HelveticaNeue/HelveticaNeue-Light.svg#HelveticaNeue-Light") format("svg");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue/HelveticaNeue.eot");
  src: url("../fonts/HelveticaNeue/HelveticaNeue.eot?#iefix") format("embedded-opentype"),
    url("../fonts/HelveticaNeue/HelveticaNeue.woff2") format("woff2"),
    url("../fonts/HelveticaNeue/HelveticaNeue.woff") format("woff"),
    url("../fonts/HelveticaNeue/HelveticaNeue.ttf") format("truetype"),
    url("../fonts/HelveticaNeue/HelveticaNeue.svg#HelveticaNeue") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue Medium";
  src: url("../fonts/HelveticaNeue/HelveticaNeue-Medium.eot");
  src: url("../fonts/HelveticaNeue/HelveticaNeue-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/HelveticaNeue/HelveticaNeue-Medium.woff2") format("woff2"),
    url("../fonts/HelveticaNeue/HelveticaNeue-Medium.woff") format("woff"),
    url("../fonts/HelveticaNeue/HelveticaNeue-Medium.ttf") format("truetype"),
    url("../fonts/HelveticaNeue/HelveticaNeue-Medium.svg#HelveticaNeue-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue Bold";
  src: url("../fonts/HelveticaNeue/HelveticaNeue-Bold.eot");
  src: url("../fonts/HelveticaNeue/HelveticaNeue-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/HelveticaNeue/HelveticaNeue-Bold.woff2") format("woff2"),
    url("../fonts/HelveticaNeue/HelveticaNeue-Bold.woff") format("woff"),
    url("../fonts/HelveticaNeue/HelveticaNeue-Bold.ttf") format("truetype"),
    url("../fonts/HelveticaNeue/HelveticaNeue-Bold.svg#HelveticaNeue-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
}

body {
  overflow-y: scroll;
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
}

b,
.bold {
  font-family: "Montserrat", "Helvetica Neue Bold";
  font-weight: 700;
}

.globalContainer {
  margin-top: 65px;
}

.flex {
  display: flex;
  flex-direction: column;
}

.fullHeight {
  height: 100vh;
}

.mainSectionWrapper {
  position: relative;
  bottom: -24px;
}

.mainSectionWrapper h1 {
  font-family: "Montserrat", "Helvetica Neue Bold";
  font-weight: 700;
}

.mainSectionBg {
  width: 100%;
  position: relative;
  padding-top: 11%;
}

.mainSectionBg.aboutUsBg {
  padding-top: 0;
}

.mainSectionBg.aboutUsBg>.container {
  position: relative;
}

.mainSectionBg.aboutUsBg .mainSectionWrapper {
  position: absolute;
  top: 50%;
  width: 600px;
  left: 50%;
  margin-top: -320px;
  margin-left: -300px;
  z-index: 1;
  text-align: center;
}

.mainSectionBg.aboutUsBg h1,
.mainSectionBg.aboutUsBg h5 {
  color: #fff;
}

.mainSectionBg.aboutUsBg h5 {
  line-height: 1.4;
}

.mainSectionBg.aboutUsBg p {
  margin-top: 30%;
  text-align: left;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .mainSectionBg.aboutUsBg {
    display: flex;
    flex-direction: column;
  }

  .mainSectionBg.aboutUsBg .mainSectionWrapper {
    position: relative;
    top: -70px;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    left: 0;
    margin-top: 0;
    margin-left: 0;
    z-index: 1;
    text-align: center;
    order: 2;
  }

  .mainSectionBg.aboutUsBg p {
    margin-top: 30px;
  }

  .mainSectionBg.aboutUsBg h1,
  .mainSectionBg.aboutUsBg h5 {
    color: inherit;
  }
}

/* .mainSectionBg.aboutUsBg{
    background-size: 100%;
    background-repeat: no-repeat;
    height: 100vh;
} */

.flyingMouse {
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -170px;
  margin-right: -470px;
  animation: flyingMouseAnimation 3s infinite;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
}

@keyframes flyingMouseAnimation {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 20px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.mainSectionBg img {
  width: 100%;
}

.mainSectionBg.aboutUsBg img {
  position: relative;
  top: -70px;
}

.blueContainer {
  background-color: #00add6;
  color: #fff;
}

.whiteContainer {
  background-color: #ffffff;
}

.p100-0 {
  padding: 100px 0;
}

.fullCircleBtn {
  border-radius: 100%;
  display: block;
  margin: 0 auto;
  width: 52px;
  color: #fff;
  border: 1px solid #fff;
  line-height: 50px;
  height: 52px;
}

.fullCircleBtn .fa {
  line-height: 50px;
}

.greyContainer {
  background-color: #f7f7f7;
  color: #00add6;
}

.yellowContainer {
  background-color: #ffd901;
  color: #333333;
}

.yellowContainer p {
  line-height: 1.7;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

@media (max-width: 991px){
  .pb-100.custom2{
    padding-bottom: 2rem;
  }
}

.s56 {
  font-size: 56px;
}

.insuranceList {
  padding: 200px 0;
  background-color: #fff;
  display: block;
  color: #00add6;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: all 0.1s ease-out;
  height: 504px;
}

@media (max-width: 1024px) {
  .insuranceList {
    padding: 150px 0;
    height: 400px;
  }
}

@media (max-width: 991px) {
  .insuranceList {
    padding: 24px;
    height: 180px;
    margin-bottom: 24px;
  }
}

.insuranceList .insuranceListTextWrapper {
  position: relative;
  z-index: 1;
}

.insuranceList:hover {
  text-decoration: none;
  color: #fff;
}

.insuranceList:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-out;
  opacity: 0;
}

.insuranceList img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  transition: all 0.2s ease-out;
  transform: scale(1.1);
  opacity: 0;
}

.insuranceList:hover img {
  transform: scale(1);
  opacity: 1;
}

.insuranceList:hover:after {
  opacity: 1;
}

.insuranceList .insuranceListText {
  color: #333333;
  transition: all 0.2s ease-out;
}

.insuranceList:hover .insuranceListText {
  color: #ffffff;
}

.differencesList {
  border: 1px solid #00add6;
  position: relative;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 20px;
}

.differencesListInner {
  background-color: #eee;
  padding: 60px 15px 15px;
  display: flex;
  height: 250px;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

@media (min-width: 992px){
  .differencesList{
    margin-left: .5rem;
    margin-right: .5rem;
  }
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.colorBlue {
  color: #00add6;
}

.slick-slide {
  outline: none !important;
}

.testimonials:before,
.testimonials:after {
  font-size: 40px;
  font-family: "fontAwesome";
  opacity: 0.23;
  color: #333333;
  position: absolute;
}

.testimonials:before {
  content: "\f10d";
  top: -50px;
  left: 0;
}

.testimonials:after {
  content: "\f10e";
  bottom: -50px;
  right: 0;
}

footer {
  background-color: #666666;
  color: #fff;
  padding: 70px 0;
}

.footer-menu {
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 0;
}

.footer-menu>li {
  display: inline-block;
}

.footer-menu>li>a {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0 10px;
  font-family: "Montserrat", "Helvetica Neue Bold";
}

.footer-menu.footer-menu2 {
  margin-top: 24px;
}

.footer-menu.footer-menu2>li>a {
  font-size: 18px;
  font-weight: normal;
}

section {
  position: relative;
}

/* .mainSectionBg:before{
    display:block;
    content:"";
    padding-top:50%;
} */

#scene {
  width: 100%;
  height: 100%;
}

#scene img {
  width: 380px;
}

.btn {
  border-radius: 0;
  font-family: "Montserrat", "Helvetica Neue Bold";
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbarWrapper img {
  width: 176px;
}

.nav-item .fa {
  margin-right: 10px;
}

.nav-item {
  position: relative;
}

.navbarWrapper .navbar {
  -webkit-transition: padding-top 0.1s ease-out, background 0.1s ease-out,
    -webkit-box-shadow 0.1s ease-out;
  transition: padding-top 0.1s ease-out, background 0.1s ease-out,
    -webkit-box-shadow 0.1s ease-out;
  -o-transition: padding-top 0.1s ease-out, background 0.1s ease-out,
    box-shadow 0.1s ease-out;
  transition: padding-top 0.1s ease-out, background 0.1s ease-out,
    box-shadow 0.1s ease-out;
  transition: padding-top 0.1s ease-out, background 0.1s ease-out,
    box-shadow 0.1s ease-out, -webkit-box-shadow 0.1s ease-out;
  padding: 0 32px;
  background-color: #FFF;
}

.navbarWrapper .navbar.active {
  background-color: #fff;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px){
  .navbarWrapper .navbar{
    padding: 0 15px;
  }
}

@media (min-width: 768px) {
  .nav-item:not(:last-child):after {
    content: "";
    width: 1px;
    height: 20px;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 0;
    background-color: #666;
  }
}

.m-user-attr {
  margin: 10px 0 0 24px;
  padding-top: 8px;
  border-top: 1px solid #DDDDDD;
}

.m-user-attr .nav-link {
  padding-left: 0;
  color: #00ADD6;
}

.m-user-attr .nav-link .fa {
  margin-right: 4px;
}

.m-user-attr .dropdown-menu {
  display: block !important;
  position: relative !important;
  width: 100%;
  transform: translate3d(0px, 0px, 0px) !important;
  margin-top: 0;
  padding-top: 0;
  box-shadow: 0 0 0;
}

.m-user-attr .dropdown-menu .dropdown-item {
  padding: .25rem 1.75rem;
}

.dropdown-divider {
  border-color: #DDDDDD;
}

.m-user-attr .dropdown-toggle::after {
  display: none;
}

@media (max-width: 767px) {
  #rightNavToggler {
    font-size: 24px;
    margin-right: -15px;
  }

  .navbarWrapper img {
    width: 160px;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 20px;
  }
}

.navbarWrapper .navbar-brand {
  position: relative;
  bottom: -5px;
}

.no-margin {
  margin: 0 !important;
}

.btn.btn-primary {
  background-color: #00add6;
  border-color: #00add6;
}

.btn.btn-outline-primary {
  border-color: #00add6;
}

.btn.btn-outline-primary:hover {
  background-color: #00add6;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #00add6;
}

.socialMenu>a {
  text-align: right;
  color: #fff;
  width: 30px;
  text-decoration: none;
  display: inline-block;
  padding-right: 8px;
}

@media (max-width: 991px) {
  .socialMenu {
    text-align: center;
    margin-top: 20px;
  }
}

.btn.btn-warning {
  background-color: #ffd901;
  border-color: #ffd901;
}

.faq-page .form-control,
.faq-page .input-group>.form-control {
  border: 0;
  border-radius: 0;
}

.customFAQMouse {
  width: 185px;
  position: absolute;
  top: -87px;
  z-index: 0;
}

.customMousePosition {
  width: 400px;
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.customMousePosition {}

.customSectionPosition {
  margin-top: -27px;
}

.customSectionPosition p {
  line-height: 1.7;
}

@media (min-width: 768px) {
  .customSectionPosition p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.mapWrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

@media (max-width: 767px) {
  .customMousePosition {
    width: 300px;
  }

  .customSectionPosition {
    margin-top: -21px;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .mapWrapper {
    position: relative;
    width: 100%;
    height: 457px;
  }

  .pb0-mobile {
    padding-bottom: 0 !important;
  }
}

.topBlueSection {
  margin-top: 0;
  padding-top: 50px;
  padding-bottom: 110px;
  position: relative;
}

.topBlueSection>.container {
  position: relative;
}

.topBlueSection>.container:after {
  content: "";
  bottom: -110px;
  width: 100%;
  left: 0;
  right: 0;
  height: 80px;
  background-color: #fff;
  display: block;
  z-index: 1;
  position: absolute;
}

.topBlueSection .form-control:focus {
  box-shadow: 0 0 0;
}

.topBlueSection .input-group-text {
  background-color: #fff;
  border: 0;
  color: #a3a3a3;
}

@media (max-width: 991px){
  .topBlueSection.blueHeader-page > .container:after{
    display: none;
  }
  .topBlueSection.blueHeader-page{
    padding-bottom: 50px;
  }
  .topBlueSection.blueHeader-page h1{
    margin-bottom: 0;
  }
}

.mainSectionBg.aboutUsBg .mainSectionWrapper{
  bottom: auto;
}

@media (max-width: 767px) {
  .flyingMouse {
    margin-top: 0;
    margin-right: -100px;
  }

  #scene img {
    width: 200px;
  }

  .mainSectionWrapper {
    padding-bottom: 220px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .mainSectionBg.aboutUsBg .mainSectionWrapper{
    padding-bottom: 0;
    top: auto;
    bottom: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 425px) {
  .navbarWrapper .navbar {
    /* background-color: #fff; */
  }
}

.modal {
  padding-right: 0 !important;
}

.fade {
  -webkit-transition: scale 0.1s cubic-bezier(0.23, 1, 0.32, 1),
    translate3d 0.1s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.1s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: scale 0.1s cubic-bezier(0.23, 1, 0.32, 1),
    translate3d 0.1s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: scale 0.1s cubic-bezier(0.23, 1, 0.32, 1),
    translate3d 0.1s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.1s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal.fade .modal-dialog {
  -webkit-transform: scale(0.98) translate(0, -10px);
  transform: scale(0.98) translate(0, -10px);
}

.modal.show .modal-dialog {
  -webkit-transform: scale(1) translate(0, 0);
  transform: scale(1) translate(0, 0);
}

/* 
.modal-backdrop{
    background-color :#FFF;
}

.modal-backdrop.show{
    opacity: 1;
} */

.modal-dialog.modal-full {
  width: 100%;
  margin: 0;
  max-width: 100%;
}

.modal-open .modal {
  overflow-y: scroll;
}

.modal-content {
  border: 0;
}

#JT,
#ui-datepicker-div {
  z-index: 1051 !important;
}

input[type="submit"] {
  cursor: pointer;
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\00d7";
}

.dropdown-menu {
  border: 0;
  box-shadow: 0 20px 50px 0 rgba(34, 43, 55, 0.1);
}

.dropdown-menu .dropdown-divider {
  margin: 0.8rem 0;
  margin-left: 1.5rem;
}

.dropdown-menu {
  padding: 0.8rem 0;
}

.tooltip-inner * {
  color: #fff;
}

.tooltip-inner p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.tooltip-inner {
  text-align: left;
  padding: 0.5rem;
}

.tooltipHTML {
  cursor: pointer;
}

.popover-body p {
  margin-bottom: 0;
  padding-bottom: 0;
}

label.mand_red {
  padding-right: 15px;
}

.form-control.validationError {
  border-color: #dc3545;
}

.form-control.validationError:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.comparexpress-modal .modal-header {
  padding: 1rem 1.9rem;
}

.comparexpress-modal .modal-body {
  min-height: 700px;
}

.comparexpress-modal.inside-page .modal-body {
  max-height: none;
  overflow-y: auto;
}

.comparexpress-modal .modal-content {}

.quote-step {
  padding: 1rem;
  background-color: #f7f7f7;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.signin-btn-wrapper {
  margin-top: auto;
}

.comparexpress-modal .close {
  position: absolute;
  top: 6px;
  right: 6px;
  opacity: 1;
  background-color: transparent;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  z-index: 1;
}

@media (max-width: 991px) {
  .comparexpress-modal .close {
    top: 12px;
  }
}

.comparexpress-modal .close i {
  line-height: 0.5;
  font-size: 2rem;
}

.comparexpress-modal .modal-title {
  padding-bottom: 1rem;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .comparexpress-modal .modal-title {
    padding-right: 1.75rem;
  }
}

.custom-overflow-right {
  border-radius: 0 0.3rem 0 0;
  overflow: hidden;
}

.custom-overflow-left {
  border-radius: 0.3rem 0 0 0;
  overflow: hidden;
}

ol.quote-step-num {
  list-style: none;
  counter-reset: my-counter;
}

@media (max-width: 991px) {
  .custom-overflow-left {
    border-radius: .3rem .3rem 0 0;
  }

  ol.quote-step-num {
    margin-bottom: 0;
  }
}


ol.quote-step-num li {
  color: #999999;
  font-weight: 500;
  font-family: "Montserrat", "Helvetica Neue Bold";
}

ol.quote-step-num li {
  counter-increment: my-counter;
  position: relative;
  margin-bottom: 8px;
  padding-left: 48px;
}

ol.quote-step-num li::after {
  content: "0"counter(my-counter);
  font-weight: 500;
  font-family: "Montserrat", "Helvetica Neue Bold";
  position: absolute;
  left: 24px;
  top: 0;
}

ol.quote-step-num li::before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #00add6;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

ol.quote-step-num li.active {
  color: #333333;
}

ol.quote-step-num li.active::before {
  display: block;
}

.color-primary {
  color: #00add6;
}

.color-grey {
  color: #111;
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 840px;
  }
}

.card.summary .card-text {
  margin-bottom: 0;
}

.alert.alert-block {
  display: block;
}

.close.close-absolute-pos {
  position: absolute;
  top: 0;
  padding: 1rem 1.5rem;
  right: 0;
  font-size: 2rem;
  z-index: 1;
}

#divwidth.dropdownMenuContainer {
  width: calc(100% - 10px) !important;
  height: 150px;
  left: 5px !important;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 20px 50px 0 rgba(34, 43, 55, 0.1);
}

#divwidth.dropdownMenuContainer div {
  width: 100% !important;
}

.alert-danger,
.alert-danger span {
  color: #721c24 !important;
}

.custom-width .input-group-text {
  width: 135px;
}

.container-inner-page {
  margin-top: 120px;
  margin-bottom: 40px;
}

.form_selection {
  padding: 0;
}

ul.styled {
  list-style-type: disc;
}

ul.styled li {
  margin-left: 16px;
}

.btn .fa {
  margin-right: 4px;
}

@media (min-width: 1200px) {
  .container.container-inner-page.container-inner-page-custom {
    max-width: 1300px;
  }
}


.custom-checkbox2 input[type="checkbox"] {
  height: 20px;
  width: 20px;
  position: relative;
  cursor: pointer;
}

.custom-checkbox2 input[type="checkbox"]:after {
  content: '\f00c';
  font-family: 'FontAwesome';
  display: block;
  background: white;
  pointer-events: none;
  font-size: 13px;
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  color: transparent;
  transition: .1s all ease-in-out;
  border-radius: 3px;
  line-height: 15px;
  border-width: 2px;
  border-style: solid;
  border-color: #00add6;
}

.custom-checkbox2 input[type="checkbox"]:checked:after {
  background-color: #00add6;
  color: #FFFFFF;
}

.custom-checkbox2 input[type="checkbox"]:hover:after {
  background-color: #00add6;
}

.custom-table {
  width: 100%;
}

.custom-table td {
  padding: 0;
}

.custom-img {
  width: 100%;
  max-width: 150px;
}

.custom-btn-radius {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}

.grey-bg-container {
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  right: 0;
  z-index: -1;
  width: 100%;
}

.pt-120px {
  padding-top: 120px;
}

.pb-120px {
  padding-bottom: 120px;
}

.w-300px {
  width: 300px;
}

.w-500px {
  width: 500px;
}

.grey-bg {
  background-color: #F7F7F7;
}

.content-header {
  position: relative;
  margin-bottom: .75rem;
  padding-bottom: .75rem;
}

.content-header:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 88px;
  height: 1px;
  background-color: #c1c1c1;
}

#contentBody p,
.faq-page p {
  line-height: 1.75em;
}

#contentBody br {
  display: block;
  margin: 0.75rem 0;
  content: "";
}

.custom-alert {
  display: inline-block;
}

.navbar-expand-custom {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand-custom .custom-navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand-custom .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand-custom .navbar-nav .nav-link {
  padding: 10px 20px;
}

.navbar-expand-custom .navbar-nav .dropdown-menu {
  position: absolute;
}

input.nav-link{
  border: 0;
  box-shadow: 0 0 0;
  height: auto;
  background-color: transparent;
  padding: .5rem;
}

.bg-light.proposal-form-navbar{
  background-color: #F0F0F0 !important;
}

@media (max-width: 767px){
  .m-btn-block{
    width: 100%;
  }
}

@media (max-width: 991px) {

  .mainSectionWrapper h1,
  .faq-page h1,
  .blueHeader-page h1 {
    font-size: 2rem;
  }

  .mainSectionWrapper h5 {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .testimonials h3 {
    font-size: 1.25rem;
  }

  section.p100-0 {
    padding: 32px 15px;
  }

  section.pt-100 {
    padding-top: 32px;
  }

  .testimonials:before,
  .testimonials:after {
    font-size: 24px;
  }

  .testimonials:before {
    top: -40px;
  }

  .testimonials:after {
    bottom: -24px;
  }

  footer {
    padding: 32px 0;
  }

  .footer-menu.footer-menu2>li>a,
  .footer-menu>li>a {
    font-size: 16px;
  }

  .elements_inner_wrapper,
  .comparexpress-modal .modal-body {
    min-height: auto;
  }

  .customFAQMouse {
    top: -84px;
    width: 170px;
    display: none;
  }

  .login-page .login-help-text.pb-120px.pt-120px {
    padding-bottom: 0;
    padding-top: 1rem;
  }

  .login-page .login-form.pt-120px {
    padding-bottom: 1rem;
  }

  .about-us-page h3{
    font-size: 1.5rem;
  }
}

/* CUSTOM OVERRIDE */
#mdlPopupPassword_backgroundElement,
#mdlPopup_backgroundElement,
#mdlPopupLearnMore_backgroundElement {
  display: none;
}

#ctl00_ContentPlaceHolder1_pnlPassword {
  position: relative !important;
  left: auto !important;
  top: auto !important;
}

.alert.alert-danger ul {
  display: none;
}

.ui-datepicker-trigger {
  display: none;
}

#ddlLoanTenure_railElement {
  width: 100% !important;
}

#ctl00_ContentPlaceHolder1_gvHLResults tbody tr:last-child {
  display: none;
}

@media (max-width: 767px){
  .login-form > .row,
  .login-help-text > .row,
  .blueHeader-page > .container > .row,
  #contentBody > .row,
  #contentBody > .section,
  .row.justify-content-center.no-gutters > .col-12.col-lg-8 > .content,
  #search > .row.justify-content-center.no-gutters,
  .faq-page > .pb-5 > .container > .row.no-gutters.justify-content-center,
  .about-us-page > .pb-100.custom2 > .container > .row.text-center.no-gutters{
    padding-left: 15px;
    padding-right: 15px;
  }
  .container-inner-page{
    padding-left: 30px;
    padding-right: 30px;
  }
  .navbarWrapper .navbar{
    border-bottom: 1px solid #ececec;
  } 
}