*{
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(183, 183, 183);
}

body p{
    font-size: 26px;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(60,60,60,.4), rgba(60,60,60,.4)), url(../images/me.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.container{
    padding: 10px 10%;
}
nav{
    display: flex;
    padding: .1% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(173, 128, 128);
}

nav img{
    width: 150px;
    margin: 0;
    padding: 0;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style:none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.nav-links ul li::after{
    content:'';
    width: 0%;
    height: 2px;
    background: linear-gradient(rgba(96, 58, 96, .1),rgba(143, 63, 63,1));
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%
}

nav .fa {
    display: none;
}

nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block; 
    }
    .nav-links{
        position: absolute;
        background: linear-gradient(rgba(96, 58, 96, .7),rgba(143, 63, 63,.9));
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 4000;
        transition: 1s;
    }

    nav .fa{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul{
        padding: 30px;
    }
}

.south{
    background-image: url(../images/jaguar.png);
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/* ---------about-------- */

#about{
    padding: 80px 0;
    color: rgb(238, 237, 237);
}

.about-col-1{
    flex-basis: 35%;
}
.about-col-1 img{
    width: 100%;
    border-radius: 15px;
}

.about-col-2{
    flex-basis: 60%;
}
.subtitle{
    font-size: 60px;
    font-weight: 600;
    color: white;
}
.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}
.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background:rgba(143, 63, 63,.9);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link::after {
    width: 50%;
}
.tab-contents ul li{
    list-style: none;
    font-size: larger;
    margin: 10px 0;
}
.tab-contents ul li span{
    color:rgb(106, 47, 47)
}

.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}