* {
    box-sizing: border-box;
    --color-primary: #e9a264;
    --color-secondary: #00d0d0;
}

body {
    margin: 0;
    font-family: 'Hind', sans-serif;
}
.body-wrapper {
    /* background-image: url(../images/bg-img.png); */
    background-color: #eee;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card {
    background-color: #fff;
    border-radius: 17px;
    overflow: hidden;
    width: 960px;
    height: 660px;
    position: relative;
    background-image: url(../images/card-bg.png);
    background-repeat: no-repeat;
    background-position: -60px -20px;
}
.card-body {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: 70px;
}
.card:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 20px;
    background-color: var(--color-primary);;
    left: 0;
    bottom: 0;
}
.top-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.top-area ul li {
    display: inline;
}
.top-area ul li i {
    font-size: 1.2rem;
    color: var(--color-primary);;
}
.top-area ul li {
    margin: 0 0 0 10px;
}
.top-area ul li a {
    display: inline-block;
}
.header {
    width: 75%;
    margin-bottom: 50px;
}
.header h1 {
    font-weight: 600;
    font-size: 2.3rem;
    margin: 0;
    line-height: 1.4;
    color: var(--color-primary);;
}
.top-area {
    position: absolute;
    right: 70px;
}
.logo img {
    margin-bottom: 25px;
    max-height: 150px;
}
.header p {
    color: #999;
    font-weight: 500;
    font-size: 1.3rem;
}
.row {
    display: flex;
    flex-direction: row;
}
.row div {
    flex: 1;
}
.contact h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);;
}
.contact p {
    margin: 0;
    color: #999;
}
.contact .row > div {
    min-height: 200px;
    display: flex;
    flex-direction: column;
}
.contact {
}
.contact a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 767px){
    .body-wrapper {
        /* height: auto; */
    }
    
    .card {
        width: 89%;
        height: auto;
        margin-top: 4%;
        background-size: 210px;
    }
    
    .card-body {
        padding: 30px;
    }
    
    .top-area {
        top: 30px;
        right: 30px;
    }
    
    .header h1 {
        font-size: 1.3rem;
        line-height: unset;
    }
    
    .header {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .header p {
        font-size: 0.92rem;
        font-weight: normal;
    }
    
    .contact .row {
        flex-direction: column;
    }
    
    .logo img {
        width: 160px;
    }
    
    .contact .row > div {
        min-height: auto;
    }
    
    .contact .row .col-6 > div {
        margin-bottom: 10px;
    }
}