/* ************************************************** !!
/* CONTENTS --------------------------------------------
--------------------------------------------------------
--| General/Utility Styles
--| Button Styles
--| Forms/Inputs
--| Typography
--| Navbar
--| General Section Styles
--| Testimonials
--| Odometer
--| Searching Public Records (Section)
--| Results Section (Section)
--| Unlocking Databases (Section)
--| Footer
--| Loader
--| CSS Animations
--------------------------------------------------------
----------------------------------------------------- */

/* ************************************************************
***************************************************************
--- General/Utility Styles --- 
***************************************************************
************************************************************ */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

html {
  height: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  letter-spacing: -0.5px;
  height: 100%;
}

body.modal-open.iOS-device {
  position: fixed;
  width: 100%;
}

input::-ms-clear {
  display: none;
}

select::-ms-expand {
  display: none;
}

select:focus::-ms-value {
  color: inherit;
  background: transparent;
}

ul,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
aside,
article {
  margin: 0;
  padding: 0;
}

.visible-xxs,
[data-bv-ref] {
  display: none;
}

[data-bv-ref="default"] {
  display: inline-block;
}

.hide {
  visibility: hidden;
}

.box-text-wrap {
  margin-bottom: 28px;
}

::-moz-selection {
  background: #c9c6eb;
  /* WebKit/Blink Browsers */
}

::selection {
  background: #c9c6eb;
  /* WebKit/Blink Browsers */
}

.important-text {
  font-size: 22px;
  color: #4A4A4A;
  text-align: center;
  margin: 0 0 20px;
}

.important-text i {
  color: #DC0015;
  font-weight: bold;
  font-style: normal;
}

@media (max-width: 991px) {
  .important-text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .xs-left {
    text-align: left;
    margin-top: 10px;
  }
}

@media (max-width: 455px) {
  .visible-xxs {
    display: block;
  }
}

/* ************************************************************
***************************************************************
--- Button Styles --- 
***************************************************************
************************************************************ */

[class^="bv-btn"] {
  display: inline-block;
  background: #81B44C;
  border: 0;
  color: #FFF;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  font-size: 26px;
  padding: 15px 30px;
  text-align: center;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out
}

[class^="bv-btn"][disabled]:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

[class^="bv-btn"]:hover {
  background: #638A3A;
  text-decoration: none;
  color: #FFF;
  -webkit-box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
  box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

[class^="bv-btn"]:focus {
  background: #638A3A;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.bv-btn--small {
  padding: 10px 20px;
  font-size: 18px;
}

@media (max-width: 500px) {
  [class^="bv-btn"] {
    display: block;
  }
}

/* ----------------------------------- 
--- secondary button styles --- 
----------------------------------- */
.bv-btn--secondary {
  background: #4A3B8F;
}

.bv-btn--secondary:hover {
  background: #443683;
}

.bv-btn--secondary:focus {
  background: #353167;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* ----------------------------------- 
--- tertiary button styles --- 
----------------------------------- */
.bv-btn--tertiary {
  background: none;
  border: 3px solid #81B44C;
  color: #4A4A4A;
  font-size: 22px;
  padding: 10px 25px;
}

.bv-btn--tertiary.bv-btn--small {
  font-size: 16px;
  padding: 8px 15px;
}

.bv-btn--tertiary:hover {
  background: #81B44C;
}

.bv-btn--tertiary.bv-btn--inverse,
.bv-btn--tertiary.bv-btn--white {
  color: #fff;
}

.bv-btn--tertiary.bv-btn--inverse:focus,
.bv-btn--tertiary.bv-btn--white:focus {
  opacity: 0.75;
}

.bv-btn--tertiary.bv-btn--white {
  border-color: #fff;
}

.bv-btn--tertiary.bv-btn--white:hover {
  background-color: #fff;
  color: #4A4A4A;
}

/* ----------------------------------- 
--- disabled button styles --- 
----------------------------------- */
[class^="bv-btn"][disabled] {
  background: #D3D2D7;
  color: #9b9b9b;
  border: none;
  -webkit-appearance: none;
}

[class^="bv-btn"][disabled]:hover {
  cursor: not-allowed;
}

/* ************************************************************
***************************************************************
--- Forms/Inputs --- 
***************************************************************
************************************************************ */

.form-area h1,
.form-area h4 {
  text-align: center;
  margin: 0;
}

.form-area h4 {
  margin: 0.9vw auto 2vw auto;
  font-size: 18px;
  color: #1C1C1C;
}

#where-live .row {
  margin-bottom: 20px;
}

.bv-input {
  font-family: "Lato", sans-serif;
  background: #fff;
  border: 1px solid #CCC;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 4px 0 rgba(0, 0, 0, 0.10);
  box-shadow: inset 0 -1px 4px 0 rgba(0, 0, 0, 0.10);
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  height: 70px;
  line-height: 70px;
}

.bv-input input,
.bv-input textarea,
.bv-input select {
  color: #4A4A4A;
  border: 0;
  width: 100%;
  height: 30px;
  height: 100%;
  padding: 30px 40px 8px 12px;
  line-height: 30px;
  font-size: 18px;
  background: transparent;
}

.bv-input input:focus,
.bv-input textarea:focus,
.bv-input select:focus {
  outline: none;
}

.bv-input select {
  width: 100%;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
}

@-moz-document url-prefix() {
  .bv-input select {
    text-indent: -2px;
  }
}

.bv-input select::-ms-expand,
.bv-input input::-ms-reveal,
.bv-input input::-ms-clear {
  display: none;
}

.bv-input select:focus::-ms-value {
  color: inherit;
  background: transparent;
}

/* -- placeholder -- */
.bv-input label {
  color: #9B9B9B;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1.92px;
  padding-left: 12px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.2, 0, 0.03, 1);
  -o-transition: all 0.25s cubic-bezier(0.2, 0, 0.03, 1);
  transition: all 0.25s cubic-bezier(0.2, 0, 0.03, 1);
  pointer-events: none;
}

