/*--html styles--*/

html{
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body{
  color: #515151;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
  overflow-x: hidden;
  padding: 0px;
  margin: 0px;
  border: 0px;
}

div{
  box-sizing: border-box;
  padding: 0px;
  overflow: hidden;
}

a{
}

button{
  transition: all 0.3s ease;
  position: relative;
  color: #231e20;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid #231e20;
  background-color: transparent !important;
  padding: 20px 54px;
  height: auto;
  width: auto;
  cursor: pointer;
}

button:hover{
  z-index: 1;
  transition: all 0.3s ease;
  border: 2px solid #231e20;
  color: #fff;
}

button::after{
  transition: all 0.3s ease;
  position: absolute;
  top: 0px;
  left: 50%;
  content: "";
  width: 0px;
  height: 100%;
  background-color: #231e20;
}

button:hover::after{
  z-index: -1;
  transition: all 0.3s ease;
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #231e20;
}

.button-block{
  display: block;
  margin-top: 50px;
}

.dark-button{
  color: #fff;
  border: 2px solid #fff;
}

.dark-button::after{
  background-color: #fff;
}

.dark-button:hover{
  color: #231e20;
  border: 2px solid #fff;
}

.dark-button:hover::after{
  background-color: #fff;
}

.submit-button{
  margin-top: -10px !important;
}

.nav-button{
  font-size: 14px;
  border: 2px solid #231e20;
  background-color: transparent !important;
  padding: 10px 24px;
  height: auto;
  width: auto;
  cursor: pointer;
}

h1{
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 120px;
  letter-spacing: -3px;
  line-height: 110px;
  text-transform: uppercase;
  color: inherit;
  margin-top: -8px;
  margin-bottom: calc(24px + 50px);
}

.red-title{
  color: #e2243a;
}

h2{
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 70px;
  letter-spacing: -3px;
  line-height: 70px;
  text-transform: uppercase;
  color: inherit;
  margin-top: 27px;
  margin-bottom: 50px;
}

h6{
  position: relative;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -1px;
  line-height: 30px;
  color: #fff;
  margin-top: -4px;
  margin-bottom: 30px;
}

h6::after{
  position: absolute;
  bottom: -20px;
  left: 0px;
  content: "";
  width: 50px;
  max-width: 50px;
  height: 4px;
  min-height: 2px;
  background-color: #e2243a;
}

h4{
  position: relative;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 40px;
  color: inherit;
  margin-top: -4px;
  margin-bottom: 60px;
}

h4::after{
  position: absolute;
  bottom: -30px;
  left: 0px;
  content: "";
  width: 100px;
  max-width: 100px;
  height: 4px;
  min-height: 2px;
  background-color: #e2243a;
}

h5{
  position: relative;
  text-transform: uppercase;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: auto;
  line-height: 18px;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 0px;
}

.daLetsConnectFormSubmittedH{
  position: relative;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -1px;
  line-height: 30px;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 15px;
}


ul, li{
  list-style: none;
  padding-left: 0px;
  padding-inline-start: 0px;
}

/*--end the html styles--*/


/*--start the custom styles--*/

.full-menu-wrapper{
  opacity: 0;
  transition: all ease 0.3s;
  z-index: 999;
  position: fixed;
  visibility: hidden;
  font-size: 16px;
  color: #999;
  padding: 0px;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  background-color: #231e20;
}

.full-menu-wrapper a{
  color: inherit;
  text-decoration: none;
}

.full-menu-wrapper a:hover{
  text-decoration: underline;
  color: #fff;
}

.full-menu-wrapper h4{
  color: #fff;
}

.full-menu-container{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

.full-menu-left{
  width: 45%;
  max-width: 45%;
  height: auto;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.full-menu-right{
  display: flex;
  flex-wrap: nowrap;
  width: 45%;
  max-width: 45%;
  height: auto;
  padding-right: 50px;
}

.menu-items-container{
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.menu-copyright{
  font-size: 12px;
  line-height: 22px;
  width: 100%;
  height: auto;
  border-top: 1px solid #515151;;
  padding-top: 30px;
}

.menu-logo-area{
  width: 100%;
  height: auto;
  padding-bottom: 30px;
  border-bottom: 1px solid #515151;;
  margin-bottom: 30px;
}

.menu-logo-image{
  width: 50%;
  height: auto;
}

.menu-nav-container{
  width: calc(100% / 3);
  max-width: calc(100% / 3);
  height: auto;
  padding-bottom: 30px;
}

.hidden-layer{
  visibility: hidden;
}

.no-background{
  background-color: rgba(255,255,255, 0);
  border: none;
  position: fixed;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
}

.red-titles{
  color: #e2243a !important;
}

nav{
  z-index: 800;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: sticky;
  padding: 10px 50px;
  width: 100%;
  max-width: 100%;
  background-color: rgba(255,255,255,.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #999;
  overflow: visible !important;
}

#mainNav.sticky {
  position: fixed;
  top: 0;
}

.navbarOffsetMargin {
  padding-top: 45px;
}

.nav-left-button-container{
  margin: auto 0px;
  width: 20%;
  min-width: 200px;
  height: auto;
}

.nav-middle-logo-container{
  width: 100%;
  margin: auto 0px;
  text-align: center;
  height: auto;
}

.nav-right-menu-container{
  text-align: right;
  width: 20%;
  min-width: 200px;
  height: auto;
  margin: auto 0px;
  margin-right: 100px;
  overflow: visible !important;
}

.nav-logo{
  margin: auto 0px;
  margin-top: 6px;
  width: 350px;
  height: auto;
}

.hamburger-icon{
  cursor: pointer;
  margin: auto 0px;
  margin-bottom: -5px;
  box-sizing: border-box;
  display: block;
  position: relative;
  float: right;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  overflow: visible !important;
}

.hamburger-icon span{
  transition: all 0.2s ease;
  box-sizing: border-box;
  display: block;
  width: 25px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background-color: #000;
  z-index: 1;
}

#topBun{
  transform: rotate(45deg);
}

#bottomBun{
  transform: rotate(-45deg);
  margin-top: -7px;
}

.menu-hamburger span{
  background-color: #fff;
}

.site-wrapper{
  width: 100vw;
  max-width: 100vw;
  height: auto;
  background-color: #fff;
}

.hero-wrapper{
  width: 100%;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
}

.hero-container{
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
}

.hero-left-side{
  display: flex;
  flex-wrap: nowrap;
  width: 60%;
  max-width: 60%;
  height: 100%;
  max-height: 100%;
  padding: 100px;
}

.hero-left-side-container{
  width: 100%;
  max-width: 650px;
  height: auto;
  margin: auto;
  padding: 0px;
}

.hero-left-side-logo{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 50px;
}

.hero-right-side{
  overflow: visible;
  position: relative;
  display: flex;
  width: 40%;
  max-width: 40%;
  height: 100%;
  max-height: 100%;
  background-color: #f4f4f4;
}

.hero-right-side::before{
  z-index: 1;
  margin: auto 0px;
  position: relative;
  display: block;
  content: "";
  width: 10px;
  max-width: 10px;
  height: 70%;
  max-height: 70%;
  left: -5px;
  background-color: #e2243a;
}

#heroVideo {
  opacity: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  left: 0;
}

.success-wrapper{
  z-index: 0;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  color: #fff;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 50px;
  padding-bottom: 80px;
  background-color: #231e20;
}

.success-container{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding-top: 0px;
  margin: auto;
  overflow: visible !important;
}

.success-flex-wrapper{
  display: flex;
  flex-wrap: nowrap;
  text-align: center;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding-top: 80px;
  overflow: visible !important;
}

#startBox{
  margin-left: 0px;
}

