@import url('https://fonts.googleapis.com/css2?family=Jomhuria&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  font-family: 'Montserrat';
}

:root {
  --praimary-color: #0493E5;
}

body,
html {
  overflow-x: hidden;
}

::selection {
  color: rgb(255, 255, 255);
  background-color: var(--praimary-color);
}

.new-style ul li{
    padding-top: 0.5rem!important;
}

/* back to top button */
#button {
  display: inline-block;
  background-color: var(--praimary-color);
  width: 40px;
  height: 40Px;
  border-radius: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button:hover {
  cursor: pointer;
  background-color: #000000;
}

#button:active {
  background-color: #000000;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

/* navbar starts */



/* .sticky {
  position: fixed;
  top: 0;
  width: 100%;
} */
.nav-header {
  box-shadow: 8px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

.navbar {
  background-color: #ffffff;
  z-index: 1000;
}

/* nav .navbar-brand p {
  color: var(--praimary-color);
  font-size: 14px;
  margin-bottom: 0;
  width: 50%;
}

nav .navbar-brand {
  color: var(--praimary-color);
} */

.navbar .container>a {
  color: var(--praimary-color);
  font-size: 22PX;
  font-weight: bold;
  text-decoration: none;
}

nav a {
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}

nav .nav-item {
  position: relative;
  display: inline-block;
}

.navbar-nav .nav-link {
  color: #4b4b4b;
}

.collapse ul  li.active > a {
    color: var(--praimary-color)!important;
}


.navbar-nav .nav-link:hover {
  color: var(--praimary-color);
  transition: all .4s ease-in;
}

nav .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 170px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

nav .dropdown-menu a {
  color: #090909;
  font-size: 14px;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

nav .dropdown-menu a:hover {
  border-left: 3px solid var(--praimary-color);
  transition: all .2s ease-out;
}

nav .dropdown-menu a:hover li {
  background-color: #ffffff67;
}

.nav-item:hover .dropdown-menu {
  display: block;
  margin-top: 3px;
  background: rgb(254, 254, 254);

}

.navbar-nav .dropdown-menu {
  margin-top: 7px;
  text-align: left;
  transition: all .5s ease-in-out;
}

nav .nav-item #dropdown {
  margin-top: -10px;
}

nav .list-group p {
  font-size: 12px;
  font-weight: 700;
  line-height: 26px;
  color: #94a3b8;
}

nav .list-group span {
  padding: 5px;
  color: aliceblue;
  font-size: 10px;
  font-weight: 700;
  border-radius: .2rem;
}

.navbar .navbar-toggler{
  font-size: 20px;
}


@media screen and (max-width:991px) {
  nav .lang{
    padding-left: 0;
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .navbar .brand img{
    width:300px
  }
  nav a {
    font-size: 13px;
  }
}
@media (min-width:450px) and (max-width:575px) {
  .navbar .brand img{
    width:300px
  }
}
@media (min-width:320px) and (max-width:449px) {
  .navbar .brand img{
    max-width:250px
  }
}
@media screen and (max-width:319px){
  .navbar .brand img{
    max-width:200px
  }
  .navbar .navbar-toggler{
    font-size: 15px;
  }
}

/* navbar ends */


/* interface section */
.interface {
  width: 100%;
  height: 80vh;
  background: url(../images/DreamShaper_v7_real_estate_4.jpg) no-repeat fixed 100%;
  background-size: cover;
}

.interface .content h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  color: #ffffff;
}

.interface .content h2 {
  font-weight: 600;
  font-size: 30px;
  color: #ffffffd7;
}

@media screen and (max-width:767px) {
  .interface .content h1 {
    font-size: 32px;
  }
  
  .interface .content h2 {
    font-size: 22px;
  }
  .interface {
    width: 100%;
    height: 60vh;
    background: url(../images/DreamShaper_v7_real_estate_4.jpg) no-repeat fixed 100%;
    background-size: cover;
  }
}


/* about starts */
.about {
  padding-bottom: 50px;
  padding-top: 40px;
  position: relative;
}

.about::before {
  content: "";
  background-image: url(../images/[fpdl.in]_city-buildings-architecture_50179-453_normal.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.14;
}

.about .container {
  position: relative;
}

.about img,
.about .image {
  border-radius: 15px;
}

.about img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.about h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--praimary-color);
  padding-bottom: 5px;
}

.about h2 {
  font-size: 27px;
  font-weight: 700;
}

.about p {
  color: #7c7c7c;
  font-size: 15px;
  text-align: justify;
}

