.plug {
    width: 100%;
    height: calc(100svh - 115px);
    min-height: 650px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.plug__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.plug__main-content {
    width: max-content;
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    padding-top: 100px;
    padding-left: 50px;
    box-sizing: border-box;
    z-index: 1;
}

.plug__heading {
    font-family: "Bounded";
    font-size: 70px;
    font-weight: 400;
    text-transform: uppercase;
}

.plug__hr {
    width: 100%;
    display: block;
    margin: 20px 0 30px;
}

.plug__info {
    display: block;
    font-family: "Manrope";
    font-size: 16px;
    margin-bottom: 30px;
}

.plug__link {
    width: 185px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Manrope";
    color: #FFFFFF;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}

.plug__link:hover {
    color: #292929;
}

.plug__decor-content {
    width: max-content;
    max-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
    text-align: center;
    padding-left: 50px;
    padding-bottom: 100px;
    box-sizing: border-box;
    z-index: 1;
}

.plug__decor-content svg {
    width: 100%;
}

.plug__decor-content span {
    font-family: "Bounded";
    font-size: 26px;
    text-transform: uppercase;
    background: linear-gradient(to right, #FFDC94 12%, #B78F5A 20%, #FFDC94 27%, #FFDE93 39%, #F7F0DE 51%, #FFE392 56%, #FFDA94 79%, #C39C66 83%, #FFDD93 87%, #CEA86D 96%, #FFDD94 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; 
}

@media (max-width: 1600px) {
    .plug__heading {
        font-size: 60px;
    }

    .plug__decor-content span {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .plug__heading {
        font-size: 50px;
    }

    .plug__decor-content {
        width: 50%;
        height: max-content;
        padding: 0 40px;
    }

    .plug__decor-content span {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .plug {
        height: calc(100svh - 95px);
        min-height: 600px;
    }

    .plug__main-content {
        align-items: center;
        padding: 50px 15px 0;
    }

    .plug__heading {
        font-size: 25px;
        text-align: center;
    }

    .plug__hr {
        margin: 20px 0 16px;
    }

    .plug__info {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .plug__link {
        width: 160px;
        height: 40px;
        font-size: 13px;
    }

    .plug__decor-content {
        width: 100%;
        gap: 10px;
    }

    .plug__decor-content span {
        font-size: 13px;
    }
}