#home a {
  color: var(--red-one);
}

#news a {
  color: black;
}

/* === Banner Section === */
.banner-section {
  width: 100%;
  height: 110vh;
  max-height: 720px;
  display: flex;
  justify-content: center;
  align-items: end;
  overflow: hidden;
  filter: drop-shadow(0px 14px 10px rgba(0, 0, 0, 0.65));
}

.banner-section video {
  position: absolute;
  width: 100vw;
  height: 110vh;
  max-height: 720px;
  z-index: 0;
  object-fit: cover;
  filter: brightness(0.75);
}

.banner-content {
  max-width: 1300px;
  position: relative;
  z-index: 1;
  margin-bottom: calc(var(--super-size) * 1.5);
  padding: var(--large-size);
  text-align: center;
  color: var(--white-one);
}

.banner-content h1 {
  font-family: "Perfect Dark";
  font-size: calc(var(--super-size) * 2);
  letter-spacing: var(--small-size);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.6);
}

.banner-content h3 {
  font-family: "Bruce Forever";
  font-size: var(--normal-size);
  margin-bottom: var(--smallest-size);
  text-shadow: 3px 4px 5px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
}

.banner-content button {
  margin-top: var(--super-size);
  padding: var(--normal-size) var(--largest-size);
  background-color: var(--white-one);
  color: var(--purple-one);
  font-family: "Bruce Forever";
  font-size: calc(var(--large-size) * 0.8);
  cursor: pointer;
  transition: background-color 0.3s ease;
  clip-path: var(--shape-button);
}

.banner-content button:hover {
  background-color: var(--purple-one);
  color: var(--white-one);
}

/* === News Section === */
.news-section {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--purple-one);
}

.news-content-container {
  max-width: 1300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin-block: var(--largest-size);
}

.news-header {
  width: 60%;
  display: flex;
  justify-content: center;
  color: var(--white-one);
  margin-block: var(--large-size);
}

.news-header h1 {
  font-family: "Perfect Dark";
  font-size: calc(var(--largest-size) * 1.5);
  filter: drop-shadow(5px 7px 2px rgba(0, 0, 0, 0.65));
  letter-spacing: var(--smallest-size);
  text-transform: uppercase;
  text-align: center;
}

.news-body {
  width: 100%;
}

.btn-see-news {
  margin-block: var(--largest-size);
}

/* === Description Section === */
.logo-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}

.logo-image {
  width: 600px;
  height: 600px;
  opacity: 0.2;
  object-fit: contain;
}

.description-section {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 800px;
  padding-inline: var(--super-size);
  display: flex;
  justify-content: center;
  letter-spacing: 2px;
  filter: drop-shadow(0px -14px 10px rgba(0, 0, 0, 0.65))
    drop-shadow(0px 14px 10px rgba(0, 0, 0, 0.65));
}

.description-content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: calc(var(--super-size) * 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: top;
  gap: var(--large-size);
  background-color: var(--white-one);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 85% 100%, 15% 100%, 0 80%);
}

.description-content h2 {
  margin-bottom: var(--super-size);
  font-family: "Perfect Dark";
  font-size: calc(var(--super-size) * 1.3);
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.2);
  letter-spacing: 3px;
}

.description-content h3 {
  font-family: "Bruce Forever";
  font-size: var(--large-size);
  filter: drop-shadow(3px 3px 2px var(--grey-one));
}

.description-content p {
  max-width: 1300px;
  width: 70%;
  margin-top: var(--large-size);
  font-family: "Inter Bold";
  font-size: calc(var(--normal-size) * 1.5);
  text-align: center;
  filter: drop-shadow(1px 1px 1px var(--grey-one));
}

.agent-quotes {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  padding-bottom: var(--normal-size);
}

.agent-quotes p {
  text-align: center;
  font-family: "Inter ExtraBold";
  font-size: calc(var(--normal-size) * 1.1);
  letter-spacing: 1px;
  filter: drop-shadow(1px 1px 1px var(--grey-one));
}

