body{
                overflow-x: hidden;
            }
            .navbar{
                margin-top:50px;
            }
            #desktop-cta{
                max-width: 104%; 
                height:40px;
                font-family: Poppins;
            }
            .fixed{
                position: sticky;
                top: 0;
                shape-outside:linear-gradient(transparent,transparent);
            }
            .cta-inner-left{
                background-color: #ffc417; 
                color: #ed1a3b; 
                width:64%;
                height:51px;
                padding:10px 0;
            }
            .cta-text-left{
                text-align: center;
                font-size: 1.4rem;
                font-weight: 700;
            }
            .cta-inner-center{
                background-color: #f79f21; 
                width:65%;
                position: absolute;
                z-index: -10;
                height: 51px;
            }
            .cta-inner-right{
                color: #ffc417; 
                background-color: #ed1a3b; 
                width:100%;
                position: absolute;
                z-index: -11;
                padding: 5px;
            }
            .cta-text-right{
                background-color: #ffc417; 
                padding: 5px 40px; 
                text-align:right; 
                color: black; 
                margin-left:70%; 
                font-size: 1.3em;
                font-weight: 600; 
                display: inline-block;
            }
            .navbar.active{
                margin-top:50px;
            }
            .cta-emoji{
                font-size: 30px;
                display: inline-block;
                margin-top: -15px;
                animation: crescendo 0.5s alternate infinite ease-in;
            }
            @keyframes crescendo {
                0%   {transform: translateX(80%);}
                100% {transform: translateX(0);}
            }
            .navbar{
                margin-top:40px;
            }
            .cta-text-right a{
                color:black;
            }

            @media(max-width:1112px){
                .cta-text-right{
                   
                   margin-left: 63%;
                }
                .cta-inner-center{
                    
                    width: 60%;
                }
                .cta-inner-left{
                    
                    width: 58%;
                }
                .cta-text-left{
                    font-size: 1.3em;
                }
            }

            @media(max-width:890px){
                .cta-text-left{
                    font-size: 17px;
                }
                .cta-text-right{
                   font-size: 1rem;
                   margin-left: 63%;
                }
                .cta-inner-center{
                    height: 44px;
                    width: 60%;
                }
                .cta-inner-left{
                    height: 44px;
                    width: 58%;
                }
            }
            @media(max-width:753px){
                .cta-text-left{
                    font-size: 15px;
                    padding-left:1em;
                }
                .cta-text-right{
                    margin-left:63%; 
                    padding: 5px 8px;
                    
                }
                .main-content {
                    padding-top: 2em !important;
                }
            }

            @media(max-width:653px){
                .cta-text-left{
                    font-size: 0.9em;
                    padding-left:1em;
                }
                .cta-inner-left{
                    padding: 5px 10px;
                }
            }
            
            @media(max-width:586px){
                    .cta-inner-right{
                        height: 44px;
                    }
                    .cta-inner-center{
                        width: 50%;
                    }
                    .cta-inner-left{
                        width: 48%;
                    }
                    .cta-text-right{
                    margin-left:55%; 
                    padding: 5px 8px;
                    font-size: 14px;
                    }
                }
            
            @media(max-width:468px){
                    .cta-text-left{
                        font-size: 13px;
                    }
            }    

            @media(max-width:436px){
                .cta-download{
                    font-size: 12px;
                }
                .cta-text-left{
                    font-size: 12px;
                }
                .cta-inner-right, .cta-inner-center, .cta-inner-left{
                    height: 50px;
                }
            }

            @media(max-width:388px){
                .cta-text-right{
                    margin-left: 52%;
                    padding: 5px;
                    width: 35%;
                    text-align: center;
                    line-height: 15px;
                }
            }
           
            /*animation*/

            .anim1 {
                    position: absolute;
                    left: -2000px;
                    -webkit-animation: slide 0.5s forwards;
                    -webkit-animation-delay: 2s;
                    animation: slide 0.5s forwards;
                    animation-delay: 0s;
                }
            
            .anim2 {
                position: absolute;
                left: -2000px;
                -webkit-animation: slide 0.5s forwards;
                -webkit-animation-delay: 2s;
                animation: slide 0.5s forwards;
                animation-delay: 0.3s;
            } 
            

                @-webkit-keyframes slide {
                    100% { left: 0; }
                }

                @keyframes slide {
                    100% { left: 0; }
                }