.btn-primary {
  background-color: var(--praimary-color);
  border: 1px solid #0493E5;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #007ec7;
  border: 1px solid #007ec7;
}

@media (min-width:768px) and (max-width:991px){
    .about img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

}

/* category section */

.category {
  padding-top: 40px;
  padding-bottom: 50px;
  background-image: url(../images/bg7.jpg);
  background-size: cover;
  background-repeat: no-repeat;

}

.category h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--praimary-color);
  padding-bottom: 5px;
}

.category-item {
  position: relative;
  /* border-radius: 5px; */
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  overflow: hidden
}

.category-item .category-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all .6s ease-in-out
}

.category-item .category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: start;
  align-items: flex-end
}

.category-item .category-overlay .content {
  padding: 30px;
  transform: translateY(60px);
  transition: all .5s ease-in-out
}

.category-item .category-overlay .content .link {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  z-index: 0;
  text-decoration:none;
  opacity:1;
  transition: all .5s ease-in-out
}

.category-item .category-overlay .content h6 {
  margin-bottom: 0;
  opacity: 0;
  transition: all .5s ease-in-out;
  display: inline-block;
  position: relative;
  z-index: 1
}

.category-item .category-overlay .content a {
  opacity: 0;
  z-index: 1
}

.btn-primary {
  background-color: var(--praimary-color);
  border: 1px solid #0493E5;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #007ec7;
  border: 1px solid #007ec7;
}

.category-item:hover .category-overlay {
  background-color: #0c0c0c86;
}

.category-item:hover .category-img img {
  transform: scale(1.2)
}

.category-item:hover .category-overlay .content {
  transform: translateY(0px)
}

.category-item:hover .category-overlay .content a {
  opacity: 1;
}

.category-item:hover .category-overlay .content h6 {
  opacity: 1
}

@media screen and (max-width:991px) {
  .category-item .category-overlay .content {
    transform: translateY(0px);
  }
  .category-item .category-overlay .content a {
    opacity: 1;
  }
  .category-item .category-overlay .content h6 {
    opacity: 1;
  }
}



/* item section */

.item {
  padding-top: 40px;
  padding-bottom: 40px;
}

.item h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--praimary-color);
  padding-bottom: 5px;
  text-align: center;
}

.item .card {
  border: 1px solid rgba(131, 131, 131, 0.312);
  border-radius: 15px;
  background-color: #ffffff;
}

.item .card:hover {
  border: 1px solid var(--praimary-color);
  transition: all .5s ease-in-out;
  box-shadow: 5px 5px 18px #919191e0;
  ;
}

.item .card img,
.item .card .carousel-inner {
  border-radius: 10px;
}

.item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.item .card-body a {
  text-decoration: none;
}

.item .card-body a h4 {
  font-size: 16px;
  font-weight: 600;
  color: #454545;
}

.btn-primary {
  background-color: var(--praimary-color);
  border: 1px solid #0493E5;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #007ec7;
  border: 1px solid #007ec7;
}

@media (min-width:576px) and (max-width:991px){
    .item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
}



/* news section */

.news {
  padding-top: 40px;
  padding-bottom: 40px;
}

.news h2 {
  font-size: 27px;
  font-weight: 700;
  text-align: center;
}

.news .card {
  border: 1px solid rgba(131, 131, 131, 0.312);
  border-radius: 15px;
  background-color: #ffffff;
}

.news .card:hover {
  border: 1px solid var(--praimary-color);
  transition: all .5s ease-in-out;
  box-shadow: 5px 5px 18px #919191e0;
  ;
}

.news .card img {
  border-radius: 10px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news .card-body a {
  text-decoration: none;
  color: var(--praimary-color);
}

.news h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: #454545;
}

.news .card-body a {
  text-decoration: none;
  padding-top: 10px;
}

.btn-primary {
  background-color: var(--praimary-color);
  border: 1px solid #0493E5;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #007ec7;
  border: 1px solid #007ec7;
}

@media (min-width:576px) and (max-width:991px){
    .news .card img {
  border-radius: 10px;
  width: 100%;
  height: 150px;
  object-fit: cover;
}
}