/* -- placeholder transition into label -- */
.bv-input input:focus~label:not(.error),
.bv-input input:valid:not(.optional)~label:not(.error),
.bv-input input[filled="true"]~label:not(.error),
.bv-input select~label {
  font-size: 13px;
  letter-spacing: 1.56px;
  color: #4A3B8F;
  top: -16px;
  z-index: 2;
  -webkit-transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
  -o-transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
  transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
}

/* -- input state styles -- */
.bv-input.active {
  border: 1px solid #4A3B8F;
}

.bv-input.error {
  border-color: #DC0015;
}

.bv-input label.error {
  font-size: 15px;
  text-transform: none;
  letter-spacing: normal;
  color: #DC0015;
  top: 50px;
  left: -3px;
}

.bv-input--on-dark-bg label.error {
  color: #ff523d;
}

.bv-input:not(.bv-input--multi).success>.bv-input__icon-area,
.bv-input:not(.bv-input--multi).error>.bv-input__icon-area {
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 15px;
  top: 35%;
  width: 20px;
  height: 20px;
  float: right;
}

.bv-input:not(.bv-input--multi).success>.bv-input__icon-area,
.bv-input--multi>div.success>.bv-input__icon-area {
  background-image: url('//frcdn.beenverified.com/assets/img/73a90de86591905b16322c91a9261031.svg');
}

.bv-input:not(.bv-input--multi).error>.bv-input__icon-area,
.bv-input--multi>div.error>.bv-input__icon-area {
  background-image: url('//frcdn.beenverified.com/assets/img/44ff52bc77e53382822bc363dda53103.svg');
}

.bv-input .chevron-down {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 991.98px) {
  .bv-input {
    height: 60px;
    line-height: 60px;
  }

  .bv-input select {
    height: 60px;
    height: 100%;
    padding-top: 25px;
  }

  .bv-input label.error {
    top: 45px;
  }
}

@media screen and (max-width: 767.98px) {
  .bv-input {
    height: 50px;
    line-height: 50px;
  }

  .bv-input input {
    padding: 22px 35px 5px 12px;
  }

  .bv-input select {
    height: 50px;
    height: 100%;
    padding-top: 15px;
    padding-bottom: 0;
  }

  .bv-input input:focus~label:not(.error),
  .bv-input input:valid:not(.optional)~label:not(.error),
  .bv-input input[filled="true"]~label:not(.error),
  .bv-input select~label {
    top: -13px;
  }

  .bv-input label.error {
    top: 40px;
  }

  .bv-input:not(.bv-input--multi)>div.success>.bv-input__icon-area,
  .bv-input:not(.bv-input--multi)>div.error>.bv-input__icon-area {
    top: 30%;
  }

  .searching-sub-title {
    font-size: 20px;
  }
}

.searching {
  text-transform: uppercase;
}

