/* ------------------------
      General styles
   ------------------------- */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}


html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

body,
html {
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
table,
th,
td,
tr,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.break-word{
    word-break: break-all;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none !important;
  border: 0;
}

input:focus {
  outline: none;
}

input::-moz-focus-inner {
  border: 0;
  display: none;
}

input::-webkit-focus-inner {
  border: 0;
  display: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  color: #666;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  color: #666;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  color: #666;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #666;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #666;
}

table {
  border-collapse: collapse;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

ul,
li {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0px;
}

form {
  position: relative;
}

.form-control:focus {
  outline: none !important;
  border: none !important;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  font-size: inherit;
  color: inherit;
}

h1 .dot {
  color: #fbc572;
}

hr {
  margin: 0;
  padding: 0;
  border-color: #000;
}

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

li {
  list-style: none;
}

a:hover,
a:focus,
button:hover,
button:focus {
  outline: 0;
  text-decoration: none;
}

.bg-grey {
  background: #F8FBFF;
}

header {
  text-align: center;
}

header.sticky {
  box-shadow: 0 0 6px #999;
  background-color: #faf9f7;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  transition: all 0.2s ease 0s;
}

header.sticky .header-navbar {
  box-shadow: none;
}

p {
  font-family: sans-serif;
  color: #545455;
}

.btn {
  box-shadow: rgb(88 88 88 / 14%) 2px 1px 8px 4px;
}

/* --------------------------
    button Styles
   --------------------------- */

.btn {
  border-radius: 50px;
  border: none;
  min-width: 170px;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  padding: 8px 30px;
}

.btn-primary {
  background-color: #0555a4;
}

.btn-primary:hover {
  background-color: #fbc572 !important;
  transition: all .5s ease;
}

.btn-secondary {
  background-color: #eeeeef;
  color: #000;
}

.btn-secondary:hover {
  background-color: #0555a4 !important;
  transition: all .5s ease;
}

/* --------------------------
     Header Section Styles
   --------------------------- */

.inner-header {
  background-color: #535354;
  padding: 50px 0;
}

.inner-header h1 {
  font-size: 42px;
  color: #fff;
  line-height: 46px;
  font-weight: 700;
  max-width: 812px;
  text-align: center;
  margin: 0 auto;
}

.inner-header h1 span {
  color: #fbc572;
}

.inner-header p {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 10px;
}

/* content-section */
.unraveling {
  max-width: 852px;
}

.content-section {
  background-color: #ededee;
  padding: 40px 0;
}

.content-section h2 {
  color: #545455;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.content-section h2 span {
  color: #d19c49;
}

.content-section p {
  font-size: 18px;
  color: #545455;
  font-weight: 400;
  letter-spacing: normal;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.content-section p span {
  font-weight: 600;
}

.content-section p:last-child {
  margin-bottom: 0;
}


/* why-section */

.why-section {
  padding: 60px 0;
}



.why-content h2 {
  color: #545455;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-content h2 span {
  color: #d19c49;
}

.why-content p {
  font-size: 18px;
  color: #545455;
  font-weight: 400;
  letter-spacing: normal;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  max-width: 885px;
}

.why-content p span {
  font-weight: 600;
}

.why-content p:last-child {
  margin-bottom: 0;
}

.why-content .btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.why-content .btn-action a {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  background-color: #d19c49;
  font-family: "Poppins", sans-serif;
}

/* loan-content */
.loan-section {
  padding: 40px 0;
}



.loan-content h2 {
  color: #545455;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 45px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.loan-content h2 span {
  color: #d19c49;
}

.loan-box {
  background-color: #ededee;
  border-radius: 10px;
  padding: 24px;
  box-shadow: rgb(88 88 88 / 44%) 2px 1px 8px 1px;
  position: relative;
}

.loan-box .icon {
  position: absolute;
  left: -15px;
  top: -15px;
}

.loan-box .icon img {
  max-width: 40px;
}

.loan-box h3 {
  font-weight: 700;
  color: #545455;
  font-size: 20px;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
}

.loan-box p {
  font-size: 14px;
  color: #545455;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  line-height: normal;
}

.loan-box p span {
  font-weight: 500;
}

.loan-section .col-md-6 {
  margin-bottom: 24px;
}



/* footer */
.logo img {
  max-width: 200px;
}
footer {
  padding: 80px 0 60px;
}

footer .btn-action {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .btn-action a {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  background-color: #d19c49;
  font-family: "Poppins", sans-serif;
  max-width: fit-content;
}


.diamon-logo .row {
  align-items: center;
  flex-direction: row;
  justify-content: center
}

.diamon-logo {
  padding: 30px 20px;
  border-radius: 20px
}

.diamon-logo img {
  max-height: 80px
}

.diamon-logo .col-logo {
  text-align: center;
  position: relative;
  padding: 0 30px;
  margin-top: 80px;
}

.diamon-logo .col-logo::after {
  content: '';
  height: 100%;
  width: 1px;
  background-color: #fcd79d;
  position: absolute;
  right: 0;
}

.diamon-logo .col-logo:last-child::after {
  display: none;
}

.diamon-logo .col-logo:first-child,
.diamon-logo .col-logo:nth-child(2) {
  width: auto
}

.diamon-logo .col-logo:nth-child(3) {
  width: auto
}

.diamon-logo .col-logo:nth-child(4) {
  width: auto
}

.address {
  text-align: center;
  padding: 30px 0;
}

.address p {
  color: #0555a4;
}

.address p {
  color: #0555a4;
  font-size: 14px;
}

.contact-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-action p {
  color: #0555a4;
  font-size: 14px;
}


.contact-action a {
  color: #0555a4;
  font-size: 14px;
}

.footer-content {
  margin-top: 40px;
}

.footer-content p {
  font-size: 14px;
  color: #0555a4;
}

.standalone-project-main {
  background-color: transparent !important;
}

.involveme_embed {
  box-shadow: -4px -12px 28px -12px rgb(0 0 0 / 22%);
  margin-top: -20px;
}

/* hero section */

.hero-section {
  padding-bottom: 60px;
}


.hero-section img {
  width: 120%;
  min-width: 450px;
  left: -10%;
  position: relative;
}

@media screen and (min-width: 768px) and (max-width: 1400px) {}

@media screen and (min-width: 1024px) and (max-width: 1260px) {}

@media screen and (min-width: 1025px) {
  .loan-section .container {
    max-width: 1006px;
  }

  .content-section .container {
    max-width: 1006px;
  }

  .why-section .container {
    max-width: 1006px;
  }

  .hero-section .container {
    max-width: 1124px;
  }
}
@media screen and (max-width: 767px) {
.loan-box {
  margin: 0 15px ;
}
    .diamon-logo .row, .enter-zip {
        flex-direction: column;
    }
    .diamon-logo .col-logo::after {
        content: '';
        height: 100%;
        width: 100%;
        background-color: transparent;
        position: absolute;
        right: 0;
        border-bottom: 1px solid #fcd79d;
    }
        .diamon-logo .col-logo {
        margin-bottom: 20px;
        padding-bottom: 20px;
        margin-top: 0;
    }
}
@media screen and (max-width: 991px) {
  .inner-header {
    padding: 40px 0;
  }

  .inner-header .container {
    max-width: 90%;
  }

  .inner-header h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .inner-header p {
    font-size: 24px;
  }

  .content-section h2 {
    display: flex;
    flex-direction: column;
    font-size: 24px;
  }

  .why-content h2 {
    display: flex;
    flex-direction: column;
    font-size: 24px;
  }

  .why-content p {
    font-size: 16px;
  }

  .what-section h2 {
    display: inherit;
  }

  .content-section p {
    font-size: 16px;
  }
}


.poppins{
    font-family: 'Poppins', serif;
}

@media only screen and (max-width: 767px) {
    .logo img {
        max-width: 150px;
    }
}