.article {
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url(../images/video-one-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;

}

.article h2 {
  font-size: 27px;
  font-weight: 700;
  color: #ffffff;
}

.article .card-body {
  padding: 0;
}

.article .card-body h6 {
  font-size: 16px;
  font-weight: 600;
  color: #181818;

}

.article .card-body a {
  font-size: 16px;
  font-weight: 500;
  color: var(--praimary-color);
}

.article .card {
  border: none;
  background-color: #ffffffe6;
  border-radius: 10px;
  margin-right: 15px;
  padding: 15px;
}

.article .card:hover {
  border: none;
  background-color: var(--praimary-color);
  transition: all .4s ease-out;
  border-radius: 10px;
  margin-right: 15px;
  padding: 15px;
}

.article .card:hover h6 {
  color: #ffffff;
  transition: all .4s ease-out;
}

.article .card:hover a {
  color: #2c2c2ce7;
  transition: all .4s ease-out;
}


.article .am-prev,
.article .am-next {
  border-radius: 50%;
  background-color: var(--praimary-color);
  margin-right: 1rem;
  cursor: pointer;
}

/* .article .am-prev:hover,
.article .am-next:hover {
  transition: all .4s ease-out;
  background-color: #e0b25c;
  transition: all .4s ease-in;
} */

.article .slider_nav i {
  padding: 10px 10px 10px 10px;
}

.article img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.article .owl-carousel .owl-stage {
  display: flex;
}
.article .owl-carousel .owl-item {
  display: flex;
  align-items: stretch;
}



/* question starts */
.question {
  padding-bottom: 40px;
  padding-top: 40px;
  background-color: rgb(236, 236, 236);
}

.question h2 {
  font-size: 27px;
  font-weight: 700;
}

.question .card {
  border: 1px solid var(--secondary-color);
}

.question ul {
  list-style-image: url(../images/bullet.png);
}

.question li {
  font-size: 14px;
  font-weight: 500;
}

.question .square h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.question p {
  text-align: justify;
  font-size:14px;
}

.question .square {
  background-color: #ffffff;
  border: 2px dotted var(--praimary-color);
  border-radius: .25rem;
  padding: 10px;
}

.question .square:hover {
  background-color: #ffffff;
}

.square:hover,
.square:active {
  background: linear-gradient(90deg, #0493E5 50%, transparent 50%), linear-gradient(90deg, #0493E5 50%, transparent 50%), linear-gradient(0deg, #0493E5 50%, transparent 50%), linear-gradient(0deg, #0493E5 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 10px 2px, 10px 2px, 2px 10px, 2px 10px;
  padding: 10px;
  animation: border-dance 4s infinite linear;
  transition: all ease 0.4s;
}

.question img,
.question .image {
  border-radius: 15px;
}

.question img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}


@keyframes border-dance {
  0% {
    background-position: 0 0, 10% 100%, 0 100%, 100% 0;
  }

  100% {
    background-position: 10% 0, 0 100%, 0 0, 100% 100%;
  }
}


/* footer starts */


footer {
  background-color: #1d1d1d;
}

footer .container {
  padding-top: 40px;
}

.footer-content #image-foo{
  height: 140px; 
  width: 140px;
}

footer .footer-brand {
  font-size: 24px;
  text-decoration: none;
  color: aliceblue;
  font-weight: 600;
}

footer .footer-brand p {
  font-size: 20px;
  font-weight: 450;
  padding-top: 5px;
}

footer p {
  font-weight: 400;
  font-size: 13px;
  line-height: 28px;
  color: aliceblue;
}

footer h6 {
  font-size: 18px;
  font-weight: 600;
  color: aliceblue;

}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer .social-media {
  padding-top: 15px;
}

footer .social-media li {
  display: inline-block;
}

footer .social-media .icon-bg {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background-color: var(--praimary-color);
  text-align:center;
  /*display: flex;*/
  /*justify-content: center;*/
  /*align-items: center;*/
  cursor: pointer;
  margin-right: 5px;
}
  footer .social-media i {
    line-height:30px;
    
  }

footer .social-media .icon-bg:hover {

  background-color: var(--praimary-color);
  transition: all .4s ease-in-out;

}

.quick-link a,
.contact-link a {
  color: aliceblue;
  font-size: 13PX;
  font-weight: 400;
  text-decoration: none;
}

footer #branch h5 {
  color: aliceblue;
  font-size: 13PX;
  font-weight: 400;
}

.quick-link:hover a {
  padding: 0 5px;
  color: var(--praimary-color);
  transition: all .4s ease-in-out;
}

.footer-copyright {
  background-color: #363636;
}

.footer-copyright a {
  text-decoration: none;
  color: #9f9f9f;
}

.footer-copyright p {
  font-size: 12px;
}