/* -----------------------------------
--- multiple input form styles --- 
----------------------------------- */
.bv-input--multi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0;
  height: auto;
}

.bv-input--multi>div {
  position: relative;
  width: 100%;
  border-right: 2px solid #ccc;
}

.bv-input--multi>div input {
  padding: 0;
  top: 0;
}

.bv-input--multi>div input,
.bv-input--multi>div label {
  padding-left: 12px;
  margin-top: -10px;
}

.bv-input--multi select {
  top: 0;
  padding: 0 0 0 12px;
}

.bv-btn--multi-form,
.bv-btn--inline {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 70px;
  -webkit-appearance: none;
  border: none;
  padding: 0;
  width: 100%;
}

.bv-input--multi .bv-input__half-size {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.bv-input--multi>div.success>.bv-input__icon-area,
.bv-input--multi>div.error>.bv-input__icon-area {
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 15px;
  top: 29%;
  width: 20px;
  height: 20px;
  float: right;
}

@media (min-width: 991px) {
  .bv-input--multi {
    height: 70px;
  }
}

@media (min-width: 768px) {
  .bv-input--multi>div:nth-last-of-type(1) {
    border-right: 0;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  .bv-input--multi {
    height: 60px;
  }

  .bv-input--multi.error {
    margin-bottom: 30px;
  }

  .bv-btn--multi-form,
  .bv-btn--inline {
    height: 60px;
  }

  .bv-input--multi [class^="bv-btn"] {
    height: 60px;
    padding: 0;
  }
}

@media (max-width: 991px) {

  .bv-input--multi>div.success>.bv-input__icon-area,
  .bv-input--multi>div.error>.bv-input__icon-area {
    top: 23%;
  }
}

@media (max-width: 767.98px) {
  .bv-input--multi:not(.bv-input--no-collapse) {
    padding-bottom: 0;
  }

  .bv-input--multi:not(.bv-input--no-collapse) [class^="col-"] {
    padding: 0
  }

  .bv-input--multi.bv-input--no-collapse {
    height: 50px;
  }

  .bv-input--multi.bv-input--no-collapse>div:nth-last-of-type(1) {
    border-right: 0;
  }

  .bv-input--multi:not(.bv-input--no-collapse)>div {
    background-color: #fff;
    margin-bottom: 10px;
    display: block;
    border: 1px solid #CCC;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 -1px 4px 0 rgba(0, 0, 0, 0.10);
    box-shadow: inset 0 -1px 4px 0 rgba(0, 0, 0, 0.10);
    width: 100%;
    height: 50px;
  }

  .bv-input--multi:not(.bv-input--no-collapse) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    margin-bottom: 0;
  }

  .bv-input--multi.active:not(.bv-input--no-collapse) {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .bv-input--multi:not(.bv-input--no-collapse)>div.active {
    border-color: #4A3B8F;
  }

  .bv-input--multi:not(.bv-input--no-collapse)>div label {
    padding-left: 12px;
    margin-top: 0;
  }

  .bv-input--multi:not(.bv-input--no-collapse)>div input {
    position: relative;
    width: 100%;
    top: 8px;
    padding: 22px 40px 5px 12px;
  }

  .bv-input--multi:not(.bv-input--no-collapse) select {
    left: 0;
    height: 100%;
    padding: 16px 45px 0 12px;
  }

  .bv-input--multi.error:not(.bv-input--no-collapse) {
    margin-bottom: 0;
  }

  .bv-input--multi:not(.bv-input--no-collapse)>div.error {
    margin-bottom: 30px;
    border-color: #DC0015;
  }

  .bv-input--multi:not(.bv-input--no-collapse)>div.error label.error {
    top: 38px;
  }

  .bv-btn--multi-form,
  .bv-btn--inline {
    width: 100%;
    font-size: 22px;
    line-height: 22px;
    height: 50px;
  }

  .bv-input--multi>div.success>.bv-input__icon-area,
  .bv-input--multi>div.error>.bv-input__icon-area {
    top: 30%;
  }
}

/* -----------------------------------
--- utility styles --- 
----------------------------------- */
.btn-submit-area {
  padding-left: 0;
}

@media(max-width: 991px) and (min-width:768px) {
  .btn-submit-area {
    padding-left: 0;
    margin-left: -5px;
  }
}

@media(max-width: 767px) {
  .btn-submit-area {
    padding-left: 15px;
    margin-left: 0;
  }
}

/* ************************************************************
***************************************************************
--- Typography --- 
***************************************************************
************************************************************ */

.bv-h1,
.bv-h2,
.bv-h3,
.bv-h4 {
  margin-bottom: 0.5rem;
  font-family: 'Lato', sans-serif;
  line-height: 1.2;
  color: inherit;
}

/* --- MAIN HEADLINE --- */
.bv-h1 {
  font-size: 60px;
  color: #4a4a4a;
  font-weight: 300;
}

/* --- Secondary Headers --- */
.bv-h2 {
  font-size: 48px;
  color: #4A3B8F;
  font-weight: 300;
}

/* --- Secondary Titles --- */
.bv-h3 {
  font-size: 28px;
  color: #81B44C;
  font-weight: bold;
}

/* --- Subheaders --- */
.bv-h4 {
  font-size: 24px;
  color: #4a4a4a;
}

/* --- Paragraph Text --- */
.bv-p {
  font-size: 18px;
  color: #4a4a4a;
}

/* --- COLOR OVERRIDES --- */
.bv-text-purple {
  color: #4A3B8F;
}

.bv-text-white {
  color: #fff;
}

.bv-text-green {
  color: #81B44C;
}

.bv-text-grey {
  color: #4a4a4a;
}

/* === RESPONSIVE SIZES === */
@media (max-width: 991.9px) {
  .bv-h1 {
    font-size: 48px;
  }

  .bv-h2 {
    font-size: 38px;
  }

  .bv-h3 {
    font-size: 26px;
  }

  .bv-h4 {
    font-size: 22px;
  }
}

@media (max-width: 767.9px) {
  .bv-h1 {
    font-size: 38px;
  }

  .bv-h2 {
    font-size: 32px;
  }

  .bv-h3 {
    font-size: 22px;
  }

  .bv-h4 {
    font-size: 20px;
  }

  .bv-p {
    font-size: 16px;
  }
}


/* ************************************************************
***************************************************************
--- Navbar --- 
***************************************************************
************************************************************ */

.top-part {
  background: rgba(255, 255, 255, 1);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(239, 239, 239, 1)));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 1)), to(rgba(239, 239, 239, 1)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#efefef', GradientType=0);
}

