*{
    margin: 0;
    padding: 0;
}
body{
  margin: 0;
  padding: 0;
  font-size: var(--base-font-size);
}
/* ****All pages roots*** */
:root{
  --maincolor:orange;
  --banner-txt-h1:#fff;
  --banner-txt-h1-shadow:#000;
  --footerbackground:#FFB84C;
  --signupbtn:#FFB84C;
  --circleicon:#f4bf62;
  --footerblogcatagoery:rgb(63, 121, 230);
}
/* *******Business&project page roots***** */
:root {
  --bg-hot: #000;
  --bg-featured: #ea723d;
  --p-text-color: #7e8186;
  --icon-info-color: #808080;
  --icon-image-color: white;
  --h2-text-color: #1a1a1a;
  --price-text-color: #ffa500;
  --backgound-imgage: #ffa600b7;
  --border-view-color: #a4d2c3;
}
/* ***********************Back To Top*************** */
#back-to-top{
  display: inline-block;
  background-color: var(--maincolor);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition:  .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#back-to-top::after {
  content: "\f106";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2.4em;
  line-height: 50px;
  color: #fff;
}
#back-to-top:hover {
  cursor: pointer;
  background-color: #333;
}
#back-to-top:active {
  background-color: #555;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* *****************TiTle*****************  */
#cont .contact-img{
  background-image: url(../assets/images/all_page_title.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 5px solid var(--maincolor);
  height: 50vh;
  margin-top: 80px;
}
#cont h1{
  text-align: center;
  margin: 0 auto;
  padding: 40px 0;
  font: 600 50px 'Oswald', sans-serif;
  color: #000000d2;
  text-shadow: 1px 1px #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
}
#cont h1 span{
  text-shadow: 1px 1px #000;
}

/* ************************Navbar Start********************** */
.navbar{
border: 3px solid var(--maincolor);  
top: 0;
margin: 0; 
font-weight:500;  
}
.nav-item .investor-btn{
  text-decoration: none;
  color: #000;
  font-size: 21px;
}
.nav-item{
    font-size: 21px;
    padding: 6px;
    color: #000;
}
.dropdown:hover .dropdown-menu {
  display: block;
  font-size: 17px;
}
.navbar .nav-item a:hover{
    color: var(--maincolor);
}
.navbar-nav .nav-link.active{
    color: var(--maincolor) !important;
}

/* ...................... */
.nav-item .signup-btn{
  padding: 2px;
  border: 1px solid #fff;
  font-size: 20px;
  margin-top: 6px;
  background-color: rgba(0, 0, 0, 0.868);
  color: white;
  margin-left: 10px;
}
.nav-item .signup-btn:hover{
  background: var(--signupbtn);
  color: #000;
  animation: squeeze3124 0.9s both;
}
@keyframes squeeze3124 {
  0% {
   -webkit-transform: scale3d(1, 1, 1);
   transform: scale3d(1, 1, 1);
  }
  30% {
   -webkit-transform: scale3d(1.25, 0.75, 1);
   transform: scale3d(1.25, 0.75, 1);
  }
  40% {
   -webkit-transform: scale3d(0.75, 1.25, 1);
   transform: scale3d(0.75, 1.25, 1);
  }
  50% {
   -webkit-transform: scale3d(1.15, 0.85, 1);
   transform: scale3d(1.15, 0.85, 1);
  }
  65% {
   -webkit-transform: scale3d(0.95, 1.05, 1);
   transform: scale3d(0.95, 1.05, 1);
  }
  75% {
   -webkit-transform: scale3d(1.05, 0.95, 1);
   transform: scale3d(1.05, 0.95, 1);
  }
  100% {
   -webkit-transform: scale3d(1, 1, 1);
   transform: scale3d(1, 1, 1);
  }
 }

/* *******************Top Banner Start***************** */
.top-banner{
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--maincolor);
}
.banner-text h1{
  color: var(--banner-txt-h1);
  background-position: center;
  opacity: .9;
  border-radius: 7px;
  padding: 1px;
  text-shadow: 3px 3px var(--banner-txt-h1-shadow);
}

