.top {
  margin-bottom: -60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 350px;
  /* Adjust as needed */
  background: url('assets/img/color_ball.png') no-repeat center center;
  background-size: contain;
  overflow: hidden;
}

.top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);

  z-index: 1;
}

.top span {
  position: relative;
  color: #ffffffda;
  font-size: 30px;
  /* Adjust as needed */
  font-weight: 700;
  line-height: 30pt;
  z-index: 2;
  text-align: center;
}

section {
  padding: 60px 0;
}

/* classic css*/
.custom-button {
  background: linear-gradient(45deg, #ff6b6b, #ffd700);
  border: 1px solid #c7c7c7;
  border-radius: 60px;
  padding: 0;
  overflow: hidden;

  display: inline-block;
  text-decoration: none;
  transition: all 1.5s;
}

.custom-button span {
  display: block;
  background: linear-gradient(180deg, #474747, #474747);
  ;
  color: rgb(235, 235, 235);
  padding: 5px 30px 5px 80px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.custom-button:hover span {
  display: block;
  background: linear-gradient(180deg, #000000, #474747);
  color: rgb(255, 255, 255);
  padding: 5px 30px 5px 80px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  transition: background all 1.5s;
}

.custom-button::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #ff6b6b, #ffd700);
  z-index: 0;
  border-radius: 30px;
}

.custom-button span::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -50px;
  right: 70%;
  bottom: -92%;
  background: linear-gradient(-250deg, #991541, #8f115c, #f9ff00);
  z-index: -1;
  border: 2px solid #a7009a;
  border-radius: 60px;
  transition: all 0.4s;
}

.custom-button:hover span::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -50px;
  right: 60%;
  bottom: -92%;
  background: linear-gradient(-250deg, #991541, #8f115c, #f9ff00);
  z-index: -1;
  border: 2px solid #a7009a;
  border-radius: 60px;
}

.contact_map {
  border-radius: 20px;
  /* height: 100%; */
}

.contact_form {
  border: 0.5px solid;
  padding: 6px 20px 20px 20px;
  border-radius: 20px;
  background-color: #31312f;
}

.form-control {
  background-color: #1e1e1e;
  border: 2px solid #474747;
  border-radius: 8px;
  height: 50px;
  color: #f1f1f1;
}

.content_div {
  padding-top: 6px;
}

.message {
  border-radius: 22px;
  height: 110px;
}

.form_button {
  background: linear-gradient(45deg, #494949, #141414);
  padding: 5px 30px 5px 30px;
  border-radius: 6px;
  color: #a9a9a9;
  border: 0.2px solid #c7c7c762 !important;
  position: relative;
  overflow: hidden;
  height: 44px;
  width: 100%;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
}

.form_button ::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -27px;
  width: 96px;
  height: 80px;
  /* background: radial-gradient(circle at left, #ffe800, #ff00b6); */
  background: radial-gradient(circle at 10px 30px, #f6ff72, #c7007b, #bd0097);
  transition: all 0.5s ease;
  opacity: 0.7;
  border-radius: 60px;
  border: 1px solid #d500ab;
}
.form_button:hover ::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -30;
  width: 150px;
  height: 80px;
  /* background: radial-gradient(circle at left, #ffe800, #ff00b6); */
  background: radial-gradient(circle at 10px 30px, #f6ff72, #c7007b, #bd0097);
  opacity: 0.7;
  border-radius: 60px;
  border: 1px solid #d500ab;
}

.contact_heading {
  font-weight: 600;
}

::placeholder {
  color: #c7c7c762 !important;
}

:-ms-input-placeholder {
  color: #c7c7c762 !important;
}

::-ms-input-placeholder {
  color: #c7c7c762 !important;
}

.form_input {
  font-weight: 600;
  font-size: 13px;
}

.form-control:focus {
  color: #ececce;
  background-color: #1e1e1e;
  border-color: #ffffff;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(255 255 255 / 25%);
}

@media (max-width: 768px) {
  .contact_map {
    height: 295px;
    margin-bottom: 60px;
  }
}

.social-media-bar{
  display: flex;
}