        body{            
            height: auto;
            overflow-x:hidden;
            background:rgba(228, 228, 255, 0.329);
        }
        html{
            overflow-x: hidden;
        }
        .container{
            width: 80%;
            margin:auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            background: linear-gradient(to bottom, rgb(219, 219, 255), ghostwhite);
            padding:4% 0 4% 0;
            border-radius: 20px;
        }
        .headers{
            width: 80%;
            margin:auto;
            font-size: 1.3rem;
            color:rgb(0, 0, 109);
        }
        .container .question{
            width: 80%;
            margin:auto;
        }
        .question .faq-content{
            display: none;
            position:absolute;
            z-index: 1;
            background: ghostwhite;
            width: 95% ;
            padding:2%;
            border-radius: 10px;
            transition: 3s forwards;
            color: rgb(0, 0, 75);
            border:1px solid rgb(0, 0, 75);
            text-shadow: 0px 0px 1px rgb(0, 0, 255);
            font-size: 1.2rem;
            text-align: center;
        }
        .question{
            position: relative;
            border-radius: 15px;
            /*padding:2% 0.5% 2% 0.5%;*/
            margin-bottom: 20px !important;
            width: 100%;
        }
        .collapsible{
            height: auto;
            padding:4%;
            border-radius: 15px;
            width: 90%;
            display: flex;
            justify-content: space-between;
            border:none;
            margin: auto;
            border:1px solid rgb(0, 0, 65);
        }
        .logo{
            width: 20%;
        }
        .logo img{
            width: 100%;
        }
        
        .nav-section{
            display: flex;
            justify-content: space-between;
            width: 100%;
            position: relative;
        }
        .nav-container{
            width: 70%;
            /* border:2px solid red; */
            text-align: center;
            
        }
        .links-container{
            display: flex;
            justify-content: space-evenly;
        }
        a{
            text-decoration: none;
            font-size: 1.3rem;
            color:rgb(0, 0, 109);
        }
        *{list-style-type: none;}

        .menu{
            display: none;
            font-size: 1.3rem;
            margin:3px;
            color:rgb(0, 0, 53);
        }
        @media only screen and (max-width:760px){
            .logo{
                width: 30%;
            }
            .container{
                width: 100%;
            }
            .collapsible{
                width: 100%;
            }
        }
        @media only screen and (max-width:619px){
            .nav-container{
                margin:0;
                position:absolute;
                height: auto;
                border:none;
                right: 10px;
                top: 6vh;
                padding:0;
                background-color: rgba(213, 211, 214, 0.795);
                transition: 0.5s linear;
                width: 220px;
                border-radius: 5px;
                box-shadow: 0px 0px 5px rgb(0, 0, 0);
            }
            .links-container{
                flex-direction: column;
                text-align: left;
                padding: 0;
            }
            .links-container a{
                margin-bottom: 19px;
                background: rgba(240, 245, 255, 0.493);
                text-align: center;
            }
            .container{
                grid-template-columns: repeat(1, 1fr);
            }
            .question .faq-content{
                
            }
            .menu{
                display: block;
            }
            .hide{
                visibility: hidden;
                transform: translateX(120%);
                /* display: none; */
            }
        }
        .show{
            transform: translateX(0%);
            visibility: visible;
        }
        
        .foot{
            position: sticky;
            bottom:7px;
            padding:2%;
            width: 100%;
            background:rgb(111, 111, 255);
        }