/* ************************Services Section Start******************** */
#services{
    padding-top: 80px;
    margin-top: 10%;
    border-top: 10px solid var(--maincolor);
    border-radius: 130% 130% 0 0 / 20rem 
}
.icon img{
    height: 60px;
    width: 60px;
    filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.3));
}
#services .text a{
  cursor: pointer;
  color: #000;
  text-decoration: none;
}

/* ******************Project Service Start***************** */
#project-service{
    margin-top: 90px;
}
.main-container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.4));
}
.main {
  margin: 0px auto;
  width: 300px;
  height: 300px;
  position: relative;
  margin-left: 80px;
}
.big-circle {
  height: 100%;
  width: 100%;
  position: relative;
  border: 3px solid var(--maincolor);
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  animation: Rotate 20s linear infinite;
  -webkit-animation: Rotate 20s linear infinite;
}
.icon-block {
  width: 45px;
  height: 45px;
  position: absolute;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-image: linear-gradient(180deg, var(--circleicon) 0%, var(--circleicon) 100%);
}
.icon-block img {
  margin: 0px auto;
  width: 95%;
  animation: Rotate-reverse 20s linear infinite;
  -webkit-animation: Rotate-reverse 20s linear infinite;
}
.icon-block:first-child {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.icon-block:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
}
.icon-block:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
}
.icon-block:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* .............circle content............ */
.circle {
  animation: circle-rotate 20s linear infinite;
  -webkit-animation: circle-rotate 20s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  width: 75%;
  height: 75%;
  border: 3px solid var(--maincolor);
  border-radius: 50%;
}
.circle .icon-block img {
  animation: img-rotate 20s linear infinite;
  -webkit-animation: img-rotate 20s linear infinite;
}
/* .........center logo........ */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.center-logo img {
  max-width: 110px;
}
/* .........keyframe............*/
@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes Rotate-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes Rotate-reverse {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes circle-rotate {
  from {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}
@-webkit-keyframes circle-rotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
  }
}
@keyframes img-rotate {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(-405deg);
  }
}
@-webkit-keyframes img-rotate {
  from {
    -webkit-transform: rotate(-45deg);
  }
  to {
    -webkit-transform: rotate(-405deg);
  }
}
/* ...........Project Side..........*/
.project-text{
    margin-right: 50px;
    margin-top: 30px;
}
.listlist{
  color: var(--maincolor);
  list-style: circle;
  font-style: italic;
  cursor: pointer;
  display: flex;
  gap: 25px;
}
.listlist li:hover{
  color: #000;
 text-decoration-line: underline;
 text-decoration-style: wavy;
}

/*  ***************Business Service Strt************* */
#business-service{
  margin-top: 90px;
}
.business-text{
  margin-top:50px ;
}
.business-image{
  width: 320px;
  margin-left: 90px;
  margin-top: 30px;
  filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.5));
}

/* ******************************Animated Counter Start****************** */
#counters{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 200px;
	background-image: url(../assets/images/animated\ counter.webp);
  display: cover;
	overflow: hidden;
	margin-top: 60px;
	border-top: 5px var(--maincolor) solid;
	border-bottom: 5px var(--maincolor) solid;
}
.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 30px 50px;
}
.counter {
 font-weight: bold;
 color: white;
  font-size: 50px;
  margin-top: 10px;
  text-shadow: 3px 3px #000;
}
.counter-text{
	font-size: 25px;
	color: black;
	font-weight:bolder ;
}
@media (max-width: 580px) {
  body {
    flex-direction: column;
  }
}

/* ******************************Broker Section Start*************************** */
.broker-head{
    margin-top: 80px;
}
 .broker-text h5:hover{
  color: white;
  cursor: pointer;
}
#service-broker{
  margin-top: 80px;
}
.commercial{
  margin-top: 70%;
  vertical-align: middle;
  width: 100%;
  height: auto;
  filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.5));
  }
.broker-icon img{
    height: 70px;
    width: 70px;
    filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.2));
}
.broker-text h5{
    background-color: var(--maincolor);
    width: fit-content;
    border: 1px;
    border-radius: 80px;
    padding: 4px 6px;
}
#digital-marketing{
    margin-top: 80px;
}