/* === Agent Section === */
.agent-section {
  width: 100%;
  padding-inline: var(--largest-size);
  background-color: var(--purple-one);
  overflow-x: hidden;
  display: flex;
  justify-content: center;
}

.agent-content {
  max-width: 1300px;
  height: 100%;
  padding: var(--largest-size);
  background: var(--purple-gradient);
  border-radius: var(--largest-size);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--super-size);
}

.agent-header {
  width: 60%;
  text-align: center;
  color: var(--white-one);
  margin-block: var(--large-size);
}

.agent-header h1 {
  font-family: "Perfect Dark";
  font-size: calc(var(--largest-size) * 1.5);
  filter: drop-shadow(5px 7px 2px rgba(0, 0, 0, 0.65));
  letter-spacing: var(--smallest-size);
  text-transform: uppercase;
}

.agent-body {
  display: flex;
  align-items: center;
  gap: var(--large-size);
}

.agent-description {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--largest-size);
  align-items: center;
  text-align: center;
  padding-inline: var(--super-size);
}

.agent-description-title {
  display: flex;
  flex-direction: column;
}

.agent-description-title h3 {
  color: var(--white-one);
  font-family: "Bruce Forever";
  font-size: var(--large-size);
  padding-inline: var(--normal-size);
  filter: drop-shadow(5px 7px 5px rgba(0, 0, 0, 0.65));
}

.agent-description p {
  color: var(--white-one);
  font-size: calc(var(--normal-size) * 1.3);
  padding-inline: var(--large-size);
  filter: drop-shadow(5px 7px 5px rgba(0, 0, 0, 0.65));
}

.btn-see-agents {
  background-color: var(--white-one);
  color: #000;
  clip-path: var(--shape-button);
  padding: var(--normal-size) var(--largest-size);
  cursor: pointer;
  font-family: "Bruce Forever";
  font-size: var(--normal-size);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.btn-see-agents::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: var(--line-size);
  background-color: var(--red-one);
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.btn-see-agents:hover {
  color: var(--red-one);
  transform: scale(1.04);
}

.btn-see-agents:hover::after {
  width: 100%;
}

.agent-highlight {
  position: relative;
  width: 50%;
  height: 600px;
}

.agent-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.agent-images img {
  position: absolute;
  width: 100%;
}

.agent-images img:nth-child(1) {
  transform: scaleX(-1);
  width: 120%;
  top: -15%;
  left: -33%;
}

.agent-images img:nth-child(2) {
  top: -4%;
  right: -25%;
  transform: scale(1.1);
}

.highlight-header {
  position: absolute;
  z-index: 100;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.highlight-header h3 {
  color: var(--white-one);
  font-family: "Bruce Forever";
  font-size: var(--normal-size);
  filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.65));
  margin-bottom: var(--normal-size);
}

.btn-best-agent {
  background-color: var(--white-one);
  color: #000;
  clip-path: var(--shape-button);
  padding: var(--small-size) var(--largest-size);
  cursor: pointer;
  font-family: "Bruce Forever";
  font-size: var(--normal-size);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.btn-best-agent::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: var(--line-size);
  background-color: var(--red-one);
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.btn-best-agent:hover {
  color: var(--red-one);
  transform: scale(1.04);
}

.btn-best-agent:hover::after {
  width: 100%;
}

/* === Map Section === */
.map-section {
  position: relative;
  width: 100%;
  height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0px -14px 10px rgba(0, 0, 0, 0.65));
}

.map-content {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  padding: var(--largest-size);
  padding-top: 0;
  background-color: var(--white-one);
  clip-path: polygon(15% 0, 85% 0, 100% 20%, 100% 100%, 0 100%, 0 20%);
}

.map-quotes {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: var(--normal-size);
  padding-inline: calc(var(--super-size) * 2);
}

