html, body {
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background: #f4f4f4;
  margin: 0;
  font-family: 'Golos Text', Arial, sans-serif;
  font-size: clamp(1em, 2vw, 1.2em);
}

.brit-center {
  max-width: 768px;
  margin: 0 auto;
  background: url(/img/bg.webp) no-repeat center center;
  background-size: cover;
  padding: 2em 1em 2em 1em;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1em;
  height: 100vh;
  align-items: center;
  justify-content: flex-start;
}

.brit-center__logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
  padding-bottom: 20px;
}

.brit-center__logo {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brit-center__logo-img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 0.5em;
}

.brit-center__title-block {
  text-align: center;
}

.brit-center__title {
  color: #fff;
  font-size: clamp(1.2em, 4vw, 2.2em);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brit-center__subtitle {
  color: #fff;
  font-size: clamp(0.8em, 2vw, 1.1em);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 0.15em;
}

.brit-center__offers,
.brit-center__links {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

.brit-center__offer {
  background: #ffe03b;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1em 1.25em;
  font-size: 1.1em;
  font-weight: 500;
  color: #0A5126;
  gap: 1em;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}

.brit-center__offer-icon {
  font-size: 1.3em;
  font-weight: 700;
  margin-right: 0.5em;
}

.brit-center__offer-text {
  flex: 1 1 auto;
  font-size: 1em;
  font-weight: 500;
}

.brit-center__offer-price {
  font-size: 1.15em;
  font-weight: 700;
  color: #0A5126;
  margin-left: 0.7em;
  white-space: nowrap;
}

.brit-center__link {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  padding: 0.9em 1.1em;
  text-decoration: none;
  color: #205c2c;
  font-size: 1.1em;
  font-weight: 600;
  box-shadow: 0 0.13em 0.5em 0 rgba(34, 60, 80, 0.07);
  transition: box-shadow 0.2s, transform 0.2s, background-color .4s;
  gap: 1em;
  position: relative;
  justify-content: center;
  width: 100%;
  min-height: 57px;
  box-sizing: border-box;
}

.brit-center__link:hover {
  box-shadow: 0 0.25em 1em 0 rgba(34, 60, 80, 0.13);
  transform: translateY(-0.01em) scale(1.01);
  background-color: #ffe03b;
}

.brit-center__link-icon {
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 10px;
  flex-shrink: 0;
}

.brit-center__link-text {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  font-size: 1em;
  font-weight: 600;
  color: #0A5126;
}



.brit-center__link-text--phone {
  color: #205c2c;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: underline;
  letter-spacing: 0.02em;
}

