*{
    box-sizing: border-box;
}

html,body{
    margin: 0;
    padding: 0;
}

.card{
    background-color: #f1ede9;
    min-height: 100vh;
    border: none;
}

.card-bg{
    position: relative;
    height: 30vh;
    background: url('./harshita-wallpaper.jpg');
    background-size: cover;
    background-position: top;
}

.profile{
    position: absolute;
    height: 130px;
    width: 130px;
    border-radius: 50%;
    bottom: -50%;
    right: 0%;
    transform: translate(-10%, -20%);
    /* background-color: #f1ede9; */
    background-color: #372F2D;
    /* border: 3px solid #56524d;     */
    border: 4px solid #D5CFC1;    
}

.description-wrapper{
    padding: 10px 30px;
}

.description-wrapper .title h1{
    font-size: 26px;
}
.description-wrapper .title h2{
    font-size: 16px;
    color: rgb(104, 104, 104);
}

.btn-default{
    border: none;
    outline: none;
    background-color: #d7cec2;
    color: #56524d !important;
    padding: 10px 20px;
    display: block;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
}

.outlined {
    background-color: transparent;
    border: 1px solid #56524d;
}

.text {
    background-color: transparent;
    color: #56524d;
    letter-spacing: 1px;
}

a{
    color: white;
    text-decoration: none;
    letter-spacing: 1.5px;
}

.tab-default{
    border: none;
    outline: none;
    border-bottom: 2px solid rgb(228, 226, 226);
    color: black;
    display: block;
    text-align: center;
    letter-spacing: normal;
    padding-bottom: 10px;
}

 a.tab-default{
    letter-spacing: 1px;
    text-decoration: none;
}

.tab-active{
    border-bottom: 2px solid #c7b7a3;
}

.social-link ul{
    display: flex;
    /* justify-content: space-around; */
}

.social-link li img {
    margin-right: 20px;
}

ul{
    margin: 0;
    padding: 0;
}

li{
    display: inline-block;
}

li:not(:last-child){
    margin-right: 10px;
}


h5{
    font-size: 20px;
}

.map{
    border: 2px solid #c2b6a8;
    border-radius: 5px;
    overflow: hidden;
}

.links {
    color: #212529;
}

a {
    letter-spacing: unset;
    color: #212529;
}

a:visited {
    color: #212529;
    text-decoration: none;
}

a:hover {
    color: #212529;
    text-decoration: none;
}

.cursor-pointer {
    cursor: pointer;
}

@media(max-width:700px){
    .card-bg{
        position: relative;
        height: 20vh;
        background-color: aquamarine;
    }
    .profile{
        height: 100px;
        width: 100px;
        bottom: -20%;
        right: 0%;
        transform: translate(-12%, 20%);
    }
}