@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap");

:root {
  /* fonts */
  --font-montserrat: Montserrat;

  /* font sizes */
  --font-size-5xs: 10px;
  --font-size-4xs: 11.56px;
  --font-size-3xs: 11.19px;
  --font-size-2xs: 12px;
  --font-size-xs: 12.94px;
  --font-size-sm: 12.5px;
  --font-size-base: 13.31px;
  --font-size-lg: 14px;
  --font-size-xl: 15.53px;
  --font-size-2xl: 15.98px;
  --font-size-3xl: 16px;
  --font-size-4xl: 16.79px;
  --font-size-5xl: 17.32px;
  --font-size-6xl: 18.2px;
  --font-size-7xl: 18px;
  --font-size-8xl: 18.89px;
  --font-size-9xl: 20.14px;
  --font-size-10xl: 20px;
  --font-size-11xl: 21.4px;
  --font-size-12xl: 22.81px;
  --font-size-13xl: 23.43px;
  --font-size-14xl: 24.8px;
  --font-size-15xl: 26.12px;
  --font-size-16xl: 27.4px;
  --font-size-17xl: 29.03px;
  --font-size-18xl: 30.82px;
  --font-size-19xl: 32.17px;
  --font-size-20xl: 35.81px;
  --font-size-21xl: 35.92px;
  --font-size-22xl: 41.1px;
  --font-size-23xl: 42px;

  /* Colors */
  --color-white: #fff;
  --color-darkorange-100: #ff9529;
  --color-darkorange-200: #ff8303;
  --color-black: #000;
  --color-dimgray-100: #5a5a5a;
  --color-darkgray-100: #aaa;
  --color-darkgray-200: #a09f9f;
  --color-darkgray-300: #9d9d9d;
  --color-darkgray-400: #9a9a9a;
  --color-whitesmoke-100: #f5f5f5;
  --color-whitesmoke-200: #f4f4f4;
  --color-whitesmoke-300: #e9e9e9;
  --color-gray-100: #7d7d7d;
  --color-gray-200: rgba(0, 0, 0, 0.6);
  --color-gray-300: rgba(146, 146, 146, 0.4);
  --color-gainsboro-100: #dadada;
  --color-gainsboro-200: #d9d9d9;
  --color-gainsboro-300: rgba(217, 217, 217, 0.1);
  --color-gainsboro-400: rgba(217, 217, 217, 0);
  --color-silver-100: #bcbcbc;
  --color-orange: #ffa500;
  --color-darkslategray: #3f3f3f;

  /* border radiuses */
  --br-4xs: 9.06px;
  --br-3xs: 9.5px;
  --br-2xs: 11.99px;
  --br-xs: 11px;
  --br-sm: 12px;
  --br-md: 14.7px;
  --br-lg: 21.35px;
  --br-xl: 22.26px;
  --br-2xl: 23.97px;
  --br-3xl: 23.61px;
  --br-4xl: 30.82px;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
}

/* nevbar */
.logo-caption {
  width: 140px;
  height: 82px;
}

.menu {
  width: auto;
  min-height: 72px;
  padding: 16px 28px 15px;
  position: relative;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
  background: #ffffff;
  -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.06);
  /*drop shadow*/
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #f8f9fa;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 1.25rem;
}

.dropdown-item {
  font-weight: 500;
  border-radius: 1.25rem;
  background: #fff;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  font-weight: 600;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
}

.dropdown-submenu {
  margin: 2px;
}

.dropdown-item:hover {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 600;
  color: #ffffff;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: #ff8303;
}
button.navbar-toggler {
  background: #ff8303;
}

.btn-primary {
  color: #fff !important;
  background-color: #ff8303 !important;
}

.btn-primary:hover {
  color: #ffffff !important;
  background: rgb(255, 131, 3) !important;
  border: 1px solid #ffffff !important;
}

.navbar-light .navbar-nav .nav-link {
  color: #ffffff;
  font-size: 17px;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: rgb(255, 131, 3) !important;
}
.navbar-light .navbar-nav .nav-link.active {
  color: #ffffff;
}

/* Subdropdown Start*/

.dropdown-menu li {
  position: relative;
}
.dropdown-menu .dropdown-submenu {
  position: absolute;
  left: 100%;
  top: -30px;
}
.dropdown-menu .dropdown-submenu-left {
  right: 100%;
  margin: 10px;
}
.dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}

/* Subdropdown End*/