.top-part header {
  padding: 10px 0 30px;
}

.navbar-brand {
  padding: 15px 6px 15px 0;
}

.logos-container {
  display: flex;
  margin: 20px 0;
  align-items: flex-start;
}

.navbar-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header-badge {
  padding: 3px 10px;
  font-size: 11px;
  font-weight: bold;
  border-radius: 5px;
  color: #FFF;
  background: #EF2742;
  float: left;
  margin-top: 6px;
  white-space: nowrap;
  line-height: normal;
}

.mtv-catfish-logo {
  margin-left: 20px;
}

.navbar-toggle {
  padding-right: 0;
  margin-right: 0;
}

.nav-phone {
  padding: 15px 0;
  font-size: 16px;
  font-weight: 700;
  color: #4a4a4a;
  margin-right: 10px;
}

.nav-phone a {
  cursor: pointer;
  text-decoration: underline;
  color: #4a4a4a;
}

.nav-btn {
  padding-top: 8px;
}

.nav-btn .bv-btn--tertiary {
  font-size: 15px;
  text-transform: uppercase;
  padding: 5px 10px;
}

.nav-btn .bv-btn--tertiary:hover {
  background: #81B44C;
  color: #FFF;
}

.mobile-menu-text {
  text-transform: uppercase;
  color: #4A4A4A;
  font-weight: 600;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .collapse-container {
    background-color: #EFEFEF;
    border-top: 1px solid #FFF;
  }
  .bv-logo {
    width: 126px;
  }
  .mtv-catfish-logo {
    margin-left: 10px;
    width: 87px;
  }
  .nav-phone {
    text-align: center;
    padding-top: 10px;
  }
  .nav-btn {
    text-align: center;
    padding-top: 0;
    margin-bottom: 15px;
  }
  .nav-btn .bv-btn--tertiary {
    display: inline-block;
  }
}

/* ************************************************************
***************************************************************
--- General Section Styles --- 
***************************************************************
************************************************************ */

.section {
  max-width: 934px;
  min-height: 84vh;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
  overflow: hidden;
}

.section.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.section>div {
  width: 100%;
}

.section>div h2 {
  margin: 0;
}

.continue {
  text-align: center;
  color: #3B49E5;
  font-size: 16px;
  text-decoration: underline;
}

