.btn-main {
    color: var(--white);
    background-color: var(--color-1);
    transition: 0.5s all ease;
    position: relative;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    padding: 2px;
    width: max-content;
    border: none;
}

.btn-main:hover {
    color: var(--white);
    /*background-color: var(--color-4);*/
}

.btn-main::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    z-index: 0;
    transition: 0.5s all ease;
    background-color: var(--color-2);
    border-radius: 5px;
    transition: .0s ease-in-out;
}
/*.btn-main:hover::before{
	width: 50%;
    opacity: 1;
}*/
/*.btn-main::after {
	position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: 0.5s all ease;
    background-color: #b69d74;
}*/
.btn-main:hover:hover:after {
    width: 50%;
    opacity: 1;
}
.hr-btn1{
    display: inline-block;
    color: #ffffff;
    background-color: var(--color-4);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 30px;
    position: relative;
    z-index: 1;
}
.hr-btn1:hover{
    color: #fff;
}

.btn-main span {
    background: var(--color-1);
    padding: 12px 15px;
    font-size: 16px;
    font-weight: var(--weight-400);
    text-align: center;
    position: relative;
    display: inline-block;
    font-family: var(--font-01);
    z-index: 1;
    border-radius: 5px;
    background: transparent;
}

.hr-btn1:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: 0.5s all ease;
    background-color: #333333;
}
.btn-main:hover::before {
    width: 100%;
    transition: .5s ease-in-out;
}
.hr-btn1:hover:before {
    width: 50%;
    opacity: 1;
}
.hr-btn1:after{
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: 0.5s all ease;
    background-color: #333333;
}
.hr-btn1:hover:after {
    width: 50%;
    opacity: 1;
}
.btn-main-1 {
    color: var(--white);
    background-color: var(--color-4);
}

.btn-main-1:hover {
    color: var(--white);
    background-color: var(--color-43);
}

.btn-main-1::before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    border: 4px solid #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
}

.btn-main-2 {
    color: var(--white);
    background-color: var(--color-3);
}

.btn-main-2:hover {
    color: var(--white);
    background-color: var(--color-4);
}

.btn-main-2::before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    border: 4px solid #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
}

@media (max-width:1400px) {
    .hr-btn {
        font-size: 13px;
    }
}

@media(max-width:1200px){
    .btn-main span {
    padding: 8px 10px;
    font-size: 15px;
}
}