/* *****************************Blog Section Start******************** */
.product {
  position: relative;
  overflow: hidden;
  padding: 10px;
  margin-top: 60px;
  background-image:url(../assets/images/blog.back.webp);
  background-size: cover;
  background-position: center;
  border-top: 5px solid var(--maincolor);
  border-bottom: 5px solid var(--maincolor);
  border-radius: 130% 130% 0 0 / 15rem 
}
.product-category {
  color: #fff;
  padding-top: 15px;
  font-size: 30px bold;
  font-weight: 500;
  margin-bottom: 60px;
  text-transform: capitalize;
}
.product-container {
  padding: 0 7vw;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.product-container::-webkit-scrollbar {
  display: none;
}
.product-card {
  flex: 0 0 auto;
  width: 255px;
  height: 300px;
  margin-right: 40px;
}
.product-image {
  position: relative;
  width: 90%;
  height: 250px;
  overflow: hidden;
  border: 1.5px solid var(--maincolor);
  border-radius: 15px;
}
.product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tag {
  position: absolute;
  background: #fff;
  padding: 3px;
  border-radius: 5px;
  color: var(--maincolor);
  right: 10px;
  top: 10px;
  text-transform: capitalize;
}
.card-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 30px;
  width: 90%;
  text-transform: capitalize;
  border: none;
  outline: none;
  background: #fff;
  border-radius: 5px;
  transition: 0.5s;
  cursor: pointer;
  opacity: 0;
}
.product-card:hover .card-btn {
  opacity: 1;
}
.card-btn:hover {
  background: var(--maincolor);
  color: #fff;
}
.pre-btn,
.nxt-btn {
  border: 1px solid #000;
  border-radius:50%;
  padding: 10px;
  background-color: var(--maincolor);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 90px;
  cursor: pointer;
  z-index: 8;
}
.pre-btn:hover{
  background-color: #fff;
  transform: rotate(180deg);
}
.nxt-btn:hover{
  background-color: #fff;
}
.pre-btn {
  left: 40px;
  transform: rotate(180deg);
}
.nxt-btn {
  right:40px;
}

/* **************map area************* */
.responsive-map{
  overflow: hidden;
  padding-bottom:20%;
  position:relative;
  height:0;
  border: 2px solid var(--maincolor);
  }
  .responsive-map iframe{
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
  }

/* ************************** Contact Form Start*************************** */
.contact-head{
  margin-top: 90px;
}

.sec-pad {
    padding: 80px 0 0;
  }
form.contFrm {
  max-width: 450px;
  margin: auto;
}
.inptFld {
  width: 100%;
  height: 40px;
  border: 1px solid var(--maincolor);
  margin: 0 0 10px;
  border-radius: 5px;
  padding: 0 20px;
  font-size: 16px;
}
.inptFld:focus {
  outline: 1px solid var(--maincolor);
}
.contFrm textarea {
  height: 200px;
  color: #000;
  padding-top: 5px;
  border:1.5px solid var(--maincolor);
}
.inptBtn {
  height: 40px;
  border: 0;
  background: var(--maincolor);
  font-size: 20px;
  color: white;
  margin: auto;
  letter-spacing: 1px;
  cursor: pointer;
  width: 100%;
  border-radius: 13px;
  -webkit-animation: jello-horizontal 0.9s both;
 animation: jello-horizontal 0.9s both;
}
 /* ................ */
.contact-image{
    width: 290px;
    filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.5));}
  .contact-detail{
    margin-left: 80px;
  }
  input {
    overflow: hidden;
  }
  .contact-sec .contact-item {
    font-size: 18px;
  }
  .contact-sec .contact-item i {
    font-size: 18px;
    padding: 8px;
    border-radius: 100%;
    border: 2px solid var(--maincolor);
    color: var(--maincolor); 
  }
  .contact-detail a {
    color: #000;
    text-decoration: none;
  }
  .contact-detail a:hover {
    color: var(--maincolor);
    text-decoration: none;
  }


