pick-up.scss 667 Bytes
@import "../../vars";
@import "../../mixins";

.pick-up {
  margin-top: 121px;

    &-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;

      &:nth-child(3n) {
          margin-right: 0; 
        }
    }
}

      .pick-up-block {
        margin-top: 20px;

        &__four {
          position: relative;
        }

          &__button {
            position: absolute;
            @include btn-orange;
            text-align: center;  
            padding: 16px 40px;
            bottom: 25px;
            left: 26px;

            &:hover {
              @include btn-orange-hover;
            }
          }
       
      }