.home-contact004 {
    height: 550px;
    position: relative;
}

.home-contact004-bg {
    content: '';
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}

.home-contact004:before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.home-contact004 .wrapper {
    width: 710px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(5px);
}

@media (max-width: 991px) {
    .home-contact004 .wrapper {
        width: 90%;
        max-width: 510px;
        padding: 0.5rem 1.5rem;
        text-align: center;
    }
}

.home-contact004 .header {
    position: relative;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 18px;
}

.home-contact004 .header .title {
    font-size: 30px;
    font-weight: bold;

    letter-spacing: 2px;
    border-bottom-style: solid;
    border-bottom-width: 6px;
    padding-bottom: 0.5rem;
}

.home-contact004 .text-wrapper {
    margin-bottom: 24px;
}

.home-contact004 .text-wrapper .text {
    font-size: 20px;

    letter-spacing: 2px;
}

.home-contact004 .info-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.home-contact004 .info-wrapper .label {
    display: flex;
    align-items: center;
    padding: 6px 16px;

    border-radius: 30px;
    margin-right: 12px;
}

.home-contact004 .info-wrapper .label i {
    font-size: 20px;

    margin-right: 4px;
}

.home-contact004 .info-wrapper .label .label-text {
    font-size: 25px;
    font-weight: bold;

    line-height: 1;
}

.home-contact004 .info-wrapper .text {
    font-size: 30px;
    font-weight: bold;
}

.home-contact004 .info-wrapper .text a {
    text-decoration: none;

}


.home-contact004 .btn-contact {
    position: relative;
    width: 300px;
    padding: 12px 40px 12px 40px;
    border-radius: 30px;
    
    border-width: 2px;
    border-style: solid;
    margin-bottom: 50px;
}

.home-contact004 .btn-contact:hover::before {
    border-radius: 50px;
   
}

.home-contact004 .btn-contact .text {
    font-size: 18px;
    font-weight: bold;
    color: #d49501;
    letter-spacing: 2px;
    z-index: 1;
}



/*home-btn-style*/

.home-contact004 .btn-more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 1rem;
    line-height: 35px;
    border-radius: 50px;
    max-width: 300px;
    width: 100%;
}

.home-contact004 .btn-more::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transition: transform .48s cubic-bezier(.895, .03, .685, .22), border-radius .35s cubic-bezier(.55, .085, .68, .53) 40ms;
    transform: scale(1, 0);
    transform-origin: 50% 100%;
    z-index: 0;
}

.home-contact004 .btn-more:hover::before {
    border-radius: 50% 50% 0 0 / 0 0 0 0;
    transition: transform .48s cubic-bezier(.165, .84, .44, 1), border-radius .35s cubic-bezier(.55, .085, .68, .53) 20ms;
    transform: scale(1, 1);
}

.home-contact004 .btn-more .text {
    margin-right: 23px;
    z-index: 1;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
}

.home-contact004 .btn-more i {
    z-index: 1;
}