:root {
  --primary-color: #c0854d;
  --white: #ffffff;
  --black: #1a1a1a;
  --font-main: 'Montserrat', sans-serif;
}
.banner-hero {
  padding: 80px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.banner-hero__card {
  position: relative;
  width: 100%;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
  padding: 60px;
  color: var(--white);
}

.banner-hero__content-col {
  z-index: 2;
}

.banner-hero__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--white);
}

.banner-hero__title--dash {
  display: inline-block;
  margin-right: 10px;
}

.banner-hero__description {
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 45px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.banner-hero__btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 12px 12px 12px 30px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.banner-hero__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  color: var(--primary-color);
}

.banner-hero__btn:active {
  transform: scale(0.97);
}

.banner-hero__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 12px;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.banner-hero__btn:hover .banner-hero__btn-icon {
  transform: rotate(-45deg);
}

.banner-hero__visual-col {
  position: relative;
  height: 400px;
}

.banner-hero__images-cluster {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-hero__circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #EEA45B;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background-color: #eee;
}

.banner-hero__circle-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-hero__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.banner-hero__circle:hover img {
  transform: scale(1.15);
}

.banner-hero__circle--main {
  width: 200px;
  height: 200px;
  top: 0;
  right: 25%;
  z-index: 3;
  border: 10px solid #EEA45B;
}

.banner-hero__circle--second {
  width: 200px;
  height: 200px;
  top: 25%;
  right: -25%;
  z-index: 2;
  border: 10px solid #D79B60;
}

.banner-hero__circle--third {
  width: 200px;
  height: 200px;
  bottom: -10%;
  right: 10%;
  z-index: 1;
  border: 10px solid #D08844;
}

@media (max-width: 991px) {
  .banner-hero__card {
    border-radius: 30px;
    padding: 40px;
    min-height: auto;
  }
  .banner-hero__title {
    font-size: 36px;
  }
  .banner-hero__visual-col {
    height: 450px;
    margin-top: 40px;
  }
  .banner-hero__circle--main {
    right: 30%;
  }
  .banner-hero__circle--second {
    right: 5%;
  }
  .banner-hero__circle--third {
    right: 25%;
    bottom: 0;
  }
}