@media screen and (max-width:300px) {
  footer .social-media .icon-bg {
    width: 28px;
    height: 28px;
    text-align:center;
  /*  display: flex;*/
  /*justify-content: center;*/
  /*align-items: center;*/
  }
  footer .social-media i {
    font-size: 15px;
    line-height:28px;
    
  }
}
@media screen and (max-width:400px){
  .footer-content #image-foo{
    height: 90px; 
    width: 90px;
  }
}
@media screen and (max-width:500px){
    footer .social-media {
    padding-top: 0px;
}
}

/* footer ends */



/* about us page starts */

/* Breadcrumb-about starts */

.Breadcrumb-about {
   background: url(../images/kimon-maritz.jpg) repeat fixed ;
  box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0.356);
  background-size: cover;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.Breadcrumb-about h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: var(--praimary-color);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.Breadcrumb-about a,
span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width:576px) {
  .Breadcrumb-about h1 {
    font-size: 28px;
  }

  .Breadcrumb-about a,
  span {
    font-size: 18px;
  }
  .Breadcrumb-about {
  height: 35vh;
}
}



/* Breadcrumb-about ends */



/* about-page starts */

.about-page {
  padding-bottom: 40px;
  padding-top: 40px;
  position: relative;
}

.about-page::before {
  content: "";
  background-image: url(../images/21.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.1;
}

.about-page .container {
  position: relative;
}

.about-page h2 {
  font-size: 27px;
  font-weight: 700;
  line-height: 35px;
}

.about-page p {
  font-size: 15px;
  color: #313131;
  text-align: justify;
}

.about-page img {
  border-radius: 15px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}



/* about us page ends */




/* who we page starts */

/* Breadcrumb-who-we starts */

.Breadcrumb-who-we {
   background: url(../images/kimon-maritz.jpg) repeat fixed ;
  box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0.356);
  background-size: cover;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.Breadcrumb-who-we h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: var(--praimary-color);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.Breadcrumb-who-we a,
span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width:576px) {
  .Breadcrumb-who-we h1 {
    font-size: 28px;
  }

  .Breadcrumb-who-we a,
  span {
    font-size: 18px;
  }
  .Breadcrumb-who-we {
  height: 35vh;
}
}


/* Breadcrumb-who-we starts */


/* who-we starts */
.who-we {
  padding-bottom: 50px;
  position: relative;
}

.who-we::before {
  content: "";
  background-image: url(../images/who-we-bg-5-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  /* opacity: 0.14; */
}

.who-we .container {
  position: relative;
}

.who-we img,
.who-we .image-bg {
  border-radius: 15px;
}

.who-we img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.who-we h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--praimary-color);
  padding-bottom: 5px;
}

.who-we h2 {
  font-size: 27px;
  font-weight: 700;
}

.who-we p {
  color: #7c7c7c;
  font-size: 15px;
  text-align: justify;
}


/* who we page ends */





/* goals page starts */

/* Breadcrumb-goals starts */

.Breadcrumb-goals {
  background: url(../images/kimon-maritz.jpg) repeat fixed ;
  box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0.356);
  background-size: cover;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.Breadcrumb-goals h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: var(--praimary-color);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.Breadcrumb-goals a,
span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width:576px) {
  .Breadcrumb-goals h1 {
    font-size: 28px;
  }

  .Breadcrumb-goals a,
  span {
    font-size: 18px;
  }
  .Breadcrumb-goals {
  height: 35vh;
}
}


/* Breadcrumb-goals ends */



/* goals starts */

.goals {
  padding-bottom: 50px;

  position: relative;
}


.goals .card {
  padding: 25px;
  border-radius: 20px;
  border: 1px solid var(--praimary-color);
  background-color: #f5f5f5;
}

.goals .image-box img,
.goals .image-box .image {
  border-radius: 15px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}


.goals h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--praimary-color);
  padding-bottom: 5px;
}

.goals h2 {
  font-size: 27px;
  font-weight: 700;
}

.goals p {
  color: #7c7c7c;
  font-size: 15px;
  text-align: justify;
}

/* goals page ends */





/* real estate page starts */

/* Breadcrumb-real-estate starts */

.Breadcrumb-real-estate {
   background: url(../images/kimon-maritz.jpg) repeat fixed ;
  box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0.356);
  background-size: cover;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.Breadcrumb-real-estate h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: var(--praimary-color);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.Breadcrumb-real-estate a,
span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width:576px) {
  .Breadcrumb-real-estate h1 {
    font-size: 28px;
  }

  .Breadcrumb-real-estate a,
  span {
    font-size: 18px;
  }
  .Breadcrumb-real-estate {
  height: 35vh;
}
}