#endBox{
  margin-right: 0px;
}

.success-title-container{
  color: #fff;
  text-align: left;
  width: 100%;
  height: auto;
  padding-bottom: 50px;
  height: auto;
}

.success-block-wrapper{
  color: #999;
  z-index: 1;
  text-align: left;
  display: flex;
  flex-wrap: nowrap;
  width: 33.3%;
  max-width: 33.3%;
  height: auto;
  margin: 0px 50px;
  overflow: visible !important;
}

.success-block-container{
  border-radius: 15px;
  text-align: left;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  /*background-color: rgba(35,30,32,.93);*/
  /*background-color: rgba(35,30,32,.8);*/
  margin-top: 0px;
  padding: 180px 0px 0px 0px;
  overflow: visible !important;
}

.success-block-image-container{
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.success-image-container{
  border-radius: 50%;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  position: absolute;
  width: 200px;
  height: 200px;
  top: -50px;
  left: 0px;
  background-color: #000;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/*.success-quote-font::before{
  font-size: 60px;
  margin-bottom: -10px;
  display: block;
  content: open-quote;
}*/

.social-media-wrapper{
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0px 50px;
  padding-bottom: 50px;
  background-color: #231e20;
  overflow: visible !important;
  /*background-image: linear-gradient(#f4f4f4 20%, #231e20 60%);*/
}

.social-media-container{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: auto 0px;
  overflow: visible !important;
}

.social-media-block{
  transition: all 0.3s ease;
  position: relative;
  width: calc(100% / 4);
  max-width: calc(100% / 4 - 25px);
  height: 450px;
  max-height: 450px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: visible !important;
}

.social-media-block:hover{
  z-index: 1;
  transition: all 0.3s ease;
  transform: scale(1.05);
}

.social-media-title-container{
  position: absolute;
  bottom: 0px;
  color: #fff;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: auto;
  padding: 25px;
  background-color: none;
}

.social-image{
  display: block;
  width: 40px;
  max-width: 40px;
  height: auto;
  margin-bottom: 15px;
}

.linkedin-background{
  background-image: linear-gradient(to top, rgba(25,93,180,1), rgba(25,93,180,0));
}

.facebook-background{
  background-image: linear-gradient(to top, rgba(16,150,245,1), rgba(16,150,245,0));
}

.tiktok-background{
  background-image: linear-gradient(to top, rgba(254,44,84,1), rgba(254,44,84,0));
}

.instagram-background{
  background-image: linear-gradient(to top, rgba(242,190,4,1), rgba(240,84,7,0.5), rgba(242,5,113,0.3), rgba(177,6,224,0));
}

#socialInstagram{
  background-position: right;
}

