*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

:root{
    --dark-color: #19283f;
    --green-color: rgb(51, 209, 204);
    --red-color: #ff3150;
    --yellow-color: #ffc400;
    --section-color: #eff7fa;
}

body{
    font-family: "Roboto", sans-serif;
}

/*Start  Commomn Component  */
.main-btn{
    background-color: #ff3150;
    color: #ffc400;
    padding: 8px 16px;
}

.main-btn:hover{
    background-color: #ff3150;
    color: #ffc400;
}

.main-title::after{
    position: absolute;
    content: "";
    width: 140px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background-color: var(--green-color);
}

/*End  Commomn Component  */
.navbar{
    background-color: var(--dark-color);
}

.navbar .nav-item .nav-link{
    color: white;
}

.navbar .nav-item .nav-link.active,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link:focus{
    color: var(--green-color);
}

.navbar .search{
    color: white;
    border-left: 1px solid var(--green-color);
}

.navbar .search svg{
    color: var(--green-color);
}

.navbar .navbar-toggler{
    color: white;
    font-size: 24px;
    border-color: white;
}

/* Start Landing  */
.landing{
    min-height: calc(100vh - 72px);
    background-color: var(--dark-color);
}
/* End Landing  */
/* Start Features  */

.features .number{
    font-size: 200px;
    color: var(--section-color);
}

.features .fa-pencil,
.features .fa-tv,
.features .fa-plug{
    color: var(--green-color);
    font-size: 70px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 130px;
}

.features .title{
    color: var(--yellow-color);
    margin-top: 20px;
}

/* End Features  */
/* Start Gallary  */
.gallary{
    background-color: var(--section-color);
}

.gallary ul li {
    cursor: pointer;
    font-weight: 500;
    padding: 8px 18px;
    transition: 0.3s;
}

.gallary ul li:not(.active):hover{
    color: var(--red-color);
}

.gallary ul .active{
    background-color: var(--red-color);
    color: var(--yellow-color);
    border-radius: 20px;
}

.gallary .box {
    position: relative;
    overflow: hidden;
    padding: 5px;
}

.gallary .box::before{
    content: attr(data-work);
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    color: white;
    font-size: 26px;
    font-weight: bold;
    background-color: rgba(0, 0, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    transform: translateX(calc(-100% - 5px));
}

.gallary .box:hover::before{
    transform: translateX(0);
}

/* End Gallary  */
/* Start StuFF  */
.introduction{
    max-width: 400px;
    margin: auto;
}
/* End Staff */

/* Start Team  */
.team{
    background-color: var(--section-color);
}

.team .title{
    color: var(--yellow-color);
}

.team .text h4{
    background-color: var(--green-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}

.team .text p{
    background-color: white;
    padding: 16px;
}

/* End Team  */
/* Start Project  */
.project{
    background-color: var(--dark-color);
    color: white;
}
/* End Project  */
/* start Blog */
.blog .text{
    padding: 16px;
    border: 1px solid #ccc;
}
.blog .text .title{
    margin-top: -10px;
}

/* End Blog  */

/* Start Subscribe  */
.subscribe{
    background-color: var(--yellow-color);
}

.subscribe .input{
    border: none;
    border-bottom: 1px solid white;
    background-color: transparent;
    color: white;
}

.subscribe .input:focus{
    outline: none;
}

.subscribe .submit{
    background-color: var(--dark-color);
    color: var(--yellow-color);
} 

/* End Subscribe  */
/* Start Footer  */

.footer{
    background-color: var(--dark-color);
}

.footer ul li {
    padding: 5px 0;
}

.footer .name{
    color: var(--green-color);
    font-weight: bold;
}

.footer .desc{
    color: var(--yellow-color);
    font-weight: bold;
}

.footer .social li {
    cursor: pointer;
}

.footer .social li a{
    font-size: 30px;
}

.footer .social .facebook {
    color: #0b45c2;
}   

.footer .social .twitter {
    color: #00acee;
}

.footer .social .linkedin {
    color: #0e76a8;
}

.footer .social .youtube {
    color: #FF0000;
}   









