@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: 'Poppins','sans-serif';
}

:root{
  --bg-color-light-mode:#fffdfd;
  --second-bg-color:#112e42;
  --text-color:#ededed;
  --main--color:#00abf0;
}

.light-mode {
    background-color: var(--bg-color-light-mode);
    color: black;
}

/* Dark Mode Styles */
.dark-mode {
    background-color: black;
    color: white;
}

/* Light Mode Styles */
.light-mode .headernav{
	position: fixed;
	top: 0;
	left: 0; 
	width: 100%;
	padding: 1rem 9%;
	background-color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: black;
	z-index: 100;
	transition: .3s;
	border-bottom: 2px Solid #112e42;
}

/* Dark Mode Styles */
.dark-mode .headernav{
	position: fixed;
	top: 0;
	left: 0; 
	width: 100%;
	padding: 1rem 9%;
	background-color: black;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	transition: .3s; 
    border-bottom: 2px Solid #dbe3e9;
}


#modeToggle{
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
    outline: none; /* Remove the focus border */
    /* Add any additional styles you want for your plain button */
}
  
.headernav.sticky{
	background: var(--bg-color);
}
  
.light-mode .logo{
	font-size: 1.5rem;
	color:#14A085;
	font-weight: 600;
}

.dark-mode .logo{
	font-size: 1.5rem;
	color: var(--text-color);
	font-weight: 600;
}
  
.light-mode .navbar a {
	font-size: 1.0rem;
	color:black;
	font-weight: 100;
	margin-left: 1.4rem;
	transition: .3s;
	text-decoration: none;
}

.dark-mode .navbar a {
	font-size: 1.0rem;
	color:white;
	font-weight: 100;
	margin-left: 1.4rem;
	transition: .3s;
  text-decoration: none;
}

.navbar a:hover,
.navbar a.active{
    color: var(--main--color);
}
  
#menu-icon {
	font-size: 2.6rem;
	color: var(--text-color);
	cursor: pointer;
	display: none;
}

section{
  min-height: 110vh;
  padding: 1rem 0% 1rem;
  width:100%;

}

/* Slideshow container */
.slideshow-container {
    max-width: auto;
    position: relative;
    margin: auto;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

 
/* The dots/bullets/indicators */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.text {
    color: white;
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}
    

  .active {
    background-color: #717171;
  } 


  .dark-mode .text {
	  color: white;
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}



.about-info {
    display: flex;
    padding: 2%;
    align-items: flex-start; /* Align items at the start */
    justify-content: space-between; /* Distribute space */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 10px; /* Adds spacing between sections */
    margin-top: 30px;
}

.about-us {
    flex: 2; /* Take up 20% space */
    font-size: 14px;
    max-width: 40%; /* Limit width to 20% */
    border: 1px solid #000;
    padding: 2%;
}

.dark-mode .about-us {
    border: 1px solid #ffffff;
    padding: 2%;
}

.our-solutions {
    flex: 3;
    max-width: 60%;
}

.our-solutions h1{
    margin-left:10px;

}
/* Scrollable container */
.solutions-inf {
    display: flex;
    overflow-x: auto; /* Enables horizontal scrolling */
    gap: 15px; /* Space between items */
    padding: 10px;
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #888 #f1f1f1; /* Styling for Firefox */
    scroll-behavior: smooth; /* Smooth scrolling */
    white-space: nowrap; /* Prevents content from wrapping */
}

/* Custom scrollbar for Chrome, Edge, Safari */
.solutions-inf::-webkit-scrollbar {
    height: 8px;
}

.solutions-inf::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

.solutions-inf::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}


/* Container for each solution */
.sln {
    flex: 0 0 50%; /* Ensures it takes 50% width */
    max-width: 400px; /* Prevents it from becoming too wide */
    background: #fff;
    border-radius: 1px;
    padding: 10px; /* Adds spacing inside */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Light shadow for a modern look */
    border: 1px solid #ddd;
    display: flex;
    height: auto; /* Allow height to adjust based on content */
    flex-direction: column;
    align-items: flex-start; /* Aligns everything to the left */
    gap: 8px; /* Creates spacing between elements */
    overflow: hidden; /* Prevents content overflow */
    word-wrap: break-word; /* Ensures long words break correctly */
    white-space: normal; /* Allows text to wrap to the next line */
}