.btn-primary {
  min-height: 36px;
  width: 132px;
  border: none;
  -webkit-border-radius: 14.5px;
  -moz-border-radius: 14.5px;
  border-radius: 14.5px;
  background: #ff8303;
  -webkit-box-shadow: 0 0 7px 0 rgb(0 0 0 / 6%);
  -moz-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 7px 0 rgb(0 0 0 / 6%);
  color: #000000;
  font-size: 0.868056rem;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

.btn-primary:hover {
  min-height: 36px;
  width: 132px;
  border: 1px solid #ff8303;
  -webkit-border-radius: 14.5px;
  -moz-border-radius: 14.5px;
  border-radius: 14.5px;
  background: transparent;
  -webkit-box-shadow: 0 0 7px 0 rgb(0 0 0 / 6%);
  -moz-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 7px 0 rgb(0 0 0 / 6%);
  color: #000000;
  font-size: 0.868056rem;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

li {
  min-height: 20px;
  justify-content: space-between;
  margin: 6px;
  color: #010101;
  font-size: 0.868056rem;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

/* Hero section */
.hero-img {
  float: left;
  height: 450px;
  padding: 150px 45px 81px;
  position: relative;
  width: 100%;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  background: url(images/rectangle_3.png) no-repeat;
  background-size: cover;
}

.hero-text {
  color: #fff;
  margin: 2px 0 0;
  padding: 0;
  line-height: 36px;
  padding-left: 55px;
  font-size: 1.736111rem;
  font-weight: bold;
}

.hero-text-big {
  font-size: 3.472223rem;
}

.hero-subtext {
  color: #fff;
  margin: 25px 0 0;
  padding-left: 55px;
  font-size: 1.085069rem;
  line-height: 20.83333px;
  vertical-align: baseline;
}

.hero-btns {
  margin: 27px 0 0;
  position: relative;
  width: auto;
}

.image-text {
  width: 340px;
  height: 35px;
  padding-left: 20px;
  float: left;
}

.btn-secondary {
  float: right;
  margin: 0 13px 0 0;
  min-height: 37px;
  padding: 0px 15px 0px 15px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  background: #ff8303;
  -webkit-box-shadow: 0 0 24px 0 rgb(0 0 0 / 31%);
  -moz-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.31);
  box-shadow: 0 0 24px 0 rgb(0 0 0 / 31%);
  font-size: 0.878675rem;
  font-weight: 500;
  line-height: 37px;
  text-align: center;
}

.btn-secondary:hover {
  padding: 0px 15px 0px 15px;
  border: 1px solid #ff8303;
  background: transparent;
}

/* Quick Links */
.quick-links {
  float: left;
  min-height: 453px;
  padding: 15px 0 18px;
  position: relative;
  width: 100%;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  background: #ff8303;
  -webkit-box-shadow: 0 0 15px 0 rgb(0 0 0 / 8%);
  -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 15px 0 rgb(0 0 0 / 8%);
}

.accounts-section {
  min-height: 38px;
  padding: 3px 11px;
  margin-bottom: 10px;
  position: relative;
  background: #ffffff;
}

.accounts-main {
  margin: 5px 30px 0 30px;
  position: relative;
  width: auto;
}

nav.menu.navbar.navbar-expand-lg.navbar-light {
  background-color: #36454f;
}

.types-account {
  float: left;
  margin: 05px 9px 0 0;
}

.quick-heading {
  margin: 1px 0 0;
  color: #000000;
  font-size: 1.085069rem;
  font-weight: 600;
}

.quick-text p {
  color: #000000;
  font-size: 12px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  line-height: 19px;
  margin-bottom: 6px;
}

.quick-text a {
  text-decoration: none;
}

.quick-text p:hover {
  color: #ffffff;
}

.quick-box {
  min-height: 19px;
  padding: 0 5px;
  position: relative;
  -webkit-border-radius: 9.5px;
  -moz-border-radius: 9.5px;
  border-radius: 9.5px;
  background: rgba(255, 255, 255, 0.15);
}

/* Facts */
.facts-box {
  position: relative;
  top: 0;
  margin: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgb(0 0 0 / 8%);
  -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 15px 0 rgb(0 0 0 / 8%);
}

.facts-heading {
  color: #000000;
  font-size: 1.393227rem;
  font-weight: 600;
}

.facts-name {
  color: #9f9f9f;
  font-size: 0.783979rem;
  font-weight: 500;
}

/* What you like to do */

.heading {
  color: #272727;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}

.section-box-1 {
  margin-top: 25px;
  height: 240px;
  padding: 30px 20px 29px;
  position: relative;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  background: url(images/rounded_rectangle_3.png) no-repeat;
}

.section-box-2 {
  margin-top: 25px;
  height: 240px;
  padding: 30px 20px 29px;
  position: relative;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  background: url(images/rounded_rectangle_3_copy.png) no-repeat;
}

.section-box-3 {
  margin-top: 25px;
  height: 240px;
  padding: 30px 20px 29px;
  position: relative;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  background: url(images//rounded_rectangle_3_copy_.png) no-repeat;
}

.section-box-4 {
  margin-top: 25px;
  height: 240px;
  padding: 30px 20px 29px;
  position: relative;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  background: url(images/rounded_rectangle_3_copy__2.png) no-repeat;
}

.section-side {
  position: relative;
}

.section-head {
  margin: 2px 0 0;
  color: white;
  font-size: 2.170139rem;
  font-weight: 600;
}

.sub-text {
  margin: 12px 100px 0 58px;
  line-height: 24.30556px;
  font-size: 18px;
  color: #fff;
}

.baseline_account_balance_wallet_black_24dp {
  float: left;
  margin: 10px 15px 0 0;
}

.know-more-btn {
  margin: 40px auto 0;
  min-height: 40px;
  padding: 0 11px;
  position: relative;
  -webkit-border-radius: 21.17px;
  -moz-border-radius: 21.17px;
  border-radius: 21.17px;
  font-size: 1.085069rem;
  line-height: 40px;
  text-align: center;
}

.space_for-rent {
  height: 900px;
  margin: 80px auto 0;
  padding: 90px 0 60px;
  position: relative;
  background: url(images/buillding.png) no-repeat center 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.space_for-rent h2 {
  font-size: 50px;
  font-weight: 600;
}

.rectangle-parent15 {
  position: relative;
  left: 100.92px;
  width: 1103.22px;
  height: 140.5px;
}

.group-child70 {
  left: 0;
  background-color: var(--color-white);
  width: 1103.22px;
}

.group-child70,
.group-child71 {
  position: absolute;
  top: 46.5px;
  height: 94px;
}

.group-child71 {
  left: 711.4px;
  background-color: #fff0c5;
  width: 166.22px;
}

.group-child70,
.group-child71 {
  position: absolute;
  top: 46.5px;
  height: 94px;
}

.group-child72 {
  position: absolute;
  top: 70.25px;
  left: 903.35px;
  background-color: var(--color-orange);
  width: 179.09px;
  height: 53.43px;
}

.group-child73 {
  left: 0;
  background-color: var(--color-orange);
}

.group-child73,
.group-child74,
.group-child75 {
  position: absolute;
  top: 0;
  width: 157.32px;
  height: 46.5px;
}

.group-child74,
.group-child75 {
  left: 157.32px;
  background-color: #ff7849;
}

.group-child73,
.group-child74,
.group-child75 {
  position: absolute;
  top: 0;
  width: 157.32px;
  height: 46.5px;
}

.group-child75 {
  left: 314.64px;
  background-color: #ff6935;
}

.group-child74,
.group-child75 {
  left: 157.32px;
  background-color: #ff7849;
}

.search1 {
  top: 82.61px;
  left: 959.16px;
  font-size: var(--font-size-10xl);
  font-weight: 500;
  width: 71px;
  height: 28px;
}

.home-type,
.search1 {
  position: absolute;
  display: inline-block;
}

.home-type {
  top: 65.3px;
  left: 32.65px;
  font-weight: 600;
  width: 110.82px;
  height: 21.77px;
}

.home-type,
.search1 {
  position: absolute;
  display: inline-block;
}

.search2 {
  position: absolute;
  top: 65.3px;
  left: 371.04px;
  font-weight: 600;
  display: inline-block;
  width: 77.18px;
  height: 21.77px;
}

.find-something,
.home-type,
.search2 {
  color: var(--color-gray-100);
}

.advanced-search,
.find-something,
.select {
  position: absolute;
  font-weight: 500;
  display: inline-block;
}

.find-something {
  top: 87.07px;
  left: 368.07px;
  font-size: var(--font-size-lg);
  width: 118.73px;
  height: 16.82px;
}

.find-something,
.home-type,
.search2 {
  color: var(--color-gray-100);
}

.select {
  top: 96.96px;
  left: 32.65px;
  font-size: var(--font-size-lg);
  color: #2b2b2b;
  width: 43.54px;
  height: 16.82px;
}

.advanced-search,
.find-something,
.select {
  position: relative;
  font-weight: 500;
  display: inline-block;
}

.frame-icon2 {
  position: relative;
  top: 9.89px;
  left: 102.9px;
  width: 26.71px;
  height: 26.71px;
  overflow: hidden;
}

.frame-parent {
  top: 1455px;
  left: 74.92px;
  font-size: var(--font-size-3xl);
  color: var(--color-white);
}

.advanced-search {
  top: 0;
  left: 0;
  width: 91.03px;
  height: 43.54px;
}

.advanced-search,
.find-something,
.select {
  position: absolute;
  font-weight: 500;
  display: inline-block;
}

.advanced-search-parent {
  position: absolute;
  top: 72.23px;
  left: 733.17px;
  width: 129.62px;
  height: 43.54px;
  color: var(--color-black);
}

.group-child75 {
  left: 314.64px;
  background-color: #ff6935;
}

.group-icon4 {
  right: 67.8%;
  left: 29.6%;
}

.commercial {
  top: 15.61px;
  left: 468.16px;
  width: 96px;
  height: 15px;
}

.commercial,
.for-rent {
  position: absolute;
  top: 16.61px;
  left: 308.16px;
  font-size: var(--font-size-2xs);
  display: inline-block;
  width: 81px;
}

.group-child73,
.group-child74,
.group-child75 {
  position: absolute;
  top: 0;
  width: 157.32px;
  height: 46.5px;
}

.search1 {
  top: 82.61px;
  left: 959.16px;
  font-size: var(--font-size-10xl);
  font-weight: 500;
  width: 71px;
  height: 28px;
}

.for-rent {
  position: absolute;
  top: 16.61px;
  left: 228.16000000000003px;
  font-size: var(--font-size-2xs);
  display: inline-block;
  width: 81px;
}

.commercial {
  position: absolute;
  top: 16.61px;
  left: 360.15999999999997px;
  font-size: var(--font-size-2xs);
  display: inline-block;
  width: 81px;
}

.about-us {
  margin-block-start: 0;
  margin-block-end: 0;
}

.faqs {
  margin: 0;
}

.frame-icon2 {
  position: absolute;
  top: 9.89px;
  left: 102.9px;
  width: 26.71px;
  height: 26.71px;
  overflow: hidden;
}

.vector-icon11 {
  position: absolute;
  height: 11.97%;
  width: 1.52%;
  top: 61.27%;
  right: 39.19%;
  bottom: 26.76%;
  left: 59.28%;
  max-width: 100%;
  overflow: hidden;
  max-height: 100%;
}

.group-child76,
.group-child77 {
  position: absolute;
  top: 123.18px;
  left: 32.15px;
  border-top: 1px solid var(--color-gray-300);
  box-sizing: border-box;
  width: 276.06px;
  height: 1px;
}

.group-child77 {
  left: 370.54px;
  width: 300.8px;
}

.group-child76,
.group-child77 {
  position: absolute;
  top: 123.18px;
  left: 32.15px;
  border-top: 1px solid var(--color-gray-300);
  box-sizing: border-box;
  width: 276.06px;
  height: 1px;
}

.vector-icon12 {
  position: absolute;
  height: 4.93%;
  width: 1.17%;
  top: 71.83%;
  right: 72.11%;
  bottom: 23.24%;
  left: 26.73%;
  max-width: 100%;
  overflow: hidden;
  max-height: 100%;
}

.commercial,
.for-rent {
  position: absolute;
  top: 16.61px;
  left: 208.16px;
  font-size: var(--font-size-2xs);
  display: inline-block;
  width: 81px;
}

.commercial {
  top: 15.61px;
  left: 368.16px;
  width: 96px;
  height: 15px;
}

.group-icon4 {
  right: 67.8%;
  left: 29.6%;
}

.group-icon3,
.group-icon4 {
  position: absolute;
  height: 21.13%;
  width: 2.6%;
  top: 6.34%;
  right: 81.97%;
  bottom: 72.54%;
  left: 15.42%;
  max-width: 100%;
  overflow: hidden;
  max-height: 100%;
}

.for-sale-parent {
  position: absolute;
  top: 11.88px;
  left: 27.7px;
  width: 94px;
  height: 21.77px;
  font-size: var(--font-size-2xs);
}

.for-sale {
  position: absolute;
  top: 3.96px;
  left: 31.66px;
  display: inline-block;
  width: 62.33px;
  height: 14.84px;
}

.vector-icon13 {
  position: absolute;
  height: 100%;
  width: 23.16%;
  top: 0;
  right: 76.84%;
  bottom: 0;
  left: 0;
  max-width: 100%;
  overflow: hidden;
  max-height: 100%;
}

.find-your-dream {
  top: 176px;
  left: 342.08px;
  font-size: 56px;
  font-weight: 500;
  width: 680px;
  height: 67px;
}

.let-us-guide {
  top: 138px;
  left: 506.08px;
  font-size: 24px;
  font-weight: 500;
  width: 351px;
  height: 28px;
}

.find-your-dream,
.let-us-guide,
.znbs-properties {
  position: absolute;
  display: inline-block;
}

.search-istotope {
  margin: 0 auto;
  min-height: 55px;
  overflow: hidden;
  margin: 25px 10%;
  padding: 0 35px 0 52px;
  position: relative;
  width: auto;
  z-index: 256;
  border: 2px solid #ffffff;
  -webkit-border-radius: 30.5px;
  -moz-border-radius: 30.5px;
  border-radius: 30.5px;
}

.search-content {
  margin: 0 auto;
  margin-top: -25px;
  max-block-size: 60px;
  padding: 0 39px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  border: 2px solid #ffffff;
  -webkit-border-radius: 36px 0 0;
  -moz-border-radius: 36px 0 0;
  border-radius: 36px 36px 0 0;
}

.contry-select {
  display: block;
  width: 80%;
  margin-left: 10%;
  font-size: 1.5rem;
  border: 0;
  background: url(images/dropdown-icon.png) no-repeat right white;
  background-size: 16px;
  color: #fff;
  background-color: transparent;
}

.search-heading {
  text-align: center;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 50px;
  margin: auto;
}

.search-istotope .active {
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(95, 95, 95, 0.95);
  background: rgba(254, 254, 254, 0.95);
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: #ff8303;
  font-weight: 600;
  line-height: 50px;
}

.search-box {
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 2;
  font-size: 1.5rem;
  background-color: transparent;
  border: none;
  float: left;
  color: #f1f1f1;
  font-size: 1.519097rem;
}

.design-searchbox {
  border-left: 2px solid #fff;
  border-right: 2px solid #ffffff;
  height: 60px;
}

.property-search {
  float: left;
  max-height: 60px;
  margin-left: -12px;
  padding: 18px 60px 20px;
  position: relative;
  width: 120%;
  overflow: hidden;
  background: #ff8303;
}

.search-btn {
  float: left;
  margin: 0 12px 0 0;
}

.search {
  font-size: 1.636111rem;
  font-weight: 600;
  color: #ffffff;
}

.search-filters {
  margin: -2px auto 0;
  min-height: 61px;
  padding: 10px 46px 8px;
  position: relative;
  z-index: 263;
  border: 2px solid #ffffff;
  -webkit-border-radius: 0 0 36px 36px;
  -moz-border-radius: 0 0 36px 36px;
  border-radius: 0 0 36px 36px;
}

.radio-input {
  margin: 9px 0 0 11px;
}

.form-check-input:checked {
  background-color: #ff8303;
  border-color: #ff8303;
}

.spaces-rent-radio {
  float: left;
  margin: 1px 0 0 4px;
  font-size: 1.2rem;
  color: #ffffff;
}

.type-select {
  margin: 0 0 0 18px;
  min-height: 33px;
  padding: 6px 18px;
  position: relative;
  width: 220px;
  -webkit-border-radius: 19.5px;
  -moz-border-radius: 19.5px;
  border-radius: 19.5px;
  background: rgba(247, 247, 247, 0.2);
}

.type {
  margin: 0 0 0 1px;
  color: #dddddd;
  font-size: 1.1rem;
  font-weight: 500;
}

.ellipse-properties-1 {
  height: 225px;
  margin: 20px;
  max-width: 225px;
  width: 225px;
  margin: auto;
  border: 2px solid #ffffff;
  -webkit-border-radius: 118.69px;
  -moz-border-radius: 118.69px;
  border-radius: 118.69px;
  background: url(images/1.png) no-repeat -9px -9px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 2.158179rem;
  color: #ffffff;
  font-weight: bold;
  line-height: 225px;
  text-align: center;
}

.ellipse-properties-2 {
  height: 225px;
  margin: 20px;
  max-width: 225px;
  width: 225px;
  margin: auto;
  border: 2px solid #ffffff;
  -webkit-border-radius: 118.69px;
  -moz-border-radius: 118.69px;
  border-radius: 118.69px;
  background: url(images/2.png) no-repeat -9px -9px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 2.158179rem;
  color: #ffffff;
  font-weight: bold;
  line-height: 225px;
  text-align: center;
}

.ellipse-properties-3 {
  height: 225px;
  margin: 20px;
  max-width: 225px;
  width: 225px;
  margin: auto;
  border: 2px solid #ffffff;
  -webkit-border-radius: 118.69px;
  -moz-border-radius: 118.69px;
  border-radius: 118.69px;
  background: url(images/3.png) no-repeat -9px -9px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 2.158179rem;
  color: #ffffff;
  font-weight: bold;
  line-height: 225px;
  text-align: center;
}

.ellipse-properties-4 {
  height: 225px;
  margin: 20px;
  max-width: 225px;
  width: 225px;
  margin: auto;
  border: 2px solid #ffffff;
  -webkit-border-radius: 118.69px;
  -moz-border-radius: 118.69px;
  border-radius: 118.69px;
  background: url(images/4.png) no-repeat -9px -9px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 2.158179rem;
  color: #ffffff;
  font-weight: bold;
  line-height: 225px;
  text-align: center;
}

.group-33 {
  margin: 16px auto 0;
  position: relative;
}

.baseline_location_on_black_24dp {
  float: left;
  margin: 0 7px 0 0;
}

.property-text {
  margin: 7px 0 0;
  font-size: 0.868056rem;
  font-weight: 500;
  color: #ffffff;
}

.loan-heading {
  color: #262626;
  font-size: 2.604166rem;
  font-weight: bold;
  text-align: center;
}

.calculator-card {
  margin: 72px auto 0;
  min-height: 600px;
  position: relative;
  width: 100%;
  border: 2px solid #dddddd;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
}

.image-card {
  float: left;
  margin: -2px 20px 0 0;
  position: relative;
}

.cal-group .active {
  background-color: #ff8303 !important;
  color: #ffffff !important;
}

.cal-group-1 {
  height: 78px;
  left: 50%;
  position: absolute;
  top: 54px;
  width: 340px;
  margin-left: -78px;
}

.cal-head {
  font-size: 1.205221rem;
  font-weight: 600;
  line-height: 41px;
}

.cal-icon-1 {
  left: 50%;
  padding: 10px 0 12px;
  position: absolute;
  top: 0;
  width: 78px;
  -webkit-border-radius: 38.81px;
  -moz-border-radius: 38.81px;
  border-radius: 38.81px;
  background: #ffffff;
  -webkit-box-shadow: 0 0 43px 0 rgb(0 0 0 / 18%);
  -moz-box-shadow: 0 0 43px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 43px 0 rgb(0 0 0 / 18%);
  margin-left: 92px;
}

.head-group {
  left: 50%;
  max-height: 40px;
  padding: 0 11px;
  position: absolute;
  top: 21px;
  width: 301px;
  cursor: pointer;
  -webkit-border-radius: 20.4px;
  -moz-border-radius: 20.4px;
  border-radius: 20.4px;
  background: #ffffff;
  margin-left: -150px;
}

.cal-group .active {
  background-color: #ff8303 !important;
  color: #ffffff !important;
}

.cal-icon-1 img {
  display: block;
  margin: 0 auto;
}

.cal-group-2 {
  height: 78px;
  left: 50%;
  position: absolute;
  top: 180px;
  width: 340px;
  margin-left: -78px;
}

.cal-group-3 {
  height: 78px;
  left: 50%;
  position: absolute;
  top: 306px;
  width: 341px;
  margin-left: -78px;
}

.cal-group-4 {
  height: 78px;
  left: 50%;
  position: absolute;
  top: 437px;
  width: 340px;
  margin-left: -78px;
}

.cal-group-5 {
  height: 78px;
  left: 50%;
  position: absolute;
  top: 564px;
  width: 340px;
  margin-left: -78px;
}

.cal-icon {
  display: block;
  margin: 0 auto;
}

.cal-heading {
  color: #262626;
  font-size: 1.304167rem;
  font-weight: 400;
}

.cal-control {
  margin: 19px 0 0;
  min-height: 62px;
  padding: 0 26px;
  position: relative;
  width: 90%;
  border: 2px solid #dddddd;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.cal-control::placeholder {
  color: #e0e0e0;
  font-size: 1.136111rem;
  font-weight: 500;
  line-height: 62px;
}

.cal-button {
  display: flex;
  margin-top: 40px;
  margin-left: 25%;
  min-height: 50px;
  padding: 0 40px;
  -webkit-border-radius: 28.23px;
  -moz-border-radius: 28.23px;
  border-radius: 28.23px;
  background: #ff8303;
  -webkit-box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
  -moz-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
  font-size: 2.042397rem;
  font-weight: 600;
  line-height: 50px;
  text-align: center;
  color: #ffffff;
}

.cal-button:hover {
  color: #ff8303;
  background-color: #ffffff;
  border: 1px solid #ff8303;
}

.result-box {
  margin-top: 40px;
  min-height: 181px;
  padding: 15px 0 24px;
  width: 90%;
  position: relative;
  border: 2px solid #e0e0e0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.result-head {
  color: #262626;
  font-size: 1.736111rem;
  font-weight: 600;
  line-height: 34.72222px;
  text-align: center;
}

.result-show {
  display: table;
  margin: 16px auto 0;
  min-height: 56px;
  padding: 0 50px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  border-radius: 28px;
  background: #ff8303;
  -webkit-box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
  -moz-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
  font-size: 1.736111rem;
  font-weight: 600;
  line-height: 56px;
  color: #ffffff;
  text-align: center;
}

/* Donwload app */

.mobile-app {
  padding: 91px 0 101px;
  position: relative;
  background: #f1f1f1;
}

.app-image {
  margin-top: 40px;
}

.app-heading {
  color: #ff8303;
  font-size: 2.170139rem;
  font-weight: bold;
}

.app-text {
  margin: 24px 0 0 3px;
  width: auto;
  font-size: 1.1rem;
  margin-right: 120px;
  color: #979797;
  font-weight: 500;
  line-height: 25px;
}

.icon-list {
  margin-top: 30px;
  line-height: 8px;
  float: left;
  color: #979797;
  font-size: 1.085069rem;
}

.app-download-icon img {
  width: 175px;
  height: auto;
  margin-top: 30px;
  margin-right: 18px;
}

.about-head {
  color: #242424;
  font-size: 2.304167rem;
  font-weight: bold;
  text-align: center;
}

.image-box {
  float: left;
  height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: url(images/rounded_rectangle_5.png) no-repeat;
}

.video-player {
  left: 7.5px;
  margin: 0 auto;
  padding: 8px 0 7px;
  position: relative;
  width: 130px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: rgba(253, 239, 224, 0.3);
}

.vedio-icon {
  display: block;
  margin: 0 auto;
}

.about-content {
  margin-left: 30px;
  margin-right: 60px;
}

.sub-heading {
  color: #242424;
  font-size: 2.63604rem;
  font-weight: 600;
  line-height: 45px;
}

.sub-content {
  margin: 30px 0 0 1px;
  color: #5e5e5e;
  font-size: 1rem;
  line-height: 27.77778px;
}

.our-journy {
  float: left;
  margin: 1px 0 0;
  position: relative;
  width: auto;
}

.about-imges {
  display: block;
  width: 230px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.about-btns {
  margin: 29px auto 0;
  min-height: 50px;
  padding: 0 42px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 5.5px;
  width: 195px;
  text-decoration: none;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  background: #ff8303;
  font-size: 1.085069rem;
  font-weight: 600;
  line-height: 50px;
  text-align: center;
  color: #ffffff;
}

.our-team {
  float: right;
  position: relative;
  width: auto;
}

/* Post Section */

.post-group {
  float: left;
  margin: 43px 56px 0 0;
  min-height: 250px;
  position: relative;
  width: 100%;
  border: 1px solid #dddddd;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
  -moz-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
}

.post-image {
  float: left;
  margin: -1px 48px 0 0;
  width: 280px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px;
}

.post-content {
  float: left;
  margin: 30px 0 0;
  position: relative;
  width: 487px;
}

.post-heading {
  color: #3e3e3e;
  font-size: 2rem;
  font-weight: bold;
  line-height: 34.72222px;
}

.post-text {
  margin: 21px 0 0;
  color: #707070;
  font-size: 1rem;
  font-weight: 500;
  line-height: 17.36111px;
}

.hr-line {
  height: 1px;
  margin: 20px 0 0;
  position: relative;
  width: 462px;
  background: #ff8303;
}

.post-icons {
  margin: 12px 0 0 1px;
  position: relative;
  width: 486px;
}

.clock-icon {
  float: left;
  margin: 4px 0 0;
}

.icons-text-1 {
  float: left;
  margin: 0 0 0 9px;
  color: #888888;
  font-weight: 500;
}

.comment-icon {
  float: left;
  margin: 3px 0 0 29px;
}

.icons-text-2 {
  float: left;
  margin: 0 0 0 10px;
  color: #888888;
  font-weight: 500;
}

.share-icon {
  float: right;
  margin: 2px 5px 0;
}

.category-sec {
  float: left;
  position: relative;
  width: 100%;
}

.cat-heading {
  margin: 0 19px;
  position: relative;
}

.arrow-img {
  float: left;
  margin: 5px 18px 0 0;
}

.categories {
  color: #2a2a2a;
  font-weight: bold;
}

.list-box {
  margin: 21px 0 0;
  min-height: 250px;
  padding: 18px 28px 17px;
  position: relative;
  border: 1px solid #d7d7d7;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: #ffffff;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
  -moz-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
}

.categories-label {
  color: #5a5a5a;
  font-size: 0.94861rem;
}

.list-border {
  height: 1px;
  margin: 8px 0 8px;
  width: auto;
  background: rgba(255, 131, 3, 0.2);
}

.list-box .form-check-input {
  width: 0.8em;
  height: 0.8em;
}

.popular-sec {
  position: relative;
}

.popular-post-img {
  display: block;
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.post-date {
  margin: 11px 0 0 14px;
  color: #a2a1a1;
  font-size: 0.651042rem;
}

.post-des {
  margin: 4px 0 0 15px;
  color: #2a2a2a;
  font-size: 0.868056rem;
  font-weight: 500;
  line-height: 17.36111px;
}

.popular-post {
  color: #2a2a2a;
  font-weight: bold;
}

/* Get in touch */

.center-touch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us {
  /*margin: 86px auto 0;*/
  min-height: 520px;
  padding: 23px 40px 23px 49px;
  position: relative;
  width: 100%;
  border: 1px solid #d6d6d6;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
  -webkit-box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
  -moz-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
}

.get {
  float: left;
  margin: 15px 0 0;
  position: relative;
  width: 100%;
}

.get-heading {
  color: #ff8303;
  font-size: 1.870139rem;
  font-weight: bold;
}

.get-head-line {
  height: 1px;
  margin: 5px 0 0;
  margin-top: -10px;
  position: relative;
  width: 60px;
  background: #ff8303;
}

.input-form-input {
  margin: 12px auto 0;
  min-height: 40px;
  padding: 0 15px;
  position: relative;
  width: 90%;
  -webkit-border-radius: 21.5px;
  -moz-border-radius: 21.5px;
  border-radius: 21.5px;
  background: #f3f3f3;
  color: #d5d5d5;
  font-size: 0.868056rem;
  font-weight: 500;
  line-height: 40px;
}

.input-form-input::placeholder {
  color: #5b5b5b;
}

.contact-border {
  border-right: 1px solid #ff8303;
  height: 500px;
}

.contact-btn {
  left: 5%;
  margin: 12px auto 0;
  min-height: 43px;
  padding: 0 8px;
  position: relative;
  width: 150px;
  -webkit-border-radius: 21.5px;
  -moz-border-radius: 21.5px;
  border-radius: 21.5px;
  background: #ff8303;
  -webkit-box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
  -moz-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
  color: #fffefe;
  font-weight: 600;
  line-height: 43px;
  text-align: center;
}

.contact-btn:hover {
  left: 5%;
  margin: 12px auto 0;
  padding: 0 8px;
  position: relative;
  width: 150px;
  -webkit-border-radius: 21.5px;
  -moz-border-radius: 21.5px;
  border-radius: 21.5px;
  background: #ffffff;
  border: 1px solid #ff8303;
  -webkit-box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
  -moz-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
  color: #000000;
  font-weight: 600;
  line-height: 43px;
  text-align: center;
}

.con-quick {
  display: block;
  float: left;
  width: 100%;
}

.con-quick-links {
  float: left;
  color: #ffffff;
  left: 7px;
  margin: 20px auto 0;
  min-height: 32px;
  padding: 0 30px;
  position: relative;
  width: 240px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  background: #ff8303;
  -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 11%);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 11%);
  font-size: 1.085069rem;
  font-weight: 600;
  line-height: 32px;
}

.customer {
  margin: 100px 0 0;
  position: relative;
}

.contact-box {
  height: 166px;
  margin: 19px 0 0;
  position: relative;
  width: 100%;
}

.icons-line {
  padding: 15px 28px 50px;
  position: relative;
  top: 0;
  height: 150px;
  border: 1px solid #bfbfbf;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
}

.con-line-1 .con-icon {
  position: relative;
}

.con-text-1 {
  margin-left: 5px;
  position: relative;
  color: #313131;
  font-weight: 500;
  line-height: 21px;
}

.shape-line-1 {
  border-top: 1px solid #bfbfbf;
}

.con-line-2 .con-icon {
  position: relative;
}

.con-text-2 {
  position: relative;
  color: #313131;
  font-weight: 500;
  margin-left: 5px;
}

.shape-line-2 {
  position: relative;
  border-top: 1px solid #bfbfbf;
}

.con-line-3 .con-icon {
  position: relative;
}

.con-text-3 {
  position: relative;
  color: #313131;
  font-weight: 500;
  margin-left: 5px;
}

.shape-line-3 {
  position: relative;
  border-top: 1px solid #bfbfbf;
}

.logos {
  margin: 65px auto 30px;
  position: relative;
  height: 300px;
  background: #f4f4f4;
}

.parterners-logos {
  margin: 0 auto;
  padding: 0 29px 0 32px;
  position: relative;
  width: 100%;
  padding-top: 40px;
}

.parterners-logos img {
  width: 100%;
  margin: 20px 40px 40px 40px;
  height: auto;
}

.left-arrow {
  float: left;
  margin: 70px 0 0;
}

.parter-image {
  float: left;
  margin: 0 0 0 72px;
}

.right-arrow {
  float: left;
  margin: 70px 0 0 127px;
}

.map-search-group {
  left: 50%;
  min-height: 75px;
  padding: 13px 28px 15px 35px;
  position: relative;
  width: 70%;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
  background: #ff8303;
  margin-left: -449px;
}

.map-search-btn {
  float: right;
  padding: 8px 0;
  /*margin-top: -10px;*/
  position: relative;
  width: 180px;
  -webkit-border-radius: 22.5px;
  -moz-border-radius: 22.5px;
  border-radius: 22.5px;
  background: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 11%);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 11%);
}

.section-search {
  position: relative;
  float: left;
}

.shape-587 {
  float: left;
  height: 53px;
  width: 1px;
  background: #ffffff;
}

.map-icon {
  float: left;
  margin: 12px 0 0 14px;
}

.text-94 {
  float: left;
  margin: 12px 0 0 14px;
  color: #ffffff;
  font-weight: 600;
  background: none;
  outline: none;
  border: 0;
}

/* Clients logo slider  */

#client-logos .item {
  margin: 1px;
}
.cover-wrapper {
  padding: 60px;
}
.client-inners img {
  height: 100%;
  object-fit: contain;
}
.client-inners {
  height: 220px;
  text-align: center;
  padding: 8px;
}
.owl-nav img {
  width: 34px;
}
.owl-prev img {
  position: absolute;
  left: -38px;
  top: 50%;
  width: 20px;
  height: auto;
  margin-top: -20px;
}
.owl-next img {
  position: absolute;
  right: -38px;
  top: 50%;
  width: 20px;
  height: auto;
  margin-top: -20px;
}

/* Footer Section */

.footer {
  /* background-color: #FF8303;
   */
  background-color: #36454f;
  background-size: 100%;
  /* padding: 60px 20px 20px 20px; */
  color: #ffffff;
}

.footer img {
  width: 140px;
  height: auto;
}

.social-icons-back {
  position: relative;
  display: inline;
  margin: 10px 5px;
}

.footer a {
  color: #fffefe;
  text-decoration: none;
  display: inline;
}

footer p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
}

.footer-border-right {
  border-right: 1px solid #ffffff;
  height: 160px;
  margin: 10px 10px;
}

footer h5 {
  font-size: 23px;
  margin: 20px 0px;
  font-weight: 500;
}
.social-icons {
  font-size: 20px;
}

.footer-brand-right {
  float: right;
}

/* Mobile banking page Starting */
.nav-item .active {
  background-color: transparent;
  border-radius: 18px;
}

.mobile-bank-img {
  position: relative;
  max-width: 100%;
  height: 550px;
  background: url(images/mobile-bank.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}

.mobile-bank-img h1 {
  position: relative;
  width: 378px;
  left: 70px;
  top: 100px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 49px;
  color: #323232;
}

.mobile-bank-button button {
  position: relative;
  height: 20px;
  width: 156px;
  left: 179px;
  top: 135px;
  color: #ffffff;
}

.mobile-bank-button button:hover {
  position: relative;
  height: 20px;
  width: 160px;
  border-radius: nullpx;
}

.Bank-lappy-img img {
  position: relative;
  width: 476px;
  height: 269px;
  left: 19px;
  top: 130px;
}

.mb-heading {
  font-family: Montserrat;
  font-size: 45px;
  font-weight: 500;
  line-height: 67px;
  letter-spacing: 0em;
  text-align: left;
}

.mb-app img {
  width: 175px;
  height: auto;
  margin-right: 18px;
  margin-bottom: 20px;
}

.app-content {
  left: 10px;
  margin-right: 10%;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #727272;
}

.app-points ul li::before {
  content: "\2022";
  color: #ff8303;
  font-weight: bold;
  font-size: 1.6rem;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.app-points li {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: #131313;
}

/* Internet Banking Page */

.internet-bank-img {
  position: relative;
  max-width: 100%;
  height: 550px;
  background: url(images/internet-bank.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}

.internet-lappy-img {
  position: relative;
  height: 338px;
  width: 476px;
  left: 10px;
  top: 50px;
  border-radius: 0px;
}

.internet-bank-img h1 {
  position: relative;
  width: 378px;
  left: 70px;
  top: 80px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 49px;
  color: #323232;
}

.internet-bank-button button {
  position: relative;
  height: 20px;
  width: 160px;
  left: 179px;
  top: 40px;
  color: #ffffff;
}

.internet-bank-button button:hover {
  position: relative;
  height: 20px;
  width: 160px;
  border-radius: nullpx;
}

.website-heading {
  height: 37px;
  width: 265px;
  left: 166px;
  top: 604px;
}

.internet-bank-img h3 {
  position: relative;
  width: 378px;
  left: 155px;
  top: 60px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  color: #323232;
}

.banking-heading {
  position: relative;
  font-family: Montserrat;
  font-size: 45px;
  font-weight: 500;
  line-height: 67px;
  letter-spacing: 0em;
  text-align: center;
}

.internet-banking-box {
  position: relative;
  margin: auto;
  width: 520px;
  height: 100px;
  background-color: #ff8303;
  border-radius: 19px;
}

.internet-banking-box h4 {
  font-family: Montserrat;
  text-align: center;
  font-size: 36px;
  padding-top: 20px;
  color: #ffffff;
  font-weight: 500;
  line-height: 67px;
  letter-spacing: 0em;
  text-align: center;
}

.internet-banking-text h5 {
  font-family: Montserrat;
  font-size: 26px;
  font-weight: 500;
  line-height: 37px;
  letter-spacing: 0em;
}

/* Agency Banking */

.agency-bank-img {
  position: relative;
  max-width: 100%;
  height: 550px;
  background: url(images/agency-banking.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}

.agency-bank-img h1 {
  position: relative;
  width: 378px;
  left: 70px;
  top: 80px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 49px;
  color: #323232;
}

/* MORTGAGE LOANS  PAGE*/

.mortage-heading h1 {
  position: relative;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 44px;
  margin-top: 75px;
  color: #323232;
  line-height: 0;
  padding-bottom: 10px;
}

.horizantal-border {
  border: 1px solid #ff8303;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.mortage-para p {
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: left;
  color: #727272;
  margin-right: 5%;
  margin-top: 20px;
  margin-bottom: 40px;
}

.moratage-box {
  width: auto;
  position: relative;
  height: 300px;
  padding: 40px 40px 40px 40px;
  border-radius: 29px;
}

.moratage-box h3 {
  font-family: Montserrat;
  font-size: 32px;
  font-weight: 500;
  line-height: 49px;
  color: #ffffff;
}

.moratage-box p {
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: #ffffff;
}

.moratage-box .border-down {
  border: 1px solid #ff8303;
  margin-right: 15%;
}

.moratage-box button {
  color: #ffffff;
}

.moratage-box button:hover {
  color: #ffffff;
}

.mortagebox-1 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/MORTGAGE-1.jpg");
  border-radius: 29px;
}

.mortagebox-2 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/MORTGAGE-2.jpg");
  border-radius: 29px;
  background-repeat: no-repeat;
  background-size: cover;
}

.mortagebox-3 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/MORTGAGE-3.jpg");
  border-radius: 29px;
}

.mortagebox-4 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/MORTGAGE-4.jpg");
  border-radius: 29px;
}

.mortagebox-5 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/MORTGAGE-5.jpg");
  border-radius: 29px;
}