.map-quotes p {
  text-align: center;
  font-family: "Inter ExtraBold";
  font-size: calc(var(--normal-size) * 1.1);
  filter: drop-shadow(1px 1px 1px var(--grey-one));
}

.map-header {
  max-width: 750px;
  width: 55%;
  text-align: center;
  color: black;
  margin-top: calc(var(--super-size) * 1.5);
  margin-bottom: var(--normal-size);
  padding-inline: var(--large-size);
}

.map-header h1 {
  font-family: "Perfect Dark";
  font-size: calc(var(--largest-size) * 1.5);
  filter: drop-shadow(5px 6px 3px var(--grey-one));
  letter-spacing: var(--smallest-size);
  text-transform: uppercase;
}

.map-body {
  max-width: 1300px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--normal-size);
}

.map-images {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.map-description {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--largest-size);
  align-items: center;
  text-align: center;
  padding-inline: var(--super-size);
}

.map-description-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-description-title h3 {
  color: black;
  font-family: "Bruce Forever";
  font-size: var(--large-size);
  padding-inline: var(--normal-size);
  filter: drop-shadow(5px 6px 3px var(--grey-one));
}

.map-description p {
  color: black;
  font-size: calc(var(--normal-size) * 1.3);
  padding-inline: var(--large-size);
  filter: drop-shadow(3px 4px 3px var(--grey-one));
}

.btn-see-maps {
  background-color: var(--purple-one);
  color: var(--white-one);
  clip-path: var(--shape-button);
  padding: var(--normal-size) var(--super-size);
  cursor: pointer;
  font-family: "Bruce Forever";
  font-size: var(--normal-size);
  position: relative;
  overflow: hidden;

  transition: all 0.3s ease-in-out;
}

.btn-see-maps::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: var(--line-size);
  background-color: var(--red-one);
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.btn-see-maps:hover {
  color: var(--red-one);
  transform: scale(1.04);
}

.btn-see-maps:hover::after {
  width: 100%;
}

.map-images-container {
  width: 90%;
  height: 250px;
  position: relative;
}

.map-image {
  width: 100%;
  height: 100%;
}

.map-image img {
  width: 100%;
  background-color: rgba(10, 10, 10, 50%);
  padding: 10px;
  border-radius: 25px;
}

.map-image:nth-child(1) {
  position: absolute;
  width: 50%;
  top: 70%;
  right: -10%;
}

.map-image:nth-child(3) {
  position: absolute;
  width: 50%;
  height: 100%;
  left: -8%;
  top: -15%;
}

.footer-section {
  margin-top: 0;
}