/* Container for each solution */
.sln {
    flex: 0 0 auto; /* Prevents forced height */
    width: 50%; /* Ensures it takes 50% width */
    max-width: 400px; /* Prevents it from becoming too wide */
    background: #fff;
    border-radius: 1px;
    padding: 10px; /* Adds spacing inside */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Light shadow for a modern look */
    border: 1px solid #ddd;
    display: flex;
    height: fit-content; /* Shrinks height to fit content */
    flex-direction: column;
    align-items: flex-start; /* Aligns everything to the left */
    gap: 8px; /* Creates spacing between elements */
    overflow: hidden; /* Prevents content overflow */
    word-wrap: break-word; /* Ensures long words break correctly */
    white-space: normal; /* Allows text to wrap to the next line */
}

/* Ensure images fit properly */
.sln img {
    width: 100%;
    height: auto; /* Keep aspect ratio */
    object-fit: cover;
    border-radius: 5px;
}

/* Text styling */
.sln h3, 
.sln p {
    margin: 3px 0; /* Reduce extra spacing */
    padding: 3px; /* Keeps content aligned well */
}











/* Title */
.sln h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
    word-wrap: break-word; /* Ensures long words wrap correctly */
}

/* Paragraph */
.sln p {
    text-align: left; /* Aligns text to the left */
    margin: 0; /* Removes default margins */
    padding: 3px; /* Keeps spacing consistent */
    font-size: 14px;
    color: #555;
    word-wrap: break-word; /* Ensures text wraps inside the box */
    white-space: normal; /* Allows text to move to the next line */
}

/* Image */
.sln-img {
    width: 100%; /* Ensures image fits inside */
    height: auto; /* Maintains aspect ratio */
    border-radius: 5px;
    object-fit: cover; /* Keeps images properly scaled */
}

/* "Get a Quote" Button */
.quote-btn {
    background:#14A085;
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 1px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start; /* Aligns button to the left */
    white-space: nowrap; /* Ensures button text doesn’t wrap */
}

.quote-btn:hover {
    background: #0056b3;
}


.dark-mode .sln {
    background: #1E1E1E; /* Dark gray */
    border: 1px solid #2C2C2C;
    color: #D1D1D1; /* Light gray text */
}
.dark-mode .sln h3 {
    color: #FFFFFF; /* White */
}
.dark-mode .sln p {
    color: #D1D1D1; /* Soft gray for readability */
}
.dark-mode .quote-btn {
    background: #14A085;
    ; /* Bright blue */
    color: white;
}
.dark-mode .quote-btn:hover {
    background: #0056B3;
}



.dark-mode .statistics{
  height:300px;
  width:100%;
  background-color:#14A085;
  Color: linear-gradient(135deg, #17A2B8, #007BFF);
}

.light-mode .statistics{
  height:300px;
  width:100%;
  background-color:#20C997;

}

#articles{
    padding: 1rem 2% 1rem;
  }

  .articles{
   
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
    margin-bottom:7px;
    padding-bottom: 40px;
    width:100%;
  }

  .posts{
    width: 70%;
    top: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
    margin-bottom:7px;
    border: 1px solid black;
  }

  .dark-mode .posts{
    border: 1px solid white;
  }

  .phone-navigation{
    display: none;

  }

  .posts2{
    width: 30%;
    padding:5px;
    margin-bottom:7px;
    padding-bottom: 40px;

  }
  .post{
    width: 25%;
    padding: 10px;
    border-left:1px solid black;
  }

  .dark-mode .post{
    border-left:1px solid white;
  }

  .post img{
    width:100%;
    height: 250px;
  }


  table.completed-projects {
    border-collapse: collapse;
    width:100%;
    margin: 40px;
    text-align:left;
    vertical-align:top
  }
  
  table.completed-projects tr th {
    padding: 10px;
    text-align: left;
    border: none;
    border-bottom: 1px solid #ccc;
  }
  
  /* Optional: remove bottom border from last row */
  table.completed-projects tr:last-child th {
    border-bottom: none;
  }
  

  .test-area {
    background-image: url('image/66411571879a9.png'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps the background static */
    width: 100%;
    height: 100vh; /* Adjust height as needed */
}


.test-area {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  text-align: center;
}

.btn {
  background-color: teal; /* Your primary color */
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background-color: #005f5f; /* Darker teal for hover effect */
}












  /* Default Light Mode */
.footer-design {
  background: white;
  color: black;
  width: 100%;
  display: block;
  border-top: 1px solid black;
  padding: 20px;
}

.footer-design a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-design a:hover {
  color: teal;
}

/* Dark Mode */
.dark-mode .footer-design {
  background: black;
  color: white;
  border-top: 1px solid white;
}

.dark-mode .footer-design a {
  color: white;
}

.dark-mode .footer-design a:hover {
  color: teal;
}

/* Footer Layout */
.footer-contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 30px;
  gap: 20px;
}