/* Breadcrumb-real-estate ends */

/* filter starts */

.filter {
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid rgb(237 237 237);
  border-radius: 8px;
  margin-bottom: 15px;

}

.filter label {
  font-size: 14px;
  font-weight: 500;

}

.filter .form-select {
  font-size: 13px;
  font-weight: 450;
  color: #4b4b4b;
  background-color: #e7e7e7;
  border: none;
}
.filter .form-control {
  font-size: 13px;
  font-weight: 450;
  color: #4b4b4b;
  background-color: #e7e7e7;
  padding-top: .5rem;
  padding-bottom: .5rem;
  border: none;
}
.form-label {
    margin-bottom: 0.2rem;
}

/* filter ends */


/* real-estate start */

.real-estate {
  padding-top: 50px;
  padding-bottom: 40px;
  position: relative;
}

.real-estate::before {
  content: "";
  background-image: url(../images/real-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.5;
}

.real-estate .container {
  position: relative;
}

.real-estate .card {
  border: 1px solid rgba(131, 131, 131, 0.312);
  border-radius: 15px;
  background-color: #ffffff;
}

.real-estate .card:hover {
  border: 1px solid var(--praimary-color);
  transition: all .5s ease-in-out;
  box-shadow: 5px 5px 18px #919191e0;
  ;
}

.real-estate .card img,
.real-estate .card .carousel-inner {
  border-radius: 10px;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.real-estate .card-body a {
  text-decoration: none;
}

.real-estate .card-body a h4 {
  font-size: 16px;
  font-weight: 600;
  color: #454545;
}

.btn-primary {
  background-color: var(--praimary-color);
  border: 1px solid #0493E5;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #007ec7;
  border: 1px solid #007ec7;
}





/* real estate page ends */




/* listing-details page starts */

/* Breadcrumb-news starts */

.Breadcrumb-listing-details {
  background: url(../images/kimon-maritz.jpg) repeat fixed ;
  box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0.356);
  background-size: cover;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.Breadcrumb-listing-details h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: var(--praimary-color);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.Breadcrumb-listing-details a,
span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width:576px) {
  .Breadcrumb-listing-details h1 {
    font-size: 28px;
  }

  .Breadcrumb-listing-details a,
  span {
    font-size: 18px;
  }
  .Breadcrumb-listing-details {
  height: 35vh;
}
}


/* Breadcrumb-news ends */

/* listing-details starts */

.listing-details {
  padding-bottom: 40px;
  padding-top: 40px;
  position: relative;
}

.listing-details::before {
  content: "";
  background-image: url(../images/21.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.1;
}

.listing-details .container {
  position: relative;
}

.listing-details h2 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}
.listing-details .feature-bg {
  background-color: var(--praimary-color);
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.listing-details .feature-bg p {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  padding: 8px;
}


.listing-details h5 {
  font-size: 18px;
  font-weight: 600px; 
  border-left: 3px solid var(--praimary-color);
  padding-left: 10px;
}

.listing-details p {
  font-size: 15px;
  font-weight: 500;
  color: #727272;
  margin-bottom: 20px;
  text-align: justify;
}

.listing-details #featured {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid var(--praimary-color);

}

.listing-details .thumbnail {
  object-fit: cover;
  max-width: 100px;
  max-height: 100px;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.5;
  margin: 5px;
  border: 2px solid var(--praimary-color);

}

.listing-details .thumbnail:hover {
  opacity: 1;
}

.listing-details .active-image {
  opacity: 1;
}

.listing-details #slide-wrapper {
  /*max-width: 500px;*/
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content:center;
}

.listing-details #slider {
  max-width: 440px;
  width:auto;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;

}

.listing-details #slider::-webkit-scrollbar {
  width: 8px;

}

.listing-details #slider::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);

}

.listing-details .arrow {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: .3s;
}



/* listing details page ends */





/* news page starts */

/* Breadcrumb-news starts */

.Breadcrumb-news {
  background: url(../images/kimon-maritz.jpg) repeat fixed ;
  box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0.356);
  background-size: cover;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.Breadcrumb-news h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: var(--praimary-color);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.Breadcrumb-news a,
span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width:576px) {
  .Breadcrumb-news h1 {
    font-size: 28px;
  }

  .Breadcrumb-news a,
  span {
    font-size: 18px;
  }
  .Breadcrumb-news {
  height: 35vh;

}
}


/* Breadcrumb-news ends */