.sold-by-wrapper{
  z-index: 0;
  color: #999;
  padding: 0px 50px;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  max-height: 100vh;
  background-image: url("https://www.singhre.com/agent/content/parmindersingh-10465/images-full-custom/sold_by_bg.jpg");
  background-color: #231e20;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.sold-by-container{
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
}

.sold-by-left-side{
  display: flex;
  flex-wrap: nowrap;
  width: 60%;
  max-width: 60%;
  height: auto;
  margin: auto 0px;
}

.sold-by-left-one{
  width: 60%;
  height: auto;
}

.sold-by-left-two{
  width: 40%;
  height: auto;
}

.numbers-wrapper{
  width: 100%;
  max-width: 100%;
  height: 100vh;
  max-height: 100vh;
  background-color: #fff;
}

.numbers-container{
  text-align: right;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 0px;
}

.numbers-blank{
  width: 50%;
  max-width: 50%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
}

.numbers-content-container{
  width: 50%;
  /*height: auto;*/
  max-width: 50%;
  margin: auto;
  padding-right: 50px;
}

footer{
  z-index: 0;
  display: flex;
  flex-wrap: nowrap;
  color: #999;
  padding: 100px 50px;
  width: calc(100% - 100px);
  max-width: calc(100% - 100px);
  height: auto;
  background-color: #231e20;
}

footer a{
  color: inherit;
  text-decoration: none;
}

footer a:hover{
  text-decoration: underline;
  color: #fff;
}

footer li{
  margin-bottom: 15px;
}

.footer-left-side{
  width: calc(50%);
  max-width: calc(50%);
  padding-right: 50px;
  height: auto;
}

