*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body{
    background-color: black;
    color: white;
}

/* header start */

#header{
    width: 100%;
    height: 100vh;
    background-image: url(images/set.png);
    background-size: cover;
    background-position: center;
}

.container{
    padding: 10px 10%; 

}

nav{
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}

.logo{
    width: 80px;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li ::after{
    content: '';
    width: 0;
    height: 3px;
    background: rgb(224, 64, 64);
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

nav ul li :hover::after{
    width: 100%;
}

.header-text{
    margin-top: 20%;
    font-size: 30px;
    text-align: center;
    color: darkslategrey;
}

.header-text h1{
    font-size: 60px;
    margin-top: 20px;
}

.header-text h1 span{
    color: rgb(49, 9, 9);
}
/* header end */


/* About start */
#about{
    padding: 80px 0px;
    color: white;
}

.row{
    display: flex; /* puts items side by side in a row*/
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1{
    flex-basis: 35%;
}

.about-col-1 img{
    width: 75%; /* reduces image size */
    border-radius: 15px;   /* rounds corners */
}

.about-col-2{
    flex-basis: 60%;

}

.subtitle{
    color: white;
    font-size: 60px;
    font-weight: 600;
}

.tab-titles{
    display: flex;
    margin: 20px 0px 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: turquoise;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.3s;
}

.tab-links.active-link ::after{
    width: 50%;
}

.tab-contents ul li{
list-style: none;
margin: 10px 0;
}

.tab-contents ul li span{
    color: rgb(230, 176, 176);
    font-size: 14px;
}

.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}
/* about end */

/* services start */
#services{
    padding: 30px 0;
}

.center-align{
    text-align: center;
}

.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.services-list div{
    background: #262626;
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 10px; /* rounds corners */
    transition: background 0.5s, transform 0.5s;
}

.services-list div span{
    font-size: 50px;
    margin-bottom: 30px;
    
}

.services-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.services-list div a{
    text-decoration: none;
    color: white;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
}

.services-list div:hover{
    background: rgb(86, 24, 33);
    transform: scale(1.1);
    /* transform: translateY(-10px); */
}

/* services end */

/* portfolio start */

#portfolio{
    padding: 50px 0;
}