/*================================================
            Table of contents
==================================================

1. BASE CSS


/*================================================
       GOOGLE FONTS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,700;1,400&display=swap');

/*================================================
    1. BASE CSS
==================================================*/

html, body {
  height: 100%;
  vertical-align: baseline;
}
body {
  overflow-x: hidden;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Nunito', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}
.btn.focus,
.btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:focus {
  outline: 0 solid;
  color: #000;
  text-decoration: none;
}
img {
  height: auto;
}
a{
  transition: 0.5s;
}
a:hover {
  text-decoration: none;
}
/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
a,
textarea,
input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"],
input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  outline: none;
}
*, ::before, ::after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
* {
  box-sizing: border-box;
}
html *, html *:before, html *:after {
  box-sizing: border-box;
}
/*================================================
    animation style
==================================================*/
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-400px);
    -ms-transform: translateX(-400px);
    transform: translateX(-400px)
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px)
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px)
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(400px);
    -ms-transform: translateX(400px);
    transform: translateX(400px)
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px)
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px)
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(400px);
    -ms-transform: translateY(400px);
    transform: translateY(400px)
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px)
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px)
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-400px);
    -ms-transform: translateY(-400px);
    transform: translateY(-400px)
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px)
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px)
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes move {
  0% {
    transform: translate(0)
  }

  2.5% {
    transform: translate(3px)
  }

  5% {
    transform: translate(-3px)
  }

  7.5% {
    transform: translate(5px)
  }

  10% {
    transform: translate(-5px)
  }

  13.5% {
    transform: translate(5px)
  }

  15% {
    transform: translate(-3px)
  }

  17.5% {
    transform: translate(3px)
  }

  20% {
    transform: translate(0)
  }

  to {
    transform: translate(0)
  }
}

.mover {
  animation: move 5s infinite
}

.transition {
  transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out
}
.slide-from-top {
  animation: bounceInDown .8s
}

.slide-from-top-slow {
  animation: bounceInDown 1.5s
}

.slide-from-left {
  animation: bounceInLeft .8s
}

.slide-from-left-slow {
  animation: bounceInLeft 1.5s
}

.slide-from-right {
  animation: bounceInRight .8s
}

.slide-from-right-slow {
  animation: bounceInRight 1.5s
}
/*================================================
    2. HEADER STYLE
==================================================*/
.header-wrapper {
  background: #f1f1f1;
}
.main-logo .navbar-brand {
  margin: 15px 0;
  padding: 0;
}
.main-logo .navbar-brand img {
  width: 250px;
  height: 58px;
}
.body-top-sectoin {

}
.row-bg-one {
  background-image: url(../img/hero-img-second-mortgages.jpg);
  background-repeat: no-repeat;
  background-position: left bottom;
}
.body-top-text-wrapper {
  min-height: 470px;
}
.body-top-text-main {
  position: relative;
  z-index: 1;
  top: 0;
  margin-top: 20px;
}
.body-top-text h1 {
  padding: 20px 0 5px;
  font-size: 36px;
  font-weight: 400;
  font-family: 'Nunito', sans-serif;
  color: #1da255;
}
.body-top-text h1 span {
  font-weight: 700;
}
.body-top-text-sub-title {
  width: 50%;
}
.body-top-text-sub-title p {
  font-size: 20px;
  font-weight: 400;
  color: #1da255;
  line-height: 30px;
  margin-bottom: 18px;
}
.body-top-text-other h5 {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1da255;
  margin-bottom: 0;
  text-transform: capitalize;
}
.body-top-text-other h4 {
  font-size: 20px;
  color: #1da255;
  margin-bottom: 0;
  font-weight: 400;
  font-family: 'Nunito', sans-serif;
}
.body-top-text-other .telephone_number {
  font-size: 20px;
  line-height: 30px;
  color: #1da255;
  text-transform: capitalize;
  font-weight: 400;
  font-family: 'Nunito', sans-serif;
}
.body-top-text-other .telephone_number span {
  font-weight: 700;
}
/*================================================
   Landing Page Left Form STYLE
==================================================*/
.landing-page-left-form-wrapper {
  position: relative;
  margin-top: -50px;
  margin-bottom: -50px;
}
.landing-page-left-form {
  position: relative;
  text-align: center;
  background: #fff;
  border: 2px solid #1da255;
  border-radius: 10px;
  display: block;
  padding: 5px 15px;
  width: 100%;
  height: 100%;
}
.landing-page-left-form h2 {
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin: 10px 0;
  font-weight: 700;
  padding: 0;
  color: #1da255;
}
.landing-page-left-form .form-row input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 34px;
  padding: 5px 10px;
  border-radius: 5px;
  outline: none;
  border: 0 none;
  background: #f2f2f2;
  color: #000;
  font-size: 14px;
}
.landing-page-left-form .form-row select {
  width: 100%;
  height: 34px;
  padding: 5px 10px;
  border-radius: 5px;
  outline: none;
  border: 0 none;
  background: #f2f2f2;
  color: #000;
  font-size: 14px;
}
.landing-page-left-form .form-row textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 50px;
  padding: 5px 10px;
  border-radius: 5px;
  outline: none;
  border: 0 none;
  background: #f2f2f2;
  color: #000;
  font-size: 14px;
}
.date-of-birth-text {
  text-align: center;
  margin: auto;
  padding-bottom: 5px;
  margin-top: -10px;
  font-weight: 700;
  color: #1da255;
}
.landing-page-left-form .form-row input:focus, .landing-page-left-form .form-row textarea:focus, .landing-page-left-form .form-row select:focus  {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #edf8fd !important;
}
.landing-page-left-form .form-row .small-text {
  font-size: 12px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #000;
}

