.ul-reset {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  ul {
    margin: 0;
    padding: 0;
  }
  
  li {
    list-style: none;
  }
  
  ::-webkit-scrollbar {
    width: 4px;
    height: 7px;
  }
  
  .flex {
    display: flex;
  }
  .w-100-per {
    width: 100%;
  }
  
  .gap-10 {
    gap: 10px;
  }
  .direction-column {
    flex-direction: column;
  }
  
  .items-flex-start {
    align-items: flex-start;
  }
  
  .item-centre {
    align-items: center;
  }
  
  .space-between {
    justify-content: space-between;
  }
  
  .justify-end {
    justify-content: end;
  }
  
  .space-between {
    justify-content: space-between;
  }
  
  .justify-center {
    justify-content: center;
  }
  .text-white {
    color: white;
  }
  
  .bg-white {
    background-color: white;
  }
  
  .text-blue-1 {
    color: #01b2d6;
  }
  
  .m-0 {
    margin: 0;
  }
  
  .border-radius-50 {
    border-radius: 50% !important;
  }
  
  .width-100-per {
    width: 100%;
  }
  
  .items-end {
    align-items: end;
  }
  
  .m-b-5 {
    margin-bottom: 5px;
  }
  
  .gap-5 {
    gap: 5px;
  }
  .gap-40 {
    gap: 40px;
  }
  
  .flex-grow-1 {
    flex-grow: 1;
  }
  .font-size-12 {
    font-size: 12px;
  }
  
  .over-flow-h {
    overflow: hidden;
  }
  
  .over-flew-auto {
    overflow: auto;
  }
  
  .flex-c-c {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .flex-fs-c {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .flex-sb-c {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .flex-sa-c {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  
  .flex-start {
    flex: flex-start;
  }
  
  .f-c-c {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .f-c-fs {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  
  .m-0-important {
    margin: 0 !important;
  }
  .text-decoration-u {
    text-decoration: underline;
  }
  
  .underline {
    text-decoration: underline;
  }
  
  .relative {
    position: relative;
  }
  .text-centre {
    text-align: center;
  }
  .gap-25 {
    gap: 25px;
  }
  .gap-30 {
    gap: 30px;
  }
  .italic {
    font-style: italic;
  }
  .weight-400 {
    font-weight: 400;
  }
  .weight-300 {
    font-weight: 300;
  }
  .gap-50 {
    gap: 50px;
  }
  .gap-60 {
    gap: 60px;
  }
  
  .weight-500 {
    font-weight: 500;
  }
  .font-size-40 {
    font-size: 40px;
  }
  .font-size-18 {
    font-size: 18px;
  }
  .font-size-20 {
    font-size: 20px;
  }
  .font-size-16 {
    font-size: 16px;
  }
  .font-size-14 {
    font-size: 14px;
  }
  .primary-color {
    color: #222222;
  }
  .secondary-color {
    color: #27293b;
  }
  .primary-text {
    color: #606060;
    font-size: 15px;
    line-height: 20px;
    margin: 0;
    text-align: center;
  }
  
  .ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .w-400 {
    width: 400px;
  }
  .flex-shrink-0 {
    flex-shrink: 0;
  }
  .font-size-33 {
    font-size: 33px;
  }
  header {
    position: relative;
    transition: all 0.5s ease-in-out;
    z-index: 1000;
  }
  nav {
    margin-right: 70px;
  }
  nav ul li {
    color: #3c3c3c;
    cursor: pointer;
    position: relative;
  }
  nav ul li.active {
    color: #222222;
    font-weight: 700;
  }
  nav ul li.active::before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: #222222;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  nav ul li:hover::before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: #03193f;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .scrolled {
    position: fixed;
    top: -44px;
    left: 0;
    width: 100%;
    background-color: #ffffffe3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
  }
  .main-title{
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
  }