/* ***********************************Footer Start********************************** */
.bg-footer {
  margin-top: 140px;
  padding: 100px 0 0px;
  background-color: var(--footerbackground);
  border-top: 10px solid var(--maincolor);
  border-radius: 130% 130% 0 0 / 10rem  
}
.footer-link a{
  color: black;
  line-height: 45px;
  font-size: 20px;
  transition: all 0.5s;
  padding-left: 70px;
  text-decoration:none;
  position: relative;
  text-transform: capitalize;
}
ul{
  list-style: none;
}
.footer-link a:hover {
  color: white;
}
.footer-heading {
  padding-left: 100px;
}
.footer-heading:after {
  content: '';
  width: 50px;
  left: 0;
  bottom: 0;
  display: block;
  border-bottom: 1.5px solid white;
}
.contact .footer-item i{
  background-color: var(--maincolor);
  border-radius: 50%;
  padding: 6px;
  font-size: large;
}
.social-link h4:after {
  content: '';
  width: 50px;
  left: 0;
  bottom: 0;
  display: block;
  border-bottom: 1.5px solid white;
}

.social-list  a {
 color: #000000c4;
}
.social-link ul{
  margin-right: 80px;
}
.social-list li {
  position: relative; 
  display: inline-block;
  height: 45px;
  width: 45px;
  margin: 10px 3px;
  line-height: 50px;
  border-radius: 50%;
  color: #000;
  background-color: var(--maincolor);
  cursor: pointer; 
  transition: all .2s ease-in-out;
}
.social-list li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  line-height: 50px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px #fff;
  transition: all .2s ease-in-out;
}

.social-list li:hover:after {
  opacity: 1;  
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37,0.74,0.15,1.65);
}
.social-list li:hover a {
  color: #fff;
}
.end{
  padding: 1rem;
  background-color: var(--maincolor);
  border-top: 1px solid #000;
}

/* ***********************Separate Line************************** */
hr.sep-3 {
  border: none;
  height: 4px;
  background-image: linear-gradient(to right, #f0f0f046, var(--maincolor), #f0f0f046);
}
hr.sep-3::after {
  content: '§';
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) rotate(60deg);
  transform-origin: 50% 50%;
  padding: 1rem;
  background-color: white;
}

/* ******************************Contact Page********************************* */
#contact {
  width: 100%;
  height: 100%;
}
.section-header {
  text-align: center;
  margin: 0 auto;
  font: 300 60px 'Oswald', sans-serif;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 6px;
}
.contact-wrapper {
  padding-top: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: px;
  position: relative;
  max-width: 840px;
}
/*...........Left............ */
.form-horizontal {
  float: left;
  max-width: 400px;
  font-family: 'Lato';
  font-weight: 400;
}
.form-control, 
textarea {
  margin-top: 10px;
  color: #fff;
  letter-spacing: 1px;
}
#contact-form .send-button{
  background-color: var(--maincolor);
  color: #fff;
  margin-top: 15px;
  height: 34px;
  width: 400px;
  overflow: hidden;
  transition: all .2s ease-in-out;
}
.alt-send-button {
  width: 400px;
  height: 34px;
  transition: all .2s ease-in-out;
}
.send-text {
  display: block;
  margin-top: 10px;
  font: 700 15px 'Lato', sans-serif;
  letter-spacing: 2px;
}
.alt-send-button:hover {
  transform: translate3d(0px, -29px, 0px);
}
/* ............Right............ */
.direct-contact-container {
  max-width: 400px;
}
/* ................... */
.contact-list {
  list-style-type: none;
  margin-left: -30px;
  padding-right: 20px;
}
.list-item {
  line-height: 5;
  color: var(--maincolor);
}
.contact-text {
  font: 300 18px 'Lato', sans-serif;
  letter-spacing: 1.9px;
  color: #636363;
}
.place {
  margin-left: 25px;
}
.phone {
  margin-left: 25px;
}
.gmail {
  margin-left: 25px;
}
.contact-text a {
  color: #636363;
  text-decoration: none;
  transition-duration: 0.2s;
}
.contact-text a:hover {
  color: var(--maincolor);
  text-decoration: none;
}
/* ................ */
.social-media-list {
  position: relative;
  font-size: 28px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.social-media-list li a {
  color: #fff;
}
.social-media-list li {
  position: relative; 
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 10px 3px;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  background-color: rgb(27,27,27);
  cursor: pointer; 
  transition: all .2s ease-in-out;
}
.social-media-list li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px var(--maincolor);
  transition: all .2s ease-in-out;
}
.social-media-list li:hover {
  background-color: var(--maincolor); 
}
.social-media-list li:hover:after {
  opacity: 1;  
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37,0.74,0.15,1.65);
}
.social-media-list li:hover a {
  color: #000;
}
hr {
  border-color: rgba(255,255,255,.6);
}
/* Begin Media Queries*/
@media screen and (max-width: 850px) {
  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }
  .direct-contact-container, .form-horizontal {
    margin: 0 auto;
  }   
  .direct-contact-container {
    margin-top: 60px;
    max-width: 300px;
  }    
  .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (max-width: 569px) {
  .direct-contact-container, .form-wrapper {
    float: none;
    margin: 0 auto;
  }  
  .form-control, textarea {
    
    margin: 0 auto;
  } 
  .name, .email, textarea {
    width: 280px;
  } 
  .direct-contact-container {
    margin-top: 60px;
    max-width: 280px;
  }  
  .social-media-list {
    left: 0;
  }
  .social-media-list li {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 2rem;
  }
  .social-media-list li:after {
    width: 55px;
    height: 55px;
    line-height: 55px;
  } 
}
@media screen and (max-width: 410px) {
  .send-button {
    width: 99%;
  }
}