.continue:hover {
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 820px) {
  .section {
    height: auto;
  }
}

@media(max-width: 767px) {
  .continue {
    padding: 10px 0 20px 0;
  }
}

/* ************************************************************
***************************************************************
--- Testimonials --- 
***************************************************************
************************************************************ */

.testimonials-area {
  padding: 40px 28px;
  background-color: #fff;
}

.testimonials-area h2 {
  font-size: 48px;
  color: #4a3b8f;
  letter-spacing: 0;
  text-align: center;
  line-height: 53px;
  font-weight: 300;
  margin-bottom: 50px;
}

.testimonials-area .testimonials-carousal-area.owl-carousel .owl-stage-outer {
  padding: 50px 4px 10px 4px;
}

.testimonials-area .testimonials-carousal-area.owl-carousel .owl-nav {
  position: absolute;
  top: 40%;
  display: block;
  width: calc(100% + 60px);
  left: -30px;
}


.testimonials-area .owl-carousel .owl-nav button {
  width: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.testimonials-area .owl-carousel .owl-nav button span {
  opacity: 0;
  font-size: 32px;
}

.testimonials-area .owl-carousel .owl-nav button.owl-prev {
  -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}

.testimonials-area .owl-carousel .owl-nav button.owl-next,
.testimonials-area .owl-carousel .owl-nav button.owl-prev {
  background: url('//frcdn.beenverified.com/assets/img/2886fcf2b94d1ef0032e0b22b6702552.svg');
  background-repeat: no-repeat;
  background-position: center center;
}

.testimonials-area .testimonials-carousal-area.owl-carousel .owl-nav button:focus {
  outline: none;
}

.testimonials-area .testimonials-carousal-area.owl-carousel .owl-nav button.owl-prev {
  float: left;
}

.testimonials-area .testimonials-carousal-area.owl-carousel .owl-nav button.owl-next {
  float: right;
}

.testimonials-area .testimonials-carousal-area.owl-carousel .owl-nav button:hover {
  opacity: 0.7;
}

.testimonials-area .testimonials-carousal-area .testimonial-thumb {
  -webkit-box-shadow: 0 2px 10px 0 rgba(163, 163, 166, 0.5);
  box-shadow: 0 2px 10px 0 rgba(163, 163, 166, 0.5);
  border-radius: 12px;
  padding: 60px 40px 40px 40px;
  position: relative;
  background: #ffffff;
  width: 98%;
  height: 100%;
}

.testimonials-area .testimonials-carousal-area .testimonial-thumb img {
  position: absolute;
  height: 80px;
  width: 80px;
  top: -40px;
  left: 35px;
}

.testimonials-area .testimonials-carousal-area .testimonial-thumb p {
  font-size: 20px;
  color: #353167;
}

.testimonials-area .testimonials-carousal-area .testimonial-thumb h4 {
  font-size: 18px;
  color: #4a4a4a;
  margin-top: 30px;
  font-weight: 700;
}

@media only screen and (min-width: 1200px) {
  .testimonials-area .testimonials-area-in .container {
    width: 100%;
    max-width: 1170px;
  }
}

@media only screen and (max-width: 1199px){
  .testimonials-area .container {
    width: 100%;
    padding: 0 30px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonials-area {
    padding: 30px 28px;
  }
  .testimonials-area h2 {
    font-size: 38px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonials-area {
    padding: 0;
  }
  .testimonials-area .container {
    padding: 0;
  }
  .testimonials-area h2 {
    font-size: 32px;
    line-height: 45px;
    padding: 20px 20px 0;
    margin-bottom: 10px;
  }
  .testimonials-area .testimonials-area-in {
    padding-left: 20px;
  }
  .testimonials-area .testimonials-carousal-area.owl-carousel .owl-nav {
    display: none;
  }
  .testimonials-area .testimonials-carousal-area .testimonial-thumb {
    padding: 50px 20px 20px;
  }
  .testimonials-area .testimonials-carousal-area .testimonial-thumb img {
    height: 70px;
    width: 70px;
    top: -35px;
  }
  .testimonials-area .testimonials-carousal-area .testimonial-thumb p {
    font-size: 18px;
    line-height: 22px;
  }
  .testimonials-area .testimonials-carousal-area .testimonial-thumb h4 {
    font-size: 17px;
    line-height: 21px;
    margin-top: 20px;
  }
}

/* ************************************************************
***************************************************************
--- Odometer --- 
***************************************************************
************************************************************ */

.odometer {
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.odometer.plusAdded {
  margin-right: 20px;
}

.odometer.plusAdded::after {
  content: '+';
  position: absolute;
  right: -28px;
  top: 0;
}

@media(max-width: 767px) {
  .odometer.plusAdded::after {
    right: -22px;
  }
}

/* ************************************************************
***************************************************************
--- Searching Public Records (Section) --- 
***************************************************************
************************************************************ */

.top-text p {
  font-size: 22px;
  position: relative;
  z-index: 1000;
  color: #4a4a4a;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 27px;
}

#searching h1 {
  font-size: 52px;
  line-height: 62px;
  font-weight: 300;
  display: block;
  margin: 0 0 5px;
  text-align: center;
  letter-spacing: 0;
}

#searching header {
  margin-bottom: 20px;
}

#copy {
  margin-top: 40px;
}

#copy p {
  margin-bottom: 20px;
  letter-spacing: 0;
  font-size: 22px;
  color: #4a4a4a;
  line-height: 27px;
}

