*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    overflow-y: hidden;
    overflow-x: hidden;
}

.logo-talksy{
    display: none;
}

.header-title{
    position: sticky;
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
    margin: auto;
}

.navbar{
    position: sticky;
    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{
    list-style: none;
    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{
    list-style-type: none;
    color: black;
    font-size: 16px;
    font-weight: 600;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover{
    list-style: none;
    color: #154B62;
    border-bottom: 2px solid hsl(240, 1%, 41%);
    padding-bottom: 5px;
    transition: 0.3s;
}

.menu-bars{
    cursor: pointer;
    display: none;
}

.bg-black {
    background: white !important;
    border-bottom: solid black 0.5px;
}

.txt-white a {
    color: black !important;
}

.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);
}

.menu a img{
    display: none;
}

body{
    background: white;
    overflow:scroll;
}

.container{
    position: absolute;
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: 0 30px 50px #dbdbdb;
    overflow: scroll;
}

.container .slide .item{
    width: 200px;
    height: 280px;
    position: absolute;
    top: 60%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: all 0.5s ease-in-out;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}


.slide .item:nth-child(3){
    left: 50%;
}
.slide .item:nth-child(4){
    left: calc(50% + 220px);
}
.slide .item:nth-child(5){
    left: calc(50% + 440px);
}

.slide .item:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}

.item .content{
    position: absolute;
    top: 50%;
    left: 200px;
    width: 300px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: 'Times New Roman', Times, serif;
    text-shadow: 12px 8px 1px 1px black;
    display: none;
}

.slide .item:nth-child(2) .content{
    display: block;
}


.content .name{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    animation: animate 1s ease-in-out 1 forwards;
    text-shadow: 1px 1px black;
}

.content .quote{
    margin-top: 10px;
    margin-bottom: 20px;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
    text-shadow: 1px 1px black;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
    text-shadow: 1px 1px black;
}

.content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .match{
    background-color: rgb(19, 19, 208);
    color: white;
    border-radius: 5rem;
}

.content .match:hover{
    background-color: green;
}


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}


.button{
    position: relative;
    width: 100%;
    padding: 20px;
    margin-top: 33%;
    left: 13%;
    animation: animate 1.9s ease-in-out 1 forwards;
}

.button .prev{
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-right: 15px solid rgb(19, 19, 208);
    border-bottom: 15px solid transparent;
    background-color: transparent;
}

.button .prev:hover{
    border-right: 15px solid green;
}

.button .next{
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 15px solid rgb(19, 19, 208);
    border-bottom: 15px solid transparent;
    background-color: transparent;
}

.button .next:hover{
    border-left: 15px solid green;
}


.button button {
    float: none;
    left: 10%;
    width: 40px;
    height: 35px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: 0.3s;
}

.button button:hover{
    color: #fff;
}

.item {
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: all 0.5s ease-in-out;
}

