
@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", sans-serif;
  background: #ffffff;
  margin: 0;

}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  margin-bottom: 20px;
}
p, span, ul li, ol li,input{
  font-weight: 400;
}
p{
  font-size: 20px;
      line-height: 1.4;
}
.contain-width{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 10px;
}

.img-full {
  width: 100% !important;
  height: auto;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
h2{
  margin-top: 0;
}
.btn,a.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;
  text-decoration: none;
}

.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;
  text-decoration: none;
}

/* 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;
  }
  h2{
    font-size: 28px !important;
  }
  h3{
    font-size: 20px !important;
  }
  p{
    font-size: 16px !important;
  }
}
::-webkit-scrollbar {
    width: 8px;
    height: 0
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #2563eb, #7c3aed);;
    border-radius: 4px
}

::-webkit-scrollbar-track {
    background: #fff
}