/* news-page starts */

.news-page {
  padding-top: 20px;
  padding-bottom: 40px;
  position: relative;
}

.news-page::before {
  content: "";
  background-image: url(../images/news-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.07;
}

.news-page .container {
  position: relative;
}

.news-page .card {
  border: 1px solid rgba(131, 131, 131, 0.312);
  border-radius: 15px;
  background-color: #ffffff;
}

.news-page .card:hover {
  border: 1px solid var(--praimary-color);
  transition: all .5s ease-in-out;
  box-shadow: 5px 5px 18px #919191e0;
  ;
}

.news-page .card img {
  border-radius: 10px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-page .card-body a {
  text-decoration: none;
  color: var(--praimary-color);
}

.news-page h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: #454545;
}

.news-page .card-body a {
  text-decoration: none;
  padding-top: 10px;
}


.Pagination {
  padding-top: 40px;
}

.Pagination a {
  color: var(--praimary-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.Pagination .page-item.active .page-link {
  background-color: var(--praimary-color);
  border: var(--praimary-color);
  border-radius: 5px;
  width: 40px;
  text-align: center;
  margin: 0 6px;
}

.Pagination .page-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  border: 1px solid var(--praimary-color);
  margin: 0 6px;
  width: 40px !important;
  height: 40px;
  
}

.Pagination .page-item a:hover {
  background-color: var(--praimary-color);
  color: white;
}

.Pagination #active a {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: var(--praimary-color);
}
.Pagination #active a i{
  color: #ffffff;
}

@media screen and (max-width:575px) {
  .Pagination .page-item.active .page-link {
    width: 30px;
    margin: 0 3px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .Pagination .page-item .page-link {
    margin: 0 3px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .Pagination #active .page-link {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .Pagination a {
    font-size: 14px;
  }
}

/* news page ends */




/* news-details page starts */

/* Breadcrumb-news-details starts */

.Breadcrumb-news-details {
  background: url(../images/kimon-maritz.jpg) repeat fixed ;
  box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0.356);
  background-size: cover;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.Breadcrumb-news-details h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: var(--praimary-color);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.Breadcrumb-news-details a,
span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width:576px) {
  .Breadcrumb-news-details h1 {
    font-size: 28px;
  }

  .Breadcrumb-news-details a,
  span {
    font-size: 18px;
  }
  .Breadcrumb-news-details {
  height: 35vh;
}
}


/* Breadcrumb-news-details ends */


/* news-details starts */

.news-details {
  padding-top: 40px;
  padding-bottom: 40px;
}

.news-details h2 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 600px;
}

.news-details .secondary-title {
  border-left: 10px solid var(--praimary-color);
  background-color: #cfedff;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 10px;
  margin-bottom: 10px;
}

.news-details .secondary-title p {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
  text-align: justify;
}

.news-details #featured {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  border: 2px solid var(--praimary-color);

}

.news-details .thumbnail {
  object-fit: cover;
  max-width: 100px;
  max-height: 100px;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.5;
  margin: 5px;
  border: 2px solid var(--praimary-color);

}

.news-details .thumbnail:hover {
  opacity: 1;
}

.news-details .active-image {
  opacity: 1;
}

#slide-wrapper {
  /*max-width: 500px;*/
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content:center;
}


.news-details #slider {
  max-width: 440px;
  width:auto;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;

}

.news-details #slider::-webkit-scrollbar {
  width: 8px;

}

.news-details #slider::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);

}

.news-details .arrow {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: .3s;
}


/* news-details page ends */






/* article  page starts */

/* Breadcrumb-article starts */

.Breadcrumb-article {
   background: url(../images/kimon-maritz.jpg) repeat fixed ;
  box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0.356);
  background-size: cover;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.Breadcrumb-article h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: var(--praimary-color);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.Breadcrumb-article a,
span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width:576px) {
  .Breadcrumb-article h1 {
    font-size: 28px;
  }

  .Breadcrumb-article a,
  span {
    font-size: 18px;
  }
  .Breadcrumb-article {
  height: 35vh;
}
}


/* Breadcrumb-article ends */



/* article-page starts */

.article-page {
  padding-top: 20px;
  padding-bottom: 40px;
  position: relative;
}

.article-page::before {
  content: "";
  background-image: url(../images/news-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.07;
}

.article-page .container {
  position: relative;
}

.article-page .card-body {
  padding: 0;
}

.article-page .card-body h6 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  color: #181818;

}

