*{
    /* margin: 0;
    padding: 0; */
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body{
    background: #080808;
}
span{
    color: #ff004f;
}
#header{
    width: 100%;
    height: 100vh;
    background: url('./images/back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.box{
    padding: 10px 10%;
}
.logo{
    height: 100px;
}

nav{
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
nav ul li a:hover{
    text-decoration: none;
    color: #fff;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
/* nav ul li a:hover{
    border-bottom: 3px solid red;
    transition: 0.5s;
} */
.header-text{
    margin-top: 20%;
    font-size: 30px;
    color: #fff;
}
.header-text p{
    letter-spacing: 5px;
}
.header-text span{
    color: #ff004f;
    font-size: 40px;
    font-weight: 700;
}
.header-text h1{
    font-size: 50px;
    margin-top: 20px;
}

/* ------about------ */
#about{
    width: 100%;
    height: 100vh;
    padding: 80px 0;
    color: #ababab;
}
.row1{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1{
    flex-basis: 35%;
}
.about-col-1 img{
    width: 100%;
}
.about-col-2{
    flex-basis: 60%;
}
.subtitle{
    font-size: 50px;
    color: #fff;
}

.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}
.tab-titles .tab-links{
    margin-right: 30px;
    font-weight: 600;
    cursor:pointer;
    position: relative;
}
.tab-titles .tab-links::after{
    content: '';
    width: 0;
    background: #ff004f;
    height: 3px;
    position: absolute;
    left: 0;
    top: 20px;
    transition: 0.5s;
}
.tab-titles .tab-links:hover::after
{
    width: 100%;
}
.tab-titles .active-link::after{
    width: 50%;
}

.tab-contents ul li{
    list-style: none;
    margin: 15px 0;
}
.tab-contents ul li span{
    color: #ff004f;
    font-size: small;
}

.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}

/* --------Services------ */
.services{
    padding: 50px 0;
    width: 100%;
    height: 100vh;
    color: #fff;
}
.contact{
    padding: 50px 0;
    width: 100%;
    height: 50vh;
    color: #fff;
}
.fa{
    font-size: 50px;
}
.container .section-head h2{
    text-align:center;
}
.service-box{
    background: #262626;
    padding: 1.5rem;
    margin: 50px 0;
    height: 40vh;
    text-align: left;
    border-radius: 10px;
    transition: background 0.5s,transform 0.5s ;
}
.contact-box{
    background: #262626;
    padding: 1rem;
    margin: 10px 0;
    height: 13vh;
    text-align: center;
    border-radius: 10px;
    transition: background 0.5s,transform 0.5s ;
}
.contact-box p{
    color: #fff;
}
.service-box i{
    margin: 15px 0;

}
.service-box h3{
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.service-box a{
    margin-top: 10px;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    transition: 0.5s;

}
.service-box a:hover{
    font-weight: 700;
    color: black;
}

.service-box:hover{
    background: #ff004f;
    transform: translateY(-10px);
}
