:root {
  --red: #C12B2C;
  --white: #ffffff;
  --blue: #041E41;
  --lightgrey:  #CCCED8;
  --ltg: #EBEFF2;
  --black:  #000000;
  --primaryfont: 'Poppins', sans-serif;
  --secondaryfont: 'Merriweather', serif;
  scroll-behavior: auto;
}
::-webkit-scrollbar-track{
  background-color: var(--lightgrey);
}
::-webkit-scrollbar{
  width: 12px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb{
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: var(--red);
}
.overflow-hidden{
  pointer-events: none;
}
html,body{
	font-family: var(--primaryfont);
	font-weight: 400;
  overflow-x: hidden;
  background-color: var(--ltg);
}
h1{
  font-size: 91px;
  font-weight: 600;
  line-height: 91px;
  color: var(--red);
}
h2{
  color: var(--blue);
  font-weight: 700;
  font-size: 41px;
  line-height: 41px;
  text-transform: uppercase;
}
h3{
  color: var(--blue);
  font-size: 32px;
  line-height: 41.28px;
  font-weight: 300;
}
.h3-secondary{
  font-size: 24px;
  line-height: 33px;
}
p{
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--primaryfont);
}
.text-uppercase{text-transform: uppercase;}
.text-capitalize{text-transform: capitalize;}
.text-lowercase{text-transform: lowercase;}
.no-decoration{text-decoration: none;}
.clr-white{color: var(--white);}
.clr-blue{color: var(--blue);}
.clr-red{color: var(--red);}
.clr-lightgrey{color: var(--red);}
.clr-black{color: var(--black);}
.clr-ltg{color: var(--ltg);}
.bg-white{background: var(--white);}
.bg-red{background: var(--red);}
.bg-blue{background: var(--blue);}
.bg-ltg{background-color: var(--ltg);}
.wd-short{max-width: 610px;}
.fnt-200{font-weight: 200!important;}
.fnt-500{font-weight: 500;}
.font-400{font-weight: 400;}
.fnt-700{font-weight: 700;}
.mb-30{margin-bottom: 30px;}
.pl-20{padding-left: 20px;}
.border-none{border: none!important;}
.heading-b{
	border-bottom: 5px solid var(--blue);
	display: inline-block;
}
a.link-cs{
	position: relative;
	transition: transform .3s ease-in-out;
}
a.link-cs::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--red);
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}
a.link-cs.white-boder::before{
  background-color: var(--white);
}
a.link-cs:focus::before, a.link-cs:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
.btn-primary{
  color: var(--white);
  background-color: var(--red);
  border-color: var(--red);
  padding: 16px 32px;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: 600;
}
.borderbutton{
  margin-top: 100px;
}
.btn-outline-primary{
  border-radius: 0;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-primary:hover, .btn-primary:hover, .btn-check:active+.btn-outline-primary, .btn-check:checked+.btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active{
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
  box-shadow: none;
}
.btn-white a{color: var(--white);}
.btn-white a.btn-outline-primary:hover, .btn-white a.btn-primary:hover{
  background-color: var(--red);
  border-color: var(--red);
}
.btn-blue a{color: var(--blue);}
.btn-blue a.btn-outline-primary:hover, .btn-blue a.btn-primary:hover{
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn-outline-primary:active,.btn-outline-primary:focus,.btn-primary:active,.btn-primary:focus,.footer-contact-btn:active,.footer-contact-btn:focus{
  background-color: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  outline: none;
  box-shadow: none!important;
}
.pdY-large{padding-top: 150px;padding-bottom: 150px;}
.pdy-medium{padding-top: 160px;padding-bottom: 160px;}
.pdy-sml{padding-top: 75px;padding-bottom: 75px;}
.pt-7{padding-top: 5rem;}
.height100vh{height: 100vh!important;}
.fixed{position: fixed;}
.wd100{width: 100%;}
.mb-120{margin-bottom: 120px;}
.mt-40{margin-top: 40px;}
.mt-sm-70{margin-top: 70px;}
.mt-75{margin-top: 75px;}
.mt-120{margin-top: 120px;}
.pt-140{padding-top:138px;}
.pb-150{padding-bottom: 150px;}
.pt-94{padding-top: 88px;}
.plr-0{padding-left: 0;padding-right: 0;}
.max-width-630{max-width: 630px;}
.max-width-970{max-width: 970px;}
/*header css*/
.header-dark{
  background-color: var(--red);
}
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

nav.navbar{
	padding: 40px 48px;
  z-index: 999;
}
.scrolled-down,.scrolled-up{
  transition: all 0.3s ease-in-out;
  width: 100%;
  background-color: var(--red);
}
.scrolled-down{
  position: fixed;
  top: -200px;
  z-index: 9;
}
.scrolled-up{
  position: fixed;
  top: 0;
  z-index: 9999;
}
.modal-backdrop {
    pointer-events: none;
}
.offcanvas-body{
	padding: 80px 45px;
  text-align: left;
}
.menu-heading{
	color: var(--lightgrey);
}
.mailaddress{
	color: var(--red);
	text-decoration: none;
}
.menu-heading,.mailaddress{
	font-size: 16px;
	line-height: 20px;
}
.right-menu{
  position: relative;
  margin-top: 3px;
  pointer-events: all;
  text-align: right;
}
ul.navitems{
    margin: 25px 0px 60px;
}
ul.navitems li.nav-item{
	margin-bottom: 5px;
}
ul.navitems li a.nav-link{
	color: var(--red);
	font-size: 32px;
	line-height: 30px;
	font-weight: 600;
  display: inline-block;	
  text-transform: uppercase;
}

.contact-btn{
  margin-right: 36px;
  display: inline-block;
}
.contact-btn a:hover{
  border-color: var(--red);
}
/*hamburger css*/
#hamicon{position:relative;z-index:9999;width:30px;height:30px;background:0 0;border:none;cursor:pointer}#hamicon span{display:block;position:absolute;height:4px;width:50%;background:var(--blue);opacity:1;-webkit-transform:rotate(0);-moz-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0);-webkit-transition:.25s ease-in-out;-moz-transition:.25s ease-in-out;-o-transition:.25s ease-in-out;transition:.25s ease-in-out}#hamicon.activefooter span{background:var(--white)}#hamicon.activefooter.open span,#hamicon.inactivefooter span{background:var(--red)}#hamicon span:nth-child(even){left:50%;border-radius:0 2px 2px 0}#hamicon span:nth-child(odd){left:0;border-radius:2px 0 0 2px}#hamicon span:nth-child(1),#hamicon span:nth-child(2){top:0}#hamicon span:nth-child(3),#hamicon span:nth-child(4){top:9px}#hamicon span:nth-child(5),#hamicon span:nth-child(6){top:18px}#hamicon.open span:nth-child(1),#hamicon.open span:nth-child(6){-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}#hamicon.open span:nth-child(2),#hamicon.open span:nth-child(5){-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}#hamicon.open span:nth-child(1){left:3px;top:7px}#hamicon.open span:nth-child(2){left:calc(50% - 3px);top:7px}#hamicon.open span:nth-child(3){left:-50%;opacity:0}#hamicon.open span:nth-child(4){left:100%;opacity:0}#hamicon.open span:nth-child(5){left:3px;top:15px}#hamicon.open span:nth-child(6){left:calc(50% - 3px);top:15px}
#hamicon.open{top: -15px;right: 10px;}
/*header css end */
/*home page css*/

.hero-section{
  /*padding: 348px 0px 310px;*/
  height: 800px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.heroSubTitle{
  font-size: 48px;
  line-height: 55px;
  border-bottom: 2px solid var(--red);
  color: var(--white);
  display: inline-block;
  padding: 10px 0px;
  font-weight: 300;
  text-transform: unset;
}
.herovideo{
  position: absolute;
  height: 100%;
  width: 100vw;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.bottom-arrow{
  margin: 45px 0px;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}
.bottom-arrow a{text-decoration: none;}
.bottom-arrow a span{
  color: #fff;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 23px;
  font-size: 18px;
  line-height: 19px;
}
@supports (-webkit-touch-callout: none) {
  .concrete-background,.property-tip-main,.homeprojects-title,footer,.hero-section,.project-hero-section{
    background-attachment:unset!important;
  }
}
.slidingsec{
  align-items: flex-start;
}
.concrete-background{
  background-image: url('../images/concrete.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
.property-tip-main{
  padding-top: 75px;
  max-height: 723px;
}
.property-tip-inner h3{
  font-size: 40px;
  line-height: 44px;
  font-weight: 300;
  font-family: var(--primaryfont);
}
.property-tip-inner h3 b{
  font-weight: 600;
}
.our-approach-main{
  padding-top: 314px;
}
.cards{
  background-color: #D9D9D9;
  padding: 63px 27px;
  text-align: center;
  height: 100%;
}
.card-icon{margin-bottom: 46px;}
.card-icon img{
  height: 73px;
  object-fit: cover;
}
.homeprojects-title{
  background-image: url('../images/steal-beams-blue.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/*.slidingsec{
    position: relative;
    top: -80px;
  }*/
.slidingsec h4{
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue);
  text-transform: uppercase;
}
.slidingsec ul li{
  font-size: 18px;
  line-height: 25px;
  color: var(--blue);
  font-weight: 400;
  margin-bottom: 20px;
}
.slidingsec ul li span{
  color: #484848;
  font-size: 16px;
}
.bgslide1{
  background-image: url(../images/project1.png);
}
.services-inner p{
  font-family: var(--secondaryfont);  
  color: var(--blue);
}
.testimonial{
  overflow-x: hidden;
  background-color: var(--blue);
}
.testimonial-slider{
  background-color: var(--blue);
  padding: 0px 125px 36px;
}
.testimonial-slider .slick-track{display: flex;}
.testimonial-slider .slick-slide{
  background-color:  #10284A;
  padding: 75px;
  margin: 0px 45px;
  height: auto;
}
.testimonial-slider h4,.testimonial-slider p{margin-bottom: 38px;color: rgba(255, 255, 255, 0.8);}
.testimonial-slider h4{
  font-size: 26px;
  line-height: 30px;
  font-weight: bold;
}
.user-details{margin-top: 40px;}
.testimonial-slider span.personname, .testimonial-slider span.person-designation{
  color: rgba(255, 255, 255, 0.8);
  display: block;
  font-size: 18px;
  line-height: 28px;
}
.morecontent span {
    display: none;
}
.morelink {
    display: inline-block;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}
.morelink:hover{
  color: var(--red);
}
.testimonial-slider span.personname{font-weight: 700;text-transform: uppercase;}
.testimonial-slider span.person-designation{font-style: italic;font-weight: 600;}
.slick-dots{left: 0;bottom: -30px;}
.slick-dots li.slick-active button:before{color: var(--red);}
.slick-dots li button:before{font-size: 12px;color: var(--white);}
.slick-next:before, .slick-prev:before{color: var(--blue);}
.slick-next, .slick-prev{top: 42%;width: auto;height: auto;}
.slick-prev{left: 0;}
.slick-next{right: 35px;}
.slick-prev:before{content: url('../images/icons/prev.png');}
.slick-next:before{content: url('../images/icons/next.png');}
/*about page css*/
.pb-300{padding-bottom: 300px;}
.top-section{padding-bottom: 110px;padding-top: 150px}
.font-pri-red{
  font-family: var(--primaryfont);
  text-transform: uppercase;
  color: var(--red);
}
.large-heading{
  font-weight: 700;
  font-size: 64px;
  line-height: 59px;
  letter-spacing: -0.01em;
  max-width: 700px;
  margin-bottom: 20px;
}
.main-title p{
  font-family: var(--primaryfont);
  font-style: normal;
  font-weight: 400;
  font-size: 27px;
  line-height: 32px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue);
  margin:0px;
}
.narrow-section h2{
  text-transform: uppercase;
  margin-bottom: 20px;
}
.paragraph-secondary{
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--blue);
  margin-bottom: 30px;
}
.about-info-col{
  padding-top: 85px;
  padding-bottom: 85px;
}
.about-info-col h2,.about-info-col h4{
  color: var(--white);
  margin: 0px;
  font-weight: 200;
}
.about-info-col h4{margin-top: 8px;}
.p-15{padding: 0px 15px;}
.mbl-img{display: none;}
/*about page css end*/
/*contact form css*/
.checkbox-group .btn-outline-primary{
  padding: 10px 30px;
  margin-right: 20px;
  margin-bottom: 25px;
  text-transform: unset;
}
.btn-primary#subBtn{
  text-transform: uppercase;
  padding: 10px 27.5px;
  border-radius: unset;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}
.input {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: calc(100% - 2em);
  vertical-align: top;
}
input.form-control:-internal-autofill-selected {
  background-color: #fff;
}
.form-control:focus,.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus{
  border-color: unset;
  box-shadow: unset;
  background-color: transparent;
}
.form-control:focus{
  font-size: 16px;
  color: var(--blue);
}
.input__field {
  position: relative;
  display: block;
  float: right;
  padding: 0.8em;
  top: 60px;
  border: none;
  border-radius: 0;
  font-weight: 400;
  -webkit-appearance: none; /* for box shadows to show on iOS */
}
.input__field:focus {
  outline: none;
}
.input__label {
  display: inline-block;
  float: right;
  padding: 0 1em;
  width: 40%;
  font-size: 70.25%;
  -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input__label-content {
  position: relative;
  display: block;
  padding: 1.6em 0;
  width: 100%;
}
.graphic {
  position: absolute;
  top: 0;
  left: 0;
  fill: none;
}
.input--nao {
  overflow: hidden;
  padding-top: 1em;
  padding-bottom: 70px;
}
.input__field--nao {
  padding: 0.5em 0em 0.25em;
  width: 100%;
  background: transparent;
  color: var(--blue);
}
.input__label--nao {
  position: absolute;
  top: 0.45em;
  left: 0;
  display: block;
  width: 100%;
  text-align: left;
  padding: 0em;
  pointer-events: none;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: -webkit-transform 0.2s 0.15s, color 1s;
  transition: transform 0.2s 0.15s, color 1s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.input__label--nao.textarea_label{
  top: 1.1em;
}
textarea.form-control{
  overflow: hidden;
  resize: none;
  top: 77px;
}
.contact-label{
  color: var(--lightgrey);
  font-size: 32px;
  line-height: 41px;
  font-weight: 300;
}
.graphic--nao {
  stroke: var(--red);
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.7s, stroke 0.7s;
  transition: transform 0.7s, stroke 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
  transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
} 
.input__field--nao:focus + .input__label--nao,
.input--filled .input__label--nao {
  color: var(--blue);
  -webkit-transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
  transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
}
.input__field--nao:focus ~ .graphic--nao,
.input--filled .graphic--nao {
  stroke: var(--blue);
  -webkit-transform: translate3d(-66.6%, 0, 0);
  transform: translate3d(-66.6%, 0, 0);
}
.note{
  font-size: 13px;
  line-height: 17px;
  color: var(--blue);
  text-transform: uppercase;
}
#confirmbox + label {
  display: block;
  cursor: pointer;
  padding: 0.2em;
}

#confirmbox {
  display: none;
}

#confirmbox + label:before {
  content: "\2714";
  background-color: var(--lightgrey);
  display: inline-block;
  width: 33px;
  height: 33px;
  line-height: 33px;
  color: transparent;
  transition: .2s;
  margin-right: 18px;
  text-align: center;
  font-size: 18px;
}
#confirmbox + label:active:before {transform: scale(0);}
#confirmbox:checked + label:before {
  background-color: var(--lightgrey);
  border-color: var(--lightgrey);
  color: var(--blue);
}
.err {
  text-align: left;
  color: #E46B6B;
  font-size: 12px;
  line-height: 24px;
  display:none;
}
.formsubmission-text{
  background-color: var(--blue);
  color: var(--white);
  font-weight: 400;
  padding: 10px 15px;
  display: none;
}
.success-msg.formsubmission-text{
  display: inline-block;
}
/*contact form css end*/
/*residency page*/
.residency-title{
  font-size: 91px;
  line-height: 91px;
  font-weight: 600;
  color: var(--blue);
}
.visa-tip-inner{
  padding: 50px 15px;
  background-color: var(--blue);
  text-align: center;
}
.Residency-rightCol h3{margin-top: 80px;}
.Residency-rightCol ul{list-style: none;}
.Residency-rightCol ul li::before {
  content: "\2022";
  color: var(--red);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 30px;
  vertical-align: top;
}
.Residency-rightCol ul li{
  font-size: 18px;
  line-height: 25px;
  color: var(--blue);
  margin-bottom: 13px;
}
/*footer css*/
footer{
  background-image: url('../images/footer-background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
	padding-top: 150px;
  position: relative;
}
.footer-top h2{
  font-size: 91px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 83px;
  text-transform: capitalize;
}
.footer-contact-btn{
  color: var(--red);
  background: var(--white);
  text-decoration: none;
  padding: 17.5px 30.5px;
  margin-top: 20px;
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  transition: .5s linear;
}
.footer-contact-btn:hover{
  background: var(--blue);
  color: var(--white);
}
.footer-middle{
	margin-top: 140px;
  margin-bottom: 40px;
}
.footer-email-text, .footer-quote h5{
  color: var(--white);
  text-decoration: none;
  font-size: 32px;
  line-height: 38px;
  font-weight: 200;
}
.footer-phone-text,.address-text{
  margin-top: 25px;
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  font-size: 18px;
  line-height: 25px;
  padding-bottom: 5px;
}
.footer-phone-text:hover,.footer-email-text:hover{color: var(--white);}
.address-text > span{
  display: inline-flex;
  padding-left: 4px;
}
.footer-quote q{
  font-size: 24px;
  line-height: 24px;
  font-style: italic;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--primaryfont);
  color: var(--white);
}
.footer-bottom{
  padding: 30px 0px;
  background: var(--red);
}
.footer-company-details p,ul.legal-pages li a{
  color: var(--white);
  font-size: 13px;
  line-height: 17px;
  margin-bottom: 6px;
  vertical-align: top;
}
.prs-logo-footer{
  width: 60%;
}
ul.legal-pages{
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}
ul.legal-pages li a{
  text-decoration: none;
  font-weight: 500;
}

.topoffset,.mbl-icons{display: none;}
.desk-icons{display: block;}
/*footer css end*/
/*property sourcing page css start*/
  .what-we-do{
    padding-top: 94px;
    padding-bottom: 129px;
  }
  .bg-blue-text span{
    display: block;
    max-width: 923px;
    padding: 106px 30px;
    margin: 0 auto;
  }
  .icon-img{
      max-width: 124px;
      margin: 0 auto;
  }
  .card-inner-text h2{
    color: var(--white);
    font-weight: 200;
    margin: 32px 0px;
  }
  .card-inner-text p{color: var(--white);}
  .infobanner{padding: 66px 25px;}
  .infobanner h3{
    color: var(--white);
    max-width: 800px;
    margin: auto;
  }
  .infobanner h3 span{font-weight: 600;}
/*acquisition page css end*/
.project-slide-text {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slide-img-project{
  position: relative;
}
.slide-img-project.fixed{
  position: fixed;
  top: 0;
  bottom: auto;
}
.slidingsec{
  position: relative;
    top: -180px;
}
#viewallproject-btn{
  clear: both;
}
#slide-img-project{
  position: relative;
  top: 110px;
  right: 0;
}
.slidingsec-mob{
  display: none;
}
.project-text{
  margin-top: 50px;
}
@media(max-width: 991.96px){
  .slidingsec-desktop{
    display: none;
  }
  .slidingsec-mob{
    display: flex;
  }
  .slidingsec{
    position: static;
      top: 0;
  }
  #slide-img-project{
    position: static;
    top: 0;
  }
}
#slide-img-project #slideimg1, #slide-img-project #slideimg2{
  transition: transform 0.5s ease-out;
  position: absolute;
  right: 0;
  top: 0;
}
.position-relative{
  position: relative;
}
/*Responsive Queries*/
@media (min-width: 576.96px){
  .mobile{
    display: none;
  }
  .right-menu{
    width: 50%;
  }
}
@media(min-width: 767.96px){
  .offcanvas-end{
    width: 660px;
  }
  .pr-m-33{
    padding-right: 33px;
  }
  .pl-m-33{
    padding-left: 33px;
  }
}
@media(min-width: 992px){
  .container.container-cs{
    max-width: 825px;
  }
  .mb-lg-170{margin-bottom: 170px;}
  .mb-lg-70{margin-bottom: 70px;}
  .img-hover-zoom{
    overflow: hidden;
  }
  .img-hover-zoom img {
    transition: transform .5s ease;
  }
  .img-hover-zoom:hover img {
    transform: scale(1.5);
  }
  
}
@media(min-width: 1200px){
  .clientimg{height: 792px;object-fit: cover;}
  .about-container{
    max-width: 1056px;
  }
  /*menu css*/
  .mob-menu{
    display: none;
  }
  .desktop-menu ul.navbar-nav{
    flex-direction: row;
  }
  .navbar-nav .nav-link{
    padding-right: 16px;
    padding-left: 16px;
    text-transform: uppercase;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
  }
  .navbar-nav .nav-link:hover{
    color: var(--blue);
    transition: 0.5 linear;
  }
}
@media only screen and (max-width: 1400px) and (max-height: 850px){
  .project-text{
    margin-top: 180px;
  }
}
@media(max-width: 1200px){
  h1,.footer-top h2,.residency-title{
    font-size: 74px;
    line-height: 1.2;
  }
  .our-approach-main{padding-top: 272px;}
  .desktop-menu{display: none;}
}
@media(max-width: 992px){
  h1,.footer-top h2, .residency-title{font-size: 60px;}
  .our-approach-main{padding-top: 215px;}
  .heroSubTitle{
    font-size: 44px;
    line-height: 1.2;
    margin-top: 0;
  }
  /*.slidingsec{
    top: -50px;
  }*/
  .property-tip-main{max-height: 640px;}
  .testimonial-slider{padding: 0px 50px 36px;}
  .slick-next,.slick-prev{display: none!important;}
  .footer-contact-btn{font-size: 26px;}
  /*about page*/
  .large-heading{
    font-size: 46px;
    line-height: 46px;
  }
  .top-section {
    padding-bottom: 100px;
    padding-top: 100px;
  }
  .pb-300{
    padding-bottom: 100px;
  }
  .paragraph-secondary{
    margin-bottom: 20px;
  }
  .about-info-col h3{
    font-size: 35px;
    line-height: 35px;
  }
  .project-text{
    margin-top: 32px;
  }
  .services-inner .col-lg-4{
    margin-bottom: 40px;
  }
  
  .pt-md-22{
    padding-top: 22px;
  }
  .hero-section{
    height: 600px;
  }
  .mb-md-100{
    margin-bottom: 100px;
  }
  .mt-md-100{
    margin-top: 100px;
  }
}
@media(max-width: 767.96px){
  nav.navbar{padding: 30px 22px;}
  h1,.footer-top h2, .residency-title{font-size: 48px;line-height: 1.1;}
  .our-approach-main{padding-top: 150px;}
  .heroSubTitle{font-size: 28px;}
  h2{
    font-size: 28px;
    line-height: 28px;
  }
  h3{
    font-size: 26px;
    line-height: 33px;
  }
  h4{
    font-size: 21px;
    line-height: 100%;
  }
  .slidingsec h4{
    font-size: 21px;
    line-height: 21px;
  }
  p{
    font-size: 18px;
    line-height: 140%;
  }
  .property-tip-inner h3{
    font-size: 32px;
    line-height: 36px;
  }
  .property-tip-main {max-height: 545px;}
  .cards{padding: 45px 15px;} 
  .pt-140{padding-top: 120px;}
  .dp-none-mob, .contact-btn{display: none;}
  .testimonial-slider{padding: 0;}
  .testimonial-slider .slick-slide{padding: 45px;margin: 0px 15px;}
  .pdY-large{padding-top: 100px;padding-bottom: 100px;}
  .pdy-medium{padding-top: 80px;padding-bottom: 80px;}
  .pb-150{padding-bottom: 100px;}
  .borderbutton{margin-top: 50px;}
  .text-center-md{text-align: center!important;}
  .footer-quote{display: none;}
  .user-info{display: block;}
  footer{padding-top: 100px;}
  .footer-middle{margin-top: 100px;}
  .footer-top h4{
    font-size: 56px;
    line-height: 51px;
  }
  /*about page*/
  .abouthero{
    background-position: 75% 85px;
    align-items: unset;
  }
  .abouthero h1{
    padding-top: 130px;
    padding-left: 15px;
  }
  .about-info-col{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .delivering-results .row{flex-direction: column-reverse;}
  .narrow-section img{
    margin: 80px auto 0;
    display: block;
  }
  .narrow-section img.mbl-img{
    display: none;
  } 
  .footer-addess{
    margin-bottom: 35px;
  }
  .mbl-icons{
    display: block;
  }
  .desk-icons{
    display: none;
  }
  .footer-middle{
    margin-bottom: 16px;
  }
  .footer-company-details{
    margin-top: 30px;
  }
  .mt-sm-60{
    margin-top: 60px;
  }
  .mt-sm-30{
    margin-top: 30px;
  }
  .Residency-rightCol{
    margin-top: 40px;
  }
  /*property sourcing page*/
  .md-col-rev{
    flex-direction: column-reverse;
  }
  .what-we-do .col-md-4{
    margin-top: 40px;
  }
}
@media(max-width: 575.96px){
  .header-logo{max-width: 80%;}
  .heroSubTitle{
    text-decoration: underline;
    text-decoration-color: var(--red);
    text-underline-offset: 6px;
    text-decoration-thickness: from-font;
    border-bottom: none;
  }
  /*.mr-xs-vh{
    margin-left: -7vh;
    margin-right: -7vh;
  }*/
  .our-approach-main{padding-top: 120px;}
  .testimonial-slider .slick-slide{padding: 0; background-color: transparent;}
  .text-center-mob{text-align: center;}

  /*about page*/

  .dt-img{display: none;}
  .mbl-img{display: block;}
  .p-15{padding: 0;}
  .large-heading {
    font-size: 32px;
    line-height: 29px;
    margin-bottom: 10px;
  }
  .main-title p{
    font-size: 16px;
    line-height: 19px;
  }
  .top-section {
    padding-bottom: 64px;
    padding-top: 64px;
  }
  .pb-300 {padding-bottom: 120px;}
  .contact-label{
    font-size: 22px;
    line-height: 27px;
  }
  .input__label--nao,.input__label--nao.textarea_label{top: 1.95em;}
  .pd-sm-0{padding: 0;}
  .desktop{display: none;}
  .mt-120{margin-top: 60px;}
  .pt-xs-22{padding-top: 22px;}
}
@media(max-width: 460px){
  .footer-email-text, .footer-quote h5{
    font-size: 26px;
    line-height: 32px;
  }
  .property-tip-inner h3 {
      font-size: 26px;
      line-height: 32px;
  }
  .property-tip-main{
    max-height: 470px;
  }

}
@media(max-width: 420px){
  .contact-label {
    font-size: 16px;
    line-height: 19px;
  }
  .input__label--nao, .input__label--nao.textarea_label{
    top: 3.95em;
  }
  .checkbox-group .btn-outline-primary{
    padding: 6px 16px;
    margin-right: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 17px;
  }
}
@media only screen and (min-width: 992px) and (min-height: 815px){
  footer{
    height: 100vh;
  }
  .footer-bottom{
    position: absolute;
    width: 100%;
    bottom: 0;
  }
}