.plug {
    height: 100svh;
    position: relative;
}

.plug__bg {
    width: 100%;
    height: 100%;
}

.plug__bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.plug__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

.plug__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: #FFFDEA;
    text-transform: uppercase;
}

.plug__title {
    width: max-content;
    max-width: 800px;
    font-family: 'Bounded';
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin: 0 auto;
}

.plug__text {
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
}

.plug__link {
    width: 350px;
    height: 45px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFDEA;
    text-decoration: none;
    border: 1px solid #FFFDEA;
    margin-top: 10px;
}

.plug__link:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFDEA;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.4s ease;
}

.plug__link span {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.plug__link:hover:after {
    transform: scaleX(1);
}

.plug__link:hover span {
    color: rgba(40,29,24,0.9);
}

@media (max-width: 768px) {
    .plug__content {
        width: max-content;
        gap: 15px;
    }

    .plug__title {
        max-width: 300px;
        font-size: 20px;
    }

    .plug__text {
        font-size: 16px;
        font-weight: 400;
        line-height: normal;
    }

    .plug__link {
        width: 210px;
        height: 40px;
        margin-top: 0px;
    }
}