.support_bg {
  background: url("../images/support_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.support_bg h1 {
  color: var(--white);
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 500;
  text-align: center;
}

.support_bg .custom-input {
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.75rem 3rem;
  font-size: 1rem;
  line-height: 1.5rem;
  width: 100%;
  border-radius: 0.5rem;
  color: #0f172a;
  outline: none;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-input:focus {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* focus:drop-shadow-2xl */
}

.searchBox {
  max-width: 83.33%;
  width: 100%;
  position: relative;
}

.popularQue_Box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
}

.popularQue_Box span {
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--white);
}

.popularQue_Box ul {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0;
  gap: 1rem;
}
.popularQue_Box ul li a {
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  color: var(--white);
}

.popularQue_Box ul li a:hover {
  background-color: var(--pure-orange);
}

.searchBox i {
  font-weight: 600;
  position: absolute;
  top: 13px;
  left: 15px;
  color: var(--gray-color);
}

.custom-input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #bfc2c7 !important;
}
.custom-input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #bfc2c7 !important;
  opacity: 1;
}
.custom-input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #bfc2c7 !important;
  opacity: 1;
}
.custom-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #bfc2c7 !important;
}
.custom-input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #bfc2c7 !important;
}

.custom-input::placeholder {
  /* Most modern browsers support this now. */
  color: #bfc2c7 !important;
}

.support_BoxSection1,
.support_BoxSection2 {
  margin: 3rem 0;
}

.support_Box {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  background-color: transparent;
  border-radius: 0.75rem;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.support_Box:hover {
  transform: scale(1.05);
}

.support_BoxImg {
  background: url("../images/support_sprite.png");
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
}

.support_BoxImg.faq {
  background-position: -100px 0;
}

.support_BoxImg.suggestion {
  background-position: -200px 0;
}

.support_BoxContent {
  text-align: center;
}

.support_BoxContent h6 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.support_BoxContent p {
  color: var(--pure-orange);
  margin-bottom: 0.5rem;
}

.support_BoxSection2 h5 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.support_Team {
  padding: 3rem 5rem 3rem 3rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.5rem;
  background-color: var(--pure-orange);
}

.support_Team:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.support_Team h6 {
  padding-bottom: 2rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--white);
}

.support_Team p {
  color: var(--white);
  padding-bottom: 2rem;
}

.support_Team a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
}

.support_Team:hover a {
  color: var(--custom-dark-blue);
}
.support_Team a i {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  transition: all 0.15s ease-in-out;
}

.support_Team:hover i {
  transform: translateX(8px);
}

.createButton_wrapper {
  padding: 3rem 0;
}

.createButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.createButton h4 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
}

.createButton a {
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  background-color: var(--pure-orange);
  gap: 0.5rem;
  color: var(--white);
}

.createButton a:hover {
  background-color: var(--custom-dark-blue);
}