/* about Us page */

.about-card {
  position: relative;
  width: 100%;
  height: auto;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.17);
  border-radius: 21px;
}

.about-card-img {
  position: relative;
  margin-left: -12px;
}

.about-card-img img {
  border-radius: 21px 0px 0px 21px;
}

.about-card-text h1 {
  position: relative;
  width: 100%;
  top: 20px;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 110px;
  line-height: 140px;
  color: #262626;
}

.about-card-text p {
  position: relative;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  margin-right: 20px;
  line-height: 18px;
  color: #727272;
  margin-top: 30px;
}

/* about us section */
.aboutus-head {
  position: relative;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  color: #000000;
  text-align: center;
}

.about-vedio-img {
  position: relative;
  width: 100%;
  height: 750px;
  background: url(images/about-us-video.png);
  background-size: cover;
  border-radius: 13px;
  margin-bottom: 20px;
}

.viedo-payer {
  position: absolute;
  margin: auto;
  width: 120px;
  height: 90px;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  background: rgba(217, 217, 217, 0.17);
}

.vedio-icon img {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-content h1 {
  position: relative;
  width: 100%;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  color: #262626;
}

.about-text-line {
  position: relative;
  width: 100px;
  margin-top: 15px;
  border-bottom: 3px solid #000000;
}

.about-text-para {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  margin-top: 30px;
  color: #727272;
}

.para-2 {
  margin-top: 26px;
}

.card-image {
  margin: 12px;
}

.card-image img {
  border-radius: 11px;
}

.image-button {
  position: relative;
}

.image-button button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 45px;
  width: 150px;
  margin-top: 30px;
  border-radius: 50px;
  color: #ffffff;
}

