:root {
    --blue140:#113DFA;
    --blue120:#375CFB;
    --blue100:#5D7BFC;
    --blue80:#849BFD;
    --blue20:#E4E9FE;
    --white140:#ffffff;
    --white120:#fcfdfd;
    --white100:#F1F3F5;
    --white80:#E6E9EC;
    --white60:#DADFE4;
    --white40:#C4CBD3;
    --white20:#ADB7C3;
    --white10:#F3F4F6;
    --blk140:#1F252A;
    --blk120:#303841;
    --blk100:#414B58;
    --blk80:#515F6E;
    --blk60:#627285;
    --blk40:#8090A1;
    --blk20:#97A4B2;

	--f4: #f4f4f4;

    --purple: #af52de;
  	--green: #34c759;
  	--orange: #ff9500;
  	--seablue: #409cff;
  	--skyblue: #64D2FF;
  	--yellow: #ffcc00;
  	--red: #ff3b30;
  	--pink: #ff6482;
  	--brown: #b25000;

    --studio:#C4CBD3;
    --1bed:#FA887B;
    --2bed:#FFE07F;
    --3bed:#8CCDF3;
    --4bed:#C9B2FD;
    --5bed:#FFAF80;
    --penthouse:#E4E9FE;
    --red:#FF453A;
    --radius4:4px;
    --radius6:6px;
    --radius8:8px;
    --radius12:12px;
    --radius16:16px;
    --radius24:24px;

    /*fonts*/
    --fs42:42px;
    --fs38:38px;
    --fs34:34px;
    --fs28:28px;
    --fs26:26px;
    --fs24:24px;
    --fs22:22px;
    --fs20:20px;
    --fs18:18px;
    --fs17:17px;
    --fs16:16px;
    --fs15:15px;
    --fs14:14px;
    --fs13:13px;
    --fs12:12px;
    --fs11:11px;
    --shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 1.272px 15.267px 0 rgba(0, 0, 0, 0.05);
}
@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Bold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Bold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('../fonts/SFProText-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SF Pro Text';
    src: url('../fonts/SFProText-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
body {
  font-family: 'SF Pro Text', sans-serif;
  font-weight: 400;
  color: #1F252A;
  line-height: 1.5;
}

a {
	color: var(--blue140);
}
.blk20{
    color: var(--blk20);
}
.blk40{
    color: var(--blk40);
}
.blk60{
    color: var(--blk60);
}
.blk80{
    color: var(--blk80);
}
.blk100{
    color: var(--blk100);
}
.blk120{
    color: var(--blk120);
}
.blk140{
    color: var(--blk140);
}

.bl20{
    color: var(--blue20);
}
.bl40{
    color: var(--blue40);
}
.bl60{
    color: var(--blue60);
}
.bl80{
    color: var(--blue80);
}
.bl100{
    color: var(--blue100);
}
.bl120{
    color: var(--blue120);
}
.bl140{
    color: var(--blue140);
}

.wt10{
    color: var(--white10);
}
.wt20{
    color: var(--white20);
}
.wt40{
    color: var(--white40);
}
.wt60{
    color: var(--white60);
}
.wt80{
    color: var(--white80);
}
.wt100{
    color: var(--white100);
}
.wt120{
    color: var(--white120);
}
.wt140{
    color: var(--white140);
}

.red100{
    color: var(--red);
}
.fs-11{
    font-size: var(--fs11);
}
.fs-12{
    font-size: var(--fs12);
}
.fs-13{
    font-size: var(--fs13);
}
.fs-14{
    font-size: var(--fs14);
}
.fs-16{
    font-size: var(--fs16);
}
.fs-17{
    font-size: var(--fs17);
}
.fs-18{
    font-size: var(--fs18);
}
.fs-22{
    font-size: var(--fs22);
}
.fs-20{
    font-size: var(--fs20);
}
.fs-24{
    font-size: var(--fs24);
}
h2{
    font-size: var(--fs42);
}
h3{
    font-size: var(--fs34);
}
h4{
    font-size: var(--fs28);
}
h5{
    font-size: var(--fs24);
}
h6{
    font-size: var(--fs20);
}
.br4{
    border-radius: var(--radius6) !important;
}
.br6{
    border-radius: var(--radius6) !important;
}
.br8{
    border-radius: var(--radius8) !important;
}
.br16{
    border-radius: var(--radius16) !important;
}
.br24{
    border-radius: var(--radius24) !important;
}
.lh-1{
    line-height: 1.2;
}
.shadow-sm{
    box-shadow: var(--shadow);
}
.bg-wt100{
    background: var(--white100);
}
.bg-orange {
  background: var(--orange);
}
.bg-pink {
  background: var(--pink);
}
.bg-yellow {
  background: var(--yellow);
}
.bg-skyblue {
  background: var(--skyblue);
}
.bg-purple{
  background: var(--purple);
}
.bg-brown {
  background: var(--brown);
}
.bg-red{
  background: var(--red);
}
h1, h2, h3, h4, h5, h6{
  font-weight: 500;
}
.t-h1, .t-h2, .t-h3, .t-h4, .t-h5, .t-h6{
    font-family: 'SF Pro Display';
}
.rubik{
   font-family: 'Rubik', sans-serif !important; 
}
a{
	color: var(--blue140);
}
a:hover, a:focus{
	text-decoration: none;
	color: var(--blue140);
}
.text-underline{
    text-decoration: underline !important;
}
.btn{
	font-weight: 500;
	border-radius: var(--radius12);
	font-size: var(--fs22);
	padding: 12px 20px;
	letter-spacing: 0;
}
.btn:hover, .btn:focus{
    box-shadow: none;
    -webkit-box-shadow: none;
}
.t-h1, h1{
	font-size: 56px;
}
.t-h2, h2{
	font-size: 48px;
}
.t-h3, h3{
	font-size: 40px;
}
.t-h4, h4{
	font-size: 32px;
}
.t-h5, h5, .t-md-h5{
	font-size: 24px;
}
.t-h6, h6{
	font-size: 20px;
}
.fs-20{
	font-size: 20px;
}
.fs-xl{
	font-size: 4rem;
}
.fs-xxl{
	font-size: 6rem;
}
.text-theme{
	color: #375CFB;
}
.text-dark{
	color: #000 !important;
}
.text-452B00{
	color: #452B00;
}
.section{
	padding: 50px 0;
}
.section h2{
	margin-bottom: 30px;
}
.fw-300{
	font-weight: 300 !important;
}
.fw-400{
	font-weight: 400 !important;
}
.fw-500{
	font-weight: 500 !important;
}
.fw-600{
	font-weight: 600 !important;
}
.fw-700{
    font-weight: 700 !important;
}
.text-wt75{
	color: rgba(255,255,255,0.75);
}
.text-bl80{
	color: #849BFD !important;
}


.info-header{
	background:#000000;
    position: relative;
    top: 0;
    z-index: 2;
    left: 0;
    right: 0;
    text-align: right;
    color: #fff;
   
}
.info-header p{
	font-size: var(--fs13);
}
.ih-border {
	opacity: 0.3;
	margin: 0 7px;
}
.img-circled{
	height: 36px;
	width: 36px;
	min-width: 36px;
	border-radius: 40px;
	border: 2px solid #fff;
	object-fit: cover;
  	object-position: top;
  	background: #fff;
}
.marketed-by{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/*footer css*/

.site-footer {
	padding-bottom: 30px;
    margin-top: 20px;
}
.footer-wrapper {
	background: var(--f4);
	padding: 20px;
	border-radius: var(--radius12);
}
.border-md-right {
	border-right: 1px solid var(--blk20);
}
.footer-logo {
	background-image: url(../img/propnex-logo.png);
	background-size: contain;
	height: 50px;
	width: auto;
	background-repeat: no-repeat;
}
.flex-center {
	display: flex;
	align-items: center;
}
.footer-ul li a {
	font-size: var(--fs15);
	color: var(--blue140);
}
.agent--img img {
    height: 220px;
    width: 220px;
    border-radius: 220px;
    border: 2px solid #fff;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
    object-fit: contain;
    background-color: #fff;
}
.btn-ico{
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-wapp, .btn-wapp:hover, .btn-wapp:focus{
    background: #10B317;
    color: var(--white140);
    box-shadow: 0 8px 32px 0 rgba(16, 179, 23, 0.50);
}
.btn-pn, .btn-pn:hover, .btn-pn:focus, .btn-theme-alt, .btn-theme-alt:hover, .btn-theme-alt:focus{
    background: var(--blue140);
    color: var(--white140);
}
.pn-chat{
    background-image: url(../img/pn-chat-ico.png);
    height: 25px;
    width: 25px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
}
.btn-anime-invert{
    background: var(--white);
    color: var(--blk140);
}
/*.project-thumb{
    box-shadow: 0 0 48px 0 rgba(0, 0, 0, 0.06);
    border-radius: 24px;
}*/
.about-hero{
    background-image: url(../img/about-hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
.card.profile-card{
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius24);
    border:1px solid var(--white140);
    max-width: 800px;
    margin:0 auto;
}
.profile-card .card-body{
    display: flex;
    align-items: center;
}
.profile-card .agent-img{
    width: 215px;
    border-radius: var(--radius12);
}
.agent-info {
    padding-left: 40px;
    width: 100%;
}
.btn.btn-cea {
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 146, 255, 0.80) 0%, rgba(17, 61, 250, 0.80) 100%);
    color: #fff;
    border: 1px solid rgba(120, 146, 255, 0.80);
    border-radius: 60px;
    padding: 8px 10px;
    box-shadow: inset 0px 0px 0px 2px rgba(120, 146, 255, 0.90), 0px 20px 58px 5px #5E95EF;
}
.btn.btn-cea span {
    border: 1px solid var(--Blue-Blue-100, #5D7BFC);
    background: radial-gradient(102.83% 102.83% at 6.96% 6.61%, #7892FF 0%, #113DFA 100%);
    box-shadow: -0.204px -0.204px 0.946px 0 rgba(255, 255, 255, 0.25) inset, 0.204px 0.204px 0.204px 0 rgba(255, 255, 255, 0.40) inset, 0 1.636px 4.907px 0 rgba(255, 255, 255, 0.17) inset, 0 0.694px 1.474px 0 rgba(255, 255, 255, 0.09);
    padding: 10px 20px;
    border-radius: 60px;
    min-width: 200px;
    display: block;
}
.aboutme{
    display: grid;
    grid-template-rows: auto auto;
    gap: 1em;
}
.aboutme br{
    margin-bottom: 5px;
}
.cards-slider{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.cards-slider .slider {
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
  --scale: 1;
  --x: 0;
  --y: 0;
}
.cards-slider .slider > * {
  grid-area: stack;
  width: 100%;
  height: auto;
  transform: scale(var(--scale)) translate(var(--x), var(--y));
  transform-origin: right;
  transition: all 150ms linear;
  background: #fff;
  overflow: hidden;
}
.slider [class*='slide-']{
    border-radius: 24px;
    box-shadow: 24px 24px 48px 0px rgba(0, 0, 0, 0.12);
    --scale: 0.8;
    --x: 48px;
}
.cards-slider .slider .slide-1 {
  z-index: 6;
  --scale: 1;
  --x: 0px;
}
.cards-slider .slider .slide-2 {
  z-index: 5;
  --scale: 0.90;
  --x: 24px;
}
.cards-slider .slider .slide-3 {
  z-index: 4;
  --scale: 0.8;
  --x: 48px;
}
.slider-controls {
    position: absolute;
    left: -30px;
    right: -30px;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 6;
    display: flex;
    justify-content: space-between;
}
.slider-controls button {
    border: 1px solid transparent;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    text-align: center;
    background: var(--blk140);
}
.stackCol {
    position: relative;
    padding-left: 50%;
    height: 100%;
    padding-right: 40px;
    display: flex;
    align-items: center;
    color: var(--blk120);
}
.stackCol img{
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
}
.stackColInfo {
    padding-left: 40px;
}
.stackColInfo ul {
    padding-left: 20px;
}
.contact-alt{
    background-image: url(../img/survey-bg-ipad.png);
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-position: left bottom;
    max-width: 1920px;
    margin: 0 auto;
}
.h-auto{
    height: auto !important;
}
.bgc-dark {
  background-color: #1b2025 !important;
}
.text-md-justify{
    text-align: justify;
}
.t-md-h6{
    font-size: 20px;
}
.pr-list{
    background-image: url('../img/pattern.png');
    padding-bottom: 160px;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px;
    background-size: cover;
    height: 100%;
}
.pr-list .pr-list-sub{
    border-radius: 40px;
    background: linear-gradient(180deg, #000 42.31%, #014B8F 100%);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(2.5px);
    padding: 50px 10px;
    min-height: 220px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pr-list h4{
    font-size: 44px;
    word-break: break-word; 
}

/*Contact form*/
.wizard .nav-tabs {
    margin-bottom: 0;
    border-bottom-color: transparent;
    position: absolute;
    display: flex;
    flex-wrap: nowrap;
    right: 0;
    left: auto;
    bottom: 25px;
    text-align: right;
    justify-content: flex-end;
    padding-right: 0;
}
.wizard .nav-tabs > li{
    margin-left: 3px;
}
.wizard .nav-tabs > li a {
    width: 30px;
    height: 6px;
    display: block;
    border-radius: 6px;
    background: var(--clrprimary);
    z-index: 2;
    position: relative;
    left: 0;
    color: #0e214b;
}
.wizard .nav-tabs > li.disabled a{
    background: #D9D9D9;
}
.wizard .nav-tabs > li.disabled > a{
    background: var(--blk20);
}
.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    background: #014B8F;
}

.wizard {
    background: var(--white100);
}
.wizard form {
/*  color: #1F252A;*/
    position: relative;
}
.wizard .tab-pane {
    position: relative;
}
.wizard-right {
/*  height: 100vh;*/
    padding-top: 40px;
    height: auto;
    display: flex;
    justify-content: flex-start;
    max-width: 700px;
    flex-direction: column;
    padding-right: 80px;
    padding-bottom: 60px;
    color: var(--white);
}
.prev-step{
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #013260;
    position: relative;
    border:1px solid #013260;
    background: #fff;
    bottom: 0;
    min-height: 55px;
    display: flex;
    align-items: center;
}
.prev-step span{
    -webkit-transform: scale(-1, -1);
    -moz-transform: scale(-1, -1);
    -o-transform: scale(-1, -1);
    transform: scale(-1, -1);
    display: inline-block;
}
.wizard-left {
    height: 100%;
    min-height: 600px;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.wizard-left .wiz-hero {
    width: 100%;
    object-fit: cover;
    height: 100%;
    min-height: 600px;
}
.wiz-img {
    height: calc(100% - 200px);
    object-fit: contain;
    max-width: 85%;
    margin-bottom: 30px;
}
#country-select dd, #country-select dt, #country-select ul {
    margin: 0px;
    padding: 0px;
}
#country-select dd ul li a span:first-child, #country-select dt a span span:first-child {
    background-image: url("../img/flags.png");
    background-repeat: no-repeat;
    width: 16px;
    height: 11px;
    display: inline-block;
    margin:5px;
    vertical-align: top;
}
#country-select dt a span {
    cursor: pointer;
    display: block;
    padding: 19px 10px;
    white-space: nowrap;
}
#country-select dt a img {
    position: relative;
    z-index: 1;
}
#country-select dt a span span:first-child:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 10px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.2) inset;
}
#country-select dt a span span {
    display: inline-block;
    padding: 0;
}
#country-select dt a span span:first-child {
    padding: 0;
}
#country-select dd {
    position: relative;
}
#country-select a, #country-select a:visited {
    color: #4a535f;
    text-decoration: none;
    outline: none;
}
#country-select a:hover {
    color: #5d4617;
}
#country-select dt a:hover, #country-select dt a:focus {
    color: #5d4617;
}
#country-select dt a {
    position: relative;
    display: block;
    padding-right: 20px;
    border-radius: 0 var(--radius12) var(--radius12) var(--radius12);
    overflow: hidden;
    width:74px;
    height: 60px;
    background: var(--white140);
    border:1px solid var(--white60);
}
/*#country-select dt a:after {
    content: '';
    background: transparent;
    position: absolute;
    
    height: 32px;
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
}
*/
#country-select dt a:before {
    background:transparent;
    content: "\e959";
    font-family: 'icomoon';
    position: absolute;
    right: 7px;
    top: 23px;
    width: 20px;
    z-index: 2;
    font-size: 12px;
}
#country-select dd ul {
    background: #fff;
    color: #C5C0B0;
    display: none;
    left: 0px;
    padding: 5px 0px;
    position: absolute;
    width: 270px;
    border:1px solid #fff;
    list-style: none;
    max-height: 170px;
    overflow-y: scroll;
    top:10px;
    z-index: 2;
    box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.06);
}

