@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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");
:root {
  --primary-red: #d00000;
  --main-blue: #001f51;
  --text-dark: #000000;
  --text-white: #ffffff;
  --text-grey: #afafaf;
  --secondary: #f3f3f3;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1199px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col60 {
  max-width: 60%;
  flex: 0 0 60%;
  padding: 0 15px;
}
.col50 {
  max-width: 50%;
  flex: 0 0 50%;
  padding: 0 15px;
}
.col40 {
  max-width: 40%;
  flex: 0 0 40%;
  padding: 0 15px;
}
.col33 {
  max-width: 33.33%;
  flex: 0 0 33.33%;
  padding: 0 15px;
}
h1 {
  font-family: "Inter", sans-serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  color: var(--main-blue);
}
h2 {
  font-family: "Inter", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--main-blue);
}
h3,
.h3-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--main-blue);
  line-height: 1.37;
}
h4 {
  font-family: "Inter", sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.43;
  color: var(--main-blue);
}
.brand a {
  max-width: 208px;
  display: block;
}
.header {
  padding: 20px 0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-links {
  margin-left: auto;
}
.navlinks {
  display: flex;
  align-items: center;
}
.navlinks li {
  padding: 0 20px;
}
.navlinks li a {
  text-transform: capitalize;
  color:var(--main-blue);
}
.navlinks li a:hover {
  color: var(--primary-red);
}
.cmn-btn {
  display: inline-block;
  background: var(--main-blue);
  color: var(--text-white);
  padding: 14px 28px;
  transition: 0.5s ease;
  border-radius: 7px;
  text-transform: capitalize;
}
.cmn-btn:hover {
  background: var(--primary-red);
}
.heading-span {
  color: var(--primary-red);
  font-style: italic;
  font-weight: bold;
}
/*Hamburger Menu CSS*/
.hamburger {
  position: absolute;
  right: 165px;
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.hamburger .bar {
  background-color: var(--text-dark);
  width: 100%;
  height: 4px;
  border-radius: 5px;
}
.banner {
  background: url("image/bannerbg.png") no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 590px;
  padding: 55px 0;
  display: flex;
  align-items: center;
}
.banner .row {
  align-items: center;
}
/* .bannercontent {
  padding: 57px 0;
} */
.bannercontent .cmn-btn {
  background: var(--primary-red);
}
.bannercontent .cmn-btn:hover {
  background: var(--main-blue);
}
.bannercontent h1 {
  margin-bottom: 30px;
}
.bannercontent p {
  margin-bottom: 34px;
  color: var(--main-blue);
  max-width: 571px;
  width: 100%;
}
.bannerform {
  background: var(--text-white);
  text-align: center;
  padding: 34px 36px 46px 19px;
  border-radius: 20px;
}
.bannerform .h3-title {
  text-align: center;
  margin-bottom: 47px;
}
.group1 {
  display: flex;
  /* justify-content: space-between; */
  margin: 0 -5px;
}
.form-field-wrpr {
  padding: 0 5px;
  width: 50%;
}
.form-field-wrpr,
.form-field-wrpr-full {
  margin-bottom: 20px;
  /* border-radius: 7px; */
}
.form-field-wrpr-full:last-child {
  margin-bottom: 0;
}
/* .name,
.tel {
  max-width: 195px;
} */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
input[type="submit"] {
  width: 100%;
  padding: 14px 25px;
}
/* textarea {
  max-width: 410px;
  min-height: 106px;
  /* resize: none;  *
}
.email,
.message,
.formbtn {
  max-width: 410px;
} */
textarea {
  resize: none;
}
.form-field-wrpr-full {
  width: 100%;
}
.formbtn {
  border-radius: 7px;
  background-color: var(--primary-red);
  border: none;
  color: var(--text-white);
  text-transform: capitalize;
  transition: 0.3s ease;
}
.formbtn:hover {
  background-color: var(--main-blue);
}
input::placeholder,
textarea::placeholder {
  color: var(--text-grey);
  text-transform: capitalize;
}
.about {
  padding: 99px 0;
}
.about .row {
  align-items: center;
}
.aboutcontent {
  max-width: 539px;
}
.aboutcontent h2,
.aboutcontent p {
  margin-bottom: 30px;
}
.about .cmn-btn:hover {
  background: var(--primary-red);
}
.products {
  background-color: var(--secondary);
  padding: 99px 0;
}
.productscontent {
  text-align: center;
}
.productscontent p {
  max-width: 777px;
  margin: 0 auto;
}
.productscontent h2,
.productscontent p {
  margin-bottom: 30px;
}
.loancard {
  padding: 12px 15px 31px 16px;
  background: var(--text-white);
  border-radius: 20px;
}
.loanbtn {
  text-align: center;
  margin-top: 18px;
}
.footer {
  position: relative;
  background: url("image/footerbg.png") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 53px 0 42px 0;
  z-index: 1;
}
.footer::after {
  position: absolute;
  content: "";
  background: var(--main-blue);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  z-index: -1;
}
.footer_logo {
  display: block;
  max-width: 312.84px;
}
.footer_brand {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
.copyright {
  color: var(--text-white);
  text-align: center;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  line-height: 1.55;
  font-weight: 400;
}
.copyright a {
  color: var(--text-white);
}
.copyright a:hover {
  color: var(--primary-red);
}
.copyright span {
  text-transform: lowercase;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 80px;
  }
  h2 {
    font-size: 47px;
  }
}
@media (max-width: 1024px) {
  .navlinks li {
    padding: 0 15px;
  }
  .banner .col60 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .banner .col40 {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
  .navlinks {
    position: absolute;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--main-blue);
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
    transition: 0.4s ease-in-out;
    z-index: -1;
  }
  .navlinks li {
    margin: 20px 0;
    text-align: center;
  }
  .navlinks li a {
    color: var(--text-white);
  }
  .navlinks.active {
    left: 0;
    z-index: 999;
  }
  .col33,
  .col40,
  .col50,
  .col60,
  .banner .col40,
  .banner .col60 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .group1 {
    flex-direction: column;
  }
  .form-field-wrpr {
    width: 100%;
  }
  .formbtn {
    max-width: 100%;
  }
  .bannerform,
  .about figure,
  .loancard,
  .bannercontent {
    margin-bottom: 15px;
  }
  .bannercontent,
  .about,
  .aboutcontent,
  .products {
    text-align: center;
  }
  .bannercontent p,
  .aboutcontent {
    max-width: 100%;
  }
  .loancard img, .about img {
    width: 100%;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 70px;
  }
  h2 {
    font-size: 43px;
  }
  .products{
    padding:70px 0;
  }
}
@media (max-width: 575px) {
  .cmn-btn {
    padding: 14px 18px;
  }
  .hamburger {
    right: 132px;
    width: 27px;
    height: 22px;
  }
  .brand a {
    max-width: 170px;
  }
  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 34px;
  }
  p,
  .copyright {
    font-size: 15px;
  }
  .footer_logo {
    max-width: 230.84px;
  }
}
@media (max-width: 480px) {
  .headerbtn .cmn-btn {
    display: none;
  }
  .hamburger {
    right: 30px;
  }
  .cmn-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 27px;
  }
  h3,
  .h3-title {
    font-size: 19px;
  }
  h4 {
    font-size: 18px;
  }
  .navlinks {
    width: 220px;
  }
}
