/*==================================================
fixed banner
===================================*/
.contact_banner {
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.contact_banner__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media screen and (max-width: 767px) {
  .contact_banner__items {
    gap: 0.5rem;
  }
}

.contact_banner__item {
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .contact_banner__item {
    font-size: 1.2rem;
  }

  .contact_banner__text {
    line-height: 1.6rem;
  }
}

.contact_banner__item:nth-of-type(1) {
  border-radius: 0 1rem 0 0;
}

.contact_banner__item:nth-of-type(2) {
  border-radius: 1rem 1rem 0 0;
}

.contact_banner__item:nth-of-type(3) {
  background-color: rgba(55, 186, 60, 0.85);
  border-radius: 1rem 0 0 0;
}

.contact_banner__item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
}

@media screen and (max-width: 767px) {
  .contact_banner__item > a {
    padding: 1rem;
    gap: 0.8rem;
  }
}

.contact_banner__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.7rem;
}

@media screen and (max-width: 767px) {
  .contact_banner__icon {
    width: 1.4rem;
  }
}

.contact_banner__icon img {
  height: 100%;
  object-fit: cover;
}

.contact_banner__item:nth-of-type(1) .contact_banner__icon {
  width: 1.5rem;
  height: 1.5rem;
}

.top_btn {
  z-index: 20;
  position: fixed;
  width: 2.94rem;
  right: 2.7rem;
  bottom: 12rem;
  gap: 1.5rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*==================================================
  fixed banner END
  ===================================*/