@media only screen and (max-width: 991px) {
  .top-text p {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.82px;
  }
  #copy p {
    font-size: 20px;
    line-height: 24px;
  }
  #searching header {
    margin-bottom: 20px;
    margin-top: 15px;
  }
  #searching header h1 {
    font-size: 36px;
    line-height: 44px;
  }
}

/* ************************************************************
***************************************************************
--- Results Section (Section) --- 
***************************************************************
************************************************************ */

#no-results span {
  display: block;
}

.search-again {
  background: #81b44c;
  font-size: 20px;
  margin-top: 65px;
  padding: 13px 30px;
}

.search-again:focus,
.search-again:active:focus,
.search-again.active:focus {
  outline: none;
}

.search-again strong {
  color: #FFF;
}

/* ************************************************************
***************************************************************
--- Unlocking Databases (Section) --- 
***************************************************************
************************************************************ */

.section>div h2.searching-sub-title {
  margin-bottom: 20px;
}

.inf-list {
  max-width: 552px;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.inf-list-in {
  border: 1px solid #D8D8D8;
  padding: 12px 20px 14px 20px;
  border-radius: 4px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.inf-list-in-left h4 {
  margin-top: 0;
  color: #707070;
  font-size: 22px;
  text-align: left;
}

.inf-list-in-left p {
  margin-bottom: 0;
  font-size: 15px;
  text-align: left;
}

.inf-list-in .inf-list-in-right .open-lock {
  display: none;
}

.animated.active .inf-list-in .inf-list-in-right .open-lock {
  display: block;
}

.animated.active .inf-list-in .inf-list-in-right .close-lock {
  display: none;
}

.inf-list-in .inf-list-in-left p.searching {
  display: none;
}

.animated.database {
  height: 80px;
  margin-bottom: 20px;
}

.animated.database.hide-height {
  -webkit-animation: hide-height .5s forwards;
          animation: hide-height .5s forwards;
  opacity: 0;
  margin: 0;
}

.animated.active .inf-list-in .inf-list-in-left p.searching {
  display: block;
  color: #81B44C;
  font-weight: bold;
}

.animated.active .inf-list-in .inf-list-in-left p.unlocking {
  display: none;
}

.animated.active .inf-list-in {
  border: 2px solid #81B44C;
}

.inf-list-in.animate {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, white), color-stop(50%, #EDEDED));
  background: -o-linear-gradient(right, white 50%, #EDEDED 50%);
  background: linear-gradient(to left, white 50%, #EDEDED 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  -webkit-animation: bganimate 1.2s infinite;
          animation: bganimate 1.2s infinite;
}

.animated.active .inf-list-in.animate {
  -webkit-animation: none;
          animation: none;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #81B44C;
  fill: none;
  -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
          animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 150px;
  height: 150px;
  margin: 5vh auto;
  -ms-transform: none;
      transform: none;
  -webkit-transform:none;
  display: none;
}

.tick-img{
  -ms-transform: none;
      transform: none;
  -webkit-transform:none;
}

.checkmark__check {
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
          animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.countdown-container {
  background-color: #e2e2e2;
  margin: 10px 0 24px;
  border-radius: 8px;
  padding: 16px 0;
}

.countdown-container p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.19;
  color: #4a3b8f;
  text-align: center;
}

/* Edge style only */
@supports (-ms-ime-align:auto) {
  .checkmark__check {
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 0 !important;
    -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
            animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }
  .section {
    height: auto;
  }
}

/* IE 11 style only */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .checkmark__check {
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 0 !important;
    -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
            animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }
  .section {
    height: 90vh;
  }
}

@media (max-width: 991px) {
  .animated.database {
    margin-bottom: 10px;
  }
  .countdown-container {
    margin: 110px 0 30px;
  }
  .countdown-container p {
    line-height: 1.38;
  }
}

@media (max-width: 767px) {
  .inf-list-in-left h4,
  .searching-sub-title {
    font-size: 20px;
  }
  .inf-list-in-left p {
    font-size: 14px;
  }
  .countdown-container {
    margin: 10px 0 24px;
  }
  .countdown-container p {
    font-size: 14px;
    line-height: 1.43;
  }
}

/* ************************************************************
***************************************************************
--- iModal (in a hurry?) --- 
***************************************************************
************************************************************ */

.custom-modal .modal-header {
  border-bottom: none;
}

.custom-modal .modal-content{
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.17);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.17);
  border: solid 1px #efefef;
  background-clip: initial;
}

.custom-modal .modal-dialog{
  top: 70px;
}

.custom-modal .modal-header .close-img{
  opacity: 1;
}

.custom-modal .modal-header .close{
  margin-right: 10px;
}

.custom-modal .icon-img {
  margin: auto;
  position: absolute;
  top: -40px;
  z-index: 1;
  left: 0;
  right: 0;
}

.custom-modal .h1.text-primary {
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
  color: #353167;
  margin-top: 30px;
  margin-bottom: 20px;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
}

.custom-modal .bv-btn {
  font-size: 26px;
  font-weight: 700;
  padding: 0;
  width: 130px;
  height: 50px;
  margin: auto;
  border: 0;
}

.custom-modal .results-loaded-statement {
  display: none;
  line-height: 140%;
  margin-bottom: 20px;
}

.custom-modal .results-loaded-statement p {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: #4a4a4a;
}

.custom-modal .results-loaded-text{
  font-size: 16px;
  color: #4a4a4a;
  line-height: 24px;
  font-weight: bold;
  letter-spacing: 0;
}

.custom-modal .search-name{
  font-size: 22px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #4a3b8f;
  margin-top: 5px;
  display: block;
  text-transform: capitalize;
}

.custom-modal .wait-line {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.71;
  letter-spacing: normal;
  color: #4a4a4a;
}

.custom-modal .modal-body {
  padding: 0 40px 40px;
}

.custom-modal .text-muted {
  font-weight: normal;
  color: #999;
}

@media (min-width: 768px) {
  .custom-modal .modal-dialog {
    width: 362px;
  }
}

@media(max-width:479px) {
  .custom-modal .bv-btn {
    font-size: 17px;
    display: inline-block;
  }

  .custom-modal .wait-line {
    margin: 10px 0 20px;
  }

  .custom-modal .search-name {
    margin-top: 10px;
  }
}

/* ************************************************************
***************************************************************
--- Footer --- 
***************************************************************
************************************************************ */

#footer {
  padding-top: 60px;
  padding-bottom: 20px;
}