#country-select li a {
    font-size:13px;
}

#country-select li a span:nth-child(2) {
    line-height: 2em;
}
#country-select dd ul::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.3);
 border-left:1px solid rgba(0,0,0,0.1);
}
#country-select dd ul::-webkit-scrollbar-thumb {
 background: rgba(0,0,0,0.4);
/*-webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.5), 1px 0 0 #5cace9 inset, 2px 0 0 #b3d5ee inset;
    border-radius:10px;*/
}
#country-select dd ul::-webkit-scrollbar-thumb:window-inactive {
 background: blue;
}
#country-select span.value {
    display: none;
}
#country-select dd ul li a {
    padding: 5px;
    display: block;
    font-size: 12px !important;
}
#country-select dd ul li a:hover {
    background-color: rgba(0,0,0,0.05);
}
dl#country-select {
    display: inline-block;
    width: auto;
    margin-bottom: 0;
    background: var(--white140);
    border-color: var(--white60);
    color: var(--white);
    border-radius: 0 var(--radius12) var(--radius12) var(--radius12);
}
dl#country-select span:nth-child(3) {
    color: rgba(0,0,0,0.4)
}
dl#country-select > span:nth-child(2) {
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}
dl#country-select span:nth-child(3) {
    float: right;
}
dl#country-select dt span:nth-child(2) {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6em;
    display: none;
}
dl#country-select dt span:nth-child(3) {
    display: none;
}
.countryFlag {
    padding: 0;
    background-image: url("../img/flags.png");
    background-repeat: no-repeat;
    display: inline-block;
    height: 11px;
    margin-right: 4px;
    width: 16px;
    cursor: pointer;
    white-space: nowrap;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #BFBFC1 #B6B6B6 #969696;
    border-image: none;
    border-radius: 2px 2px 2px 2px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.09);
}
.error-alert {
    font-style: italic;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.form-control {
    border-radius: 0 var(--radius12) var(--radius12) var(--radius12);
    font-size: 20px;
    height: 60px;
    box-shadow: var(--shadow-md);
    color: var(--blk140);
}
.form-control:hover, .form-control:focus{
    box-shadow: var(--shadow-md);
}
.btn-fc{
    background: var(--white140);
    border-color: var(--white60);
    text-align: left;
    border-radius: 0 var(--radius12) var(--radius12) var(--radius12);
    justify-content: flex-start;
    position: relative;
    padding: 8px;
    padding-right: 40px;
    white-space: normal;
    display: flex;
    align-items: center;
    line-height: 1.3;
}
.btn-fc span{
    height: 44px;
    width: 44px;
    min-width: 44px;
    display: inline-block;
    border-radius: var(--radius8);
    font-weight: 600;
    color: #00202D;
    background: var(--white60);
    padding: 2px;
    font-size: 24px;
    text-align: center;
    margin-right: 10px;
    line-height: 1.5;
}
.btn-fc.active, .btn-fc:has(input:checked){
    box-shadow: none;
}
.btn-fc.active span, .btn-fc:has(input:checked) span{
    background: #013260;
    color: var(--white140);
}
.btn-fc.active:after, .btn-fc:has(input:checked):after{
    content: '\e975';
    position: absolute;
    right: 0;
    color: #fff;
    right: 15px;
    font-family: 'icomoon';
}
.btn-theme-alt, .btn-theme-alt:hover, .btn-theme-alt:focus {
  background: #013260;
  color: var(--white);
}
.btn-large {
    min-width: 300px;
    text-transform: uppercase;
}
#enquiry-success, #enquiry-failure{
    background: #013260;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.confetti {
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  height: 100%;
  width: 100%;
}