.thumbnail {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(160, 181, 204, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.item:hover .thumbnail {
    opacity: 1;
}

.thumbnail .thumb-text{
    margin-top: 20%;
    margin-left: 23%;
    font-weight: 600;
    color: white;
    text-shadow: 1px 2px 3px black;
}


@media (max-width: 882px){
    *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    overflow-y: hidden;
    overflow-x: hidden;
    flex-shrink: 0;
    }

    body {
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
      }

    .navbar {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 1000;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    }


    .menu-bars{
        display: flex;
        align-items: center;
        justify-items: flex-end;
        z-index: 999;
        margin-top: 4px;
    }

    .header-title{
        display: flex;
        justify-content: space-between;
        padding: 10 20px;
    }

    .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: 100vh;
        width: 100%;
        left: -100%;
        top: 0%;
        background: white;
        text-align: center;
        justify-content: center;
        padding-top: 0px;
        transition: all 0.3s ease;
        z-index: 10000;
    }

    
    .menu a img{
        display: flex;
        padding: 10%;
        margin-top: 5%;
        padding-bottom: 30%;
    }

    .menu.commence{
        position: fixed;
        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: 2;
        padding-top: 0;
        transition: all 0.3s ease;
        left: 0;
        box-shadow: 0px 1px 1px 0.5px #8e8ef6;
        z-index: 9999999999;
    }
       
    .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;
        z-index: 10000;
    }
    
    .start:hover{
        background-color: rgb(19, 19, 208);
        z-index: 10000;
    }

    
    .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;
        z-index: 10000;
    }

    .homeSubtitle{
        padding: 2px;
        margin: 2px;
        z-index: 10000;
    }

    .homeTitle{
        padding: 2px;
        margin: 2px;
        z-index: 10;
    }
    .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);
    }
    
    
    body{
        background: white;
        overflow:scroll;
    }
    
    .container{
        position: absolute;
        width: 100%;
        height: 100%;
        background: transparent;
        box-shadow: 0 30px 50px #dbdbdb;
        overflow: hidden;
    }
    
    .container .slide .item{
        width: 35%;
        margin-left: 0;
        height: 150px;
        position: absolute;
        top: 78%;
        transform: translate(0, -50%);
        border-radius: 20px;
        box-shadow: 0 30px 50px #505050;
        background-position: 50% 50%;
        background-size: cover;
        display: inline-block;
        transition: all 0.5s ease-in-out;
    }
    
    .slide .item:nth-child(1),
    .slide .item:nth-child(2){
        top: 0;
        left: 0;
        transform: translate(0, 0);
        border-radius: 0;
        width: 100%;
        height: 100%;
    }
    
    
    .slide .item:nth-child(3){
        left: 50%;
    }
    .slide .item:nth-child(4){
        left: calc(50% + 50%);
    }
    .slide .item:nth-child(5){
        left: calc(50% + 50%);
    }
    
    .slide .item:nth-child(n + 6){
        left: calc(50% + 50%);
        opacity: 0;
    }

    .item .content{
        position: absolute;
        top: 40%;
        left: 10%;
        width: 70%;
        text-align: left;
        color: #eee;
        transform: translate(0, -50%);
        font-family: 'Times New Roman', Times, serif;
        text-shadow: 12px 8px 1px 1px black;
        display: none;
    }
    
    .slide .item:nth-child(2) .content{
        display: block;
    }
    
    
    .content .name{
        font-size: 20px;
        text-transform: uppercase;
        font-weight: bold;
        animation: animate 1s ease-in-out 1 forwards;
        text-shadow: 1px 1px black;
    }
    
    .content .quote{
        margin-top: 10px;
        margin-bottom: 20px;
        animation: animate 1s ease-in-out 0.3s 1 forwards;
        text-shadow: 1px 1px black;
    }
    
    .content .des{
        margin-top: 10px;
        margin-bottom: 20px;
        animation: animate 1s ease-in-out 0.3s 1 forwards;
        text-shadow: 1px 1px black;
    }
    
    .content button{
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        opacity: 0;
        animation: animate 1s ease-in-out 0.6s 1 forwards;
    }
    
    .content .match{
        background-color: rgb(19, 19, 208);
        color: white;
        border-radius: 5rem;
    }
    
    .content .match:hover{
        background-color: green;
    }
    
    
    @keyframes animate {
        from{
            opacity: 0;
            transform: translate(0, 100px);
            filter: blur(33px);
        }
    
        to{
            opacity: 1;
            transform: translate(0);
            filter: blur(0);
        }
    }
    
    
    .button{
        position: absolute;
        margin-top: 115%;
        margin-left: -5%;
        animation: animate 1.5s ease-in-out 1 forwards;
    }
    
    .button .prev{
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-right: 15px solid rgb(19, 19, 208);
        border-bottom: 15px solid transparent;
        background-color: transparent;
    }
    
    .button .prev:hover{
        border-right: 15px solid green;
    }
    
    .button .next{
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-left: 15px solid rgb(19, 19, 208);
        border-bottom: 15px solid transparent;
        background-color: transparent;
    }
    
    .button .next:hover{
        border-left: 15px solid green;
    }
    
    
    .button button {
        float: none;
        left: 10%;
        width: 40px;
        height: 88px;
        border-radius: 10px;
        border: none;
        cursor: pointer;
        margin: 0 5px;
        border: 1px solid #000;
        transition: 0.3s;
    }
    
    .button button:hover{
        color: #fff;
    }
        
    .thumbnail {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 30%;
        background-color: rgba(160, 181, 204, 0.5);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .item:hover .thumbnail {
        opacity: 1;
    }
    
    .thumbnail .thumb-text{
        margin-top: 0%;
        margin-left: 23%;
        font-weight: 600;
        color: white;
        text-shadow: 1px 2px 3px black;
    }
}    

