:root {
  --header-offset: 96px;
  --content-padding: 24px;
  --content-max-width: 1200px;
  --nav-offset: 200px;
  --min-site-width: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  min-width: var(--min-site-width);
  overflow-x: auto;
}

@media (min-width: 1200px) {
  body {
    overflow-x: hidden;
  }
}

.navbar,
.bs-sidebar {
  display: none;
}

.container {
  padding-top: 0;
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}

.col-md-9 {
  float: none;
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-width: var(--min-site-width);
  margin: 0;
  left: auto;
  transform: none;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  height: 70px;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0px 24px;
  height: 100%;
}

.site-header__logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: inherit;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  transform: translateY(-20px);
}

.site-header__logo img {
  height: 70px;
  width: auto;
  max-width: none;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-header__nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 21px;
  transform: translateX(var(--nav-offset)) translateY(-24px);
}

.site-header__nav a {
  color: #2f2e2e;
  text-decoration: none;
  font-weight: 600;
}

.site-header__nav a:hover,
.site-header__nav a:focus {
  color: #0b5fff;
}

.site-header__spacer {
  justify-self: end;
}

main {
  padding: var(--content-padding);
  padding-top: 0;
  padding-bottom: 50vh;
}

h2,
h3 {
  scroll-margin-top: var(--header-offset);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.full-width-media {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  min-width: var(--min-site-width);
  max-width: none;
  height: auto;
  margin: 0;
  margin-top: calc(-5 * var(--content-padding));
  margin-left: 0;
  margin-right: 0;
}

.col-md-9 img.full-width-media {
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 24px;
  margin: 24px 0 32px;
}

.offer-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.offer-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1FB6B3;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.offer-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.offer-card p {
  margin: 0;
  color: #4a4a4a;
}

.contact-band {
  width: 100%;
  min-width: var(--min-site-width);
  margin: 0;
  margin-left: 0;
  margin-right: 0;
  background: #1f1f1f;
  color: #f5f5f5;
  border-top: 1px solid #1f1f1f;
  border-bottom: 6px solid #00707c;
}

.contact-band__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.3fr;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 6px;
  align-items: stretch;
}
  
  .contact-band__info {
    padding: 10px 8px;
    background: #1f1f1f;
  }
  
  .contact-band__info h2 {
    margin-top: 0;
    margin-bottom: 0px;
    color: #00707c;
    font-size: 32px;
  }
  
  .contact-band__block {
    margin-bottom: 20px;
  }
  
  .contact-band__label {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #cfcfcf;
    margin-bottom: 6px;
  }
  
  .contact-band__value {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .contact-band__map {
    min-height: 60px;
  height: 100%;
  align-self: stretch;
  }
  
  .contact-band__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.1) brightness(0.85);
  }

.site-footer {
  position: relative;
  margin-top: 0;
  width: 100%;
  min-width: var(--min-site-width);
  margin-left: 0;
  margin-right: 0;
  left: auto;
  transform: none;
  border-top: 1px solid #1f1f1f;
  background: #303030;
  color: #f0f0f0;
}

@media (min-width: 1200px) {
  .site-header,
  .site-footer,
  .contact-band {
    width: 100vw;
    min-width: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .full-width-media {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.site-footer__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 24px;
}

.site-footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.site-footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 600;
}

.site-footer__links a:hover,
.site-footer__links a:focus {
  color: #7ab4ff;
}

.site-footer__copy {
  color: #c8c8c8;
}

.footer,
.md-footer,
.md-footer-nav,
.md-footer-meta {
  display: none !important;
}

footer.col-md-12 {
  display: none !important;
}