.image-button button:hover {
  height: 45px;
  width: 150px;
  border-radius: 50px;
}

/* Our drive and passion section */
.our-missions {
  position: relative;
  width: 100%;
  height: 400px;
  background: url(images/Mission.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.our-vision {
  position: relative;
  width: 100%;
  height: 185px;
  background: url(images/Vission.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.our-value {
  position: relative;
  width: 100%;
  height: 185px;
  margin-top: 30px;
  background: url(images/Core.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.values-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.big-letter h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-size: 180px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.15);
}

.big-letter-text p {
  font-family: Montserrat;
  font-size: 23px;
  font-weight: 500;
  line-height: 38px;
  text-align: center;
  color: #ffffff;
}

.greate-mission-box {
  background: linear-gradient(
    232.5deg,
    rgba(255, 131, 3, 0.07) 56.6%,
    rgba(222, 114, 3, 0) 76.42%
  );
  width: 100%;
  height: 400px;
  padding: 80px 60px 40px 60px;
}

.head-bottom-line {
  position: relative;
  width: 100px;
  margin: 15px 0px 15px 0px;
  border-bottom: 3px solid #000000;
}

.great-heading h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  line-height: 56px;
  color: #000000;
}

.great-para p {
  font-family: "Montserrat";
  font-style: normal;
  margin-top: 40px;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #727272;
}

/* Management Page */

.management-head h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 44px;
  line-height: 61px;
  color: #262626;
}

.management-des {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #727272;
}

.team-main-image img {
  border-radius: 12px;
}

.team-content {
  padding: 60px 30px 30px 30px;
}

.team-heading h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 45px;
  color: #262626;
}

.team-position h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 39px;
  color: #727272;
}