/* Social Media Icons */
.social-media p a {
  font-size: 30px;
  margin-right: 10px;
}

/* Resource Links */
.rlist a {
  display: block;
  margin: 5px 0;
  font-size: 15px;
}

/* Footer Copyright */
.footer-copyright {
  text-align: center;
  padding: 10px;
  font-size: 14px;
}


  



/* Responsive - Makes each block take full width on small screens */
@media (max-width: 768px) {
    .sln {
        flex: 0 0 100%; /* Full width for smaller screens */
    }
    .about-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-us, .our-solutions {
        max-width: 100%;
    }

    .footer-contents {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .social-media h3,
  .resources h3 {
      text-align: center;
  }

  .social-media p a {
      font-size: 25px;
  }
}




























/*FENCE */
#section-edit{
	min-height: 110vh;
  padding: 5rem 9% 2rem;
  width:100%;
}

#section-edit{
	min-height: 90vh;
  padding: 5rem 9% 2rem;
  width:100%;
}

#section-edit input{
  width: 100%;
  border: 1px solid black;
  padding: 7px;
}

.light-mode .col button{
  border: 1px solid black;
  background-color: #3e8e41;
  color:white;
}

.light-mode .col select{
  border: 1px solid black;
}

.light-mode .subscribe input{
  border: 1px solid black;
}

.light-mode .subscribe button{
  border: 1px solid black;
  background-color: #f44336;
  color: white;
}

.light-mode .col button{
  border: 1px solid black;
}

section .row button:hover{
  background-color: #3e8e41;
  color: white;
}

.row{
  display: flex;
  flex-wrap: wrap;
}

.col{
  width: 50%;
  padding: 7px;
  text-align: center;
}

.col h1{
  text-align: left;
  padding-top: 10px;
}

.col p{
  text-align: left;
  padding-bottom: 10px;
}

.mod-row{
  display: flex;
  flex-wrap: wrap;
}

.dark-mode .pop-property h1{
  color: black;
}


.modal-content{ 
  background-color: #fefefe;
  margin: 5% auto 5% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%;
  color:#000;
}

.mod-row .col-mod{
  width: 60%;
}

.mod-row .col-mod2{
  width: 40%;
  text-align: left;
}

.mod-row .col-mod2 .features{
  padding: 5px;
}

.mod-row .col-mod2 .title{
  padding: 5px;
}

.success-message{
  background-color:green;
  width: 100%;
  padding:20px;
  border-radius:3px;
  color:white;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-around;
}
  


.property-types{
  padding:5px;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-around;
  margin-bottom:7px;
  padding-bottom: 40px;
}

#properties{
  padding: 1rem 3% 1rem;
  text-align: center;
}

.pop-property{
  margin-top: 20px;
}

.pop-property h1{
  text-align: center;
  padding: 6px;
}

.pro-info{
  width: 30%;
  margin: 4px;
  background-color: white;
  border-radius: 0.25rem !important;
  text-align: left;
  color: black;
  padding:6px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.3);
}

.pro-info p{
  text-align: left;
  margin-bottom: 3px;
  font-size: 17px;

}

.properties h1{
  text-align: center;
  padding-top: 10px;
}

.properties .property-display{
  padding:5px;
  display:flex;
  justify-content:space-around;
  align-items:center;
  margin-bottom:7px;
}
.show-property{
  width: 30%;
}

