html {
    scroll-behavior: smooth;
  }
  body {
    font-family: var(--font-poppins) !important;
    /* overflow-x: clip; */
    /* background: #f4f7f9; */
    overflow-x: hidden !important;
  }
  
  /* .container {
    max-width: 1408px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%
  } */
  
  @media(max-width: 1600px) {
    .container {
        max-width:76.875rem !important;
    }
  }
  
  .container.fluid {
    width: 100%;
    max-width: none
  }
  
  .container:after {
    display: block;
    clear: both;
    content: ""
  }
  
  .round {
    position: relative;
    margin-right: 0.875rem;
    margin-top: 0.125rem;
  }
  
  .round label {
    background-color: #fff;
    border: 0.125rem solid #034737;
    border-radius: 50%;
    cursor: pointer;
    height: 1.25rem;
    left: 0;
    position: absolute;
    top: 0;
    width: 1.25rem;
  }
  
  .round label:after {
    border: 0.125rem solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 0.25rem;
    left: 0.3125rem;
    opacity: 0;
    position: absolute;
    top: 0.4375rem;
    transform: rotate(-45deg);
    width: 0.5rem;
  }
  
  .round input[type="checkbox"] {
    visibility: hidden;
  }
  
  .round input[type="checkbox"]:checked + label {
    background-color: #034737;
    border-color: #034737;
  }
  
  .round input[type="checkbox"]:checked + label:after {
    opacity: 1;
  }          
  .mySwipers .swiper {
    width: 100%;
    height: 100%;
  }
  .mySwipers{
    padding: 5.5rem 0 !important;
  }
  .mySwipers .swiper-slide{
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .mySwipers .swiper-button-prev::after{
    /* content: url(../../public/images/testimonials/left.svg); */
    margin-left: 0.625rem;
  }
  .mySwipers .swiper-button-next::after{
    /* content: url(../../public/images/testimonials/right.svg); */
    margin-right: 0.625rem;
  }
  .line{
    position: relative;
  }
  .line::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(/_next/static/media/line.c1d2c13e.png) no-repeat;
    z-index: 0;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-size: cover;
  }
  
  /* width */
  ::-webkit-scrollbar {
    width: 0px;
  }
  
  .workSlide .swiper-wrapper{
    padding: 0 0 0 20% !important;
  }
  .workSlide .swiper-slide-active{
    width: 60% !important;
  }
  @media screen and (max-width: 600px) {
    .workSlide .swiper-wrapper{
      padding: 0 !important;
    }
    .workSlide .swiper-slide-active{
      width: 100% !important;
    }
    
  }
  .sheen {
    position: relative;
    overflow:hidden;
  }
  .sheen:after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(180deg, hsla(21, 63%, 73%, 0), hsla(0, 0%, 100%, .2) 50%, hsla(21, 63%, 73%, 0));
    transform: rotate(60deg) translate(-10em, 10em);
  }
  .sheen:hover:after {
    animation: sheen 1s forwards
  }
  
  @keyframes sheen {
    to {
        transform: rotate(60deg) translate(1em,-9em)
    }
  }
  .straight-line-list li {
    list-style-type: none;
    position: relative;
    padding-left: 1.25rem;
  }
  
  .straight-line-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.625rem;
    height: 0.125rem;
    background-color: black;
  }
  