@media (max-width: 1024px) {
  /* === Banner Section 1024px ===*/
  .banner-content {
    margin-bottom: calc(var(--super-size) * 1);
  }

  .banner-content h1 {
    text-align: center;
    font-size: calc(var(--super-size) * 1.5);
  }

  .banner-content h3 {
    font-size: calc(var(--normal-size) * 0.8);
  }

  .banner-content button {
    padding: calc(var(--normal-size) * 0.9) calc(var(--largest-size) * 0.9);
    font-size: calc(var(--large-size) * 0.7);
  }

  /* === Description Section 1024px ===*/
  .description-section {
    height: 600px;
  }

  .logo-image {
    width: 500px;
    height: 500px;
  }

  .description-content {
    height: 600px;
  }

  .description-content h2 {
    margin-inline: var(--large-size);
    margin-bottom: var(--large-size);
    font-size: calc(var(--super-size) * 1);
    letter-spacing: 2px;
  }

  .description-content h3 {
    margin-inline: var(--normal-size);
    font-size: var(--large-size);
    text-align: center;
  }

  .description-content p {
    width: 60%;
    margin-top: var(--large-size);
    font-size: calc(var(--normal-size) * 1);
    text-align: center;
  }

  .agent-quotes p {
    font-size: calc(var(--normal-size) * 1);
  }

  /* === Agent Section 1024px ===*/
  .agent-content {
    gap: var(--largest-size);
  }

  .agent-header {
    width: 80%;
    margin-block: var(--large-size);
  }

  .agent-header h1 {
    font-size: calc(var(--largest-size));
  }

  .agent-description {
    padding-inline: var(--large-size);
  }

  .agent-description-title h3 {
    font-size: var(--normal-size);
    padding-inline: var(--normal-size);
  }

  .agent-description p {
    font-size: calc(var(--normal-size) * 1);
    padding-inline: var(--large-size);
  }

  .btn-see-agents {
    padding: var(--normal-size) var(--large-size);
    font-size: var(--normal-size);
  }

  .agent-highlight {
    height: 450px;
  }
  /* === Map Section 1024px ===*/
  .map-section {
    height: 750px;
  }

  .map-content {
    gap: var(--large-size);
  }

  .map-header {
    margin-top: calc(var(--super-size) * 1.1);
    width: 80%;
    margin-block: var(--large-size);
  }

  .map-header h1 {
    font-size: calc(var(--largest-size));
  }

  .map-body {
    height: 60%;
  }

  .map-quotes p {
    font-size: calc(var(--normal-size) * 1);
  }

  .map-description {
    padding-inline: var(--large-size);
  }

  .map-description-title h3 {
    font-size: var(--normal-size);
    padding-inline: var(--normal-size);
  }

  .map-description p {
    font-size: calc(var(--normal-size) * 1);
    padding-inline: var(--large-size);
  }

  .map-see-agents {
    font-size: var(--normal-size);
  }
  .map-image:nth-child(1) {
    top: 50%;
  }
}

@media (max-width: 768px) {
  /* === Banner Section 768px === */
  .banner-content {
    margin-bottom: calc(var(--super-size) * 1.5);
    padding-inline: var(--normal-size);
  }

  .banner-content h1 {
    font-size: calc(var(--super-size) * 1);
    letter-spacing: var(--smallest-size);
  }

  .banner-content h3 {
    font-size: calc(var(--normal-size) * 0.6);
  }

  .banner-content button {
    padding: calc(var(--normal-size) * 0.9) calc(var(--largest-size) * 0.9);
    font-size: calc(var(--large-size) * 0.6);
    margin-top: var(--large-size);
  }

  /* === Description Section 768px === */
  .description-section {
    height: 650px;
  }

  .logo-image {
    width: 400px;
    height: 400px;
  }

  .description-content {
    height: 650px;
    padding-top: calc(var(--super-size) * 1);
    gap: var(--normal-size);
  }

  .description-content h2 {
    margin-bottom: var(--large-size);
    font-size: calc(var(--super-size) * 0.8);
    letter-spacing: 1px;
    text-align: center;
  }

  .description-content h3 {
    font-size: var(--normal-size);
  }

  .description-content p {
    font-size: calc(var(--normal-size) * 1);
    text-align: center;
  }

  .agent-quotes p {
    font-size: calc(var(--normal-size) * 0.7);
  }

  /* === Agent Section 768px === */
  .agent-section {
    margin-bottom: var(--large-size);
  }

  .agent-content {
    gap: var(--largest-size);
  }

  .agent-header {
    width: 90%;
    margin-block: var(--normal-size);
  }

  .agent-header h1 {
    font-size: calc(var(--large-size) * 1);
  }

  .agent-body {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: var(--large-size);
  }

  .agent-description {
    padding-inline: calc(var(--large-size) * 0.7);
    width: 100%;
    gap: var(--large-size);
  }

  .agent-description-title h3 {
    font-size: calc(var(--large-size) * 0.7);
    padding-inline: var(--small-size);
  }

  .agent-description p {
    font-size: calc(var(--normal-size) * 0.8);
  }

  .btn-see-agents {
    font-size: calc(var(--normal-size) * 0.8);
    padding-inline: var(--large-size);
  }

  .agent-highlight {
    height: 300px;
    width: 80%;
    display: flex;
    justify-content: center;
  }

  .highlight-header {
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .highlight-header h3 {
    margin-bottom: var(--normal-size);
  }

  .agent-images {
    width: 300px;
  }

  .btn-best-agent {
    background-color: #ffffff;
    color: #000;
    clip-path: var(--shape-button);
    padding: var(--small-size) var(--large-size);
    cursor: pointer;
    font-size: var(--normal-size);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }

  /* === Map Section 768px === */
  .map-section {
    height: 780px;
  }

  .map-content {
    height: 780px;
  }

  .map-header {
    width: 90%;
    margin-block: var(--normal-size);
    margin-bottom: var(--largest-size);
  }

  .map-header h1 {
    font-size: calc(var(--large-size) * 1);
  }

  .map-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: var(--largest-size);
  }

  .map-quotes {
    padding-inline: var(--super-size);
  }
  .map-quotes p {
    font-size: calc(var(--normal-size) * 0.7);
  }

  .map-description {
    padding-inline: calc(var(--large-size) * 0.7);
    width: 90%;
    gap: var(--large-size);
    padding-top: var(--large-size);
  }

  .map-description-title h3 {
    font-size: calc(var(--large-size) * 0.7);
    padding-inline: var(--small-size);
  }

  .map-description p {
    font-size: calc(var(--normal-size) * 0.8);
  }

  .btn-see-maps {
    font-size: calc(var(--normal-size) * 0.8);
    padding-inline: var(--large-size);
  }

  .map-images {
    width: 350px;
    height: 200px;
  }
}

