@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --bg: #efefef;
  --text-main: #002f4a;
  --text-soft: #38586a;
  --text-light: #8b8b8f;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  font-family: "Raleway", sans-serif;
  color: var(--text-main);
}

.doorpage {
  min-height: 100vh;
  padding: 40px 20px;
}

.canvas-wrap {
  width: 100%;
  max-width: 1180px;
  min-height: 550px;
  margin: 0 auto;
}

.top-section {
  margin-bottom: 20px;
}

.hero-logo {
  max-width: 560px;
  width: 100%;
  display: block;
}

.brands-block {
  max-width: 320px;
}

.brands-label {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--text-soft);
  margin-bottom: 18px;
  line-height: 1.2;
}

.brands-image {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
  display: block;
}

.info-col {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
.info-col a {color: var(--text-soft); text-decoration: none}
.info-col a:hover {color: var(--text-main); text-decoration: underline;}

.info-col strong {
  color: var(--text-main);
  font-weight: 700;
}

.info-col .label-strong {
  font-weight: 700;
  color: var(--text-main);
}

@media (max-width: 1199.98px) {
  .canvas-wrap {
    min-height: auto;
  }

  .top-section {
    margin-bottom: 60px;
  }
}

@media (max-width: 767.98px) {
  .doorpage {
    padding: 30px 18px;
  }

  .top-section {
    margin-bottom: 40px;
  }

  .info-col {
    font-size: 16px;
  }

  .brands-label {
    font-size: 16px;
  }
}