#footer h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #353167;
}

#footer p {
  font-size: 14px;
  font-weight: 400;
  color: #949595;
}

#footer p.website {
  margin-bottom: 10px;
}

#footer p.website img {
  margin-right: 30px;
}

#footer .icon-text {
  overflow: hidden;
  margin-bottom: 5px;
}

#footer .icon-text > div {
  float: left;
  color: #949595;
}

#footer .icon-text .img-container {
  margin-right: 6px;
  width: 21px;
}

#footer .icon-text a {
  color: #0f2d8f;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  text-decoration: none;
}

#footer .icon-text a:hover,
#footer .icon-text a:focus {
  text-decoration: none;
}

#footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer ul li {
  margin-bottom: 4px;
  color: #949595;
}

#footer ul li a {
  font-size: 14px;
  color: #0f2d8f;
  font-weight: 500;
}

#footer a:hover,
#footer a:focus {
  text-decoration: none;
  color: #3b49e5;
}

#footer a {
  color: #0f2d8f;
}

#footer .email-address a:hover,
#footer .phone-number a:hover {
  color: #3b49e5;
}

#footer .phone-number {
  color: #333;
}

.social-links {
  margin-top: 25px;
}

.social-links img {
  height: 16px;
}

.social-links a {
  text-decoration: none;
}