.confetti-item {
  position: absolute;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  filter: blur(1px);
}
.dn{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    right: 0;
}

@keyframes confetti-fall {
    0% {
    transform: translateY(-100%)
    }
    95%{
    animation-timing-function: ease-in-out;
    transform: translateY(calc(100vh - 55%))
    }
    100% {
    transform: translateY(calc(200vh - 65%))
    }
}
@media screen and (max-width:1199px){
    .stackCol{
        padding-right: 0;
    }
    .stackColInfo {
        padding-left: 20px;
        padding-right: 20px;
    }
    .stackColInfo ul {
        padding-left: 15px;
    }
    .stackCol img{
        width: 40%;
    }
    .stackCol{
        padding-left: 40%;
    }
    .slider [class*="slide-"]{
        --x: 24px;
        --scale: 0.90;
    }
    .cards-slider .slider .slide-2{
        --x: 12px;
        --scale: 0.95;
    }
    .cards-slider .slider .slide-3{
        --x: 24px;
        --scale: 0.90;
    }
    .slider-controls{
        left: 2px;
        right: 2px;
    }
    .slider-controls button{
        opacity: 0.8;
    }
    .pr-list h4{
        font-size: 38px;
    }
}
@media screen and (max-width:991px){
    .fs-xl {
        font-size: 3.5rem;
    }
    .t-h4, h4 {
      font-size: 26px;
    }
    .t-h5, h5 {
      font-size: 18px;
    }
    .t-md-h6{
        font-weight: 300;
        font-size: 16px;
    }
    .t-md-h6 a{
        font-weight: 400;
        display: block;
        margin-top: 10px;
    }
    .text-md-justify{
        text-align: center;
    }
    .agent--img img {
      height: 180px;
      width: 180px;
      border-radius: 180px;
    }
    .btn{
        font-size: 20px;
    }
    .slider-controls{
        top: 20%;
    }
    .agent-info{
        padding-left: 30px;
    }
    .profile-card .agent-img {
        width: 180px;
    }
    .stackCol img {
        width: 100%;
        position: relative;        
        height: 300px;
        object-position: center -150px;
    }
    .stackCol {
        padding-left: 0;
        flex-direction: column;
        padding-right: 0;
    }
    .contact-alt{
        background-size: 30% auto;
        background-position: right bottom;
    }
    .agent-section p{
        font-size: var(--fs17);
        font-weight: 400;
    }
    .agent-section.section{
        padding-top: 30px;
    }
}
@media screen and (max-width:768px){
    .fs-xl{
        font-size: var(--fs48);
    }
    .t-h2, h2 {
        font-size: var(--fs38);
    }
    .t-h3, h3{
        font-size: var(--fs28);
    }
    .t-h4, h4{
        font-size: var(--fs22);
    }
    .border-md-right{
        border-right: none;
    }
    .cards-slider{
        width: calc(100% - 15px);
    }
    .agent-section p#content{
        font-size: var(--fs16);
    }
    .pr-list{
        padding-bottom: 100px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .pr-list h4 {
        font-size: 24px;
        padding: 0;
    }
    .wizard .nav-tabs{
        right: 20px;
    }
    .btn-large {
        min-width: 230px;
    }
}
@media screen and (max-width:576px){
    .fs-xs-12{
        font-size: var(--fs12);
    }
    .fs-xl {
        font-size: 2.5rem;
    }
    .t-h6, h6{
        font-size: var(--fs17);
    }
    .btn{
        font-size: 18px;
    }
    .agent--img img {
        height: 120px;
        width: 120px;
        border-radius: 120px;
    }
    .img-circled{
        height: 32px;
        width: 32px;
        min-width: 32px;
        border: 1px solid #fff;
    }
    .section {
        padding: 40px 0;
    }
    .pr-list{
        padding-bottom: 70px;
    }
    .pr-list .pr-list-sub{
        min-height: initial;
        padding: 35px 10px;
        border-radius: 20px;
    }
    .wizard .nav-tabs{
        position: relative;
        padding-top: 30px;
        bottom: 0;
        right: 0;
    }

}
@media screen and (max-width:480px){
    .profile-card .card-body{
        flex-direction: column;
        align-items: flex-start;
    }
    .profile-card .agent-img {
        width: 150px;
        margin-top: -50px;
        margin-bottom: 20px;
    }
    .agent-info {
        padding-left: 0;
    }
    .agent-info .col-12{
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 10px;
    }
    .agent-info p {
        font-size: 14px;
    }
    .pr-list h4 {
        font-size: 20px;
    }
    
}
@media screen and (max-width:375px){
    .col-xs-12{
        -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
          flex: 0 0 100%;
          max-width: 100%;
    }
    .pr-list h4 {
        font-size: 18px;
    }
}