.brand-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-section .brand__btn {
  display: inline-flex;
  align-items: center;
  background: #E62327;
  color: #FFFFFF;
  padding: 12px 36px;
  border-radius: 50px;
  font-weight: 500;
  margin-top: 50px;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 50px;
}
.brand-section .brand__btn::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 7px;
  height: 18px;
  background-image: url("../images/common/arr_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.brand-section .brand__btn:hover {
  background: #CC1F22;
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .brand-section {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .brand-section {
    height: 250px;
  }
}
.brand-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.brand-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-section__logo {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.brand-section__logo img {
  width: 400px;
  height: auto;
}
@media (max-width: 768px) {
  .brand-section__logo img {
    width: 200px;
  }
}
@media (max-width: 480px) {
  .brand-section__logo img {
    width: 100px;
  }
}
.brand-section .brand__btn {
  font-size: 12px;
  padding: 8px 25px;
  padding-right: 40px;
}
.brand-section .brand__btn::after {
  right: 15px;
  width: 5px;
  height: 14px;
}