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

:root {
  --bg: #000000;
  --text-main: #ffffff;
}

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 {
  width: 200px;
  max-width: 100%;
  display: block;
  opacity: 0;
  transform: scale(0.7);
  animation: showLogo 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: .8s;
}
.border-yellow {
  width: 100%;
  height: 1px;
  background-color: #db9908;
  transform: scaleX(0);
  transform-origin: left center;
  animation: showLine 0.7s ease forwards;
  animation-delay: 1s;
}
.info-col {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  text-align: center;
  color: var(--text-main);
  opacity: 0;
  transform: scale(0.7);
  animation: showLogo 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 1.3s;
}
.info-col a {color: var(--text-main); text-decoration: none}
.info-col a:hover {color: var(--text-main); text-decoration: underline;}

.info-col p {
  font-weight: 700;
  font-size: 25px;
}

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

@keyframes showLogo {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes showLine {
  to {
    transform: scaleX(1);
  }
}


@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;
  }
}