.contact_us {
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact_us .contact_wrapper {
}

.contact_us .contact_wrapper .contact_desc {
  position: relative;
  padding-bottom: 25px;
  font-size: 18px;
}

.contact_us .contact_wrapper .contact_desc::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: radial-gradient(
    closest-side at 50% 50%,
    #f6d007 0%,
    rgba(246, 128, 23, 0.05) 100%,
    rgba(246, 124, 24, 0) 100%
  );
}

.contact_us .contact_wrapper .contact_info_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.contact_us .contact_wrapper .contact_info_row .contact_item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact_us .contact_wrapper .contact_info_row .contact_item .icon_box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: transparent linear-gradient(134deg, #f6d007 0%, #f98419 100%) 0%
    0% no-repeat padding-box;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  aspect-ratio: 1/1;
}

.contact_us
  .contact_wrapper
  .contact_info_row
  .contact_item
  .contact_text
  .contact_title {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact_us
  .contact_wrapper
  .contact_info_row
  .contact_item
  .contact_text
  .desc {
  color: #d2d2d2;
  margin: 0;
  white-space: pre-line;
  font-size: 15px;
}

.contact_us .contact_wrapper .social_section {
  position: relative;
  padding-top: 25px;
  /* padding-bottom: 25px; */
}

.contact_us .contact_wrapper .social_section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: radial-gradient(
    ellipse at center,
    #f6d007 0%,
    rgba(246, 128, 23, 0.08) 70%,
    rgba(246, 124, 24, 0) 100%
  );
}

.contact_us .contact_wrapper .social_section .social-media-title {
  margin-bottom: 20px;
  font-size: 24px;
  color: #fff;
}

.contact_us .contact_wrapper .social_section .social_icons {
  display: flex;
  gap: 15px;
}

.contact_us .contact_wrapper .social_section .social_icons .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #8a8a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 22px;
}

.contact_us .contact_wrapper .social_section .social_icons .icon:hover {
  background: #f6b300;
}

.contact_us .contact_wrapper .contact_right {
  position: relative;
  overflow: hidden;
  padding: 22px 18px;
  border-radius: 8px;
  background:
    linear-gradient(
      132deg,
      rgb(246 208 7 / 40%) 0%,
      rgba(230, 130, 25, 0.18) 100%,
      rgb(249 132 25 / 100%) 50%,
      rgba(0, 0, 0, 0) 100%
    ),
    rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px) !important;
  border: 1px solid rgba(246, 208, 7, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.25);
}

.contact_us .contact_wrapper .contact_right .send-head {
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 24px;
}

.contact_us .contact_wrapper .contact_right .send-subtitle {
  position: relative;
  color: #fff;
  margin-bottom: 20px;
  font-size: 14px;
  padding-bottom: 16px;
  line-height: 1.2;
}

.contact_us .contact_wrapper .contact_right .send-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    #f89116 0%,
    rgba(248, 145, 22, 0.6) 30%,
    rgba(248, 145, 22, 0.2) 60%,
    transparent 100%
  );
}

.contact_us .contact_wrapper .contact_right .form-label {
  color: #fff;
  font-size: 16px;
}

.contact_us .contact_wrapper .contact_right .form-control {
  background: #1e1900;
  border: none;
  color: #fff;
  height: 40px;
  border-radius: 8px;
}

.contact_us .contact_wrapper .contact_right textarea.form-control {
  height: 100px;
  resize: none;
}

.contact_us .contact_wrapper .contact_right .form-control:focus {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  box-shadow: none;
}
.contact_us .map_wrapper {
  margin-top: 45px;
  width: 100%;
  height: 400px;
}

