.hero-section{
position: relative;
overflow: hidden;
padding-top: 60px;
padding-bottom: 60px;
}
.hero__background{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: calc(100vw - (100vw - 1440px)/2 - 40px);
    background: #efefef;
    z-index: -1;
}
@media screen and (max-width: 1440px) {
    .hero__background {
        width: calc(100vw - (100vw - 1200px)/2 - 40px);
    }
}
@media screen and (max-width: 1200px) {
    .hero__background {
        width: calc(100vw - (100vw - 992px)/2 - 40px);
    }
}
@media screen and (max-width: 992px) {
    .hero__background {
        width: calc(100vw - (100vw - 768px)/2 - 40px);
    }
}
@media screen and (max-width: 768px) {
    .hero__background {
        width: calc(100vw - (100vw - 576px)/2 - 40px);
    }
}
.hero__wrapper{
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero__content{
    flex: 1;
}
.hero__heading{
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 30px;
    color: #212121;
    font-weight: 500;
}
.hero__heading span{
    color: #d0a650;
}
.hero__description{
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 30px;
    color: #212121;
    font-weight: 300;
    max-width: 640px;
}
.hero__button-wrapper{
    display: inline-block;
}
.hero__button{
    padding: 10px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    color: #d0a650;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    position: relative;
}
.hero__button::after,
.hero__button::before {
    content: "";
    position: absolute;
    transition: all .3s ease-in-out;
    z-index: 0;
    width: 0;
    height: 100%;
}
.hero__button svg path{
    transition: all .3s ease-in-out;
}
.hero__button::before {
    right: 0;
    border: 1px solid #d0a650;
    border-left: 0;
    border-right: 0;
}
.hero__button::after{
    left: 0;
}
.hero__button:hover {
    color: #fff;
    transition-delay: .5s;
}
.hero__button:hover svg path{
    stroke: #fff;
    transition-delay: .5s;
}
.hero__button span,
.hero__button svg{
    z-index: 1;
}
.hero__button:hover::before {
    transition-delay: 0s;
    width: 100%;
}
.hero__button:hover::after {
    background: #d0a650;
    transition-delay: .35s;
    width: 100%;
}
.hero__image{
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.hero__image img{
    margin-left: auto;
}
@media screen and (max-width: 992px) {
    .hero__wrapper {
        flex-direction: column;
    }
    .hero__heading{
        font-size: 36px;
        line-height: 46px;
    }
}