@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");
@font-face {
    font-family: cookie;
    src: url(../assets/font/Cookie-Regular.ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
    font-family: 'Poppins', sans-serif;
}
:root{
    --main-color: #B29A75;
    --white-color:#FFF;
}
body{
    background-color: #171717;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
.title-main{
    font-size: 3rem;
    font-weight: 100;
    color: var(--main-color);
    font-family: cookie;
}
.h2-main{
    font-size: 3.6rem;
    font-weight: 100;
    color: var(--white-color);
}
.span-main{
    color: #888888;
    font-size: 1.4rem;
}
.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.image{
    width: 100%;
    height: 100%;
}
.parent{
    position: relative;
}
.child{
    position: absolute;
    
}
hr{
    border: 0.5px solid #ebebeb;
    width: 100%;
    background-color: #ebebeb;
    margin-bottom: 50px;
}

.btn-about a{
    color: #fff;
    background-color: #B4976E;
    padding: 12px 30px;
    font-size: 1.4rem;
    position: relative;
    z-index: 4;
}
.btn-about a::before{
    content: "";
    display: block;
    position: absolute;
    background-color: #B4976E;
    top: 0;
    right: 0;
    transform: translate(6px,6px);
    width: 100%;
    opacity: 0.4;
    z-index: -4;
    height: 100%;
}
.btn-about a:hover::before{
    top: 0;
    right: 0;
    transform: translate(0,0);
    transition: all 0.5s ease;
}