.hero-image {
  position: relative;
  background: rgb(48, 48, 54);
  overflow: hidden;
  height: 500px;
}

.arrow {
  border: solid rgb(223, 71, 89);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
}

.hidden-text {
  display: none;
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.hero-image:before {
  content: " ";
  display: block;
  padding: none;
  z-index: 1;
  opacity: 0.6;
  background-image: url("./resources/businessman-reading-contract-closeup-scaled.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-text {
  text-align: left;
  position: absolute;
  top: 30%;
  left: 35%;
  transform: translate(-35%, -35%);
  color: white;
  font-family: "Raleway", sans-serif;
  z-index: 2;
}

.basic-circle {
  width: 240px;
  height: 240px;
}

.inside-circle {
  left: -70px;
  top: -150px;
  position: relative;
  z-index: -3;
  width: 230px;
  height: 230px;
  overflow: hidden;
}

.inside-circle::after {
  content: "";
  left: 2rem;
  bottom: -4rem;
  width: 13.75rem;
  height: 13.75rem;
  opacity: 0.15;
  background-color: white;
  transition: all 0.2s;
  position: absolute;
  border-radius: 50%;
}

.inside-circle::before {
  content: "";
  left: -1.75rem;
  bottom: -4rem;
  width: 13.75rem;
  height: 13.75rem;
  opacity: 0.1;
  background-color: white;
  transition: all 0.2s;
  z-index: 1;
  position: absolute;
  border-radius: 50%;
}

.inside-text {
  top: 15%;
  left: -5%;
  position: relative;
}

.h1-huge {
  font-size: 6.5rem;
  line-height: 1;
}

.accordion-button:not(.collapsed) {
  color: white;
  background-color: rgb(223, 71, 89);
}

.accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FEB7EE'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.card-row {
  min-height: 150px;
}

.email-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #dc3545;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.email-float:hover {
  background-color: #fff;
  color: #dc3545;
}

.email-float i, .whatsapp-button i {
  font-size: 28px;
}

.whatsapp-button {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: white;
  color: #25d366;
}

@media screen and (max-width: 425px) {
  .about-image {
    max-width: 70%;
  }
  .hero-image {
    height: 200px;
  }
  .hero-text {
    top: 30%;
    left: 40%;
  }
}

@media screen and (max-width: 768px) and (min-width: 426px) {
  .about-image {
    max-width: 250px;
  }
  .hero-image {
    height: 270px;
  }
  .hero-text {
    top: 30%;
    left: 30%;
  }
}

@media screen and (min-width: 1025px){
  .header_max_width {
    width: 100%;
  }
  .max_width {
    max-width: 1250px !important; 
  }
}

@media screen and (min-width: 768px) and (max-width: 1025px){
  .max_width {
    max-width: 1080px !important; 
  }
}

.text-justify {
  text-align: justify;
}