.btn-get-approved {
  position: relative;
  z-index: 10;
  overflow: hidden;
  transition-duration: 0.50s;
  background: #03a1da;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 5px 25px;
  letter-spacing: 0.5px;
  border-radius: .25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-get-approved::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-get-approved:hover {
  color: #03a1da;
}
.btn-get-approved:focus::before, .btn-get-approved:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
/*================================================
   Testimonial WRAPPER STYLE
==================================================*/
.testimonial-wrapper {
  padding-top: 100px;
}
.section-title {
    margin-bottom: 50px;
}
.section-title h2.title {
    font-family: 'Nunito', sans-serif;
    font-size: 30px;
}
.section-title p {
    font-size: 16px;
}
.section-title .title span {
  color: #1da255;
}
.testimonial {
    padding: 10px;
    position: relative;
    margin-bottom: 50px;
}
.testimonial.style-3 {
    background: none;
    text-align: center;
    margin-bottom: 0;
    padding: 0;
    -webkit-box-shadow: 0 18px 42px 0 rgba(28, 30, 35, 0.15);
    -moz-box-shadow: 0 18px 42px 0 rgba(28, 30, 35, 0.15);
    box-shadow: 0 18px 42px 0 rgba(28, 30, 35, 0.15);
}
.testimonial-content {
    padding: 30px;
    border-radius: 10px;
    position: relative;
    background: #ffffff;
    -webkit-box-shadow: 0 0 13px 3px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 13px 3px rgba(0,0,0,0.1);
    box-shadow: 0 0 13px 3px rgba(0,0,0,0.1);
}
.testimonial.style-3 .testimonial-content {
    background: none;
    color: #222021;
    box-shadow: none;
    padding: 0;
    margin: 0 auto;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 34px;
}
.testimonial.style-3 .testimonial-content span {
    font-size: 40px;
    line-height: 40px;
    color: #1da255;
    margin-bottom: 50px;
}
.testimonial .testimonial-content p, .testimonial .testimonial-avatar label {
    margin-bottom: 0;
}
.testimonial .testimonial-content p {
    font-size: 16px;
    line-height: 30px;
    font-style: italic;
}
.testimonial-avatar {
    margin-top: 30px;
}
.testimonial.style-3 .testimonial-img {
    display: block;
    margin: 30px 0 20px;
}
.testimonial .testimonial-avatar img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 5px;
    -webkit-box-shadow: 0 0 13px 3px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 13px 3px rgba(0,0,0,0.1);
    box-shadow: 0 0 13px 3px rgba(0,0,0,0.1);
    display: inline-block !important;
    max-width: 100%;
}
.testimonial .testimonial-caption {
    display: inline-block;
    vertical-align: middle;
}
.testimonial h6 {
    color: #1da255;
    text-transform: uppercase;
    font-size: 18px;
    font-style: normal;
    line-height: 24px;
}
.testimonial.style-3 .testimonial-caption label {
    color: #222021;
    font-size: 14px;
}
.testimonial-slider .owl-nav {
  position: relative;
}
.testimonial-slider .owl-nav .owl-prev, .testimonial-slider .owl-nav .owl-next {
	border: 1px solid #1da255 !important;
	text-align: center;
	border-radius: 5%;
	display: block;
  padding: 5px;
	background: #fff !important;
	color: #1da255 !important;
  width: 40px;
  height: 40px;
  line-height: 40px;
	transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  margin-top: -290px;
}
.testimonial-slider .owl-nav .owl-prev:focus, .testimonial-slider .owl-nav .owl-next:focus {
	border: 0px;
}
.testimonial-slider .owl-nav .owl-prev:hover, .testimonial-slider .owl-nav .owl-next:hover {
	color: #fff !important;
  background: #1da255 !important;
  border: 0;
  border: 1px solid #1da255 !important;
}
.testimonial-slider .owl-prev {
	float: left;
  margin-left: 10px;
}
.testimonial-slider .owl-next {
  float: right;
  margin-right: 9px;
}
.testimonial-slider .owl-stage-outer {
    padding-bottom: 60px;
}



