
@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFProDisplay/SF-Pro-Display-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFProDisplay/SF-Pro-Display-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFProDisplay/SF-Pro-Display-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
  margin:  0;
}

h1, h2, h3, h4, h5, h6, span, ul li, ol li,input {

  font-weight: 500;
  font-style: medium;
  font-size: 18px;
}
.contain-width{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}
.img-full {
  width: 100% !important;
  height: auto;
}

.btn {
  margin-top: 10px;
  background: linear-gradient(90.49deg, #0088FF 2.97%, #603CFF 99.75%);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  border: none;
  /* padding: 10px 16px; */
  border-radius: 5px; 
  cursor: pointer;
  width: 126px;
  height: 41px;
}

.pb {
  padding-bottom: 40px;
}
.pt {
  padding-top: 40px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #616161 0%, #232323 100%);
  color: #ffffff;
  padding: 10px 26px;
  border: none;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s ease;
}

/* Arrow */
.arrow-icon {
  transition: transform 0.2s ease;
}

/* Hover animation */
.view-all-btn:hover .arrow-icon {
  transform: translateX(4px);
}

@media (max-width: 576px) {
  .view-all-btn {
    margin: auto;
  }
}