:root {
    --color-text: #33c9c4;
    --color-text-hover: #33c9c4;
    --color-text-background: #33c9c4;
    --color-background-color: rgb(242, 252, 239);
    --button-color: #000;
    --button-bg-color: #e5e5e5;
    --button-hover-color: #ffffff;
    --button-hover-bg-color: #33c9c4;
}

.wil-mb-20 {
    margin-bottom: 20px;
}

.wil-container a {
    display: block;
    text-decoration: none;
}

.wil-heading {
    text-align: center;
}

.wil-container h2 {
    margin: 0;
}

.wil-collection-style1 {
    padding: 10px;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--color-background-color);
    cursor: pointer;
}

.wil-collection-style1 .wil-image {
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
    padding-top: 100%;
}

.wil-collection-style1 .wil-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wil-collection-style1 .wil-h2 {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s;
}

.wil-collection-style1:hover .wil-h2 {
    color: var(--color-text-hover);
}

.wil-collection-style2 {
    position: relative;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.wil-collection-style2 .wil-image {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
    padding-top: 70%;
}

.wil-collection-style2 .wil-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    z-index: 1;
    transition: 0.3s;
}

.wil-collection-style2:hover .wil-image::before {
    opacity: 0.2;
}

.wil-collection-style2 .wil-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.wil-collection-style2:hover .wil-image img {
    transform: scale(1.1);
}

.wil-collection-style2 .wil-h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 17px;
    text-transform: uppercase;
    color: var(--color-text);
    z-index: 2;
    overflow: hidden;
}

.wil-collection-style2 .wil-h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-text-hover);
    transform: translateX(-100%);
    transition: 0.3s;
}

.wil-collection-style2:hover .wil-h2::before {
    transform: translateX(0);
}

.wil-collection-style3 {
    text-align: center;
    cursor: pointer;
}

.wil-collection-style3 .wil-image {
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
    padding-top: 140%;
    overflow: hidden;
    width: 100%;
    border-radius: 300px;
    max-width: 300px;
    margin: auto;
}

.wil-collection-style3 .wil-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.wil-collection-style3:hover .wil-image img {
    transform: scale(1.1);
}

.wil-collection-style3 .wil-h2 {
    padding: 15px;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s;
    color: var(--color-text);
}

.wil-collection-style3:hover .wil-h2 {
    color: var(--color-text-hover);
}

.wil-collection-style4 {
    position: relative;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.wil-collection-style4 .wil-image {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
    padding-top: 70%;
}

.wil-collection-style4 .wil-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.wil-collection-style4:hover .wil-image img {
    transform: scale(1.1);
}

.wil-collection-style4 .wil-h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-text);
    z-index: 2;
}

.wil-collection-style4 .wil-h2::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: var(--color-text-background);
    border-radius: 50px;
    z-index: -1;
    opacity: 0.4;
}

.wil-collection-style4 .wil-h2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-text-background);
    border-radius: 50px;
    z-index: -1;
}

.wil-container .wil-btn-view-more {
    margin-top: 30px;
    padding: 12px 20px;
    display: inline-flex;
    column-gap: 10px;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: 0.3s;
    color: var(--button-color);
    background-color: var(--button-bg-color);
}

.wil-btn-view-more:hover {
    color: var(--button-hover-color);
    background-color: var(--button-hover-bg-color);
}