.footer-left-side-nav{
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.footer-nav-container{
  padding-right: 75px;
  width: auto;
  height: auto;
}

.footer-left-side-copyright{
  font-size: 12px;
  line-height: 22px;
  width: 100%;
  height: auto;
}

.footer-right-side{
  color: #fff;
  padding-left: 50px;
  width: calc(50%);
  max-width: calc(50%);
  height: auto;
}

input[type=text],[type=password] {
  transition: all ease 0.5s;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  max-width: 100%;
  height: 40px;
  padding: 0px;
  margin-bottom: 50px;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999;
}

.forgot-link{
  font-family: montserrat, sans-serif;
  text-decoration: none;
  font-size: 12px;
  padding-top: 300px;
  position: absolute;
  bottom: -30px;
  right: 0px;
  background-color: none;
}

.form-field {
  text-transform: uppercase;
  margin: 0px 0px 0px 0px;
  margin-top: 30px;
  background-color: #0F1838;
  opacity: 0.9;
  width: calc(100% / 4 - 10px);
  padding: 0px 5px 30px 5px;
  display: inline-block;
}

input:focus {
  color: #fff;
  transition: all ease 0.5s;
  outline: none !important;
  border-bottom: 1px solid #fff;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #999;
}

/*--end the custom styles--*/


/*--start the media queries--*/

@media only screen and (max-width: 1180px){

  h1{
    font-size: 100px;
    line-height: 90px;
  }

  h2{
    font-size: 60px;
    line-height: 60px;
  }

  .full-menu-left{
    display: none;
  }

  .full-menu-right{
    width: 100%;
    max-width: 100%;
    padding: 50px;
    padding-top: 0px;
  }

  .menu-logo-image{
    width: 50%;
    max-width: 350px;
    height: auto;
  }

  .menu-nav-container{
    overflow: visible !important;
    width: calc(100% / 6 - 30px);
    max-width: calc(100% / 6 - 30px);
    height: auto;
    padding-bottom: 0px;
    margin-right: 30px;
  }

  .hero-left-side{
    width: 50%;
    max-width: 50%;
    padding: 50px;
  }

  .hero-right-side{
    width: 50%;
    max-width: 50%;
  }

  .social-media-container{
    flex-wrap: wrap;
	display: contents;
  }

  .social-media-block{
    width: calc(100% / 2);
    max-width: calc(100% / 2 - 25px);
    margin-bottom: 50px;
  }

  .sold-by-wrapper{
    max-height: 100%;
  }

  .sold-by-left-side{
    flex-wrap: wrap;
    width: 50%;
    max-width: 50%;
  }

  .sold-by-left-one{
    width: 100%;
    height: auto;
  }

  .sold-by-left-two{
    width: 100%;
    height: auto;
  }


  footer{
    flex-wrap: wrap;
    padding: 50px;
  }

  .footer-left-side{
    order: 2;
    margin-top: 50px;
    padding: 0px;
    padding-bottom: 50px;
    width: calc(100%);
    max-width: calc(100%);
    padding-right: 0px;
    height: auto;
  }

  .footer-nav-container{
    padding-right: 75px;
    width: calc(100% / 3 - 37.5) !important;
    max-width: calc(100% / 3 - 37.5) !important;
    height: auto;
  }

  .footer-right-side{
    order: 1;
    margin-top: 50px;
    padding: 0px;
    color: #fff;
    width: calc(100%);
    max-width: calc(100%);
    height: auto;
  }

}

@media only screen and (max-width: 912px){

  nav{
    padding: 10px 20px;
  }

  .nav-right-menu-container{
    float: none;
    min-width: 1px;
    order: 3;
    margin-right: 40px;
  }

  .nav-middle-logo-container{
    order: 1;
  }

  .nav-left-button-container{
    order: 2;
  }

  .nav-button{
    padding: 10px 10px;
  }

  .menu-nav-container{
    overflow: visible !important;
    width: calc(100% / 3 - 30px);
    max-width: calc(100% / 3 - 30px);
    height: auto;
    padding-bottom: 30px;
    margin-right: 30px;
  }

  .hero-wrapper{
    position: relative;
    z-index: 1;
  }

  .hero-container{
    flex-wrap: wrap;
  }

  .hero-left-side{
    color: #000;
    z-index: 1;
    overflow: visible !important;
    position: absolute;
    order: 2;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    background-color: rgba(255,255,255,.5);
  }

  .hero-right-side{
    z-index: 0;
    overflow: hidden !important;
    order: 1;
    width: 100%;
    max-width: 100%;
    height: 100% !important;
    max-height: 100% !important;
  }

  .hero-right-side::before{
    display: none;
  }

  .success-flex-wrapper{
    flex-wrap: wrap;
  }

  .success-block-wrapper{
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-top: 100px;
  }

  #startBox{
    margin: 0px;
    margin-top: 0px;
  }

  .social-media-block{
    height: 350px;
    max-height: 350px;
  }

  .sold-by-wrapper{
    position: relative;
    background-size: cover;
    background-position: center;
    background-image: none !important;
  }

  .sold-by-left-side{
    z-index: 1;
    width: 100%;
    max-width: 100%;
  }

  .numbers-wrapper{
    height: auto;
    max-height: 100%;
	display: contents;
  }

  .numbers-container{
    flex-wrap: wrap;
	display: contents;
	height: unset;
  }

  .numbers-blank{
    width: 100%;
    max-width: 100%;
    height: 500px;
  }

  .numbers-content-container{
    padding: 50px;
    text-align: left;
    width: 100%;
    max-width: 100%;
  }

  .footer-right-side{
    padding: 0px;
  }

  .footer-left-side{
    padding: 0px;
    padding-top: 0px;
    width: 100%;
    max-width: 100%;
  }

	.sold-by-wrapper::after{
		opacity: .3;
		z-index: 0;
		position: absolute;
		top: 0px;
		left: 0px;
		content: "";
		width: 100%;
		height: 100%;
		background-image: url("https://www.singhre.com/agent/content/parmindersingh-10465/images-full-custom/sold_by_bg.jpg");
		background-size: cover;
		background-position: 50% 38%;
		background-repeat: no-repeat;
	}

}