.team-bottom-line {
  border-bottom: 3px solid #000000;
  margin-top: 10px;
  width: 80px;
}

.team-description {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  text-align: justify;
  color: #727272;
}

/* Board Members */
.board-team-box-1 {
  background-image: url("images/board_team/2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 300px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.board-team-box-2 {
  background-image: url("images/board_team/3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 300px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.board-team-box-3 {
  background-image: url("images/board_team/4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 300px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.board-team-box-4 {
  background-image: url("images/board_team/5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 300px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.board-team-box-5 {
  background-image: url("images/board_team/6.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 300px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.board-team-box-6 {
  background-image: url("images/board_team/7.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 300px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.team-group {
  margin: 10px;
}

.team-box-1 {
  background-image: url("images/team/2.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 300px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.team-box-1:hover {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/team/2.png");
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 60px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.team-box-2 {
  background-image: url("images/team/3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 300px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.team-box-2:hover {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/team/3.jpg");
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 60px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.team-box-3 {
  background-image: url("images/team/4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 300px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.team-box-3:hover {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/team/4.jpg");
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 60px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.team-box-4 {
  background-image: url("images/team/5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 300px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.team-box-4:hover {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/team/5.jpg");
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 60px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.team-box-5 {
  background-image: url("images/team/7.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 300px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.team-box-5:hover {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/team/7.jpg");
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 60px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.team-box-6 {
  background-image: url("images/team/6.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 300px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.team-box-6:hover {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/team/6.jpg");
  height: 400px;
  width: auto;
  border-radius: 12px;
  padding: 60px 20px 20px 20px;
  color: #ffffff;
  cursor: pointer;
}

.left-line {
  border-left: 2px solid #ff6935;
  height: 40px;
}

.team-box-heading h4 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  margin-left: 5px;
  line-height: 22px;
  color: #ffffff;
}

.team-box-designation p {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-left: 5px;
  margin-top: -10px;
  letter-spacing: 0em;
  text-align: left;
}

.team-know-more {
  position: relative;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  color: #ffffff;
  opacity: 1;
}

.team-know-more-back {
  position: relative;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  color: #ffffff;
  opacity: 0;
  display: none;
  overflow: hidden;
}

.hover-text {
  opacity: 0;
  font-size: 12px;
  display: none;
  overflow: hidden;
}

.team-group:hover .team-know-more-back {
  opacity: 1;
  display: block;
}

.team-group:hover .team-know-more {
  opacity: 0;
  display: none;
  overflow: hidden;
}

.team-group:hover .left-line {
  opacity: 0;
  display: none;
  overflow: hidden;
}

.team-group:hover .team-box-heading {
  opacity: 0;
  display: none;
  overflow: hidden;
}

.team-group:hover .team-box-designation {
  opacity: 0;
  display: none;
  overflow: hidden;
}

.team-group:hover .hover-text {
  opacity: 1;
  display: block;
  overflow: hidden;
}

/* News Page */

.news-image img {
  border-radius: 12px;
}

.news-title h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 65px;
  color: #262626;
}

.news-bottom-line {
  position: relative;
  width: 110px;
  margin: 20px 0px;
  border-bottom: 4px solid #ff8303;
}

.news-content {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 30px;
  text-align: justify;
  color: #727272;
  margin-right: 30px;
}

.post-bottom-line {
  border-bottom: 1px solid #ff8303;
  margin: 10px 0px;
}

.post-action-btn {
  padding-bottom: 50px;
}

.post-action-btn p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  color: #000000;
}

.post-section img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
}

.post-section h5 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  line-height: 18px;
  color: #000000;
}

/* Acccounts sections */

.accountbanner {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 12px;
}

.personal-account {
  background-image: url(images/personal-loan.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
}

.salary-account {
  background-image: url(images/Salary-account.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
}

.stop-order-account {
  background-image: url(images/stop-order-account.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
}

.student-account {
  background-image: url(images/student-account.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
}

.pensioners-account {
  background-image: url(images/pensioners-account.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
}

.fd-account {
  background-image: url(images/fd-account.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
}

.flexi-account {
  background-image: url(images/flexi-account.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
}

.business-account {
  background-image: url(images/business-account.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
}

.accounts-center {
  padding: 66px 0px;
}

.account-heading h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 45px;
  line-height: 50px;
  color: #ffffff;
}

.account-button button {
  background-color: #ff8303;
  border-radius: 50px;
  color: #ffffff;
  margin-top: 10px;
  padding: 8px 55px;
  border: none;
}

.account-button button:hover {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ff8303;
}

.account-button-text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 37px;
  color: #ffffff;
}

.accouint-main-head h2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 45px;
  margin: 10px 0px;
  line-height: 67px;
  color: #323232;
}

.account-sub-content p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #727272;
}

.heading-box {
  width: 300px;
  height: 55px;
  background: #f4f4f4;
  box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 12px 10px;
  margin-top: 50px;
}

.heading-box h3 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #ff8303;
}

.big-box-head {
  width: 400px;
}

.bullet-box {
  margin: 15px 0px;
}

.bullet-box img {
  margin-left: 20px;
}

.bullet-box p {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  color: #474747;
  font-family: "Montserrat";
}

/* savings accounts */

.bank-accounts-headings h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 45px;
  color: #323232;
}

.accounts-boxes {
  position: relative;
  height: 300px;
  border-radius: 12px;
}

.personal-account-box {
  width: 100%;
  height: 100%;
  background: url(images/personal-account-box.png);
  background-size: cover;
  padding: 120px;
  background-repeat: no-repeat;
  border-radius: 12px;
}

.salary-account-box {
  width: 100%;
  height: 100%;
  background: url(images/salary-account-box.png);
  background-size: cover;
  padding: 120px;
  background-repeat: no-repeat;
  border-radius: 12px;
}

.stop-order-account-box {
  width: 100%;
  height: 100%;
  background: url(images/stop-order-account.png);
  background-size: cover;
  padding: 120px;
  background-repeat: no-repeat;
  border-radius: 12px;
}

.student-account-box {
  width: 100%;
  height: 100%;
  background: url(images/student-account.png);
  background-size: cover;
  padding: 120px;
  background-repeat: no-repeat;
  border-radius: 12px;
}

.pensioners-account-box {
  width: 100%;
  height: 100%;
  background: url(images/pensioners-account-box.png);
  background-size: cover;
  padding: 120px;
  background-repeat: no-repeat;
  border-radius: 12px;
}

.business-account-box {
  width: 100%;
  height: 100%;
  background: url(images/business-account-box.png);
  background-size: cover;
  padding: 120px;
  background-repeat: no-repeat;
  border-radius: 12px;
}

.fd-account-box {
  width: 100%;
  height: 100%;
  background: url(images/fd-account-box.png);
  background-size: cover;
  padding: 120px;
  background-repeat: no-repeat;
  border-radius: 12px;
}

.flexi-fixed-box {
  width: 100%;
  height: 100%;
  background: url(images/flaxi-fixed-box.png);
  background-size: cover;
  padding: 120px;
  background-repeat: no-repeat;
  border-radius: 12px;
}

.accounts-box-headings {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 37px;
  color: #ff8303;
}

.accounts-box-know-more {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  display: inline;
}

.accounts-box-know-more a {
  text-decoration: none;
  color: #ffffff;
}

/* Banking Loans Page */

.banking-loans-headings h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 44px;
  line-height: 50px;
  margin-top: 60px;
  color: #262626;
}

.loans-boxes {
  position: relative;
  height: 270px;
  border-radius: 12px;
}

.friendly-loan {
  height: 270px;
  border-radius: 12px;
  background-image: url(images/friendly-loan.png);
  padding: 30px;
}

.psmd-loan {
  height: 270px;
  border-radius: 12px;
  background-image: url(images/psmd.png);
  padding: 30px;
}

.salary-advance-loan {
  height: 270px;
  border-radius: 12px;
  background-image: url(images/salary-advance.png);
  padding: 30px;
}

.building-materials-loan {
  height: 270px;
  border-radius: 12px;
  background-image: url(images/building-materials-loan.png);
  padding: 30px;
}

.loans-boxes h3 {
  color: #ffffff;
  font-family: Montserrat;
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
  letter-spacing: 1px;
}

.loans-bottom-line {
  margin: 15px 0px;
  border-bottom: 1px solid #ffffff;
}

.loans-points {
  margin-left: 10px;
  color: #ffffff;
}

.loans-points p {
  font-family: Montserrat;
  font-size: 17px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
}

.loans-button button {
  position: relative;
  background-color: #ff8303;
  border: 0;
  padding: 7px 30px;
  border-radius: 12px;
  color: #ffffff;
  font-family: "Montserrat";
  margin-top: 40px;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
}

.loans-button button:hover {
  position: relative;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ff6935;
}

/* complaint page */

.complaint-img {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(images/complent.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
}

/* feedback page */

.feedback-img {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(images/feedback.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
}

/* Branch Page */

.feedback-img {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(images/locator.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
}

.download-img {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(images/downloads.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
}

/* Contact Us Page */

.contact-us-img {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(images/contactus.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  height: 250px;
}

.contact-banner h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  padding-top: 100px;
  font-size: 48px;
  line-height: 50px;
  color: #ffffff;
}

.contact-us-heading h1 {
  font-family: Montserrat;
  font-size: 44px;
  font-weight: 600;
  line-height: 50px;
  text-align: center;
}

.contact-us-box {
  width: 100%;
  height: 180px;
  padding: 40px 20px 20px 20px;
  padding: auto;
  background-color: #fff0c56c;
  margin-bottom: 90px;
  border-radius: 15px;
}

.contact-us-box h4 {
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 600;
  padding-top: 8px;
  line-height: 30px;
}

.contact-us-box h5 {
  font-family: Montserrat;
  font-size: 19px;
  font-weight: 500;
  margin-top: 10px;
  line-height: 20px;
}

.contact-us-form-btn button {
  font-family: Montserrat;
  font-size: 19px;
  font-weight: 500;
}

.contact-us-form-btn button:hover {
  font-size: 19px;
}

/* Diaspora mortagage Page */

.diaspora-mortage-headings h1 {
  font-family: Montserrat;
  font-size: 44px;
  font-weight: 600;
  margin: 50px 0px;
  line-height: 55px;
  letter-spacing: 0em;
}

.diaspora-mortage-image {
  padding: 70px 20px 60px 40px;
  background-image: url(images/diasporamortgage.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 400px;
  border-radius: 12px;
}

.diaspora-mortage-image h1 {
  font-family: "Montserrat";
  font-size: 48px;
  font-weight: 600;
  padding: 40px 0px 0px 0px;
}

.diaspora-mortage-image p {
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 600;
  padding: 5px 0px;
}

.diaspora-mortage-image button {
  margin-top: 20px;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 600;
  line-height: 17px;
  border: none;
  width: 180px;
  height: 40px;
  background: #ffffff;
  color: #ff8303;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.17);
  border-radius: 50px;
}

.diaspora-mortage-image button:hover {
  border: 2px solid #ff8303;
  background: transparent;
  color: #131313;
}

.mortage-paragraph p {
  margin: 60px 20px 80px 20px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #131313;
}

.sep-form-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .con-sec span {
    font-size: 12px !important;
  }
}

@media (max-width: 991.98px) {
  .hero-img {
    margin-bottom: 30px;
    padding: 100px 30px 60px;
  }
  ul.navbar-nav.mr-auto.mb-2.mb-lg-0 {
    background: #36454f;
  }
  p.test1 {
    color: white;
    margin: 0;
  }
  .hero-button {
    position: relative;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sub-text {
    margin: 12px 20px 0 45px;
  }

  .heading {
    font-size: 2rem;
  }

  .section-head {
    font-size: 1.5rem;
  }

  .know-more-btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .logo-caption {
    width: 100px;
    height: 62px;
  }
  ul.navbar-nav.mr-auto.mb-2.mb-lg-0 {
    background: #36454f;
  }
  p.test1 {
    color: white;
    margin: 0;
  }
  .hero-img {
    margin-bottom: 30px;
    padding: 50px 15px 60px;
  }

  .image-text {
    width: 220px;
    height: auto;
    padding-left: 20px;
    align-items: center;
  }

  .btn-secondary {
    display: flex;
    margin: 0 8px 0 0;
    min-height: 35px;
    padding: 0px 10px 0px 10px;
    font-size: 11px;
  }

  .hero-text-big {
    font-size: 2.4rem;
  }

  .hero-text {
    font-size: 22px;
    padding-left: 20px;
  }

  .hero-subtext {
    color: #fff;
    margin: 20px 0 0;
    padding-left: 20px;
  }

  .heading {
    font-size: 1.5rem;
  }

  .section-head {
    font-size: 1.3rem;
    line-height: 18px;
  }

  .know-more-btn .btn-secondary {
    font-size: 13px;
    padding: 0px 20px 0px 20px;
  }

  .search-istotope .active {
    line-height: 20px;
  }

  .facts-heading {
    font-size: 1rem;
  }

  .design-searchbox {
    border-left: none;
    border-right: none;
  }

  .space_for-rent {
    height: 975px;
    margin: 80px auto 0;
  }

  .space_for-rent h5 {
    font-size: 14px;
  }

  .space_for-rent h2 {
    font-size: 24px;
    font-weight: 600;
  }

  .country-name {
    margin-top: 100px;
  }

  .search-radio {
    margin-top: 100px;
  }

  .property-search {
    float: left;
    max-height: 60px;
    margin-left: -12px;
    padding: 18px 60px 20px;
    position: relative;
    width: 298px;
    -webkit-border-radius: 0 36px 0 0;
    -moz-border-radius: 0 36px 0 0;
    border-radius: 0 36px 0 0;
    background: #ff8303;
  }

  .search {
    font-size: 1.111rem;
    font-weight: 600;
    padding-left: 20px;
    color: #ffffff;
  }

  .property-search {
    float: left;
    max-height: 60px;
    border-radius: 20px;
    padding: 10px 30px 10px;
    position: relative;
    width: 250px;
  }

  .loan-heading {
    font-size: 1.404166rem;
  }

  .image-card {
    width: 100%;
    overflow: hidden;
  }

  .image-card .cal-img {
    width: 100%;
    overflow: hidden;
  }

  .cal-group-1 {
    height: 20px;
    left: 45%;
    position: absolute;
    top: 54px;
    width: 220px;
  }

  .head-group {
    max-height: 40px;
    padding: 0 11px;
    position: absolute;
    top: 21px;
    width: 200px;
    -webkit-border-radius: 20.4px;
    -moz-border-radius: 20.4px;
    border-radius: 20.4px;
    background: #ffffff;
  }

  .cal-head {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
    line-height: 30px;
  }

  .cal-icon-1 {
    position: absolute;
    top: 15px;
    width: 50px;
    left: 20px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
  }

  .cal-icon-1 img {
    display: block;
    margin: 0 auto;
    width: 25px;
    height: 30px;
  }

  .cal-group-1 {
    height: 20px;
    left: 50%;
    position: absolute;
    top: 10px;
    width: 220px;
  }

  .cal-group-2 {
    left: 50%;
    position: absolute;
    top: 80px;
    width: 220px;
  }

  .cal-group-3 {
    left: 50%;
    position: absolute;
    top: 150px;
    width: 220px;
  }

  .cal-group-4 {
    left: 50%;
    position: absolute;
    top: 220px;
    width: 220px;
  }

  .cal-group-5 {
    left: 50%;
    position: absolute;
    top: 290px;
    width: 220px;
  }

  /* calculators */

  .cal-heading {
    color: #262626;
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 20px;
  }

  .cal-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    min-height: 40px;
    font-size: 1.12397rem;
  }

  .cal-control {
    margin: 3px 0 0;
    min-height: 50px;
    width: 100%;
  }

  .result-box {
    margin-top: 20px;
    margin-bottom: 20px;
    min-height: 150px;
    width: 100%;
    position: relative;
  }

  .result-head {
    font-size: 1.26111rem;
    font-weight: 500;
    line-height: 24.72222px;
    text-align: center;
  }

  .result-show {
    min-height: 40px;
    padding: 0 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    font-size: 1.16111rem;
    font-weight: 500;
    line-height: 40px;
  }

  /* app downlod */

  .app-image {
    margin-top: -10px;
  }

  .app-heading {
    font-size: 1.4rem;
    margin-top: 20px;
    text-align: center;
  }

  .app-text {
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    padding-right: 10px;
  }

  .icon-list {
    line-height: 28px;
  }

  .app-download-icon img {
    width: 125px;
    height: auto;
    margin-top: 30px;
  }

  /* News Section for home page */

  .post-group {
    width: 100%;
  }

  .post-image {
    float: left;
    margin: -1px 48px 0 0;
    width: 100%;
    border-radius: 10px 10px 10px 10px;
  }

  .post-content {
    margin: 30px 10px 10px 10px;
    padding: 0px 5px 0px 5px;
    width: 100%;
  }

  .post-heading {
    color: #5a5a5a;
    font-size: 22px;
    padding: 0px 5px 0px 5px;
    line-height: 30px;
  }

  .post-text {
    margin: 20px 10px 10px 10px;
    font-size: 0.81042rem;
  }

  .hr-line {
    width: 90%;
  }

  .post-icons {
    width: 100%;
  }

  .share-icon {
    margin-right: 20px;
  }

  .category-sec {
    margin-top: 30px;
  }

  /* Get in touch on home page */

  .contact-us {
    margin: 20px auto 0;
    padding: 20px 20px 20px 20px;
  }

  .get {
    text-align: center;
  }

  .get-heading {
    color: #ff8303;
    font-size: 1.870139rem;
    font-weight: bold;
    text-align: center;
  }

  .get-head-line {
    margin: 5px auto;
    margin-top: -5px;
  }

  .input-form-input {
    margin: 12px auto;
    width: 100%;
  }

  .contact-border {
    border-right: none;
  }

  .contact-btn {
    left: 0%;
    padding: 0 8px;
    line-height: 40px;
  }

  .contact-btn:hover {
    left: 0%;
    line-height: 40px;
  }

  .con-quick {
    float: none;
    text-align: center;
    text-decoration: none;
    margin-bottom: -25px;
  }

  .con-quick a {
    text-decoration: none;
  }

  .con-quick-links {
    float: none;
    align-items: center;
    left: 0px;
    margin: 10px auto;
    min-height: 30px;
    padding: 0 15px;
    width: 200px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 30px;
  }

  .customer {
    margin: 40px 0 0;
  }

  .contact-box {
    height: 180px;
    width: 100%;
  }

  img.con-icon {
    width: 8%;
    height: auto;
  }

  .icons-line {
    padding: 10px 14px 20px;
    height: 130px;
    width: 100%;
  }

  .con-sec p {
    font-size: 13px;
  }

  /*12-06-2023*/

  .fd-account-box {
    padding: 50px 20px;
  }

  .flexi-fixed-box {
    margin-top: 20px;
    padding: 50px 20px;
  }

  .flexi-account {
    height: 200px;
  }

  .agency-bank-img h1 {
    width: 100%;
    left: 10px;
    top: 100px;
    line-height: 30px;
    text-align: center;
    font-size: 24px;
  }

  .agency-bank-img {
    height: 200px;
  }

  .business-account-box {
    padding: 50px 20px;
  }

  .business-account {
    height: 200px;
  }

  /* about-us */

  .image-box {
    float: left;
    height: 350px;
    position: relative;
    width: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: url(images/building.png) no-repeat;
  }

  .about-content {
    margin-left: 10px;
    margin-right: 20px;
  }

  .sub-heading {
    color: #242424;
    font-size: 1.4604rem;
    font-weight: 500;
    margin-top: 20px;
    line-height: 28px;
  }

  .about-imges {
    display: block;
    width: 150px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }

  .about-btns {
    margin: 18px auto 0;
    min-height: 40px;
    padding: 0 22px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 5.5px;
    width: 150px;
    text-decoration: none;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 25px;
    background: #ff8303;
    font-size: 0.95069rem;
    font-weight: 500;
    line-height: 40px;
  }

  .rectangle-parent15 {
    position: relative;
    left: 10px;
    width: 100%;
    height: 140.5px;
  }

  /* mobile banking page  */

  .mobile-bank-img {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 450px;
    margin-left: -10px;
    margin-bottom: 25px;
  }

  .mobile-bank-img h1 {
    width: 100%;
    left: 20px;
    top: 100px;
    line-height: 30px;
    text-align: center;
    font-size: 25px;
  }

  .Bank-lappy-img img {
    width: 100%;
    height: 100%;
  }

  .mobile-bank-button button {
    position: relative;
    height: 20px;
    width: 156px;
    left: 85px;
    top: 160px;
    color: #ffffff;
  }

  .mb-heading {
    margin-top: 30px;
    font-size: 30px;
  }

  .mb-app img {
    width: 125px;
    height: auto;
    margin-right: 18px;
    margin-bottom: 20px;
  }

  .app-content {
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
  }

  .app-points ul li::before {
    font-size: 1.4rem;
  }

  .app-points li {
    font-size: 17px;
  }

  /* Internet banking page */

  .internet-bank-img {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 450px;
    margin-left: -10px;
    margin-bottom: 25px;
  }

  .internet-bank-img h1 {
    width: 100%;
    left: 10px;
    top: 100px;
    line-height: 30px;
    text-align: center;
    font-size: 24px;
  }

  .internet-lappy-img {
    position: relative;
    width: 100%;
    height: auto;
    left: 10px;
    top: 100px;
    max-width: 400px;
    margin-left: -10px;
    margin-bottom: 25px;
  }

  .internet-bank-button button {
    position: relative;
    height: 20px;
    width: 156px;
    left: 72px;
    top: 100px;
    color: #ffffff;
  }

  .internet-bank-img h3 {
    position: relative;
    width: 220px;
    left: 72px;
    top: 120px;
    font-family: "Montserrat";
    font-style: normal;
    font-size: 18px;
  }

  .banking-heading {
    font-size: 25px;
    margin-top: 100px;
  }

  .internet-banking-box {
    position: relative;
    margin: auto;
    width: 300px;
    height: 60px;
    background-color: #ff8303;
    border-radius: 19px;
  }

  .internet-banking-box h4 {
    font-size: 22px;
    padding-top: 0px;
  }

  .internet-banking-text h5 {
    font-size: 17px;
  }

  /* Mortage section */

  .mortage-heading h1 {
    font-size: 22px;
    line-height: 10px;
  }

  .horizantal-border {
    border: 1px solid #ff8303;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
  }

  .mortage-para p {
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
    margin-right: 20px;
    margin-top: 20px;
  }

  .moratage-box {
    height: 350px;
    padding: 25px 25px 25px 25px;
    border-radius: 20px;
  }

  .mortagebox-1 {
    margin-top: 23px;
  }

  .mortagebox-3 {
    margin-bottom: 23px;
  }

  .moratage-box h3 {
    margin-top: 30px;
    font-size: 23px;
    font-weight: 500;
    line-height: 25px;
    color: #ffffff;
  }

  .moratage-box p {
    margin-top: 25px;
    font-size: 14px;
    line-height: 23px;
  }

  .moratage-box .border-down {
    margin-right: 5%;
  }

  .moratage-box button {
    margin-top: 10px;
  }

  /* about Us page */

  .about-card-img {
    position: relative;
    margin: auto;
    margin-top: 10px;
  }

  .about-card-img img {
    border-radius: 20px 20px 20px 22px;
  }

  .about-card-text h1 {
    text-align: center;
    font-size: 45px;
    line-height: 60px;
  }

  .about-card-text p {
    margin: 0px 10px 0px 10px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 20px;
    margin-top: 30px;
  }

  /* about us section */
  .aboutus-head {
    font-size: 25px;
  }

  .about-vedio-img {
    height: 350px;
  }

  .about-content h1 {
    font-size: 22px;
    line-height: 30px;
  }

  .about-text-line {
    width: 80px;
    margin-top: 10px;
    border-bottom: 2px solid #000000;
  }

  .about-text-para {
    font-size: 16px;
    line-height: 20px;
    margin-top: 20px;
  }

  .card-image {
    margin: 8px;
  }

  .card-image img {
    border-radius: 10px;
    margin-top: 60px;
  }

  .image-button {
    position: relative;
  }

  .image-button button {
    margin-top: 30px;
  }

  .about-section {
    margin-bottom: 80px;
  }

  .our-missions {
    width: 100%;
    height: 200px;
  }

  .our-vision {
    height: 200px;
    margin-top: 30px;
    margin-left: 0px;
  }

  .our-value {
    height: 200px;
    margin-left: 0px;
    margin-top: 30px;
  }

  .big-letter h1 {
    font-size: 120px;
    font-weight: 600;
  }

  .big-letter-text p {
    font-size: 16px;
    line-height: 22px;
  }

  .greate-mission-box {
    margin-top: 30px;
    padding: 60px 40px 30px 30px;
  }

  .head-bottom-line {
    width: 80px;
    border-bottom: 2px solid #000000;
  }

  .great-heading h1 {
    font-size: 24px;
    line-height: 36px;
  }

  .great-para p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 20px;
  }

  /* Managment Page */

  .management-head h1 {
    font-size: 22px;
    line-height: 30px;
  }

  .management-des {
    font-size: 16px;
    line-height: 20px;
  }

  .team-content {
    padding: 40px 20px 20px 20px;
  }

  .team-heading h1 {
    font-size: 20px;
    line-height: 25px;
  }

  .team-position h1 {
    font-size: 17px;
    line-height: 30px;
  }

  .team-bottom-line {
    width: 60px;
  }

  .team-description {
    font-size: 13px;
  }

  .team-group {
    margin: 10px;
  }

  .team-box-1 {
    height: 360px;
    padding: 250px 20px 20px 20px;
  }

  .team-box-1:hover {
    height: 360px;
    padding: 50px 20px 20px 20px;
  }

  .team-box-2 {
    height: 360px;
    padding: 250px 20px 20px 20px;
  }

  .team-box-2:hover {
    height: 360px;
    padding: 50px 20px 20px 20px;
  }

  .team-box-3 {
    height: 360px;
    padding: 250px 20px 20px 20px;
  }

  .team-box-3:hover {
    height: 360px;
    padding: 50px 20px 20px 20px;
  }

  .team-box-4 {
    height: 360px;
    padding: 250px 20px 20px 20px;
  }

  .team-box-4:hover {
    height: 360px;
    padding: 50px 20px 20px 20px;
  }

  .team-box-5 {
    height: 360px;
    padding: 250px 20px 20px 20px;
  }

  .team-box-5:hover {
    height: 360px;
    padding: 50px 20px 20px 20px;
  }

  .team-box-6 {
    height: 360px;
    padding: 250px 20px 20px 20px;
  }

  .team-box-6:hover {
    height: 360px;
    padding: 50px 20px 20px 20px;
  }

  .team-box-heading h4 {
    font-size: 14px;
  }

  .team-box-designation p {
    font-size: 12px;
  }

  /* News section  */

  .news-title h1 {
    font-size: 20px;
    line-height: 35px;
  }

  .news-bottom-line {
    width: 80px;
    border-bottom: 2px solid #ff8303;
  }

  .news-content {
    font-size: 16px;
    line-height: 25px;
    margin-right: 0px;
  }

  .post-bottom-line {
    border-bottom: 1px solid #ff8303;
    margin: 10px 0px;
  }

  .post-action-btn p {
    font-size: 14px;
    line-height: 20px;
  }

  .post-section h5 {
    margin: 30px 0px;
  }

  /* accounts sections */

  .accountbanner {
    height: 200px;
  }

  .personal-account {
    height: 200px;
  }

  .salary-account {
    height: 200px;
  }

  .fd-account {
    height: 200px;
  }

  .stop-order-account {
    height: 200px;
  }

  .student-account {
    height: 200px;
  }

  .pensioners-account {
    height: 200px;
  }

  .accounts-center {
    padding: 60px 0px;
  }

  .account-heading h1 {
    font-size: 22px;
    line-height: 45px;
  }

  .account-button button {
    padding: 8px 30px;
    border: none;
  }

  .account-button-text {
    font-size: 15px;
    line-height: 28px;
  }

  .accouint-main-head h2 {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    margin: 10px 0px;
    line-height: 67px;
  }

  .account-sub-content p {
    font-size: 16px;
    line-height: 24px;
  }

  .heading-box {
    width: 300px;
    height: 45px;
    padding: 10px 8px;
    margin-top: 50px;
  }

  .big-box-head {
    width: 300px;
  }

  .heading-box h3 {
    font-size: 17px;
    line-height: 26px;
  }

  .bullet-box {
    margin: 10px 0px;
  }

  .bullet-box img {
    margin-left: 10px;
  }

  .bullet-box p {
    font-size: 15px;
    line-height: 22px;
  }

  /* savings accounts */

  .bank-accounts-headings h1 {
    font-size: 23px;
    line-height: 32px;
  }

  .accounts-boxes {
    height: 150px;
  }

  .personal-account-box {
    padding: 50px 20px;
  }

  .salary-account-box {
    padding: 50px 20px;
    margin-top: 22px;
  }

  .stop-order-account-box {
    padding: 50px 20px;
  }

  .student-account-box {
    padding: 50px 20px;
    margin-top: 22px;
  }

  .pensioners-account-box {
    padding: 50px 20px;
  }

  .accounts-box-headings {
    font-size: 18px;
    line-height: 24px;
  }

  .accounts-box-know-more {
    font-size: 15px;
    line-height: 25px;
  }

  /* Banking Loans Page */

  .banking-loans-headings h1 {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    margin-top: 60px;
  }

  .loans-boxes {
    position: relative;
    height: 320px;
    border-radius: 12px;
  }

  .friendly-loan {
    height: 320px;
    padding: 20px;
  }

  .psmd-loan {
    height: 320px;
    margin-top: 22px;
  }

  .salary-advance-loan {
    height: 320px;
    margin-top: 30px;
    padding: 20px;
  }

  .building-materials-loan {
    height: 320px;
    margin-top: 22px;
  }

  .loans-boxes h3 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
  }

  .loans-bottom-line {
    margin: 12px 0px;
  }

  .loans-points p {
    font-size: 15px;
    line-height: 20px;
  }

  .loans-button button {
    padding: 7px 10px;
    margin-top: 25px;
    font-size: 13px;
    line-height: 20px;
  }

  .loans-button img {
    display: none;
    overflow: hidden;
    opacity: 0;
  }

  .dropdown-menu .dropdown-submenu {
    position: absolute;
    left: 20%;
    top: 22px;
  }

  .complaint-img {
    height: 200px;
  }

  .feedback-img {
    height: 200px;
  }

  .branch-img {
    height: 200px;
  }

  /* Contact Us Page */

  .contact-us-img {
    height: 200px;
  }

  .contact-banner h1 {
    padding-top: 80px;
    font-size: 30px;
    line-height: 30px;
  }

  .contact-us-heading h1 {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
  }

  .contact-us-box {
    height: 150px;
    padding: 20px 10px 10px 10px;
    margin-bottom: 20px;
  }

  .contact-us-box h4 {
    font-size: 18px;
    padding-top: 3px;
  }

  .contact-us-box h5 {
    font-size: 15px;
    margin-top: 16px;
  }

  .contact-us-form {
    margin-top: 25px;
  }

  .contact-us-form-btn button {
    font-size: 16px;
  }

  .contact-us-form-btn button:hover {
    font-size: 16px;
  }

  /* Diaspora mortagage Page */

  .diaspora-mortage-headings h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .diaspora-mortage-image {
    padding: 50px 20px 40px 40px;
  }

  .diaspora-mortage-image h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .diaspora-mortage-image p {
    font-size: 15px;
  }

  .diaspora-mortage-image button {
    margin-top: 12px;
    font-size: 14px;
    line-height: 18px;
  }

  .mortage-paragraph p {
    margin: 40px 20px 60px 20px;
    font-size: 16px;
    line-height: 26px;
  }

  /* Footer */

  .footer {
    padding: 40px 10px 10px 10px;
  }

  .footer img {
    width: 130px;
    margin: auto;
    height: auto;
  }

  footer p {
    font-size: 16px;
  }

  footer h5 {
    font-size: 20px;
    margin: 10px 0px;
    font-weight: 700;
  }

  .footer-border-right {
    border-right: none;
  }

  .footer-brand-right {
    float: none;
    margin: 20px 0px;
    text-align: center;
  }

  .footer-copyright {
    text-align: center;
  }

  .cover-wrapper {
    padding: 0px 50px;
  }
}

@media (max-width: 767px) {
  #recipeCarousel .carousel-inner .carousel-item > div {
    display: none;
  }
  ul.navbar-nav.mr-auto.mb-2.mb-lg-0 {
    background: #36454f;
  }
  p.test1 {
    color: white;
    margin: 0;
  }
  #recipeCarousel .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
  .mortagebox-1 {
    margin-top: 23px;
  }

  .mortagebox-4 {
    margin-top: 23px;
  }
}

#recipeCarousel .carousel-inner .carousel-item.active,
#recipeCarousel .carousel-inner .carousel-item-next,
#recipeCarousel .carousel-inner .carousel-item-prev {
  display: flex;
}

/* Test Code */

@media only screen and (max-width: 1160px) {
  .post-group {
    float: left;
    margin: 0;
    /*min-height: 250px;*/
    position: relative;
    width: 100%;
    border: 1px solid #dddddd;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
    -moz-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 18px 0 rgb(0 0 0 / 18%);
  }

  .map-search-group {
    left: 0 !important;
    min-height: 75px;
    padding: 13px 28px 15px 35px;
    position: relative;
    width: 100% !important;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    border-radius: 36px;
    background: #ff8303;
    margin-left: 0px !important;
  }

  .map-search-group > .text-center {
    text-align: inherit !important;
  }

  img.con-icon {
    width: 6%;
  }

  .map-search-btn {
    float: none !important;
    margin-top: 10px !important;
    position: relative;
    width: 90%;
  }

  .icons-line {
    padding: 7% !important;
  }

  .con-sec span {
    font-size: 12px !important;
  }

  .post-image {
    /*float: left;*/
    margin: 0;
    width: 100% !important;
    -webkit-border-radius: 10px 0 0 10px;
    -moz-border-radius: 10px 0 0 10px;
    border-radius: 10px 0 0 10px;
  }

  .post-content {
    float: left;
    margin: 3% !important;
    position: relative;
    width: 100%;
  }
  .post-icons {
    margin: 12px 0 0 1px;
    position: relative;
    width: 93% !important;
  }

  .footer-border-right {
    border-right: none;
  }
  .owl-prev img {
    left: -15px;
  }
  .owl-next img {
    right: -15px;
  }
}

.diaspora-mortage-cta button {
  margin-top: 40px;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px !important;
  border: none;
  width: 220px;
  height: 60px;
  background: #ff8303;
  color: #ffffff;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.17);
  border-radius: 50px;
}

.diaspora-mortage-cta button:hover {
  border: 2px solid #ff8303;
  background: transparent;
  color: #131313;
}