.article-page .card-body p {
  font-size: 15px;
  color: #181818;
  margin-bottom: 8px;
  text-align: justify;
}

.article-page .card-body a {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.article-page .card {
  border: none;
  background-color: #f5f5f5e6;
  border: 1px solid rgba(131, 131, 131, 0.312);
  border-radius: 15px;
  padding: 15px;
}

.article-page .card:hover {
  border: 1px solid var(--praimary-color);
  transition: all .5s ease-in-out;
  box-shadow: 5px 5px 18px #919191e0;
  ;
}

.article-page img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


.btn-primary {
  background-color: var(--praimary-color);
  border: 1px solid #0493E5;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #007ec7;
  border: 1px solid #007ec7;
}

/* article page ends */




/* article details page starts */

/* Breadcrumb-article-details starts */

.Breadcrumb-article-details {
  background: url(../images/kimon-maritz.jpg) repeat fixed ;
  box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0.356);
  background-size: cover;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.Breadcrumb-article-details h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: var(--praimary-color);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.Breadcrumb-article-details a,
span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width:576px) {
  .Breadcrumb-article-details h1 {
    font-size: 28px;
  }

  .Breadcrumb-article-details a,
  span {
    font-size: 18px;
  }
  .Breadcrumb-article-details {
  height: 35vh;
}
}


/* Breadcrumb-article-details ends */


/* article-details starts */

.article-details {
  padding-bottom: 40px;
  position: relative;
}

.article-details::before {
  content: "";
  background-image: url(../images/about-bg-5-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  /* opacity: 0.14; */
}

.article-details .container {
  position: relative;
}

.article-details h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
}

.article-details p {
  font-size: 15px;
  color: #646464;
  text-align: justify;
}

.article-details img {
  border-radius: 15px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* article details page ends */





/* FAQ page starts */

/* Breadcrumb-faq starts */

.Breadcrumb-faq {
   background: url(../images/kimon-maritz.jpg) repeat fixed ;
  box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0.356);
  background-size: cover;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.Breadcrumb-faq h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: var(--praimary-color);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.Breadcrumb-faq a,
span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width:576px) {
  .Breadcrumb-faq h1 {
    font-size: 28px;
  }

  .Breadcrumb-faq a,
  span {
    font-size: 18px;
  }
  .Breadcrumb-faq {
  height: 35vh;
}
}


/* Breadcrumb-faq ends */



/* question-page starts */

.question-page {
  padding-bottom: 40px;
  padding-top: 40px;
  background-color: rgb(236, 236, 236);
}

.question-page h2 {
  font-size: 27px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 10px;
}

.question-page .card {
  border: 1px solid var(--secondary-color);
}

.question-page ul {
  list-style-image: url(../images/bullet.png);
}

.question-page li {
  font-size: 14px;
  font-weight: 500;
}

.question-page .square h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.question-page p {
  text-align: justify;
  font-size:14px;
}

.question-page .square {
  background-color: #ffffff;
  border: 2px dotted var(--praimary-color);
  border-radius: .25rem;
  padding: 10px;
}

.question-page .square:hover {
  background-color: #ffffff;
}

.question-page .square:hover,
.question-page .square:active {
  background: linear-gradient(90deg, #0493E5 50%, transparent 50%), linear-gradient(90deg, #0493E5 50%, transparent 50%), linear-gradient(0deg, #0493E5 50%, transparent 50%), linear-gradient(0deg, #0493E5 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 10px 2px, 10px 2px, 2px 10px, 2px 10px;
  padding: 10px;
  animation: border-dance 4s infinite linear;
  transition: all ease 0.4s;
}

@keyframes border-dance {
  0% {
    background-position: 0 0, 10% 100%, 0 100%, 100% 0;
  }

  100% {
    background-position: 10% 0, 0 100%, 0 0, 100% 100%;
  }
}

.question-page .answer {
  background-color: rgb(245, 245, 245);
  padding: 10px;
}

/* question-page ends */

/* FAQ page ends */






/* contact page starts */

/* Breadcrumb-contact starts */

.Breadcrumb-contact {
   background: url(../images/kimon-maritz.jpg) repeat fixed ;
  box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0.356);
  background-size: cover;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.Breadcrumb-contact h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: var(--praimary-color);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.Breadcrumb-contact a,
span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width:576px) {
  .Breadcrumb-contact h1 {
    font-size: 28px;
  }

  .Breadcrumb-contact a,
  span {
    font-size: 18px;
  }
  .Breadcrumb-contact {
  height: 35vh;
}
}