@media only screen and (max-width: 830px){

  body{
    font-size: 14px;
    line-height: 22px;
  }

  button{
    font-size: 14px;
    padding: 18px 34px;
  }

  h1{
    font-size: 86px;
    line-height: 90px;
  }

  h2{
    letter-spacing: 0px;
    font-size: 40px;
    line-height: 50px;
  }

  h4{
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 60px;
    margin-top: -2px;
  }

  h6{
    font-size: 24px;
  }

  .full-menu-wrapper{
    overflow-y: scroll;
    font-size: 14px;
    height: auto !important;
    max-height: 100%;
    padding-bottom: 80px;
  }

  .full-menu-right{
    padding: 20px;
    padding-top: 15px;
  }

  .menu-nav-container{
    width: 100%;
    max-width: 100%;
  }

  .nav-left-button-container{
    display: none;
  }

  .nav-logo{
    margin: 0px;
    margin-top: 6px;
    width: 250px;
    height: auto;
  }

  #heroVideo {
    width: 100%;
    height: 100%;
  }

  .footer-left-side-nav{
    flex-wrap: wrap;
  }

  .footer-nav-container{
    width: 100%;
    max-width: 100%;
    padding-right: 0px;
    margin-bottom: 30px;
  }

  .menu-copyright{
    font-size: 10px;
    line-height: 15px;
  }

  .menu-logo-image{
    width: 250px;
    max-width: 250px;
    height: auto;
  }

  .hero-left-side{
    padding: 0px 20px;
  }

  .success-wrapper{
    padding: 50px 20px;
  }

  .success-title-container{
    padding-bottom: 0px;
  }

  .social-media-wrapper{
    padding: 50px 20px;
  }

  .social-media-block{
    width: 100%;
    max-width: 100%;
    height: 300px;
    max-height: 300px;
  }

  .sold-by-wrapper{
    padding: 50px 20px;
  }

  .numbers-content-container{
    padding: 50px 20px;
  }

  .footer-right-side{
    padding: 50px 0px;
  }

  .footer-left-side{
    padding: 80px 0px;
    padding-top: 0px;
  }

  .footer-left-side-copyright{
    font-size: 10px;
    line-height: 15px;
  }

  .sold-by-wrapper{
    padding-bottom: 50px;
    height: auto !important;
    max-height: 100%;
  }

}

/*--end the media queries--*/