/* *************************Signup Page*******************************/
label {
  font-weight: 600;
  color: #666;
}
.box8{
border-radius:10px;
}
.mx-t3{
margin-top: -5rem;
}
.sign-btn button{
  float: right;
  background-color: var(--maincolor);
  color: #000; 
  margin-right: 2%;
}

/* ******************************Login Page*********************************/
.form-img{
  background-image: url(../assets/images/login_pic.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.form-style input{
	border:0;
	height:50px;
	border-radius:0;
border-bottom:1px solid #ebebeb;	
}
.form-style input:focus{
border-bottom:1px solid var(--maincolor);	
box-shadow:none;
outline:0;
background-color:#ebebeb;	
}
.sideline {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
	color:#ccc;
}
.sideline:before,
.sideline:after {
    content: '';
    border-top: 1px solid #ebebeb;
    margin: 0 20px 0 0;
    flex: 1 0 20px;
}
.sideline:after {
    margin: 0 0 0 20px;
}
.nav-pills .pill-2 .nav-link:not(.active) {
  border: none;
  color: #6c757d !important;
  font-weight: 700;
  width: 0%;
  transition: width 0.5s;
}
.form-style a:hover {
  color: var(--maincolor);
  text-decoration: none;
}
/* ..................... */
.nav-pills .pill-1 .nav-link {
  background: white !important;
   border-bottom: 2px solid var(--maincolor);
  color: #212529 !important;
  font-size: 1.5rem;
  font-weight: 700;
}
.nav-pills .pill-2 .nav-link {
  background: white !important;
  border-bottom: 2px solid var(--maincolor);
  color: #212529 !important;
  font-size: 1.5rem;
  font-weight: 700;
}
.nav-pills .pill-1 .nav-link:hover {
  color: #212529 !important;
  width: 100%;
  border-bottom: 2px solid #000;
}
.nav-pills .pill-2 .nav-link:hover {
  color: #212529 !important;
  width: 100%;
  border-bottom: 2px solid var(--maincolor);
}

/* ****************************Investor page start************************ */
#investor-page .invest-post{
background-image: url(../assets/images/investor_background.webp);
width: 100%;
background-size: cover;
height: 80vh;
border-bottom: 5px solid var(--maincolor);
margin: 0;
}
#investor-page h2{
 padding-top: 15%;
 padding-left: 50px;
 text-shadow: 1px 1px var(--maincolor);
}
#investor-page p{
  padding-left: 50px;
  padding-right: 50%;
}
#investor-page h1{
  text-shadow: 1px 2px var(--maincolor);
  font-family: Verdana, Arial, Helvetica, sans-serif;
  }
  .card-wrapper{
  margin-top: 90px;
  }
