*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

.logo-talksy{
    display: none;
}

.header-title{
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
    margin: auto;
}

.navbar{
    position: relative;
    width: 100%;
    padding: 10px 0;
    left: 0;
}

.navbar.sticky{
    padding: 20px 0;
    background: (119, 119, 242)
}

.navbar .header-title{
    display: flex;
    align-items:center;
    justify-content: space-between;
}

.navbar .logo a{
    position: relative;
    float: center;
    color: #3687A8;
    font-size: 30px;
    font-weight: 600;
    padding: 20px 0;
    align-items: center;
}

.navbar .logo a span{
    color: rgb(6, 97, 6);
}

.navbar.sticky .logo a span{
    color:blue;
}

.navbar .menu li{
    list-style: none;
    display: inline-block;
}

.navbar .menu li a{
    color: black;
    font-size: 16px;
    font-weight: 600;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover{
    color: #154B62;
    border-bottom: 2px solid hsl(240, 1%, 41%);
    padding-bottom: 5px;
    transition: 0.3s;
}

.menu-bars{
    cursor: pointer;
    display: none;
}

.menu a img{
    display: none;
}

.signup{
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    border-style: none;
    cursor: pointer;
    background-color:rgb(19, 19, 208);
}

video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;;
    z-index: -1;
    overflow: hidden;
}

.home-details{
    position: absolute;
    display: block;
    position: absolute;
    flex-direction: column;
    top: 55%;
    left: 15%;
    transform: translate(-50%, -50%);
    color:white;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;   
    display: grid;
    justify-items:center;
    width: 100%;
    row-gap: 1rem;
    z-index: 10;
}

.homeSubtitle{
    padding: 0.1%;
    margin: 0.1%;
    z-index: 10;
}

.homeTitle{
    padding: 1%;
    margin: 1%;
    z-index: 10;
}

.start{
    border: none;
    outline: none;
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    background-color: green;
    transition: var(--tran-0-3);
    cursor: pointer;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}

.start:hover{
    background-color: rgb(19, 19, 208);
}

.social-icons .fab{
    position: relative;
    left: 11%;
    top: 31rem;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    line-height: 20px;
    color: #fff;
}


@media (max-width: 882px){

    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        text-decoration: none;
    }

    .navbar{
        position: relative;
        width: 100%;
        padding: 10px 0;
        left: 0;
    }
    
    .navbar.sticky{
        padding: 10px 0;
        background: (119, 119, 242);
    }
    
    .navbar .header-title{
        display: flex;
        justify-content: space-between;
    }
    
    .navbar .logo a{
        position: relative;
        color: #3687A8;
        font-size: 30px;
        font-weight: 600;
        padding: 10px 0;
        align-items: center;
    }
    
    .navbar .logo a span{
        color: rgb(6, 97, 6);
    }
    
    .navbar.sticky .logo a span{
        color:blue;
    }
    
    .navbar .menu li{
        list-style: none;
        display: inline-block;
    }
    
    .navbar .menu li a{
        color: black;
        font-size: 15px;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    
    .navbar .menu li a:hover{
        color: #154B62;
        border-bottom: 2px solid hsl(240, 1%, 41%);
        padding-bottom: 5px;
        transition: 0.3s;
    }

    .menu-bars{
        display: flex;
        padding: 20px;
        justify-items: right;
        padding: 0.5px;
    }

    .header-title{
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
        margin: auto;
    }

    .logo{
        display: none;
    }

    .logo-talksy{
        display:inline-block;
    }

    
    .signup{
        color: white;
        padding: 8px 16px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 600;
        border-style: none;
        cursor: pointer;
        background-color:rgb(19, 19, 208);
    }

    .navbar .logo a{
        color: rgb(14, 14, 154);
        font-size: 24px;
        font-weight: 600;
    }
        
    .header-title{
        padding: 0 50px;
    }

    .menu-img{
        display: none;
    }

    .menu{
        clear: both;
        position: fixed;
        height: 1000%;
        width: 100%;
        left: -100%;
        top: 9%;
        background: white;
        text-align: center;
        justify-content: center;
        padding-top: 0px;
        transition: all 0.3s ease;
    }

    .menu a img{
        display: flex;
        padding: 10%;
        margin-top: 5%;
        padding-bottom: 30%;
    }

    .menu.commence{
        position: absolute;
        width: 70%;
        display: grid;
        grid-template-columns: inherit;
        grid-template-rows: 100px 100px 100px 100px;
        grid-gap: 0;
        border-right: solid 2px #5f5fec;
        left: 0%;
        margin: 0;
        line-height: 3;
        padding-top: 0;
        transition: all 0.3s ease;
        left: 0;
        box-shadow: 0px 1px 1px 0.5px #8e8ef6;
    }
       
    .start{
        border: none;
        outline: none;
        margin-top: 10%;
        margin-left: 1%;
        color: var(--white-color);
        padding: 0.5rem 2rem;
        border-radius: 5rem;
        background-color: rgb(6, 97, 6);
        transition: var(--tran-0-3);
        cursor: pointer;
        font-family: 'Times New Roman', Times, serif;
        font-weight: bold;
    }
    
    .start:hover{
        background-color: rgb(19, 19, 208);
    }

    .home-details{
        position: absolute;
        display: block;
        position: absolute;
        flex-direction: column;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        color:white;
        font-size: 20px;
        font-family: 'Times New Roman', Times, serif;   
        display: grid;
        justify-items:center;
        width: 100%;
        row-gap: 1rem;
    }

    .homeSubtitle{
        padding: 2px;
        margin: 2px;
    }

    .homeTitle{
        padding: 2px;
        margin: 2px;
    }

    .social-icons .fab{
        position: relative;
        margin-top: 5%;
        left: 35%;
        width: 20px;
        height: 20px;
        margin-right: 10px;
        cursor: pointer;
        line-height: 20px;
        color: #fff;
    }

}