@media (min-width: 0px) and (max-width: 574px) {
  .contact_us .contact_wrapper .contact_right {
    padding: 12px 10px;
  }
  .contact_us .map_wrapper {
    height: 200px;
  }

  .contact_us .contact_wrapper .contact_info_row .contact_item {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
  }

  .contact_us
    .contact_wrapper
    .contact_info_row
    .contact_item
    .contact_text
    .contact_title {
    font-size: 15px;
    margin: 2px 0;
  }

  .contact_us .contact_wrapper .contact_right .send-head {
    font-size: 21px;
  }

  .contact_us .contact_wrapper .contact_desc {
    font-size: 14px;
    padding-bottom: 10px;
  }

  .contact_us .contact_wrapper .contact_right .form-control {
    height: 35px;
  }

  .contact_us .contact_wrapper .contact_right textarea.form-control {
    height: 100px;
  }

  .contact_us .contact_wrapper .contact_info_row .contact_item .icon_box {
    width: 30px;
    height: 30px;
    font-size: 15px;
    aspect-ratio: 1/1;
  }
  .contact_us
    .contact_wrapper
    .contact_info_row
    .contact_item
    .contact_text
    .desc {
    font-size: 13px;
    max-width: 200px;
  }

  .contact_us .contact_wrapper .social_section .social-media-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .contact_us .contact_wrapper .social_section .social_icons .icon {
    width: 32px;
    height: 32px;
    font-size: 22px;
  }

  .contact_us .contact_wrapper .contact_right .form-label {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .contact_us .contact_wrapper .contact_right .send-subtitle {
    margin-bottom: 5px;
    padding-bottom: 10px;
  }
  .contact_us .contact_wrapper .contact_right .send-head {
    font-size: 19px;
  }
  .contact_us .contact_wrapper .social_section {
    padding-top: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact_us .contact_wrapper .social_section .social_icons {
    gap: 10px;
  }
  .contact_us .contact_wrapper .social_section .social_icons .icon {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }
  .contact_us .contact_wrapper .contact_info_row {
    gap: 13px;
    margin-bottom: 20px;
  }
}

@media (min-width: 575px) and (max-width: 991px) {
  .contact_us .contact_wrapper .contact_info_row .contact_item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
  }
  .contact_us .map_wrapper {
    height: 300px;
  }

  .contact_us
    .contact_wrapper
    .contact_info_row
    .contact_item
    .contact_text
    .contact_title {
    font-size: 17px;
  }

  .contact_us .contact_wrapper .contact_right .send-head {
    font-size: 22px;
  }

  .contact_us .contact_wrapper .contact_desc {
    font-size: 17px;
  }

  .contact_us .contact_wrapper .contact_right .form-control {
    height: 40px;
  }

  .contact_us .contact_wrapper .contact_right textarea.form-control {
    height: 100px;
  }

  .contact_us .contact_wrapper .contact_info_row .contact_item .icon_box {
    width: 38px;
    height: 38px;
    font-size: 22px;
    aspect-ratio: 1/1;
  }

  .contact_us
    .contact_wrapper
    .contact_info_row
    .contact_item
    .contact_text
    .desc {
    font-size: 14px;
    max-width: 200px;
  }

  .contact_us .contact_wrapper .social_section .social-media-title {
    font-size: 19px;
    margin: 0;
  }

  .contact_us .contact_wrapper .social_section .social_icons .icon {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .contact_us .contact_wrapper .contact_right .form-label {
    font-size: 15px;
  }

  .contact_us .contact_wrapper .social_section {
    padding-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .contact_us .contact_wrapper .social_section .social_icons {
    gap: 10px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .contact_us .contact_wrapper .contact_info_row .contact_item .icon_box {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
  .contact_us .map_wrapper {
    height: 305px;
  }

  .contact_us
    .contact_wrapper
    .contact_info_row
    .contact_item
    .contact_text
    .desc {
    font-size: 14px;
  }

  .contact_us
    .contact_wrapper
    .contact_info_row
    .contact_item
    .contact_text
    .contact_title {
    font-size: 17px;
  }

  .contact_us .contact_wrapper .social_section .social-media-title {
    font-size: 20px;
  }

  .contact_us .contact_wrapper .social_section .social_icons .icon {
    width: 35px;
    height: 35px;
    font-size: 22px;
  }
  .contact_us .contact_wrapper .contact_desc {
    padding-bottom: 16px;
    font-size: 16px;
  }
  .contact_us .contact_wrapper .contact_info_row {
    margin-bottom: 20px;
  }
}