.invest-image img{
  height:300px;
  filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.5));
  }
 .invest-text h3{
  margin-left: 50px;
  text-decoration: none;
  font-family: "Lucida Console", Courier, monospace;
  }
  #investor-page .invest-text p{
  padding-right: 10%;
  }
 
  .smart-card {
    margin-top: 160px;
    margin-bottom: 140px;
    font-family: "Josefin Sans", sans-serif;
  }
  .smart-card .smart-card-txt {
    margin-top: 90px;
  }
  .smart-card .smart-card-txt h4 {
    font-size: 35px;
    font-weight: bold;
  }
  .smart-card .smart-card-txt a {
    background-color: var(--maincolor);
    color: black;
    padding: 7px 18px;
    font-size: 18px;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
    border-radius: 3px;
    border: none;
    position: relative;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
  }
  .smart-card .smart-card-img {
    width: 100%;
  }
  .smart-card .smart-card-img img {
    width: 100%;
    filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.5));
  }

/* ******************************Business page*************************** */
 .page-content p{
  display: block;
  padding-bottom: 1.5rem;
 }
.overlay,
.img-overlay img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
a {
  text-decoration: none;
  color: white;
}
a:hover {
  color: white;
}
.listing-sale {
  grid-template-columns: 1fr repeat(12, minmax(auto, 60px)) 1fr;
  grid-gap: 40px;
  margin: 35px 0;
}
/* ....................*/
.cards::before {
  content: "featured";
  position: absolute;
  z-index: 5;
  color: white;
  background-color: var(--bg-featured);
  text-transform: capitalize;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  padding: 7px 7px;
}
.cards {
  grid-column: 2 / span 12;
  display: grid;
  grid-template-columns: repeat(12, minmax(auto, 60px));
  grid-gap: 40px;
  position: relative;
}
.cards::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  left: 81.6px;
  border: 16.4px solid transparent;
  border-left-color: var(--bg-featured);
  transform: translateY(-50%);
}

/* ..................... */
.media-card,.bus-listing-card {
  grid-column-end: span 4;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0px 0px 7px 3px #dfdfdf;
}
.media-card:hover,.bus-listing-card:hover {
  transform: translateY(-7px);
}