.awards-section-wrapper {
  padding: 40px 0;
}
.awards-section {
  text-align: center;
}
.awards-section h2 {
  font-size: 40px;
  margin: 0;
}
/*================================================
   Mortgage Options Wrapper Style
==================================================*/
.mortgage-options-wrapper {
  background: #f2f3f8;
  fill: #f2f3f8;
  padding: 70px;
  text-align: center;
}
.mortgage-options-wrapper-title h2 {
  font-size: 40px;
  margin: 0;
  padding-bottom: 15px;
  padding-bottom: 30px;
}
.icon-box a {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 60px 20px 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: #fff;
    z-index: 1;
    margin-bottom: 30px;
    border-radius: 5px;
    min-height: 215px;
}
.icon-box .box-top {
    top: 0;
}
.icon-box .box-top, .icon-box .box-body {
    position: relative;
    will-change: transform;
    transition: .33s all ease;
    -webkit-filter: blur(0);
}
.icon-box .box-icon {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.icon-box .box-header {
    margin-top: 10px;
}
.box-header h5 {
  font-size: 24px;
  color: #000;
  transition: 0.5s;
}
.box-icon i {
  color: #1da255;
  font-size: 40px;
}
.icon-box a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: .3s ease-in-out;
  background-color: #1da255;
  z-index: -1;
}
.icon-box a.hover:after, .icon-box a:hover:after {
    height: 100%;
}
.icon-box a:hover .box-icon i {
  color: #fff;
}
.icon-box a:hover .box-header h5 {
  color: #fff;
}
/*================================================
   FOOTER STYLE
==================================================*/
.footer-wrapper {
  background: #282828;
  color: #ccc;
  padding: 50px 0;
}
.footer-widegt {
  padding-right: 25px;
}
.footer-widegt h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}
.info-contact {
  float: left;
  margin: 0px;
  padding: 0px;
  width: 100%;
}
.info-contact li {
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 10px;
  display: block;
  padding: 0;
  line-height: 28px;
  list-style: none;
}
.info-contact li i {
  font-size: 18px;
}
.social-top-icon-2 {
  float: left;
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  /* padding-top: 5px; */
}
.social-top-icon-2 li {
  list-style: none;
  margin: 0;
}
.social-top-icon-2 li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  line-height: 20px;
  transition: 0.5s;
  cursor: pointer;
}
.social-top-icon-2 li a:hover {
  color: #fff;
}
.social-top-icon-2 li a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  border-radius: 50%;
  z-index: 3;
  transform: scale(0);
  transition: 0.5s cubic-bezier(.95,.32,.37,1.31);
}
.social-top-icon-2 li a i {
  z-index: 99;
}
.social-top-icon-2 li a:hover:before {
  transform: scale(1);
}

.social-top-icon-2 li:nth-child(1) a:hover:before {
  background: #3b5999;
}
.social-top-icon-2 li:nth-child(2) a:hover:before {
  background: #cd201f;
}
.social-top-icon-2 li:nth-child(3) a:hover:before {
  background: #55acee;
}
.social-top-icon-2 li:nth-child(4) a:hover:before {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.social-top-icon-2 li:nth-child(5) a:hover:before {
  background: #007bb6;
}
.social-top-icon-2 li:nth-child(6) a:hover:before {
  background: #cb2027;
}
.social-top-icon-2 li:nth-child(7) a:hover:before {
  background: #F26522;
}
.footer-widegt h3 {
  margin-top: 20px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}
.footer-widegt h4 {
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.5;
}
