.contact-box-section{
    position: relative;
    padding-top: 100px;
    padding-bottom: 160px;
}
.contact-box__wrapper{
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}
.contact-box__content{
    flex: 1;
}
.contact-box__image{
    flex: 1;
}
.contact-box__heading{
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 20px;
    color: #212121;
    font-weight: 500;
}
.contact-box__heading span {
    color: #d0a650;
    display: block;
}
.contact-box__button {
    padding: 10px 20px;
    display: inline-flex;
    gap: 15px;
    align-items: center;
    color: #d0a650;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    position: relative;
}

.contact-box__button::after,
.contact-box__button::before {
    content: "";
    position: absolute;
    transition: all .3s ease-in-out;
    z-index: 0;
    width: 0;
    height: 100%;
}

.contact-box__button svg path {
    transition: all .3s ease-in-out;
}

.contact-box__button::before {
    right: 0;
    border: 1px solid #d0a650;
    border-left: 0;
    border-right: 0;
}

.contact-box__button::after {
    left: 0;
}

.contact-box__button:hover {
    color: #fff;
    transition-delay: .5s;
}

.contact-box__button:hover svg path {
    stroke: #fff;
    transition-delay: .5s;
}

.contact-box__button span,
.contact-box__button svg {
    z-index: 1;
}

.contact-box__button:hover::before {
    transition-delay: 0s;
    width: 100%;
}

.contact-box__button:hover::after {
    background: #d0a650;
    transition-delay: .35s;
    width: 100%;
}
.contact-box__text,
.contact-box__text a{
    font-size: 22px;
    line-height: 28px;
    color: #212121;
    font-weight: 500;
    margin-bottom: 30px;
    max-width: 580px;
    transition: all .2s ease-in-out;
}
.contact-box__text a:hover{
    color: #d0a650;
}
@media screen and (max-width: 992px) {

    .contact-box__wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-box-section{
        padding-top: 40px;
        padding-bottom: 80px;
    }
}