/* ...................... */
.img-overlay {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.hot-home:before {
  content: "hot";
  position: absolute;
  padding: 3px 7px;
  background-color: var(--bg-hot);
  z-index: 3;
  bottom: 10px;
  left: 10px;
  color: white;
  text-transform: capitalize;
}
.img-overlay img {
  width: 100%;
  z-index: 1;
}
.img-overlay img:hover + div {
  width: 100%;
}
figcaption {
  padding: 20px 0 20px 30px;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 1.3rem;
}
.overlay {
  width: 0;
  height: 100%;
  display: grid;
  place-content: center;
  background-color: var(--backgound-imgage);
  opacity: 0.8;
  z-index: 2;
  transition: all 0.5s ease 0.1s;
}
.overlay:hover {
  width: 100%;
}
.overlay:hover  a {
  display: block;
  text-align: center;
  border-color: #fff;
}
.overlay a {
  display: none;
  width: 140px;
  padding: 15px 0;
  text-transform: capitalize;
  border: 2px solid transparent;
  transition: border 10s ease;
}
/* ................... */
.cont {
  position: absolute;
  z-index: 6;
  width: 100%;
  height: 100%;
}
.icons-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.icons-img button {
  position: absolute;
  border: none;
  background-color: transparent;
  color: white;
  cursor: pointer;
  top: -40px;
  z-index: 10;
}
.icons-img button:first-of-type {
  right: 55px;
}
.icons-img button:last-of-type {
  right: 20px;
}
.icons-img button:first-of-type:hover {
  right: 55px;
  color: #ff3232;
}
.icons-img i {
  font-size: 25px;
}

/* ......................... */
.card-content {
  padding: 0px 30px 30px;
  line-height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
  font-size: 14px;
}
.card-content p {
  color: var(--p-text-color);
}

/* ......................*/
.icons-home {
  display: flex;
  justify-content: space-between;
}
.name-icon {
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.name-icon > span {
  text-transform: capitalize;
  color: var(--h2-text-color);
}

/* ........................ */
.icon {
  align-items: center;
}
.card-icon i {
  color: var(--icon-info-color);
  font-size: 20px;
  margin-right: 10px;
}
.icon span {
  vertical-align: middle;
}

/* ...................... */
.price {
  text-transform: capitalize;
  flex-direction: column;
}
.price span:last-of-type {
  color: var(--price-text-color);
  font-size: 18px;
}

/* media screen style */

@media screen and (max-width: 1000px) {
  .bus-listing-card {
    grid-column-end: span 6;
  }
  /* .................. */
}

@media screen and (max-width: 700px) {
  .cards {
    grid-template-columns: repeat(12, minmax(auto, 1fr));
    grid-column-gap: 10px;
    grid-row-gap: 30px;
  }
  .bus-listing-card {
    grid-column-end: span 12;
  }
  /*................ */
  .card-content {
    font-size: 16px;
  }
  /* ................. */
  .price span:last-of-type {
    color: var(--price-text-color);
    font-size: 20px;
  }
}

@media screen and (max-width: 500px) {
  .container {
    grid-template-columns: 20px repeat(12, minmax(auto, 1fr)) 20px;
    grid-gap: 10px;
  }
  .cards {
    grid-template-columns: repeat(12, minmax(auto, 1fr));
    grid-column-gap: 10px;
    grid-row-gap: 30px;
  }
  .bus-listing-card {
    grid-column-end: span 12;
  }
}

/***************************Media Page**************************** */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height:300px;
  object-fit: cover;
}
.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--maincolor);
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: var(--maincolor);}
.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--maincolor);
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
/* ........................... */
.media-wrapper .media-content{
  margin: -5rem 0 0 4.375rem;
  box-shadow: 0 0 5px 1px rgb(0, 0, 1);
}
.gallery-wrapper .gallery-item{
  box-shadow: 0 0 8px 1px rgb(0, 0, 1);
  transition: 1s;
}
.gallery-wrapper .gallery-item img{
   border-radius: 1px;
}
.gallery-wrapper .gallery-item:hover{
  transform: scale(1.2);
  z-index: 1;
}

/* ****************************Project Details age******************************** */
.carousel-item{
  margin-top: 130px;
 position: relative;
 display: none;
 margin-right: -100%;
 backface-visibility: hidden;
transition: transform 0.6s ease-in-out;
}
.carousel-item img{
  height: 400px !important;
}
.carousel-indicators{
  position: relative !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
}
.carousel-indicators [data-bs-target]{
 background-color: black !important;
 overflow: hidden;
 height: 80px !important;
 width: 14.5% !important;
 text-indent: inherit !important;
}
.carousel-control-prev, .carousel-control-next{
  height: 600px !important;
}
/* ................................. */
.project-more-detail .description {
  padding: 20px;
  margin-top: 50px;
  background-color: rgba(223, 223, 223, 0.075);
  border: 1px solid rgba(153, 153, 153, 0.123);
  display: flow-root;
}
.project-more-detail h4{
  border-left: 3px solid var(--maincolor);
  text-transform: uppercase;
  padding-left: 10px;
}
.description-features{
  padding: 20px;
  margin-top: 50px;
  background-color: rgba(223, 223, 223, 0.075);
  border: 1px solid rgba(153, 153, 153, 0.123);
  display: flow-root;
}
.description-features h4{
  border-left: 3px solid var(--maincolor);
  text-transform: uppercase;
  padding-left: 10px;
}
.prjct-fetrs ul li {
  float: left;
  width: 25%;
  padding: 15px 0px;
  border-bottom: 1px solid #eaeaea;
  color: grey;
}
/* ........right side............ */
.brochur-button .inquiry{
margin-top: 130px;
padding: 7px 7px 7px;
background-color: var(--maincolor);
border-radius: 6px;
border: none;
display: inline-block;
font-family: 'Josefin Sans', sans-serif;
}
.accordion-header .accordion-button{
  font-size: 20px;
}
.accordion-button:focus{
  box-shadow: none !important;
  border-color: black;
}
.accordion-button:not(.collapsed){
  background-color: var(--maincolor)!important;
  color: white !important;
}

