* {
  margin: 0;

  a {
    text-decoration: none;
    color: inherit;
  }
}

body {
  font-family: "Pretendard", sans-serif;
  margin: 0;
  padding: 0;
  color: #000;
  background-color: #fff;
  line-height: 1.2;
}

.top-container {
  max-width: 925px;
  margin: 0 auto;
}

.top-container .logo {
  margin-bottom: -24px;
}

.top-container nav {
  margin: 0 auto;
}

.top-container nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 950px) {
  .top-container .logo {
    margin-left: 20px;
  }
}

@media (max-width: 550px) {
  .top-container nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: end;
    margin-right: 20px;
  }
}

@media (max-width: 480px) {
  .top-container .logo {
    text-align: center;
    margin-left: 0px;
  }
  .top-container nav {
    margin-top: 40px;
  }
  .top-container nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-right: 0px;
    padding: 0px;
  }
}

.container {
  width: 90%;
  max-width: 925px;
  margin: 0 auto;
}

.navbar {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.navbar .container {
  display: flex;
}

.navbar .logo img {
  height: 23px;
  width: 107px;
}

.navbar nav ul {
  list-style: none;
}

.navbar nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.navbar nav ul li a:hover {
  opacity: 0.7;
}

/* TOP SECTION */

.hero {
  text-align: center;
  padding: 86px 0 86px;
  background: #fafafa;

  background-image: url("../images/bg-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  h1 {
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    margin: 0;
  }

  .heroImage {
    width: 100%;
    height: 675px;
    background-image: url("../images/top_section.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px !important;
  }
  .hero .heroImage {
    height: 250px;
  }
  .hero .subtitle {
    font-size: 12px !important;
  }
}

@media (max-width: 944px) {
  .hero h1 .break {
    display: block;
    margin-top: 8px;
  }
}

.hero .blue {
  color: #4b72fe;
  font-weight: 700;
}

.hero .subtitle {
  margin-top: 16px;
  font-size: 14px;
  color: #868e96;
}

.buttons {
  margin-top: 40px;
  display: flex;
  align-items: center;
  margin: auto;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin: 40px 0 30px 0;
}

@media (max-width: 768px) {
  .buttons {
    gap: 10px;
  }
}

.btn {
  min-width: 100px;

  display: inline-block;
  padding: 10px 28px;
  border-radius: 24px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  opacity: 0.8;
}

@media (max-width: 425px) {
  .btn {
    min-width: 70px;
    padding: 8px 18px;
    gap: 15px;
    font-size: 12px;
  }
}

.btn-primary {
  background: #2d2d2d;
  color: #fff;
}

.btn-outline {
  border: 1px solid #ccc;
  color: #333;
  background: #fff;
}

.btn-outline:hover {
  border-color: #999;
  color: #000;
}

section {
  text-align: center;
}

.hero img,
.features img,
.printers img,
.cta img {
  max-width: 100%;
  height: auto;
}

/* BRANDING */

.branding {
  background-color: #fafafb;
  padding: 150px 30px 98px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.2s ease;
}

.branding img {
  width: 370px;
  height: 58px;
}

@media (max-width: 768px) {
  .branding {
    padding: 60px 30px 40px 30px;
  }
}

@media (max-width: 910px) {
  .branding img {
    width: 300px;
    height: 48px;
  }
}

.branding button {
  display: flex;
  align-self: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 314px;
  border-radius: 56px;
  width: 316px;

  color: #fff;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
}

.branding button img {
  width: 126px;
  height: 26px;
}

.branding h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-size: 45px;
  font-weight: 500;
}

.branding .subtitle {
  padding: 30px 0 66px 0;
  color: #595959;
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .branding h2 {
    gap: 20px;
    font-size: 30px;
  }

  .branding img {
    width: 200px;
    height: 30px;
  }

  .branding .subtitle {
    font-size: 18px;
  }

  .branding button {
    width: 250px;
    max-width: 250px;
    font-size: 20px;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .branding h2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 30px;
  }

  .branding img {
    width: 220px;
    height: 30px;
  }

  .branding .subtitle {
    font-size: 16px;
  }

  .branding button {
    width: 230px;
    max-width: 250px;
    font-size: 20px;
    gap: 6px;
  }
}

/* FEATURES */

.features {
  background: #fff;
  padding: 176px 0;
  text-align: center;
}

.features .container {
  max-width: 925px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #848da1;
  margin-bottom: 32px;
  line-height: 1.5;
}

.feature-box {
  display: flex;
  align-items: center;
  min-height: 285px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  padding: 10px;
  gap: 60px;
  margin-bottom: 18px;
  text-align: left;
  flex-shrink: 0;
  overflow-x: auto;
}

@media (max-width: 768px) {
  .features {
    padding: 100px 0;
  }

  .feature-box {
    gap: 20px;
  }
}

.feature-image {
  width: 440px;
  min-width: 440px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image .bg-gray {
  background-color: #f8f8fa;
  border: 1px solid #ebeff7 !important;
  border-radius: 8px !important;
}

.feature-text {
  width: 394px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 48px;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 14px;
  color: #889098;
  text-align: center;
  font-weight: 400;
  line-height: 150%;
}

.feature-text ul {
  margin-top: 15px;
  padding-left: 20px;
  list-style-type: disc;
  color: #333;
}

/* PRINTERS */

.printers {
  background-color: #fff;
  text-align: center;
}

.printers .container {
  max-width: 925px;
  margin: 0 auto;
}

.printers .btn {
  min-width: 40px;
}

.printers-title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
}

.printers-subtitle {
  color: #868e96;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  padding: 22px 0;
}

.printer-wrapper {
  max-width: 925px;
  margin-top: 50px;
  margin-bottom: 128px;
}

@media (max-width: 425px) {
  .printer-wrapper {
    margin-bottom: 60px;
  }
}

.printer-grid {
  max-width: 925px;
  padding: 50px 0;
  display: grid;
  gap: 6px;
  justify-content: center;
  margin: 0;
}

.printer-grid {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 480px) {
  .printer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .printer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .printer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.printer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.printer-item img {
  width: 180px !important;
  height: 205px !important;
  object-fit: contain;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.printer-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;

  span {
    color: #525a63;
  }
}

/* CTA */

.cta {
  text-align: center;
  position: relative;
  background: #fafafb;
}

.cta-slider-btn {
  display: inline-flex;
  background-color: #f5f5f5;
  border-radius: 16px;
  padding: 6px;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 14px;
  gap: 12px;
}

.cta-slider-btn img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.cta-slider-label {
  margin: auto;
  background-color: white;
  border-radius: 16px;
  padding: 6px 14px;
}

.cta-slider-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: black;
  text-decoration: none;
}

.cta-slider-link:hover .cta-arrow {
  transform: translateX(4px);
  transition: transform 0.2s ease;
}

.cta-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.cta-wrapper {
  max-width: 925px;
  margin: 0 auto;
  padding: 100px 0;
}

.cta-title {
  font-size: 28px;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .cta-wrapper {
    padding: 100px 20px;
  }
  .cta-title {
    font-size: 32px;
  }

  .cta-title .break {
    display: block;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 20px;
  }
}

.cta-subtitle {
  color: #868e96;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.cta-btn {
  background-color: #000;
  background: linear-gradient(0deg, #23272b 8.6%, #424549 127.98%);
  box-shadow: 0px 2px 2px 0px rgba(255, 253, 253, 0.25) inset;

  color: #fff;
  padding: 7px 10px 7px 10px;

  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: left;

  display: flex;
  flex-direction: row;
  gap: 6px;
  width: 174px;
  height: 54px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  opacity: 0.9;
}

.cta-btn h5 {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.cta-btn div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-btn img {
  width: 38px;
  height: 38px;
}

.cta-btn p {
  color: #cbcbcb;
  font-size: 13px;
  font-weight: 400;
}

.cta-features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  padding: 32px;
  background: #fff;
  box-shadow: 0px 3.437px 25.775px 0px #f5f6f9;
}

.feature {
  flex: 1 1 30%;
  width: 240px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.feature-icon {
  width: 35px;
  height: 35px;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

.feature-desc {
  color: #889098;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

/* FOOTER */

.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 0 56px 0;
  font-family: sans-serif;
}

.footer .logo {
  max-width: 925px;
  margin: 0 auto;
  margin-bottom: -10px;
  padding: 0 20px;
}

.footer-container {
  max-width: 925px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-left {
  max-width: 600px;
}

.footer-logo {
  height: 24px;
  margin-bottom: 16px;
}

.footer-text {
  font-size: 11px;
  font-weight: 400;
  color: #a2a9b1;
  line-height: 1.5;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

@media (min-width: 768px) {
  .footer-right {
    align-items: flex-end;
  }
}

.footer-copy {
  color: #a2a9b1;
  font-size: 11px;
  font-weight: 400;
}

.footer-icons {
  display: flex;
  gap: 12px;
}

.footer-icons img {
  width: 20px;
  height: 20px;
  display: block;
}