@media (max-width: 430px) {
  /* === Banner Section 430px === */
  .banner-content {
    margin-bottom: calc(var(--super-size) * 1.2);
    padding-inline: var(--normal-size);
  }

  .banner-content h1 {
    font-size: calc(var(--super-size) * 0.7);
  }

  .banner-content h3 {
    font-size: calc(var(--normal-size) * 0.4);
  }

  .banner-content button {
    padding: calc(var(--normal-size) * 0.7) calc(var(--largest-size) * 0.7);
    font-size: calc(var(--large-size) * 0.7);
    margin-top: var(--large-size);
  }

  /* === Description Section 430px === */
  .description-section {
    height: 650px;
  }

  .logo-image {
    width: 300px;
    height: 300px;
  }

  .description-content {
    height: 650px;
    padding-top: calc(var(--super-size) * 1);
    gap: var(--normal-size);
  }

  .description-content h2 {
    margin-bottom: var(--large-size);
    font-size: calc(var(--super-size) * 0.5);
    letter-spacing: 1px;
    text-align: center;
  }

  .description-content h3 {
    font-size: calc(var(--normal-size) * 0.8);
  }

  .description-content p {
    font-size: calc(var(--normal-size) * 0.8);
    text-align: center;
    letter-spacing: 0;
    line-height: 1.5;
  }

  .agent-quotes p {
    font-size: calc(var(--normal-size) * 0.7);
  }
  /* === Agent Section 430px === */
  .agent-header {
    width: 95%;
  }

  .agent-header h1 {
    font-size: calc(var(--large-size) * 0.7);
  }

  .agent-body {
    gap: 0;
  }

  .agent-description-title h3 {
    font-size: calc(var(--large-size) * 0.5);
  }

  .highlight-header h3 {
    font-size: calc(var(--normal-size) * 0.8);
  }

  /* === Map Section 430px === */
  .map-section {
    height: 780px;
  }

  .map-content {
    height: 780px;
  }

  .map-header {
    width: 100%;
  }

  .map-header h1 {
    font-size: calc(var(--large-size) * 0.7);
  }

  .map-body {
    height: 70%;
    gap: 0;
    margin-top: -20px;
  }

  .map-description {
    padding-inline: calc(var(--small-size));
    width: 100%;
    margin-bottom: var(--large-size);
  }

  .map-description-title h3 {
    font-size: calc(var(--large-size) * 0.5);
  }

  .map-images {
    width: 260px;
  }
}