.social-links a:focus {
  text-decoration: none;
}

.border-bottom {
  margin-top: 20px;
  border-bottom: 1px solid #cecfd5;
}

.disclaimer {
  margin-top: 20px;
  margin-bottom: 40px;
  color: #9b9b9b;
  letter-spacing: 0;
  line-height: 19px;
}

@media only screen and (max-width: 991px) {
  #footer .customer-service-wrapper {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  #footer h4 {
    margin-top: 20px;
  }
  #footer .customer-service-wrapper {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 600px) {
  #footer {
    padding: 20px 0;
  }
}

/* ************************************************************
***************************************************************
--- Loader --- 
***************************************************************
************************************************************ */

.loading-section {
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15rem;
  /* Change this to resize the loader */
  -webkit-animation: 2s rotate infinite linear;
  animation: 2s rotate infinite linear;
  margin-bottom: 45px;
}

.loader circle {
  fill: transparent;
  stroke: #81B44C;
  stroke-width: 8px;
  stroke-linecap: round;
  stroke-dasharray: 2.3525em 0.4705em;
  -webkit-animation: 1.5s strokeDashArray infinite linear, 8s colorBounce infinite linear;
  animation: 1.5s strokeDashArray infinite linear, 8s colorBounce infinite linear;
}

/* ************************************************************
***************************************************************
--- CSS Animations --- 
***************************************************************
************************************************************ */

@-webkit-keyframes hide-height {
  100% {
    height: 0;
  }
}

@keyframes hide-height {
  100% {
    height: 0;
  }
}

@-webkit-keyframes bganimate {
  from {
    background-position: right bottom;
  }

  to {
    background-position: left bottom;
  }
}

@keyframes bganimate {
  from {
    background-position: right bottom;
  }

  to {
    background-position: left bottom;
  }
}

@-webkit-keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes scale {
  0%,
  100% {
    -webkit-transform: none;
            transform: none;
  }

  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
            transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes scale {
  0%,
  100% {
    -webkit-transform: none;
            transform: none;
  }

  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
            transform: scale3d(1.1, 1.1, 1);
  }
}

@-webkit-keyframes fill {
  100% {
    -webkit-box-shadow: inset 0 0 0 50px #81B44C;
            box-shadow: inset 0 0 0 50px #81B44C;
  }
}

@keyframes fill {
  100% {
    -webkit-box-shadow: inset 0 0 0 50px #81B44C;
            box-shadow: inset 0 0 0 50px #81B44C;
  }
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes strokeDashArray {
  from {
    stroke-dasharray: 2.3525em 0.4705em;
    stroke-dashoffset: 0;
  }

  10% {
    stroke-dasharray: 2.3525em 0.4705em;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 0.001em 2.825em;
    stroke-dashoffset: -2.826em;
  }

  60% {
    stroke-dasharray: 0.001em 2.825em;
  }

  to {
    stroke-dasharray: 2.3525em 0.4705em;
    stroke-dashoffset: -2.826em;
  }
}

@keyframes strokeDashArray {
  from {
    stroke-dasharray: 2.3525em 0.4705em;
    stroke-dashoffset: 0;
  }

  10% {
    stroke-dasharray: 2.3525em 0.4705em;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 0.001em 2.825em;
    stroke-dashoffset: -2.826em;
  }

  60% {
    stroke-dasharray: 0.001em 2.825em;
  }

  to {
    stroke-dasharray: 2.3525em 0.4705em;
    stroke-dashoffset: -2.826em;
  }
}

@-webkit-keyframes colorBounce {
  1% {
    stroke: #81B44C;
  }

  24% {
    stroke: #81B44C;
  }

  26% {
    stroke: #4A3B8F;
  }

  49% {
    stroke: #4A3B8F;
  }

  51% {
    stroke: #81B44C;
  }

  74% {
    stroke: #81B44C;
  }

  76% {
    stroke: #4A3B8F;
  }

  99% {
    stroke: #4A3B8F;
  }
}

@keyframes colorBounce {
  1% {
    stroke: #81B44C;
  }

  24% {
    stroke: #81B44C;
  }

  26% {
    stroke: #4A3B8F;
  }

  49% {
    stroke: #4A3B8F;
  }

  51% {
    stroke: #81B44C;
  }

  74% {
    stroke: #81B44C;
  }

  76% {
    stroke: #4A3B8F;
  }

  99% {
    stroke: #4A3B8F;
  }
}
