/* General styles */
.image-containerrrr {
  padding: 10px;
}

.image-containerrrr img {
  width: 100%;
  height: auto;
  display: block;
}

/* Desktop view (default) */
@media (min-width: 768px) {
  .image-containerrrr {
    display: inline-block;
  }
}

/* Mobile view */
@media (max-width: 767px) {
  .image-containerrrr {
    display: block;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .contact-detaila {
    font-size: x-large;
  }
}

.custom-logo {
  position: absolute;
  top: 15px;
  left: 135px;
}

/* General styles */
.color-page2 h4 {
  text-align: center;
  margin-top: 20px;
}
.color-page2 h4:hover {
  color: blue;
}
.color-page2 p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.color-page2 .space-single {
  margin-bottom: 20px;
}

.color-page2 img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.devider-left {
  display: block;
  margin: 0 auto;
  width: 50px;
  height: 2px;
  background-color: #000;
}

.bg-dots a {
  color: blue;
}
.before-home {
  height: 380px;
  width: 100%;
  position: relative;
  background-color: grey;
  display: none;
}

@media (max-width: 767px) {
  .before-home {
    display: block;
    padding: 20px;
    box-sizing: border-box;
    color: white;
  }

  .flex-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
  }

  .flex-nav ul {
    list-style: none;
    padding: 0;
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .flex-nav ul li {
    margin: 5px 10px;
  }

  .flex-nav ul li a {
    text-decoration: none;
    color: #fff;
  }

  .nav-item {
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }

  .apply-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #889700;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }

  .apply-button:hover {
    background-color: #0056b3;
  }
}

.agent-button {
  background-color: #e7fa3a; /* Change to your preferred color */
  color: black;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
}

.agent-button:hover {
  background-color: black; /* Darker shade for hover effect */
  color: white;
}

.dialog {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  padding: 20px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.dialog-overlay {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.dialog-header {
  font-size: 20px;
  margin-bottom: 20px;
}

.dialog-form input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
}

.dialog-form button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.dialog-form button:hover {
  background-color: #0056b3;
}