/* Breadcrumb-contact ends */


/* contact-form starts*/

.contact-form {
  padding-top: 40px;
  padding-bottom: 40px;
}

.contact-form .form {
  border: 1px solid var(--praimary-color);
  padding: 0 20px;
  border-radius: 15px;
}

.contact-form .form input:hover {
  border: 1px solid var(--praimary-color);
}

.contact-form .form .form-control {
  font-size: 15px;
}

.contact-form .form label {
  font-weight: 500;
  font-size: 15px;
}

.contact-form .text-primary {
  font-size: 22px;
  font-weight: 600;
  color: #0a73c0;
}

.contact-form h5 {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 15px;
}

.contact-form .contact-box {
  /* width: 400px; */
  padding: 23px 20px 10px 20px;
  background-color: #0493E5;
  border-radius: 15px;
  margin-top: 60px;
}

.contact-form .contact-box h4 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}

.contact-form .contact-box ul {
  list-style: none;
  padding-left: 5px;
}

.contact-form .contact-box li {
  list-style: none;
  padding-top: 5px;
}

.contact-form .contact-box a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #eeeeee;
}
.contact-form .contact-box a:hover {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #eeeeee;
}

@media screen and (max-width:767px){
    .contact-form .contact-box {
    margin-top: 0px;
}
}

.location iframe{
  width: 100%;
  height: 450px;
  border:0;
}

.btn-primary {
  background-color: var(--praimary-color);
  border: 1px solid #0493E5;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #007ec7;
  border: 1px solid #007ec7;
}

/* contact-form starts*/

/* contact page ends */




/* Privacy policy page starts */

/* Breadcrumb-Privacy-policy starts */

.Breadcrumb-Privacy-policy {
   background: url(../images/kimon-maritz.jpg) repeat fixed ;
  box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0.356);
  background-size: cover;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.Breadcrumb-Privacy-policy h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: var(--praimary-color);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.Breadcrumb-Privacy-policy a,
span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width:576px) {
  .Breadcrumb-Privacy-policy h1 {
    font-size: 28px;
  }

  .Breadcrumb-Privacy-policy a,
  span {
    font-size: 18px;
  }
  .Breadcrumb-Privacy-policy {
  height: 45vh;
}
}


/* Breadcrumb-Privacy-policy ends */



/* Privacy-policy starts */

.Privacy-policy {
  padding-bottom: 40px;
  padding-top: 40px;
  position: relative;
}

.Privacy-policy::before {
  content: "";
  background-image: url(../images/pngwing.com\ \(1\).png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.05;
}

.Privacy-policy .container {
  position: relative;
}

.Privacy-policy .text{
  border: 1px solid var(--praimary-color);
  background-color: #ffffff;
  padding: 20px;
  border-radius: 15px;
}

.Privacy-policy h2 {
  font-size: 27px;
  font-weight: 700;
  line-height: 35px;
}

.Privacy-policy p {
  font-size: 15px;
  color: #313131;
  text-align: justify;
}

.Privacy-policy .image img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}



/* Privacy policy page ends */






/* Terms-of-use page starts */

/* Breadcrumb-Terms-of-use starts */

.Breadcrumb-Terms-of-use {
   background: url(../images/kimon-maritz.jpg) repeat fixed ;
  box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0.356);
  background-size: cover;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.Breadcrumb-Terms-of-use h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: var(--praimary-color);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.Breadcrumb-Terms-of-use a,
span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width:576px) {
  .Breadcrumb-Terms-of-use h1 {
    font-size: 28px;
  }

  .Breadcrumb-Terms-of-use a,
  span {
    font-size: 18px;
  }
  .Breadcrumb-Terms-of-use {
  height: 45vh;
}
}


/* Breadcrumb-Privacy-policy ends */



/* Terms-of-use starts */

.Terms-of-use {
  padding-bottom: 40px;
  padding-top: 40px;
  position: relative;
}

.Terms-of-use::before {
  content: "";
  background-image: url(../images/pngwing.com\ \(1\).png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.05;
}

.Terms-of-use .container {
  position: relative;
}

.Terms-of-use .text{
  border: 1px solid var(--praimary-color);
  background-color: #ffffff;
  padding: 20px;
  border-radius: 15px;
}

.Terms-of-use h2 {
  font-size: 27px;
  font-weight: 700;
  line-height: 35px;
}

.Terms-of-use p {
  font-size: 15px;
  color: #313131;
  text-align: justify;
}

.Terms-of-use .image img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}


/* Terms-of-use page ends */
