#banner {
  margin-top: 64px;
  height: 0;
  padding-top: 40%;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 500px) {
  #banner {
    padding-top: 121%;
  }
}

#banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*responsive banner*/

#banner .overlay {
  position: absolute; /* Sit on top of the page content */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
}

.banner-message {
  font-size: 30px;
  margin-bottom: 12px;
  font-family: "Prata", serif;
  color: #fff;
}

.banner-title {
  font-size: 60px;
  margin-bottom: 12px;
  color: #fff;
  font-family: "Prata", serif;
}

@media screen and (max-width: 880px) {
  .banner-title {
    font-size: 36px;
  }
  .banner-message {
    font-size: 20px;
  }
}

.overlay .banner-message-container {
  padding: 30px;
  max-width: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 28px;
  font-size: 24px;
  width: 100%;
  text-align: center;
  border-radius: 5px;
}

.brands-section {
  display: flex;
  width: fit-content;
  margin: 0px auto;
  padding: 12px;
}

.brands-container {
  display: flex;
  flex-direction: column;
}

.brands-container .brand-img-container:nth-child(2) {
  padding-left: unset;
}

.brand-img-container {
  width: auto;
  padding: 12px;
}

.soethebys {
  width: 100px;
  height: auto;
}
.kings {
  width: 100px;
  height: auto;
}
.vanguard {
  width: 100px;
  height: auto;
}
.compass {
  width: 100px;
  height: auto;
}
.corcorangl {
  width: 100px;
  height: auto;
}
.kellerwilliams {
  width: 100px;
  height: auto;
}

.section {
  padding: 32px 24px;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.section-title {
  text-align: center;
  font-size: 36px;
}

.section-row {
  display: flex;
}

.pricing .pricing-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.pricing .pricing-card-title {
  font-size: 26px;
  text-align: center;
  padding: 10px;
}

.pricing .pricing-card-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.contact-container {
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 880px) {
  .contact-container {
    width: 300px;
    padding: 10px;
  }
}

@media screen and (max-width: 880px) {
  .pricing .pricing-card-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 880px) {
  .section-row {
    display: flex;
    flex-direction: column;
  }
  .section {
    padding: 10px;
  }
}

.section-detail {
  display: flex;
  justify-content: center;
}

.section-detail > * {
  padding: 12px;
}

.section-container {
  flex: 1;
}

.section-container h1 {
  text-align: center;
}

.ssd-img-container {
  flex: 0 0 100px;
}

.ssd-description {
  flex: 0 0 300px;
  font-size: 16px;
}

.ssd-img-container img {
  width: 100px;
  height: auto;
}

#footer {
  display: flex;
  padding: 12px;
  background-color: #f8f8f8;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12);
  justify-content: center;
}

@media screen and (max-width: 670px) {
  #footer {
    flex-direction: column;
  }
  .f-sec {
    width: fit-content;
    margin: 0px auto;
  }
}

.f-sec {
  padding: 12px;
  font-size: 24px;
}

.icon-svg {
  width: 40px;
  height: 40px;
}

.fs-social > * {
  margin-right: 12px;
}

.banner-btn-container {
  display: flex;
  justify-content: center;
}

.banner-btn-container .MuiButtonBase-root:nth-child(1) {
  margin-right: 6px;
}

.cm-btn-container {
  display: flex;
  justify-content: center;
}

.cm-submit,
.cm-reset {
  padding: 6px !important;
}

.cm-submit {
  flex: 1 !important;
  margin-right: 6px !important;
}

#dashboard-layout {
  display: flex;
  height: 100vh;
}

#left-nav {
  flex: 0 0 240px;
  border-right: 1px solid gray;
}

#dashboard-content {
  flex: 1;
}

.crm {
  padding: 20px;
}

.crm-modal {
  width: 300px;
}

.crm-create-people-form {
  display: flex;
  flex-direction: column;
}

.crm-create-people-form > .MuiFormControl-root {
  margin-bottom: 12px !important;
}

.crm-create-people-btns {
  display: flex;
  justify-content: center;
}

.crm-create-people-btns .MuiButton-root:nth-child(1) {
  margin-right: 6px;
}

@media screen and (max-width: 991px) {
  #banner {
    padding-top: 60%;
  }
}

@media screen and (max-width: 767px) {
  #banner {
    padding-top: 60%;
  }
  .soethebys {
    width: 175px;
  }
  #footer {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .banner-message {
    font-size: 24px;
  }
  .banner-btn-container {
    flex-direction: column;
  }
  .banner-btn-container .MuiButtonBase-root:nth-child(1) {
    margin-right: unset;
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 479px) {
  .navbar-links {
    display: none;
  }
  .mobile-menu-btn {
    display: unset;
  }
  #banner {
    padding-top: 145%;
  }
  .icon-svg {
    width: 64px;
    height: 64px;
  }
  .brands-section {
    flex-direction: column;
  }
  .brand-img-container {
    margin-bottom: 14px;
  }
  .kings {
    width: 250px;
  }
  .vanguard {
    width: 220px;
  }
  .compass {
    position: relative;
    width: 180px;
    height: auto;
    left: 10px;
  }
  .corcorangl {
    width: 175px;
  }
  .kellerwilliams {
    padding-left: 12px;
    width: 150px;
    height: auto;
  }
  .ssd-description {
    flex: 0 0 200px;
    font-size: 16px;
  }
  .f-sec {
    padding: 12px;
    font-size: 24px;
    text-align: center;
  }
  .banner-btn-container {
    flex-direction: column;
  }
  .banner-btn-container .MuiButtonBase-root:nth-child(1) {
    margin-right: unset;
    margin-bottom: 6px;
  }
}