.buy-filter{
  display: flex;
}
  
  #id050{
  color:black;
  font-family:verdana;
  }
   
 
  
  /* Set a style for all buttons */
  button {
    cursor: pointer;
  }
  
  
  button:hover {
    opacity: 0.8;
  }
  
  /* Extra styles for the cancel button */
  .controll-buttons {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;   
    margin-bottom:7px;
    padding-bottom: 4px;
  }

  .image-numbering{
    padding-left: 2%;
    width: 20%;
  }

  .back-button{
    width: 25%;
    padding-left: 10%;
  }

 

  .next-button{
    width: 25%;
    padding-left: 10%;
  }

  .cancelmodal {
    margin: 24px 0 12px 0;
    position: relative;
    text-align: center;
  }
  
  .container {
    padding: 16px;
  }

  
  
  .book-apointment {
    width: 25%;
    padding-top: 16px;
    background-color: green;
    color: white;
    width: auto;
    padding: 10px 18px;
  }

  .controll-buttons .book-apointment:hover {
    background-color: #000;
    color: white;
  }

  .contact{
    padding-left: 30px;

  }
  
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
  }
  
  
  
  /* The Close Button (x) */
  .close {
    position: absolute;
    background-color: #ededed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    right: 25px;
    top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: red;
    cursor: pointer;
  }
  
  /* Add Zoom Animation */
  .animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
  }
  
  @-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)} 
    to {-webkit-transform: scale(1)}
  }
    
  @keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
  }
  
  /* Change styles for span and cancel button on extra small screens */
  @media screen and (max-width: 300px) {
    span.psw {
       display: block;
       float: none;
    }
    .cancelbtn {
       width: 100%;
    }
  }
  
  * {box-sizing: border-box;}
  .mySlides {display: none;}
  img {
  vertical-align: middle;
  height:400px;
  }
  
  .active {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  
 
  
  .dropdown-content a:hover {background-color: #f1f1f1}
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown:hover .dropbtn {
    background-color: #3e8e41;
  }

  .login-form{
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%; 
    margin: 0 auto;
  }

  .login-form input{
    width: 100%;
    border: 1px solid black;
    padding: 7px;

  }

  .login-form button[type="submit"]
{
    border: 1px solid rgb(59, 59, 59);
    background: transparent;
    padding: 1px;
    border-radius: 2px;
    width: 100%;
    outline: none;
    height: 35px;
    color: white;
    background-color: blue;
    font-size: 19px;
    width: 120px;
}

.login-form  button[type="submit"]:hover{
  color: #f5f9fc;
  background: green;
  border: 1px solid rgb(71, 70, 70);
  cursor: pointer;
}






  .friendship {
    display: none;
  
  }

  


  #twitter{
    padding: 1rem 3% 1rem;
    margin-top:-83px;
  }

  .articles-disp{
    padding:5px;
    display:flex;
    justify-content:space-around;
    align-items:center;
    margin-bottom:7px"
  }

  .artticles-disp .article-box{
    width: 30%;
  }

  .subscribe{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .subscribe input[submit]:hover{
    background-color: #3e8e41;
    color: white;
  }

  .footer-body{
    display: flex;
    padding: 10px;
    text-align: left;
  }

  #scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: blue;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 20%;
  }


  .image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s ease-in-out;
}

.image-card img:hover {
    transform: scale(1.1);
}

/* Add styles for the modal if needed */



  /*Start of Dashboard styling Desktop View*/

  .Dashboard{
    display: flex;
   

  }


  .side-navigation{
    padding: 5rem 2% 2rem;
    width: 18%;
    height: 660px;
    background-color: blue;
  }

  .side-navigation .dashboard-items{
    padding: 4%;
    margin: 3px;

  }

  .side-navigation .dashboard-items button{
    background-color:blue;
    color:white;
    width:100%;
    text-align:left;
    padding-left:4px;
  }


  

  .side-navigation .sep{
    width: 90%;
    height: 2px;
    margin-bottom: 10px;
    margin-top: 10px;
    background-color: #f1f1f1;
  }

  .side-content{
    padding: 5rem 2% 2rem;
    width: 100%;
  }

  .profile{
    display: flex;
    flex-wrap: wrap;
   
 
  }

  .information{
    width: 50%;
    padding: 20px;
  }

  .dashboard-properties{
    margin-bottom: 70px;

  }

  .statistics{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
    align-items:center;
  }

  .statistics .stabox{
    padding: 10px;
    margin: 2px;
    width: 30%;
    border-radius: 3px;
  }

  .statistics .stabox span{
    font-size: 20px;
  } 

  .article-post{
    display: flex;
    flex-wrap: wrap;
  }
  .artpostbox{
    width: 50%;
    border-left: 1px solid black;
    padding: 10px;
  }

  .locations{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
    align-items:center;
  }
  .locat{
    width: 50%;
    padding: 2px;
  }

  


  .add-categories{
    padding: 10px;
  }

  .add-categories h2{
    text-align: center;
  }

  .category-content{
    padding: 10px;

  }

  

  .artpostbox button{
    width: 20%;
    margin-top: 10px;
    padding: 10px;
    background-color: green;
    color: white;
  }

  .artpostbox select{
    width: 100%;
    border: 1px solid black;
    padding: 7px;
  }

  .artpostbox input{
    width: 100%;
    border: 1px solid black;
    padding: 7px;
  }

  .artpostbox textarea{
    width: 100%;
    border: 1px solid black;
    padding: 7px;
  }

  .artpostbox h3{
    padding: 2px;
  }

  .property-post{
    display: flex;
    flex-wrap: wrap;
  }

  .readarticle{
    padding: 5rem 5% 1rem;
  }

  /*End of Dashboard styling */

