.about-section{
    position: relative;
    padding-top: 30px;
    padding-bottom: 80px;
}
.about__content{
    background: #efefef;
    padding: 40px 30px;
}
.about__heading{
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 20px;
    color: #212121;
    font-weight: 500;
}
.about__heading span{
    color: #d0a650
}
.about__text{
    font-size: 18px;
    line-height: 24px;
    color: #212121;
    font-weight: 300;
    margin-bottom: 30px;
}
.about__button-wrapper {
    display: inline-block;
}

.about__button {
    padding: 10px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    color: #d0a650;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    position: relative;
}

.about__button::after,
.about__button::before {
    content: "";
    position: absolute;
    transition: all .3s ease-in-out;
    z-index: 0;
    width: 0;
    height: 100%;
}

.about__button svg path {
    transition: all .3s ease-in-out;
}

.about__button::before {
    right: 0;
    border: 1px solid #d0a650;
    border-left: 0;
    border-right: 0;
}

.about__button::after {
    left: 0;
}

.about__button:hover {
    color: #fff;
    transition-delay: .5s;
}

.about__button:hover svg path {
    stroke: #fff;
    transition-delay: .5s;
}

.about__button span,
.about__button svg {
    z-index: 1;
}

.about__button:hover::before {
    transition-delay: 0s;
    width: 100%;
}

.about__button:hover::after {
    background: #d0a650;
    transition-delay: .35s;
    width: 100%;
}

.about__background{
    position: absolute;
    z-index: -1;
    top: -120px;
    left: 0;
    opacity: .2;
}