        #language-form {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 1em;
        }
        label[for="id_session_language"] {
            display: none;
        }
        #id_session_language {
            padding: 5px 10px;
            background-color: rgb(240,240,240);
            font-family: "Poppins", sans-serif;
            border-radius: 5px;
            cursor: pointer;
            line-height: 1.3;
        }
        .authentication{
            display: flex;
            align-items: center;
            /*align-self: flex-end;*/
        }

        .apps-menu {
            color: white;
    
        }
        .icon-apps:hover {
            color: #AAA;
        }
        .icon-apps {
            font-size: 40px;
            margin-right: 20px;
            cursor: pointer;
        }        
        .apps-menu {
            position: relative;
        }
        #apps-list {
            width: 350px;
            position: absolute;
            z-index: 5;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 10px 5px;
            box-shadow: 2px 2px 5px #BBB;
            border: 1px solid #EEE;
            background-color: white;
            overflow-y: auto;
            top:60px;
            right: -50px;
            display: none;

        } 
        #apps-list.active {
            display: flex;
        }        
        .app-div {
            padding: 10px 5px;
            border-radius: 8px;
            width: 100px;
            height: 100px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            align-items: center;
        }
        .app-icon {
            width: 50px;
            height: 50px;
            display: block;
        }
        .app-div:hover{
            background-color: #EEE;
        }
        .app-name {
            font-size: 12px;
            color: #444;
            text-align: center;
        }

        #translation-app, #texttospeech-app, #speechtotext-app, #all-tools, #pricing-detail {
            color: black;
            font-size: 50px;
        }

        *{
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
        }
  
        nav {
            display: flex;
            justify-content: space-between;
            padding-left: 10%;
            padding-right: 5%;
            align-items: center;
            min-height: 8vh;
            background-color: #021130;
            font-family: "Poppins", sans-serif;
            font-size: 22px;
            position: -webkit-sticky; /* Safari */
            position: sticky;
            top: 0;            
            z-index: 100;
/*            overflow-x: hidden;*/
        }
        #login-div {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .user-initial, .user-initial-app {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #00b300;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 25px;
            cursor: pointer;
        }
        .logo a{
            color: rgb(226,226,226);
            letter-spacing: 5px;
            text-decoration: none;
            font-family: 'Arvo', serif;
            font-size: 1.5em;
        }
        #sub-service {
            color: white;
            font-style: italic;
            font-weight: 400;
            position: relative;
            font-size: .6em;
            letter-spacing: 1px;
            bottom: .5em;
        }
        
        .log-in {
            font-size: .6em;
            background-color: #EEE;
            padding: .6em .6em;
            border-radius: .2em;
            cursor: pointer;
        }
        #login-options {
            position:absolute; 
            z-index: 2; 
            opacity: 0;
            /*transform: translateY(-200%);*/
            top: 100%;
            pointer-events: none;
            padding: .5em .5em;
            background-color: #EEE;
            border-radius: 10px;
        }

        #login-options li {
            list-style: none;
        }   
        #login-options a {
            text-decoration: none;
            font-size: .8em;
        }           
        #login-options span {
            font-size: 1em;
        }        


        #login-options.active{
            display: block;
            opacity: 1;
            pointer-events: all;
        }
        .facebook-login a {
            color: blue;
        }
        .google-login a{
            color: red;
        }        
        @media screen and (max-width: 768px) {
            body {
                overflow-x: hidden;
            }
        }   
        @keyframes loginOptionSlide {
            from{
                opacity: 0;
                transform: translateY(-50px);
            }
            to{
                opacity: 1;
                transform: translateY(0px);
            }
        }

