@import url('https://fonts.googleapis.com/css2?family=Reem+Kufi+Ink&amp;display=swap');
body{
  box-sizing:border-box; 
  font-family: 'Reem Kufi Ink', sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: .5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--dark-blue-color);
  outline: 1px solid var(--dark-blue-color);
}
html{
  scroll-behavior: smooth;
}
:root {
  --primary-color:#9C1B1E;
  --light-blue-color:#44A5BA;
  --dark-blue-color:#F16F21;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
}
p{
    font-size: 16px;
}
ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
a, button {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
a:hover
{
  text-decoration: none;
}
button:focus, input:focus, textarea:focus, select:focus, a:hover
{
  outline: none; box-shadow: none;
}
section{
  padding:70px 0;
}
.inlineHeader{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rightHeader img{
  width: 285px;
  transition: all 0.3s ease-in-out;
  transform: translateX(-10px);
}
.header{
  padding:5px 10px 0 0;
}
.leftLogo{
  width: 380px;
  display: flex;
  margin-top: 5px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 5px;
  margin-left: 32px;
}
.logoCircle{
  width: 100px;
  transition: all 0.3s ease-in-out;
}
.logoText{
  width: 250px;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.rightMenu{
  text-align: right;
}
.rightMenu ul{
  display: flex;
  align-items: center;
}
.rightMenu ul li a{
  color: #333;
  text-transform: uppercase;
  font-size: 13px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  padding:25px 10px;
}
.rightMenu ul li a i{
  font-size: 10px;
  transform: translateY(-1px);
}
.rightMenu ul li{
  position: relative;
}
.rightMenu ul li ul{
  position: absolute;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  border-radius: 5px;
  top: 70px;
  transition: all 0.3s ease-in-out;
  padding: 10px 0;
  z-index: -999;
  opacity: 0;
  display: block;
  visibility: hidden;
  left: 0px;
  width: 250px;
  background: #fff;
}
.rightMenu ul li:hover ul{
  visibility: visible;
  top: 50px;
  opacity: 1;
  z-index: 999;
}
.rightMenu ul li ul li a{
  color:#000;
  font-size: 14px;
  text-transform: capitalize;
  padding:7px 20px;
  display: block;
  font-weight: 600;
}
.rightMenu ul li ul li a:hover{
  color: var(--dark-blue-color);
}
.rightMenu ul li:last-child:hover ul{
  left: auto;
  right: 0px;
}
.bgGrey{
  background: #f1f1f1
}
.carousel-item{
  height: 405px;
}
.sliderBlock{
  padding:10px;
  background:#fff;
  border-radius: 10px;
}
.sliderBlock img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}
.rightMenu ul li a:hover{
  color: var(--primary-color);
}
.fontWeight700 {
    font-weight: 700;
}
.heading {
    font-size: 38px;
}
.sub_heading{
  font-size: 30px;
}
.small_heading{
  font-size: 21px;
}
.inlineForm{
  width: calc(100% / 5 - 10px)
}
.form-floating>.form-control:focus, .form-select:focus, .form-floating>.form-control:not(:placeholder-shown), .uploadResume:focus
{
  border-color: var(--primary-color);
  -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.formItem{
  margin-bottom: 15px;
}
.form-floating>label{
  padding: 1rem  1.5rem
}
.form-floating>.form-control, .form-floating>.form-select, .uploadResume, .customSelect{
  border:1px solid #999;
  padding-left: 1.5rem;
  font-size: 18px !important;
}
.customSelect{
  width: 100%;
  padding:13px 10px;
  border-radius: 5px;
}
.btnTheme{
  background: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  padding:15px 30px;
  font-size: 14px;
  border:none;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 5px;
}
.fromRight{
  margin-top:30px;
}
.btnTheme:hover{
  background:var(--dark-blue-color);
  color: #fff;
}
.bg1{
  background: url(../images/bg/slider-5.jpg) no-repeat;
  background-attachment: fixed;
  background-size:cover;
}
.primaryOverlay{
  position: relative;
  z-index: 1;
}
.primaryOverlay:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgb(68 165 186 / 90%);
  z-index: -1;
}
.rightAction{
  text-align: right;
}
.btnPrimary{
  background: var(--primary-color);
  display: inline-block;
  padding:12px 25px;
  color: #fff;
  text-transform: uppercase;
  border:2px solid transparent;
  font-weight: 600;
}
.btnWhite{
  background: #fff;
  color: #333;
  display: inline-block;
  padding: 12px 25px;
  text-transform: uppercase;
  border:2px solid transparent;
  font-weight: 600; 
}
.btnWhite:hover{
  background:transparent;
  border:2px solid #fff;
}
.btnPrimary:hover{
  border:2px solid var(--primary-color);
  background: transparent;
}
.btnPrimary:hover{
  color: var(--primary-color);
}
.rightAction .btnWhite:hover, .rightAction .btnPrimary:hover{
  border-color: #fff;
  color: #fff;
}
.btnSecondary{
  background: var(--dark-blue-color);
  display: inline-block;
  padding:12px 25px;
  color: #fff;
  text-transform: uppercase;
  border:2px solid transparent;
  font-weight: 600;
}
.btnSecondary:hover{
  border-color: var(--dark-blue-color);
  background: transparent;
  color: var(--dark-blue-color);
}
.marquee ul{
  display: flex;
  align-items: center;
  margin-top: 5px;
  justify-content: space-between;
}
.marquee li{
  margin:0 20px;
}
.marquee li a {
  color: #fff;
  padding:5px 0;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
}
.callActionMarquee{
  background:var(--dark-blue-color);
  padding:5px;
  border-radius: 5px;
}
.itemCounter {
    text-align: center;
}
.leftAboutHome{
  padding:0px 0px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leftAboutHome img{
  max-width: 100%;
}
.rightAboutHome p{
  margin-bottom: 15px;
  text-align:justify;
}
.aboutMain p{
    text-align:justify;
}
.linkBtn{
  font-size: 18px;
  font-weight: 700;
  color:var(--dark-blue-color);
}
.linkBtn:hover{
  color:var(--primary-color);
}
.bgLightGrey{
  background:#f9f9f9;
}
.itemServices{
  border:1px solid #e0e0e0;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.serviceDescription{
  padding:15px;
  background: #fff;
}
.servicesImg{
  height: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servicesImg img{
  max-width: 100%;
  max-height: 100%;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.serviceDescription .sub_heading{
  font-size: 22px;
}
.itemServices h4{
  color:#333;
  font-weight: 600;
}
.itemServices:hover{
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);;
}
.btnSmall{
  padding: 7px 15px;
  display: inline-block;
  color: #fff;
  background: var(--primary-color);
  margin-top: 15px;
  font-size: 14px;
  border-radius: 5px;
}
.btnSmall:hover{
  color: #fff;
  background: var(--dark-blue-color);
}
.slick-slide {
  margin: 0 10px;
}
.slick-list {
  margin: 0px -10px 0px -10px;
}
.slick-next:before{
  content: '\f054' !important;
  left: 4px;
}
.slick-prev:before{
  content: '\f053' !important;
  right: -3px;
}
.slick-next:hover, .slick-prev:hover{
  background:var(--dark-blue-color) !important;
}
.slick-next, .slick-prev{
  width: 40px !important;
  border-radius: 50px;
  height: 40px !important;
  background: var(--light-blue-color) !important;
}
.slick-next {
  right: -1px !important;
  z-index: 99;
}
.slick-prev{
  left: 2px !important;
  z-index: 99;
}
.slick-next:before, .slick-prev:before{
  font-family: 'Font Awesome 5 Free' !important;
  font-size:22px !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 44px !important;
  top: -2px !important;
  font-weight: 700;
  position: relative;
  color: #fff !important;
  opacity: 1 !important;
}
.leftFixed img{
  max-width: 100%;
  border-radius: 10px;
}
.rightFixed{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 20px;
}
.footer{
  padding:60px 0 0 0;
  background: #000;
}
.footerItem h4{
  color: #fff;
}
.footerItem ul{
  margin-top: 20px;
}
.footerItem ul li a{
  color: #fff;
  display: inline-block;
  font-size: 17px;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  padding: 7px 0 7px 16px;
}
.footerItem ul li a:hover{
  color: var(--primary-color);
}
.newsletter{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border:1px solid #fff;
  margin-top: 20px;
}
.newsletter input{
  width: calc(100% - 40px);
  height: 45px;
  background: none;
  color:#fff;
  border:none;
  padding:0 15px;
}
.newsletter input::placeholder{
  color: #eee;
}
.btnNewsletter{
  background: var(--primary-color);
  color: #fff;
  border:none;
  font-size: 22px;
  width: 50px;
  height: 45px;
  line-height: 50px;
}
.socialLink ul{
  display: flex;
}
.socialLink ul li a{
  padding: 8px;
  display: inline-block;
  font-size: 24px;
}
.arrowRight li{
  position: relative;
  z-index: 1;
}
.arrowRight li:before{
  content: '\f054';
  position: absolute;
  top: 11px;
  left: 0px;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  font-family: "Font Awesome 5 Free";
}
.footerItem ul li:hover a{
  padding-left: 20px;
}
.copyRight{
  background: var(--dark-blue-color);
  padding:10px 0;
  margin-top: 8vh;
  text-align: center;
  color: #fff;
}
.socialLink ul li:hover a{
  padding: 8px;
}
.sticky{
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 999;
}
.sticky .leftLogo{
  width: 350px;
}
.sticky .leftLogo .logoCircle{
  width: 80px;
}
.sticky .leftLogo .logoText{
  width: 200px;
}
.sticky .rightHeader img{
  width: 265px;
}
.sticky .rightMenu ul li a{
  padding: 7px 10px;
}
.sticky .rightMenu ul li ul li a{
  padding-left: 25px;
}
.sticky .rightMenu ul li:hover ul{
  top: 40px
}
.multiLanguage ul{
  justify-content: flex-end;
  margin-top: 0px !important;
}
.multiLanguage ul li a{
  padding:5px 5px 0px; 
}
.multiLanguage li a.en{
  font-size: 13px;
}
.sticky .multiLanguage ul li a{
  padding:5px 5px 0px; 
}
.loanItem{
  text-align: center;
  padding:0 15px;
}
.loanItem a{
  color: #000
}
.loanItem:hover a{
  color: var(--primary-color);
}
.iconLoan{
  width: 100px;
  height: 100px;
  border:1px solid var(--dark-blue-color);
  position: relative;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  text-align: center;
  line-height: 100px;
  z-index: 1;
  margin:0 auto;
}
.loanItem h4 {
    margin-top: 20px;
}
.loanItem:hover .iconLoan {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.loanItem:hover .iconLoan img{
  filter: brightness(0) invert(1);
}
.rightAction{
  text-align: right;
}
.tabSection{
  margin-top: 40px;
}
.tabMenu ul {
  display: flex;
}
.tabMenu ul li{
  cursor: pointer;
  margin-right: 2px;
  padding:15px 30px;
  background: #f1f1f1;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.tabMenu ul li a{
  color: #222;
}
.tabMenu ul li.active{
  background: #fff;
  border-top: 2px solid var(--primary-color);
  border-bottom: 1px solid #ccc;
  border-right:1px solid #ccc;
  border-left:1px solid #ccc;
}
.tabMenu ul li.active:after{
  content: '';
  position: absolute;
  bottom: -10px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%)  rotate(45deg);
  width: 20px;
  height: 20px;
  border-bottom:1px solid #ccc;
  border-right:1px solid #ccc;
  z-index: -2;
}
.tabContent{
  padding:20px;
  background: #fff;
  margin-top: 20px;
  border:1px solid #ccc;
}
.tabItem{
  display: none;
}
.tabItem:first-child{
  display: block;
}
.tabItem ul li{
  padding:10px 0 10px 30px;
  position: relative;
  z-index: 1;
  font-size: 16px;
}
.tabItem ul li:before
{
  position: absolute;
  top: 12px;
  left: 0px;
  font-size: 18px;
  content: "\f26f";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.listing li{
padding:10px 0 10px 30px;
  position: relative;
  z-index: 1;
  font-size: 16px;
}
.listing li:before
{
  position: absolute;
  top: 12px;
  left: 0px;
  font-size: 18px;
  content: "\f26f";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.table th{
  background: var(--dark-blue-color) !important;
  color: #fff;
}
.ecww-widgetwrapper{
  width: 100%;
}
.videoImg{
  height: 250px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.videoImg img{
  max-width: 100%;
  max-height: 100%;
}
.bgGrey{
  background: #f1f1f1;
}
.itemVideo{
  border:1px solid #e0e0e0;
  border-radius: 5px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.itemVideo h5{
  color: #333;
  font-size: 19px;
  height: 59px;
  padding: 10px;
  overflow: hidden;
 text-overflow: ellipsis;
 display: -webkit-box;
 -webkit-line-clamp: 2;
         line-clamp: 2; 
 -webkit-box-orient: vertical;
}
.itemVideo:hover{
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.videoPlay{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.videoPlay i{
  color: #ff0000;
  background: #fff;
  border-radius: 50%;
  line-height: 15px;
  width: 40px;
  font-size: 45px;
}
.processItem{
  text-align: center;
  padding: 0 5px;
}
.leftFixed img{
  max-width: 100%;
}
.rightFixed{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 20px;
}


/* about us */
.aboutBanner{
  height: 40vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.aboutBg:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}
.innerPage{
  height: 100%;
  display: flex;
  align-items:center;
  justify-content: center;
  flex-direction: column;
}
.innerBanner{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.innerBanner img{
  max-width: 100%;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.bradecrame{
  margin-top: 15px;
}
.bradecrame ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.bradecrame ul li a{
  color:#000;
  display: inline-block;
  padding:10px 15px;
  font-size: 17px;
}
.bradecrame ul li{
  position: relative;
}
.bradecrame ul li.active a{
  color: var(--primary-color);
}
.bradecrame ul li:after{
  content: "\f101";
  position: absolute;
  top: 50%;
  right: -5px;
  color: #000;
  transform: translateY(-39%);
  font-size: 13px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.aboutBg ul li:after{
  color:#fff;
}
.bradecrame ul li:last-child:after{
  display: none;
}
.aboutMain{
  padding:30px;
  background:#fff;
}
.aboutMain p{
  color: #333;
  margin-bottom: 15px;
}
.sidebarRight{
  padding:15px;
  background:#fff;
}
.sidebarRight ul{
  margin-top: 10px;
  padding-top: 10px;
  border-top:1px solid #e0e0e0;
}
.sidebarRight ul li a{
  display: inline-block;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  padding:10px;
  letter-spacing: 1px;
}
.sidebarRight ul li a:hover{
  color: var(--primary-color);
}
.sidebarSticky{
  position: sticky;
  position: -webkit-sticky;
  top: 106px;
}
/* contact us */
.contactItem{
  display: flex;
  width: 100%;
}
.contactIcon {
  margin-right: 15px;
}
.contactRight p{
  margin-top: 8px;
  font-size: 18px;
  margin-bottom: 0px;
}
.contactRight p a{
  color: var(--dark-blue-color);
}
.textHeight {
    height: 180px !important;
}
.branchItem{
  border:1px solid #999;
  background: #fff;
  height: 100%;
}
.branchBlock .col-lg-4{
  margin-bottom: 30px;
}
.branchItem img{
  width: 100%;
  height: 272px;
  object-fit: cover;
}
.title{
  font-size: 20px;
}
.address{
  padding:20px;
}
.address h6{
    font-size:.95rem;
}
.text_primary{
  color: var(--primary-color);
}
.text_secondary{
  color: var(--dark-blue-color) !important;
}
.branchItem p{
  margin-top: 15px;
  font-weight: 600;
}


/* news and events */
.newImg img{
  max-width: 100%;
  transition: all 0.2s ease-in-out;
}
.itemNews{
  background: #fff;
  margin-bottom: 30px;
  border:1px solid #e0e0e0;
}
.newsDescription{
  padding: 20px;
  height: 85px;
}
.newsDescription h4{
  color: #333;
}
.itemNews:hover .newImg img{
  transform: scale(1.1);
}
.newImg{
  overflow: hidden;
}
.staticTop{
  margin-top: 15vh;
}


/* gold loan */
.aboutMain .loanItem .small_heading{
  font-size: 18px;
}
/*chairman message*/
.chairmanDescription{
  background:var(--primary-color);
  padding:15px;
}

/* board of directors */
.directorsItem{
  text-align: center;
  padding:20px;
  height: 100%;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border:1px solid #e0e0e0;
  background: #fff;
}
.directorsItem img{
  width: 130px;
  height: 130px;
  object-position: cover;
  border:1px solid var(--dark-blue-color);
  border-radius: 50%;
}
.descriptionBoard{
  margin-top:20px;
}

/* our partner */
.itemPartner{
  border:1px solid #999;
  padding:10px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.itemPartner img{
  max-width: 100%;
  max-height: 100%;
}
.enquiryBtn{
  position: fixed;
  top: 50%;
  transform: translate(5vw, -50%) rotate(-90deg);
  right: 0px;
  z-index: 9;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: var(--primary-color);
}
.enquiryBtn a{
  color: #fff;
  padding:10px 25px;
  text-transform: uppercase;
  display: block;
}
.enquiryBtn:hover{
  background:var(--dark-blue-color);
}
.iconsList{
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.iconsList:after{
  position: absolute;
  top: 0px;
  left: 0px;
  color: var(--primary-color);
  font-weight: 800;
  font-size: 20px;
  font-family: "Font Awesome 5 Free";
}
.addressIcon:after{
   content: '\f3c5';
}
.telphoneIcon:after{
  content: '\f879';
}
.phoneIcon:after{
  content: '\f3cd';
}
.counterCenter{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5vh;
}
.inputRow span{
  display: none;
}
#main .middleContainer{
  margin-bottom: 0px;
}
.icici .toolSize{
  margin: 0px;
}
.itemServices{
  padding:30px 20px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.08));
  background: #fff;
  position: relative;
  z-index: 1;
}
.bottomIcon:after{
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(194,225,245,0);
  border-top-color: #fff;
  border-width: 16px;
  left: 25px;
}
.topIcon:after{
  top: -30px;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(194,225,245,0);
  border-bottom-color: #fff;
  border-width: 16px;
  left: 25px;
}
.itemServices .sub_heading{
  font-size: 22px;
}
.iconServ{
  width: 60px;
}
.iconServ img{
  max-width: 100%;
}
.boxNo{
  background: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 20px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.08));
}
.boxNo h4{
  font-size: 15px;
}
.hoverBox{
  transition: all 0.3s ease-in-out;
}
.hoverBox:hover .boxNo{
  background: var(--primary-color);
  color: #fff;
}
.contactForm{
  margin-top: 20px;
}
.contactItem2 input{
  width: 100%;
  border:1px solid #999;
  font-family: "Questrial",sans-serif;
  font-size: 1em;
  font-weight: 400;
  height: 3.4rem;
  font-style: normal;
  padding: .5rem 1rem;
  line-height: 1.2em;
}
.contactItem2 input:focus{
  border-color: var(--secondary-color);
}
.contactItem2{
  margin-bottom: 20px;
}
.contactItem2 textarea{
  width: 100%;
  border:1px solid #999;
  font-family: "Questrial",sans-serif;
  font-size: 1em;
  font-weight: 400;
  height: 12.55rem;
  font-style: normal;
  padding: 1rem 1rem;
  line-height: 1.2em;
}
.contactItem2 textarea:focus{
  border-color: var(--secondary-color);
}
.rdCalculator{
  margin-top: 40px;
  padding-top: 40px;
  border-top:1px solid #e0e0e0;
}
.rightChair p{
  margin-bottom: 5px;
}
.logoWithText{
  display: flex;
  padding-bottom:5px; 
  margin-top: 15px;
  border-bottom: 1px dashed #ccc;
  justify-content: space-between;
}
.logoWithText:last-child{
  border-bottom:none;
}
.logoLeft{
  width: 80px;
}
.logoLeft img{
  max-width: 100%;
}
.rightLogoText{
  width: calc(100% - 90px);
}
.rightLogoText p{
  font-size: 15px;

}
.textBoard .rightLogoText p{
  font-size: 16px;
}
.aboutMain ol li{
  padding:5px 0;
}
.sideForm{
  background: #fff;
  padding:15px;
}
.sideFrom .form-floating>.form-control, .sideFrom .form-floating>.form-select{
  height: calc(3rem + 2px) !important;
  padding-left:1rem !important;
}
.customHeight{
  height: 100px !important;
}
.itemInput label{
  font-weight: 600;
  font-size: 17px;
  width: 155px;
}
.itemInput input, .itemInput select
{
  padding:10px;
  width: calc(100% - 160px);
  border-radius: 5px;
  border:1px solid #999;
}
.itemInput input:focus, .itemInput select:focus{
  border-color: var(--primary-color);
}
.itemInput{
  margin-bottom: 15px;
}
.btnCalc{
  border:none;
  background: var(--dark-blue-color);
  color: #fff;
  padding:13px 30px;
  margin-left: 6rem;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.btnCalc:hover{
  background: var(--primary-color);
}

.result{
  background:#f1f1f1;
  padding:20px;
}
.itemfeatures{
  margin-top: 25px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
}
.itemfeatures ul li{
  position: relative;
  padding: 6px 30px;
}
.itemfeatures ul li:before
{
  position: absolute;
  top: 12px;
  left: 0px;
  font-size: 18px;
  content: "\f26f";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.height{
  height: auto;
}
.innerFix{
  padding-top: 0px;
}
.navTab{
  display: none;
}
.innerFix .navTab{
  display: block;
}
.stickyNav{
  position: fixed;
  width: 100%;
  top: 99px;
  left: 0px;
  z-index: 99;
}
.navTab{
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}
.navTab ul{
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(60px);
}
.navTab ul li a{
  cursor: pointer;
  display: inline-block;
  padding: 15px 30px;
  font-size: 15px;
  color: #777;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.navTab ul li.active a{
  background: #fff;
  color: var(--dark-blue-color);
}
.navTab ul li.active a:after{
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
}
.formNav ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.formNav ul li{
  width: calc(100% / 3);
  text-align: center;
  padding:0 20px;
  color: #777;
  position: relative;
}
.formNav ul li.active{
  color: #000;
}
.formNav ul li span{
  position: relative;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #999;
  color: #fff;
  display: block;
  line-height: 25px;
  margin:0 auto;
  z-index: 1;
}
.formNav ul li p{
  margin-top: 20px;
}
.formNav ul li:before{
  content: '';
  position: absolute;
  width: 89%;
  height: 2px;
  background: #ccc;
  top: 12px;
  left: -44%;
  z-index: -1;
}
.formNav ul li:first-child:before{
  display: none;
}
.formNav ul li.active span{
  background: var(--primary-color);
}
.formNav ul li.active span:before{
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: 1;
  width: 124%;
  height: 125%;
  border:1px solid var(--primary-color);
  border-radius: 50%;
}
.careerForm{
  margin-top: 40px;
}
.formNav ul li.active:before{
  background: var(--primary-color);
}
.uploadResume{
  border:1px solid #999;
  border-radius: 5px;
  padding:0px;
  height: 55px;
  position: relative;
}
.labelInput{
  width: 44%;
  background:#f1f1f1;
  padding: 10px;
  font-size: 15px;
  line-height: 35px;
  border-right:1px solid #ccc;
  height: 100%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.labelInput i{
  margin-right: 10px;
}
.uploadResume input{
  opacity: 0;
  position: absolute;
  top: 0px;
}
.bgPrimary{
  background: var(--primary-color);
}
.bgSecondary{
  background:var(--dark-blue-color);
}
.btnWhite{
  color: #000;
  font-size: 14px;
  padding:12px 30px;
  border-radius: 5px;
  background:#fff;
}
.btnWhite:hover{
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.pattern{
  background-image: url(../images/bg/pattern.png);
  background-position: center;
  background-size: cover;
}
.centerVertical{
  padding-left: 10%;
}
.importantLink{
  background: var(--dark-blue-color);
  padding:40px 0;
}
.importantLink ul{
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.importantLink ul li{
  width: calc(100% / 6 - 10px);
  margin:7px 5px;
}
.importantLink ul li a{
  padding:10px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  border:1px solid #fff;
  display: block;
  color: #fff;
}
.importantLink ul li a:hover{
  background: #fff;
  color: var(--dark-blue-color);
}
.rightBanner {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}
.formHeader .small_heading{
  font-size: 20px;
}
.formItem .customLabel{
  padding-left: 8px;
  margin-bottom: 5px;
}
.rightBanner .form-floating>label{
  padding: .8rem  1rem;
  font-size:16px;
}
.rightBanner .form-floating>.form-control, .rightBanner .form-floating>.form-select{
  height: calc(3rem + 2px);
  padding-left: 1rem;
}
.rightBanner .form-floating>.form-select{
  padding:0.2rem 1rem;
  line-height: 59px;
}
.leftChairman{
  height: 100%;
  border:2px solid var(--dark-blue-color);
}
.bgLightBlue{
  background: var(--light-blue-color);
}
.inlineService{
  display: flex;
  justify-content: space-between;
}
.leftService{
  width: 300px;
}
.leftService img{
  width: 100%;
}
.rightService{
  width: calc(100% - 330px);
}
.textGrey{
  color: #444 !important;
}
.rightBoard{
  padding: 25px;
  padding-left: 0px;
}

.interest_result_box {
    padding: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.02), 0 10px 10px rgba(0,0,0,0.11);
    text-align: center;
    width: calc(50% - 20px);
    margin: 0 10px 10px;
    border-radius: 10px;
}

.interest_result_wrap {
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
}

.interest_result_box .title {
    font-weight: 600;
    font-size: 95%;
    color: var(--primary-color);
}

.interest_result_box .amount {
    font-size: 130%;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

#interest th{
    width:60%;
}
.rightVision{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.stepImg{
  margin-top: 15px;
}
.stepImg img{
  max-width: 100%;
  border:1px solid #ccc;
}
.stepImg{
  margin-top: 15px;
}
.steps{
  margin-top: 40px;
  padding-top: 40px;
  border-top:1px solid #ccc;
}
.itemStep{
  margin-top: 30px;
}
.paraDiv{
  height: 105px;
}
.address a{
    color:inherit;
}