.project-map{
  padding: 20px;
  margin-top: 50px;
  background-color: rgba(223, 223, 223, 0.075);
  border: 1.5px solid rgba(153, 153, 153, 0.123);
  display: flow-root;
}
 .project-map h4{
  border-left: 3px solid var(--maincolor);
  text-transform: uppercase;
  padding-left: 10px;
 }
/* ....social */
 .project-social-media .media-icon {
  padding: 20px;
  margin-top: 50px;
  background-color: rgba(223, 223, 223, 0.075);
  border: 1.5px solid rgba(153, 153, 153, 0.123);
  display: flow-root;
}
 .project-social-media .media-icon h4 {
  border-left: 3px solid var(--maincolor);
  text-transform: uppercase;
  padding-left: 10px;
}
 .project-social-media .media-icon a {
  margin-top: 15px;
  border-color: transparent;
  padding: 10px 20px;
}

 /* ***********************Blog Footer************************** */
a {
  color: #000;
  text-decoration: none; }
#container {
  margin: 0 auto;
  padding: 20px; }

  .card {
    width: 100%;
    background: white;
    padding: .4em;
    border-radius: 6px;
    filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.5));
  }
  .card-image img{
    background-size: cover;
    background-repeat: no-repeat;
   
    width: 100%;
    height: 130px;
    border-radius: 6px 6px 0 0;
  }
  .card-image:hover {
    transform: scale(0.98);
  }
  .category {
    text-transform: uppercase;
    font-size: 0.7em;
    font-weight: 600;
    color: var(--footerblogcatagoery);
    padding: 10px 7px 0;
  }
  .category:hover {
    cursor: pointer;
  }
  .heading {
    font-weight: 600;
    color: rgb(88, 87, 87);
    padding: 7px;
  }
  .heading:hover {
    cursor: pointer;
  }
  .author {
    color: gray;
    font-weight: 400;
    font-size: 11px;
    padding-top: 20px;
  }
  .name {
    font-weight: 600;
  }
  .name:hover {
    cursor: pointer;
  }
/* .......................... */ 
.blog_card {
  background-color: #fff;
  max-width: 100%;
  box-shadow: 2px 2px 5px #9E9E9E, -1px -1px 5px #9E9E9E;
  border-radius: 3px;
  display: grid;
  padding: .4em;
}
.blog_card img{
  width: 100%;
  height: 270px;
}
.blog_card_content {
  grid-column: 3 / 5;
  padding: 10px 30px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
h2 {
  text-transform: uppercase;
  color: #555;
}
.blog_card_content .author {
  border-top: 1px solid #cdcdcd;
  font-weight: 700;
  margin-top: 25px;
  padding: 25px 0 10px 0;
  color: #555;
}

@media only screen and (max-width:100%) {
  .blog_card {
    display: block;
  }
  .blog_card .blog_img {
    height: 230px;
    width: 230px;
  }
  .blog_card_content {
    border: 0;
    border-top: 1px solid #ccc;
  }
}

/* **********************About Footer************************** */
 .who-txt {
  font-family: "Josefin Sans", sans-serif;
}
.who-txt .theme-cl{
  color: var(--maincolor);
}
 .who-img img{
  height: 20%;
  width: 100%;
}
.call_action_wrap-wrap {
  margin-top: 90px;
  font-family: "Josefin Sans", sans-serif;
  padding: 35px 0;
  background-color: var(--maincolor);
}
.call_action_wrap-wrap .call_action_wrap {
  width: 100%;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #ffffff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.call_action_wrap-wrap .call_action_wrap h3 {
  font-size: 40px;
  margin-bottom: 1rem;
  font-weight: 800;
}
.call_action_wrap-wrap .call_action_wrap .call_action_wrap-head {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.call_action_wrap-wrap .call_action_wrap .btn-call_action_wrap {
  background: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  color: #333640;
  font-weight: 600;
  -webkit-box-shadow: 0px 0px 0px 5px #ffffff78;
  box-shadow: 0px 0px 0px 5px #ffffff78;
}
/* ******************************End********************************** */





