@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100;9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900&family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
body{
  box-sizing:border-box; 
  font-family: 'Poppins', sans-serif;
  margin: 0px;
  padding:0px;
}
body::-webkit-scrollbar {
  width: .5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: #4D525A;
  outline: 1px solid #4D525A;
}
html{
  scroll-behavior: smooth;
}
:root {
  --primary-color:#01458C;
  --hover-color:#0f0dc6;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p{
  font-size: 16px;
  color: #4D525A;
}
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 70px;
}
.fontHeading{
  font-family: 'DM Sans', sans-serif;
}
.inlineHeader{
  display: flex;
  padding:0px 0;
  align-items: center;
  justify-content: space-between;
}
.large_heading{
  font-size:50px;
  line-height: 1.1;
}
.heading{
  font-size: 45px;
  line-height: 1.1;
}
.sub_heading{
  font-size: 32px;
  line-height:1.2;
}
.small_heading{
  font-size: 26px;
}
.title{
  font-size: 20px;
}
.text{
  font-size: 18px;
}
.fontWeight300{
  font-weight: 300;
}
.fontWeight400{
  font-weight: 400;
}
.fontWeight500{
  font-weight: 500;
}
.fontWeight600{
  font-weight: 600;
}
.fontWeight700{
  font-weight: 700;
}
.fontWeight800{
  font-weight: 800
}
.fontWeight900{
  font-weight: 900;
}
.leftLogo{
  width: 260px;
}
.leftLogo img{
  max-width: 100%;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  width: 100%;
  background:#fff;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.60s;
  animation-duration: 0.60s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes menu_sticky {
  0%   {margin-top:-150px;}
  50%  {margin-top: -130px;}
  100% {margin-top: 0;}
}
@keyframes menu_sticky {
  0%   {margin-top:-150px;}
  50%  {margin-top: -130px;}
}
.btnTheme{
  display: inline-block;
  padding:12px 25px;
  border:none;
  font-size: 15px;
  background:var(--primary-color);
  color: #fff;
  border:1px solid transparent;
  letter-spacing: 1px;
  border-radius: 5px;
  font-weight: 600;
}
.btnTheme:hover{
  background: transparent;
  border:1px solid var(--primary-color);
  color: var(--primary-color);
}
.btnThemeWhite{
  display: inline-block;
  padding:12px 25px;
  border:none;
  font-size: 15px;
  background:#fff;
  color: #000;
  border:1px solid transparent;
  letter-spacing: 1.5px;
  border-radius: 5px;
  font-weight: 600;
}
.btnThemeWhite:hover{
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.btnThemeWhiteBorder{
  display: inline-block;
  padding:12px 25px;
  border:none;
  font-size: 15px;
  background:transparent;
  color: #fff;
  border:1px solid #fff;
  letter-spacing: 1.5px;
  border-radius: 5px;
  font-weight: 600;
}
.btnThemeWhiteBorder:hover{
  border-color: transparent;
  color: #222;
  background: #fff;
}
.topHeader{
  background: #222;
}
.leftTopHeader p{
  color: #999;
  padding:10px 0px;
  font-size: 15px;
}
.header .socialLinks ul li a{
  color: #ccc;
  font-size: 16px;
}
.header .socialLinks ul li a:hover{
  color: #fff;
}
.rightTopHeader ul{
  display: flex;
  align-items: center;
}
.rightTopHeader ul li a{
  display: inline-block;
  padding:8px 20px;
  font-size: 15px;
  color: #eee;
}
.centerMenu ul{
  display: flex;
}
.centerMenu ul li a{
  padding:15px 18px;
  display: inline-block;
  color: #333;
  font-weight: 500;
}
.centerMenu ul li{
  position: relative;
}
.centerMenu ul li a:hover{
  color: var(--primary-color);
}
.centerMenu ul li:hover ul{
  top: 50px;
  visibility: visible;
  opacity: 1;
  z-index: 2;
}
.centerMenu ul li ul li a:hover{
  background:#f6f6f6;
}
.centerMenu ul li ul{
  position: absolute;
  width: 250px;
  display: block;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  top: 60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  padding:15px 0;
  background:#fff;
  border-radius: 10px;
}
.centerMenu ul li a i{
  font-size: 10px;
  transform: translateY(-1px);
}
.centerMenu ul li ul li a {
  color: #222;
  font-size: 15px;
  display: block;
  padding: 8px 20px;
}
.bannerVideo{
  position: relative;
  z-index: 1;
}
.bannerVideo:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: linear-gradient(90deg, rgb(0 0 0 / 90%) 51%, rgba(0, 0, 0, 0) 70%);
  opacity: 0.76;
  z-index: 1;
}
.bannerVideo video{
  width: 100%;
  object-fit: cover;
  height: calc(100vh - 60px);
}
.heroText{
  position: absolute;
  top: 40%;
  left: 0px;
  width: 100%;
  transform: translateY(-50%);
  z-index: 9;
}
.heroText h1{
  color: #fff;
}
.heroShape{
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  bottom: -5px;
  transform: rotate(180deg);
  z-index: 5;
}
.heroShape svg{
  height: 130px;
  display: block;
  width: calc(170% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
}
.heroShape .shape-fill {
  fill: #fff;
  transform-origin: center;
  transform: rotateY(0deg);
}
.text_primary{
  color: var(--primary-color);
}
.stricky-fixed .topHeader{
  display: none;
}
.stricky-fixed .leftLogo{
  width: 200px;
}
.stricky-fixed .inlineHeader.py-lg-3{
  padding-top: .5rem !important;
  padding-bottom: .5rem !important;
}
.aboutLeftHome ul{
  display: flex;
  padding:10px;
  margin-top: 15px;
}
.aboutLeftHome ul li{
  width: calc(100% / 2);
  padding:10px;
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}
.aboutLeftHome ul li:after{
  content: '';
  position: absolute;
  top: 17px;
  left: 0px;
  width: 10px;
  height: 10px;
  z-index: -1;
  background: var(--primary-color);
  border-radius: 50%;
}
.aboutLeftHome ul li:before{
  content: '';
  position: absolute;
  top: 13.1px;
  left: -4px;
  width: 18px;
  height: 18px;
  z-index: -2;
  border:1px solid var(--primary-color);
  border-radius: 50%;
}
.aboutLeftHome{
  padding-right: 25px;
}
.aboutRightHome{
  position: sticky;
  position: -webkit-sticky;
  top: 130px;
  z-index: 1;
}
.aboutRightHome img{
  max-width: 100%;
  border-radius: 5px;
}
.itemInfo{
  padding: 20px;
  height: 100%;
  border:1px solid #e0e0e0;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.bgPatternBlue{
  background: #01458C url(../images/bg/bg-pattern.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.collActionRight p{
  color: #fff;
}
.leftWhy img{
  max-width: 100%;
  border-radius: 5px;
}
.rightWhy{
  padding-left: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rightWhy ul{
  margin-top: 10px;
  padding-left: 10px;
}
.rightWhy ul li {
  padding:10px 8px;
  font-weight: 500;
  position: relative;
  font-size: 15px;
  padding-left: 25px;
}
.rightWhy ul li:after{
  content: '';
  position: absolute;
  top: 17px;
  left: 0px;
  width: 10px;
  height: 10px;
  z-index: 2;
  background: var(--primary-color);
  border-radius: 50%;
}
.rightWhy ul li:before{
  content: '';
  position: absolute;
  top: 13.1px;
  left: -4px;
  width: 18px;
  height: 18px;
  z-index: 1;
  border:1px solid var(--primary-color);
  border-radius: 50%;
}
.commercialAppraisal{
  background: #f6f6f6 url(../images/bg/commercial-appraisal.webp) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.commercialAppraisal:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: rgb(246 246 246 / 71%);
}
.callAction2{
  background:url(../images/bg/call-action.webp) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.callAction2:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgb(0,0,0,0.6);
  z-index: -1;
}
.rightCall .btnTheme:hover{
  border-color: #fff;
  color: #fff;
}
.rightCall ul li{
  font-size: 14px;
  color: #fff;
  padding:10px 8px;
  padding-bottom: 0;
  font-weight: 500;
}
.rightCall ul li:last-child{
  padding-right: 0px;
}
.propertyType{
  position: relative;
}
.propertyType img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.btnBlock{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  height: 44px;
  z-index: 3;
}
.btnBlue{
  display: inline-block;
  padding:10px 0px;
  width: 200px;
  text-align: center;
  font-weight: 500;
  color: #000;
  letter-spacing: 1px;
  background: rgb(255 255 255 / 75%);
  transition: all 0.3s ease-out;
  z-index: 2;
}
.btnBlue:hover{
  color: #000;
}
.btnBlue2{
  display: inline-block;
  padding:10px 0px;
  width: 200px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  background:var(--primary-color);
  transition: all 0.3s ease-out;  
}
.propertyType:hover .btnBlue{
  transform: translateY(-44px);
}
.propertyType:hover .btnBlue2{
  transform: translateY(-44px);
  color: #fff;
}
.propertyType:hover .btnLarge .btnBlue{
  transform: translateY(-70px);
}
.propertyType:hover .btnLarge .btnBlue2{
  transform: translateY(-70px);
  color: #fff;
}
.propertyType:hover:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:rgb(1 69 140 / 40%);
  z-index: 1;
  pointer-events: none;
}
.popupDetails{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}
.leftPopup{
  width: 50%;
  height: 100%;
}
.rightPopup{
  width: 50%;
}
.leftPopup img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rightPopup{
  padding:100px;
}
.closePopup, .btnCloseLeader{
  position: absolute;
  top:40px;
  right: 40px;
  color: var(--primary-color);
  border:1px solid var(--primary-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 28px;
  background: none;
}
.popupDetails{
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s linear;
}
.propertyType.active .popupDetails{
  opacity: 1;
  visibility: visible;
}
.bgGrey{
  background:#f6f6f6;
}
.sliderTestimonial{
  margin-top: 20px;
}
.slick-arrow{
  width:50px !important;
  height:45px !important;
  border-radius: 5px;
  background:#999 !important;
  z-index: 2 !important;
}
.slick-arrow i{
  color: #fff;
  font-size: 24px !important;
}
.slick-next:before, .slick-prev:before{
  display: none;
}
.slick-next{
  right: 79% !important;
}
.slick-prev{
  left: 1% !important;
}
.slick-next, .slick-prev{
  top: auto !important;
  bottom: -120px !important;
  margin-bottom: 60px;
}
.slick-arrow:hover{
  background:var(--primary-color) !important;
}
.itemTesti{
  margin-bottom: 15px;
}
.itemTesti p.title{
  font-size: 18px;
}
.leftTestimonil{
  background: #fff;
  display: flex;
  cursor: pointer;
  border:1px solid #ddd;
  align-items: center;
  width: calc(100% - 40px);
  justify-content: space-between;
  border-radius: 5px;
  padding:15px;
}
.itemTestRight p{
  font-size: 14px;
}
.itemTestLeft{
  width: 80px;
  height: 80px;
  border-radius: 5px;
}
.itemTestLeft img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.itemTestRight{
  width: calc(100% - 103px);
}
.mainLeft{
  height: 100%;
  padding-right: 50px;
}
.translateX50{
  margin-left: 40px;
}
.rightTestimonial{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.itemSlider{
  height: 100px;
  border:1px solid #999;
  padding:10px;
  text-align: center;
  background: #fff;
}
.innerLogo{
  height: 100%;
}
.itemSlider picture{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.itemSlider img{
  max-width: 100%;
  max-height: 100%;
}
.slick-slide{
  margin: 0 5px;
}
.bgSpecialization{
  background: url(../images/bg/bg-specialization.webp) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.bgSpecialization:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.9);
  z-index: -1;
}
.specializedLeft ul li{
  padding:10px 15px;
  color: #fff;
  font-size: 16px;
  padding-left: 15px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
/*.specializedLeft ul li:before{*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 17px;*/
/*  left: 0px;*/
/*  width: 10px;*/
/*  height: 10px;*/
/*  z-index: -1;*/
/*  background: #fff;*/
/*  border-radius: 50%;*/
/*}*/
/*.specializedLeft ul li:after{*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 13.1px;*/
/*  left: -4px;*/
/*  width: 18px;*/
/*  height: 18px;*/
/*  z-index: -2;*/
/*  border:1px solid #fff;*/
/*  border-radius: 50%;*/
/*}*/
.rightSpecial img{
  max-width: 100%;
  border-radius: 5px;
}
.leftArea .heading{
  font-size: 38px;
}
.rightArea ul{
  display: flex;
  justify-content:center;
  flex-wrap: wrap;
  align-items: center;
}
.rightArea ul li{
  border:1px solid var(--primary-color);
  color: var(--primary-color);
  width: calc(100% / 4 - 10px);
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  padding:10px 20px;
  margin: 5px;
}
.rightArea ul li:hover{
  background: var(--primary-color);
  color: #fff;
}
.faqHeader {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
}
.itemFaq{
  border: 1px solid var(--primary-color);
  padding: 20px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  background: #fff;
}
.faqBody {
  margin-top: 15px;
}
.faqBody ol li{
  font-size: 15px;
}
.faqHeader .fa-chevron-up{
  display: block;
}
.faqHeader .fa-chevron-down{
    display:none;
}
.collapsed .fa-chevron-up{
  display: none;
}
.collapsed .fa-chevron-down{
  display: block;
}
.faqBody ol li{
  padding:5px 0;
}
.faqBody p{
  margin-bottom: 10px;
  font-size: 15px;
}
.faqHeader h3{
  color: var(--primary-color);
}
.collapsed h3{
  color: #333;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 15px;
  color: #fff;
  background-color: var(--primary-color);
  z-index: 999;
  width: 45px;
  text-align: center;
  height: 45px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 18px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.footer{
  background: url(../images/bg/bg-specialization.webp) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  padding: 60px 0 30px;
}
.footer:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.9);
  z-index: -1;
}
.footerLogo img{
  filter: brightness(0) invert(1);
}
.itemFooter p{
  color: #eee;
  margin-top: 20px;
}
.footerLogo{
  width: 240px;
}
.footerLogo img{
  max-width: 100%;
}
.itemFooter ul{
  margin-top: 20px;
}
.itemFooter ul li a{
  color: #eee;
  padding: 5px 10px;
  padding-left: 0px;
  display: inline-block;
}
.address, .phone, .email {
  position: relative;
  padding-left: 30px;
}
.address:after {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  color: #fff;
  top: 0px;
  left: 0px;
}
.phone:after {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: #fff;
  top: 0px;
  left: 0px;
}
.phone a{
  color: #fff;
}
.text2{
  font-size: 15px;
}
.itemFooter img{
  filter: brightness(0) invert(1);
}
.itemType{
  padding:20px;
  border-radius: 5px;
  text-align: center;
  border:1px solid #e0e0e0;
  height: 100%;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.iconType {
  width: 45px;
  margin:0 auto;
}
.iconType img{
  max-width: 100%;
}
.socialLinks ul{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.copyright{
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #666;
}
.copyright p{
  font-size: 15px;
  color: #999;
}
.socialLinks ul li a{
  font-size: 18px;
  color: #fff;
  display: inline-block;
  padding: 0px 10px;
}


.shortBanner{
  background: url(../images/bg/bg-specialization.webp) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shortBanner:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.6);
  z-index: -1;
}
.itemLeader img{
  width: 100%;
  object-fit: cover;
}
.itemLeader{
  position: relative;
}
.mainLeader{
  position: absolute;
  top: 0px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  left: 0px;
  width: 100%;
  z-index: 2;
}
.leaderName{
  padding:20px ;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 100%); 
}
.leaderName h4, .leaderName p{
  color: #fff;
}
.itemLeader:hover:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.1);
  z-index: 1;
}
.rightnameLeader p {
  font-size: 24px;
  transform: translateX(-20px);
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.itemLeader:hover .rightnameLeader p {
  opacity: 1;
  transform: translateX(0);
}
.detailsLeader{
  position: fixed;
  right: -100%;
  transition: all 0.3s linear;
  width: 100%;
  height: 100%;
  top:0px;
  background: #fff;
  display: flex;
  z-index: 9999;
}
.leftLeader{
  width: 50%;
}
.leftLeader img{
  max-width: 100%;
}
.rightLeader{
  width: 50%;
  padding:60px;
  height: 100%;
  overflow-y: auto;
}
.active .detailsLeader{
  right: 0px;
}
.detailsLeader ol, .bioRight ol{
  list-style-type: disc;
}
.detailsLeader ol li, .bioRight ol li{
  padding:5px;
  font-size: 16px;
  color: #4D525A;
}
.appraisalType{
  height: 100%;
}
.appraisalType img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appraisalTypeRight ul{
  margin-top: 20px;
}
.appraisalTypeRight ul li{
  padding:10px;
  color: #222;
  font-weight: 500;
  position: relative;
}
.appraisalTypeRight{
    padding-left:20px;
}
.appraisalTypeRight ul li:after{
  display:none;
  content: '';
  position: absolute;
  top: 17px;
  left: 0px;
  width: 10px;
  height: 10px;
  z-index: -1;
  background: var(--primary-color);
  border-radius: 50%;
}
.appraisalTypeRight ul li:before{
  display:none;
  content: '';
  position: absolute;
  top: 13.1px;
  left: -4px;
  width: 18px;
  height: 18px;
  z-index: -2;
  border:1px solid var(--primary-color);
  border-radius: 50%;
}
.error {
    border-color: #ff0000 !important;
}
.error~label {
    color: #ff0000;
}
.form-floating>.form-control:focus, .form-select:focus, .form-control:focus{
  box-shadow:0px 2px 10px rgb(102 102 104 / 65%);
  border-color: var(--secodary-color);
  outline: none;
}
.repeatItem{
  margin-bottom: 15px; 
}
.repeatItem .form-control{
  height:60px;
  padding: 1.2rem 1.3rem;
  font-size: 14px;
}
.form-floating>label{
  font-size: 15px;
  left: 6px;
}
.textAreaHeight{
  height: 100px !important;
}
#cpatchaTextBox, #cpatchaTextBox2 {
  padding-left: 15px;
}
.capIn {
  border-radius: 3px;
  padding: 10px;
  width: 100%;
  border: 1px solid #ced4da;
}
.contactRight .address:after, .contactRight .phone:after{
  color: #333;
}
.contactRight p a{
  color: #333;
}
.socialLinked ul {
  display: flex;
}
.socialLinked ul li a.facebook {
  background: #1877F2;
}
.socialLinked ul li a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
}
.socialLinked ul li a.twitter {
  background: #00acee;
}
.socialLinked ul li a.linkedin {
  background: #0072b1;
}
.socialLinked ul li a.instagram {
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.clientLogo{
  border:1px solid var(--primary-color);
  margin: 10px 0;
  padding: 15px;
  height: 120px;
}
.clientLogo picture{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clientLogo img{
  max-width: 100%;
  max-height: 100%;
}
.faqHeader h3{
  width: calc(100% - 50px);
}
.blogImg img{
  max-width: 100%;
  border-radius: 10px;
}
.blogHomeTitle{
  padding:15px 5px;
}
.blogHomeTitle h4{
  color: #333;
}
.itemBlog:hover h4{
  color: var(--primary-color);
}
.blogSliderItem{
  padding: 0 5px;
}

.mainLeft .slick-list{
  height: 510px !important;
}
.mainLeft .slick-track{
    transform:translate(0) !important;
}
.slick-current .leftTestimonil{
  background: #e5ecf3;
  border-color:var(--primary-color);
}
.fullHeight{
  height: 100%;
}
.fullHeight img{
  height: 100%;
  object-fit: cover;
}
.itemSerivces p{
    margin-top:20px;
}
.leftImg{
    height:100%;
}
.leftImg img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.itemSerivces{
    padding:20px;
    border-radius:10px;
    background:#fff;
}
.pageNotFound{
    text-align:center;
}
.pageNotFound img{
    max-width:100%;
}
.btnLarge{
    height:68px;
}
.bioLeft{
    position:sticky;
    position:-webkit-sticky;
    top:50px;
    left:0px;
    background:#fff;
    text-align:center;
    padding:15px;
    z-index:1;
}
.bioLeft img{
    max-width:100%;
}
.bioRight{
    padding-left:40px;
}
.givingLeft img{
    width:100%;
    border-top-left-radius:10px;
    border-bottom-left-radius:10px;
    height:350px;
    object-fit:cover;
}
.givingRight{
    padding-left:40px;
}
.itemGiving{
    border-radius:10px;
    border:1px solid #ccc;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    margin-top:40px;
}
.givingRight{
    padding:20px;
    display:flex;
    flex-direction:column;
    height:100%;
    justify-content:center;
}
.givingRight p{
    margin-top:15px;
}


.blogContainer h1{
  font-size: 40px;
}
.itemBlogPage{
  background-color: rgb(237 237 237 / 61%);
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
}

.itemBlogPage a{
  display: grid;
  grid-template-columns: 40% 60%;
}

.blogPageImg img{
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.blogPageTitle h4{
  font-size: 15px;
  padding: 20px 15px;
  color: black;
}
.blogPageMainImg img{
  width: 100%;
  object-fit: cover;
}

.new_title{
  font-size: 17px;
}

.blogPageContent ul li{
  font-size: 15px;
  line-height: 25px;
}
.blogPageContent ul .newlist{
  padding-left: 22px;
  position: relative;
  line-height: normal !important;

}
.blogPageContent ul .newlist::before{
  content: '';
  width: 7px;
  height: 7px;
  background-color: var(--primary-color);
  position: absolute;
  left: 0px;
  top: 9px;
  border-radius: 100%;
  animation: blink 4s infinite ease-in;
}
@keyframes blink {
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.4);
  }
  100%{
    transform: scale(1);

  }
}
.blogPageContent ul .newlist::after {
  content: '';
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  position: absolute;
  left: -4.5px;
  top: 5px;
  border-radius: 100%;
}

.blogsgrid .blogImg img{
    height: 300px;
    object-fit: cover;
    
}
.blogsgrid{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 30px;
}
.list_list{
    padding-left:25px;
}
.list_list li{
   list-style: decimal;
   margin-top:15px;
}


/* home page css */
.hoverWhite:hover{
    color:#fff;
    border-color:#fff;
}
.checkList ul li{
    color:#fff;
    padding:5px 10px;
}
.checkList ul{
    display:flex;
    flex-wrap:wrap;
}
.heightSmall img{
    width:100%;
    height:200px;
    object-fit:cover
}
.t-quote.is-clamped{
        display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
      text-overflow: ellipsis;
      max-height: calc(1.7em * 3);
 }
.iconWhy{
    width:60px;
    height:60px;
    border-radius:50%;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}
.wCal{
    width:calc(100% - 80px);
}
.rounded-4{
    border-radius:1rem;
}
.checkCircleList{
    margin-top:20px;
}
.checkCircleList li{
    padding:7px 0;
    padding-left:35px;
    position:relative;
}
.checkCircleList li:before{
    position:absolute;
    top:10px;
    left:0;
    content: "\F26A";
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color:var(--primary-color);
    font-size:20px;
}
.ansItem{
  margin-top: 15px;
}
.itemFaqHome{
  padding: 15px 0;
  margin:0 0 0;
  border-bottom: 1px solid #e0e0e0;
}
.itemFaqHome h3{
  position: relative;
  padding-left: 2.5rem;
  cursor: pointer;
}
.itemFaqHome h3:after{
  content: '\f4fe';
  position: absolute;
  top:50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size:1.9rem;
}
.itemFaqHome.active h3:after{
  content: '\f2ea';
}
.rightFaq img{
  max-width: 100%;
}
.rightFaq{
  position: relative;
}
.bgPrimary{
    background:var(--primary-color);
}
.textLightPrimary{
    color:#d6e2ef;
}
.itemBox ul li{
    padding:5px;
    font-size:16px;
    position:relative;
    padding-left:20px;
}
.itemBox ul li:before{
    content:'';
    position:absolute;
    top:12px;
    left:0;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary-color);
}
.columnTwo ul{
    display:flex;
    flex-wrap:wrap;
}
.columnTwo ul li{
    width:calc(100% / 2);
}
.locationBox ul{
    display:flex;
    flex-wrap:wrap;
    column-gap:15px
}
.itemProperty ul{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}
.itemProperty ul li{
    padding:10px;
    color:var(--primary-color);
    border:1px solid var(--primary-color);
    font-size:16px;
    width:calc(100% / 5 - 15px);
    text-align:center;
    transition:all 0.3s ease-in-out;
    border-radius:3px;
    vertical-align:middle;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.itemProperty ul li:hover{
    background:var(--primary-color);
    color:#fff;
}
.itemIndustries ul{
    margin-top:15px;
    list-style:disc;
    margin-left:15px;
}
.itemIndustries ul li{
    padding:5px 0;
    font-size:15px;
}
.itemIndustries{
    margin-bottom:20px;
}
.itemIndustries .small_heading{
    font-size: 24px;
}
.whyChoose ul{
    list-style:disc;
    margin-left:15px;
    margin-top:10px;
}
.whyChoose ul li{
    padding:5px 0;
    font-size:15px;
}
.officeCall{
    display:flex;
    justify-content:center;
}
.officeCall li{
    color:#fff;
}
.officeCall li a{
    display:inline-block;
    color:#fff;
    font-size:14px;
    padding:5px 10px;
}
.btnBorder{
    background:transparent;
    border-color:var(--primary-color);
    color:var(--primary-color);
}
.btnBorder:hover{
    background:var(--primary-color);
    color:#fff;
}
.leftProperty ul{
    margin-top:25px;
}
.leftProperty ul li{
    padding-right:15px;
}
.leftProperty ul li a{
    display:block;
    padding:10px 15px;
    color:#111;
    position:relative;
    z-index:1;
}
.leftProperty{
    border-right:1px solid #e0e0e0;
}
.leftProperty ul li a:before{
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:0;
    height:100%;
    z-index:-1;
    background:#f5f5f5;
    transition:all 0.3s ease-in-out;
}
.leftProperty ul li a:hover:before{
    width:100%;
    left:0;
    right:auto;
    
}
.leftProperty ul li a.active:before{
    width:100%;
    left:0;
    right:auto;
    
}
.iconHeader{
    width:90px;
    height:90px;
    border-radius:50%;
    padding:20px;
}
.iconHeader img{
    max-width:100%;
}
.headerRight{
    display:flex;
    align-items:center;
    column-gap:30px;
}
.itemRightTab{
    margin-bottom:3.5rem;
    padding-bottom:3.5rem;
    border-bottom:1px solid #e0e0e0;
}
.itemRightTab:last-child{
    border-bottom:none;
}
.itemPro{
    scroll-margin-top: 150px;   
}
.smallText{
    font-size:.9rem;
}
.borderItem .itemRightTab:last-child{
    border-bottom:1px solid #e0e0e0;
}
.borderNone{
    border-bottom:none !important;
}


/* faq new page*/
.faqMenu ul{
    display:flex;
    justify-content:center;
    gap: 4px;
}
.faqMenu ul li a{
    display: inline-block;
    padding: 5px 10px;
    color: #000;
    background: #fff;
    border: 1px solid #e0e0e0;
    font-size: 13px;
    border-radius:5px;
    text-align:center;
}
.faqMenu ul li:hover a{
    background:var(--primary-color);
    color:#fff;
}
.border-primary{
    border-color:var(--primary-color) !important;
}
.faqContent{
    padding:15px;
    margin-top:15px;
    border-top:1px solid #e0e0e0;
}
.itemFaqNew{
    margin-top:20px;
    padding:20px;
    background:#f9f9f9;
    border-radius:10px;
}
.faqContent p{
    margin-bottom:10px;
}
.faqContent{
    display:none;
}
.headerFaq h3{
    position:relative;
}
.headerFaq{
    cursor:pointer;
}
.headerFaq h3:after {
    content: '\f078';
    position: absolute;
    top: 4px;
    right: 10px;
    font-size: 20px;
    color: var(--primary-color);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.headerFaq.active h3:after {
    content: '\f077';
}
.faqContent ul {
    margin: 15px 0;
    list-style: disc;
    margin-left: 15px;
}
.faqContent ul li {
    padding: 5px 0;
    font-size: 15px;
}
.fixTopMenu {
    position:sticky;
    top:100px;
    z-index:99;
}
.itemBlock { scroll-margin-top: calc(var(--header-h, 0px) + 150px); }
.wCal .sub_heading {
    font-size:30px;
}
.blogDesc{
    margin-top:20px;
}
.blogDesc p{
    display: -webkit-box;
  -webkit-line-clamp: 2;      /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blogImg{
    overflow:hidden;
}
.blogImg{
    border-radius: 10px;
}
.blogItems .blogImg img{
    height:230px;
    transition:all 0.3s ease-in-out;
}
.blogItems:hover .blogImg img{
    transform:scale(1.1);
}
.locationSlider .slick-next, .locationSlider .slick-prev{
    top:50% !important;
    bottom:auto !important;
}
.locationSlider .slick-prev{
    left:-25px !important;
}
.locationSlider .slick-next{
    right:-25px !important;
}
.space{
    height:90px;
}
.formItem{
    margin-bottom:15px;
}
.formItem label{
    font-size:14px;
    margin-bottom:5px;
}
.formItem label span{
    color:#ff000;
}
.formItem input, .formItem select{
    width:100%;
    padding:10px;
    height:50px;
    border:1px solid #999;
    border-radius:5px;
}
.formItem textarea{
    width:100%;
    padding:10px;
    border:1px solid #999;
    border-radius:5px;
}
.listBox ul{
    column-gap:25px;
}
.listDisc ul{
    list-style:disc;
    margin-left:20px;
}
.listDisc ul li a{
    color:#333;
    padding:5px 0;
    display:block;
    font-weight:600;
    color:var(--primary-color);
    font-size:15px;
}
.benefits ul{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-top:20px;
}
.benefits ul li{
    color:#fff;
}
.pillCertificate ul{
    display:flex;
    margin-top:20px;
    flex-wrap:wrap;
    gap:15px
}
.pillCertificate ul li{
    padding:5px 15px;
    font-size:14px;
    color:#fff;
    background:rgb(255 255 255 / 20%);
    border-radius:40px;
    border:1px solid #eee;
}
.rightBio ul li a{
    color:#fff;
}
.boxBorder{
    background:rgb(255 255 255 / 15%);
    padding:20px;
    border-radius:10px;
    margin:30px 0;
}
.boxBorder ul li a{
    display:inline-block;
    padding:8px 10px;
}
.iconBox{
    width:60px;
    height:60px;
    border-radius:10px;
    background:#cfdce9;
    font-size:2.3rem;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-color);
}
.boxCol{
    width:calc(100% - 90px);
}
.iconBoxWhite {
    background: var(--primary-color);
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.check-list-white {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-white li {
    color: #333;
    margin: 5px 0;
    padding-left: 21px;
    position: relative;
    font-size: 16px;
}

.check-list-white li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
}
.iconBoxWhite {
    background: var(--primary-color);
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.iconBoxWhite:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.25);
}

.ctaCard {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 35px 28px;
    text-align: center;
    transition: .3s ease;
    height: 100%;
}

.ctaCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.ctaIcon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
}
.btnThemeOutline {
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btnThemeOutline:hover {
    background: var(--primary-color);
    color: #fff;
}
.learnLinks {
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
}

.learnLinks a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 2px;
    transition: .3s;
}

.learnLinks a:hover {
    text-decoration: underline;
}

.learnLinks span {
    margin: 0 2px;
    color: var(--primary-color);
}