/*
  @media (max-width:1200px) {
    html{
      font-size: 55%;
    }
  }

  @media (max-width:991px) {
    .headernav{
      padding: 2rem 4%;
    }

	body{
		font-size: 16px;
	}

    section{
      padding: 10rem  4% 2rem;
    }
    .home{   
      padding: 0 4%;
    }
  
    .footer{
      padding: 2rem 4%;
    }
  }
*/



.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.modal-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
}

.modal-content {
  position: absolute;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}




 
  /* Media query for responsiveness */
  @media (max-width: 768px) {
   
    .box:first-child {
      display: none;
    }

    section{
      min-height: 30vh;
      padding: 5rem 2% 2rem;
    }

    #section-edit{
      padding: 5rem 1% 2rem;
    }

    .containers button{
      width: 20%;
      margin-top: 10px;
      padding: 10px;
      background-color: green;
      color: white;
    }

      
   .box {
    width: 100%;
   
   }

    body{
      font-size: 16px;
    }
    
    #menu-icon {
      display: block; /* Show the hamburger icon on smaller screens */
    }
    
    .navbar {
      position: absolute;
      top: 95%;
      left: -100%;
      width: 96%;

        margin-left: 2%;
         margin-right: 2%;
      transition: .25s ease;
      transition-delay: .25s;
      border-radius: 1px;
      background: rgb(247, 247, 252);
      box-shadow: #081b29;
    }

    .dark-mode .navbar{
      background: rgb(52, 64, 68);
      box-shadow: #081b29;

    }

   
	

    .navbar.active{
      left: 0;
      transition-delay: 0;
    }
    
    .navbar a {
      display: block;
      padding: 10px;
      border-bottom: 1px solid black;
      width: 90%;
      font-size: 17px;
      font-weight: 600;
      
    }

  .pro-info{
    min-width: 100%;
    border: 1px solid green;
    padding: 10px;
    margin: 10px;

  }

  .col {
    min-width: 100%; /* Make columns take full width */

  } 

  .col-mod2{
    min-width: 100%;

  }

.col-mod{
  min-width: 100%;

  }

  
.modal-content{ 
  background-color: #fefefe;
  margin: 5% auto 5% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 95%;
  color:#000;
}
  
  .property-display{
    min-width: 100%;
  }

  .property-display{
    min-width: 100%;

  }

  .controll-buttons.book-apointment{
    min-width: 100%;
    padding-top: 30px;
  }

  .controll-buttons.book-apointment button{
    min-width: 100%;
  }

  .controll-buttons .image-numbering{
    min-width: 35%;
    padding-left:1%;
  }

  .controll-buttons .back-button{
    min-width: 25%;
    padding-left: 1%;
  }

  .controll-buttons .next-button{
    min-width: 30%;
    padding-left: 1%;
  }


  #articles{
    text-align: center !important;
  }

  .posts{
    min-width: 100%;
  }

  .posts2{
    min-width: 100%;

  }

  .post{
    width: 100%;
  }

  .profiles1{
    min-width:100%;
  }

  .artpostbox{
    min-width: 100%;
  }
  .property-post{
    min-width: 100%;
  }

  .dashboard-properties{
    min-width: 100%;
  }

  .statistics .stabox{
    width: 100%;
  }

  img{
    width: 100%;
  }

  #twitter{
    text-align: center !important;
    margin-top: 0px;
  }


  
  .side-navigation{
    display: none;
  }

  .information{
    width: 100%;
    padding: 0px;
  }

  .friendship {
    display: none;
  
  }
  
  .phone-navigation{
    display: flex;
    width: 100%;
    margin-top:12px;
    margin-bottom: 5px;
  }
  .phone-nav-button{
    width: 24%;
    margin:1%;
    
  }

  .phone-nav-button button{
    width: 100%;
    padding:10px;
    margin-left:3px
    
  }

  table{
    width:100%;
    text-align:left;
    vertical-align:top
  }



 


}




