html,body { 
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    background-color: rgb(252, 252, 252);
    font-family: "Kanit", sans-serif;
    font-style: normal;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Form */
/* For Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.validation-error, #terms-error, .error-mesg{
    color: rgb(255, 89, 89);
    font-weight: 300;
}
.error-mesg{
    display: block;
}
.readonly{
    background-color: rgb(248, 248, 248);
}
.inp-title{
    font-weight: 200;
    margin-top: 10px;
}
.inp-field-t1{
    width: 100%;
    max-width: 100%;
    padding: 12px 15px 12px 15px;
    margin: 10px 0px 5px 0px;
    font-size: 17px;
    font-weight: normal;
    outline: none;
    border: 1px solid rgb(239, 239, 239);
    border-radius: 5px;
}
.inp-btn-t1, .inp-btn-t4{
    color: white;
    outline: none;
    border: 1px solid #122E45;
    font-size: 16px;
    background-color: #122E45;
    padding: 8px 15px 8px 15px;
    border-radius: 5px;
    margin: 10px;
    cursor: pointer;
    transition: 0.6s;
}
.inp-btn-t4{
    border-radius: 25px !important;
    text-decoration:none;
}
.inp-btn-t1:hover, .inp-btn-t4:hover{
    color: #122E45;
    background-color: white;
    border: 1px solid #122E45;
}
.inp-btn-t2{
    color: #122E45;
    outline: none;
    border: 1px solid #122E45;
    font-size: 16px;
    background-color: white;
    padding: 8px 15px 8px 15px;
    border-radius: 20px;
    margin: 2px;
    cursor: pointer;
    transition: 0.6s;
}
.inp-field-t2{
    width: 100%;
    max-width: 100%;
    padding: 18px 30px 18px 30px;
    margin: 10px 0px 5px 0px;
    font-size: 17px;
    font-weight: normal;
    outline: none;
    border: 1px solid rgb(239, 239, 239);
    border-radius: 50px;
}
.inp-btn-t3{
    color: #fff;
    border: 1px solid #122E45;
    font-size: 16px;
    background-color: #122E45;
    padding: 10px 18px;
    border-radius: 20px;
    margin: 0;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    right: 95px;
    top: 3px;
}
.inp-btn-t3:hover{
    color: #122E45;
    background-color: #fff;
    border: 1px solid #122E45;
}
.action-btn{
    border: none;
    outline: none;
    background-color: transparent;
    color: #122E45;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
    transition: 0.6s;
}
.action-btn:hover{
    color: #173d5d;
}
.action-btn2{
    border: none;
    outline: none;
    background-color: transparent;
    color: rgb(255, 64, 64);
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
    transition: 0.6s;
    position: relative;
    top: -1px;
}
.action-btn2:hover{
    color: rgb(255, 92, 92);
}

/* Loader Screen */
#loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
#loader-screen img {
    width: 80px;
    height: 80px;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Main Section */
.main-b-parent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    width: 100%;
} 
.main-b-parent .div1 {
    background-color: #122E45;
    grid-row: span 5 / span 5;
    padding: 20px;
    margin:10px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.08);
}
.main-b-parent .div2 {
    grid-column: span 4 / span 4;
    grid-row: span 5 / span 5;
}

/* Side Panel */
.side-panel {
    width: 100%;
    height: 100vh;
    padding: 20px 0px 20px 0px;
    font-family: 'Inter', Arial, sans-serif;
}
.side-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.side-panel li {
    padding: 14px 22px;
    color: #f5f5f5;
    font-size: 17px;
    border-radius: 12px;
    margin-bottom: 8px;
    cursor: pointer;
}
.sp-ele-parent {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 4px;
}
.sp-ele-parent .sp-ele-parent-div2 {
    grid-column: span 4 / span 4;
}
.sp-ele-parent .sp-ele-parent-div1 {
    font-size: 20px;
    text-align: center;
}
.sp-ele-parent .sp-ele-parent-div1 i {
    color: white;
}
.side-panel li.slide-el-active,
.side-panel li:hover {
    background: #244A6D; /* Slightly lighter navy on active/hover */
    color: #fff;
}
.side-panel a{
    color: #fff;
    text-decoration: none;
}
.sp-ele-parent-div2 .new-mesg{
    display: block;
    padding: 3px;
    margin: 5px 0px 5px 0px;
    color: white;
    background-color: #61bd61;
    border-radius: 5px;
    text-align: center;
}

/* Student/Campus/Faculty Registration Page */
.reg-header{
    background-color: white;
    height: 70px;
    border-bottom: 4px solid #122E45;
}
.reg-header img{
    background-color: white;
    margin: 0;
    position: absolute;
    top: 11%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #122E45;
    padding: 5px;
}
.reg-m-div{
    background-color: white;
    width: 60%;
    border-radius: 16px;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.08);
    border-top: 6px solid #244A6D;
}
.reg-m-div-icon{
    text-align: center;
}
.reg-m-div-icon i{
    font-size: 70px;
    color: #122E45;
}
.reg-m-div-head{
    color: #122E45;
    font-size: 30px;
    padding-bottom: 20px;
    font-weight: 300;
    text-align: center;
    border-bottom: 2px solid rgb(239, 239, 239);
}
.reg-m-div-foot{
    font-size: 15px;
    padding-top: 10px;
    font-weight: 300;
    text-align: center;
    color: rgb(120, 120, 120);
    border-top: 2px solid rgb(239, 239, 239);
}
.reg-m-div-body{
    padding: 20px 10px 20px 10px;
}

/* Registration Page Form */
.reg-f-inp-title{
    font-weight: 200;
    margin-top: 10px;
}
.reg-f-inp-parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 8px;
}
.reg-f-inp-parent2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 8px;
}
.reg-f-condition{
    margin: 20px 0px 10px 0px;
}
.reg-f-condition a{
    color: black;
}

/* Login Page */
.log-m-div{
    background-color: white;
    width: 50%;
    border-radius: 20px;
    margin-top: 150px;
    margin-bottom: 150px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.08);
}
.log-m-div-head{
    color: #122E45;
    font-size: 30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: center;
    border-bottom: 2px solid rgb(239, 239, 239);
}
.log-m-div-foot{
    font-size: 15px;
    padding-top: 10px;
    font-weight: 300;
    text-align: center;
    color: rgb(120, 120, 120);
    border-top: 2px solid rgb(239, 239, 239);
}
.log-m-div-body{
    margin-bottom: 20px;
}
.log-forgot-btn{
    margin: 5px 0px 5px 0px;
}
.log-back-btn{
    margin: 5px 0px 20px 0px;
    text-align: center;
}
.log-forgot-btn a, .log-back-btn a{
    color: #122E45;
    text-decoration: none;
}
#ft-login{
    display: none;
}
#log-student-form2, #log-faculty-form2{
    display: none;
}

/* footer */
footer {
    background-color: #122E45;
    border-top: 1px solid white;
}
.footer-logo{
    width: 90%;
    text-align: left;
}
.footer-logo img{
    margin-top: 20px;
    margin-bottom: -40px;
    width: 300px;
}
.footer-section1 {
    width: 90%;
    margin-top: 20px;
    padding-bottom: 20px;
}
.footer-sec1-sub {
    display: inline-block;
    margin: 10px 20px 10px 20px;
}
.foot-sub1,
.foot-sub2,
.foot-sub3,
.foot-sub4 {
    float: left;
}
.foot-sub1{
    width: 25%;
}
.foot-sub2,
.foot-sub3,
.foot-sub4 {
    width: 20%;
}
.foot-heading {
    font-size: 25px;
    font-weight: bold;
    color: white;
    text-align: left;
}
.foot-about {
    color: white;
    font-size: 14px;
    text-align: justify;
}
.foot-ul1 {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
}
.foot-ul1 li {
    margin-top: 15px;
    color: white;
}
.foot-ul1 a {
    color: white;
    text-decoration: none;
}
.footer-copy {
    display: inline-block;
    color: white;
    width: 90%;
    margin-bottom: 40px;
    border-top: 1px solid white;
    padding: 10px;
}
.foot-copy-l {
    float: left;
    display: inline;
}
.foot-copy-l a{
    color: white;
}
.foot-social-link a, .foot-social-link a i{
    color: white;
    text-decoration: none;
}
.foot-social-link a i{
    color: white;
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
}

/* Legal Page */
.legal{
    width: 90%;
    margin: 10px;
    margin-top: 20px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

/* Dashboard Main Page */
.dash-header{
    width: 100%;
    height: 70px;
    background-color: white;
    border-bottom: 4px solid #122E45;
}
.dash-header a{
    text-decoration: none;
}
.dash-header .dash-header-div1{
    display: inline-block;
    margin-left: 40px;
}
.dash-header .dash-header-div1 img{
    width: 200px;
}
.dash-header .dash-header-div2{
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 20px;
}
.dash-header .dash-header-div2 img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #122E45;
}
.dash-header .dash-header-div2 i{
    position: relative;
    top: -10px;
}
.dash-header .dash-header-div2 i:nth-child(1){
    font-size: 20px;
}
.dash-header-div2-i, .dash-header-div2-ii{
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    color: #122E45;
}
.dash-h-div2-i-menu{
    width: 200px;
    overflow: hidden;
    display: none;
    position: absolute;
    right: 10px;
    background-color: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.08);
}
.dash-h-div2-i-menu ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.dash-h-div2-i-menu ul li{
    padding: 3px 25px 3px 10px;
    border-radius: 5px;
    transition: 0.6s;
}
.dash-h-div2-i-menu ul li:hover{
    background-color: whitesmoke;
}
.dash-h-div2-i-menu ul li a{
    color: #122E45;
}
.dash-right-section{
    padding: 30px;
    margin-bottom: 100px;
}
.dash-r-section-heading{
    font-size: 40px;
    color: #122E45;
    font-weight: 300;
    border-bottom: 1px solid #122E45;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.dash-r-section-head-p{
    font-size: 16px !important;
    display: block;
    margin-bottom: 10px;
}
.dash-r-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 16px;
    padding: 20px;
}
.dash-r-card .dash-r-card-div{
    background-color: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.08);
    border: 2px solid whitesmoke;
    transition: 0.6s;
}
.dash-r-card .dash-r-card-div:hover{
    box-shadow: none;
}
.dash-r-card .dash-r-card-div a{
    text-decoration: none;
}
.dash-r-card-internal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 8px;
}
.dash-r-card-i-div1{
    text-align: center;
}
.dash-r-card-i-div2 {
    grid-column: span 4 / span 4;
    text-align: left;
    color: rgb(87, 87, 87);
}
.dash-r-card-i-div2 div:nth-child(1) {
    font-size: 22px;
    font-weight: bold;
}
.dash-r-card-i-div1 i{
    font-size: 50px;
}
.dash-r-card-chart, .dash-r-card-f-open{
    color: #244A6D;
}
.dash-r-card-bell, .dash-r-card-file-t-o{
    color: #4AB889;
}
.dash-r-card-bell2{
    color: #F4AC3D;
}
.dash-r-card-book{
    color: #A5A3FF;
}
.dash-r-card-question, .dash-r-card-cube, .dash-r-card-c-circle{
    color: #68A0FF;
}
.dash-r-card-c-o-n, .dash-r-card-c-s-o{
    color: cadetblue;
}
.dash-r-card-flask{
    color: #F4AC3D;
}
.noti-panel, .notes-panel, .c-ques-panel, .u-csv-panel{
    display: none;
    width: 60%;
    height: 400px;
    margin: 0;
    position: absolute;
    top: 55%;
    left: 60%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.08);
    overflow-y: scroll;
    padding: 20px 0px;
}
.off-noti-panel, .off-notes-panel, .off-c-ques-panel, .off-u-csv-panel{
    font-size: 22px;
    float: right;
    margin: 10px;
    cursor: pointer;
}
.no-result{
    text-align:center;
    display:block;
    font-size:22px;
    margin-top:100px;
    margin-bottom: 50px;
}

/* Notification */

.noti-grid-parent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 4px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.08);
    border-radius: 20px;
    padding: 10px;
    padding-left: 20px;
}
.noti-grid-p-div1 {
    grid-column: span 4 / span 4;
}
.noti-grid-p-div2 {
    grid-column-start: 5;
}
.no-noti{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}
        

/* Dashboard Account Page */
.acc-form{
    width: 70% !important;
}

/* Curriculum & Subject Page */
.curri-frame1 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 4px;
    text-align: center;
    border-bottom: 1px solid #244A6D;
    padding: 20px;
    padding-bottom: 40px;
    margin: 10px;
}
.curri-frame1-gen{
    border: 1px solid #244A6D;
    padding: 10px;
}
.curri-frame-bg{
    background-color: whitesmoke;
    font-weight: 500;
}
.curri-frame-justify{
    text-align: justify;
}
.curri-frame1-div2 {
    grid-column: span 2 / span 2;
}
.curri-frame1-div3 {
    grid-column: span 2 / span 2;
    grid-column-start: 4;
}
.curri-frame1-div4 {
    grid-column: span 2 / span 2;
    grid-column-start: 6;
}
.curri-frame1-div5 {
    grid-row-start: 2;
}
.curri-frame1-div6 {
    grid-column: span 2 / span 2;
    grid-row-start: 2;
}
.curri-frame1-div7 {
    grid-column: span 2 / span 2;
    grid-column-start: 4;
    grid-row-start: 2;
}
.curri-frame1-div8 {
    grid-column: span 2 / span 2;
    grid-column-start: 6;
    grid-row-start: 2;
}
.curri-frame1-div9 {
    grid-column: span 2 / span 2;
    grid-row-start: 3;
}
.curri-frame1-div10 {
    grid-column: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 3;
}
.curri-frame1-div12 {
    grid-column-start: 6;
    grid-row-start: 3;
}
.curri-frame1-div13 {
    grid-column-start: 7;
    grid-row-start: 3;
}
.curri-frame1-div14 {
    grid-column: span 2 / span 2;
    grid-row-start: 4;
}
.curri-frame1-div15 {
    grid-column: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 4;
}
.curri-frame1-div16 {
    grid-column-start: 6;
    grid-row-start: 4;
}
.curri-frame1-div17 {
    grid-column-start: 7;
    grid-row-start: 4;
}

.curri-frame2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 4px;
    text-align: center;
    border-bottom: 1px solid #244A6D;
    padding: 20px;
    padding-bottom: 40px;
    margin: 10px;
}
.curri-frame2-div1 {
    grid-column: span 4 / span 4;
}
.curri-frame2-div3 {
    grid-column: span 3 / span 3;
}

.curri-frame3 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 4px;
    text-align: center;
    border-bottom: 1px solid #244A6D;
    padding: 20px;
    padding-bottom: 40px;
    margin: 10px;
}
.curri-frame3-div1 {
    grid-column: span 5 / span 5;
}
.curri-frame3-div3 {
    grid-column: span 4 / span 4;
}

/* Ebooks and Notes, Question Bank Page */
.notes-e-grid-gen{
    border: 1px solid #244A6D;
    padding: 10px;
}
.notes-e-grid-bg{
    background-color: whitesmoke;
    font-weight: 500;
}
.notes-e-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 4px;
    text-align: center;
    padding: 20px;
    padding-bottom: 40px;
    margin: 10px;
}
.notes-e-grid-div3 {
    grid-column: span 3 / span 3;
}
.notes-e-grid-div4 {
    grid-column-start: 6;
}
.panel-heading{
    font-size: 25px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid whitesmoke;
}
#u-notes-form, #c-ques-form, #u-ques-csv-form{
    width: 80%;
    margin: 20px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.mcq-box, .sans-box{
    display: none;
}
.mcq-parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    font-weight: 200;
}
.mcq-p-div5 {
    grid-column: span 2 / span 2;
}
.mock-w-ans{
    background-color: lightcoral;
    padding: 10px;
    border-radius: 10px;
}
.mock-ans{
    background-color: lightgreen;
    padding: 10px;
    border-radius: 10px;
}
.create-t-m-div, .preview-test-div{
    background-color: white;
    width: 80%;
    border-radius: 20px;
    margin-top: 50px;
    margin-bottom: -20px;
    margin-left: auto;
    margin-right: auto;
    padding: 35px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.08);
    border-top: 5px solid #244A6D;
}
.preview-t-title{
    font-size: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding: 10px 0px;
    margin-bottom: 20px;
    border-bottom: 2px solid whitesmoke;
}
.preview-t-instruct{
    font-weight: 300;
}
.create-t-title{
    font-size: 25px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding: 10px 5px;
    margin-bottom: 20px;
    border-bottom: 1px solid whitesmoke;
}
.c-t-head-p {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 8px;
}  
.c-t-head-p-div1 {
    grid-column: span 4 / span 4;
    padding: 10px;
}
.c-t-head-p-div2 {
    grid-column: span 2 / span 2;
    grid-column-start: 5;
    border-left: 2px solid whitesmoke;
    padding: 10px;
}
.c-t-head-p-div2 ul{
    font-weight: 300;
}

/* Google Graph */
#piechart{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
#accuracy_chart, #stacked_chart, #last_pie{
    width: 90%;
    height: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Analytics Page */
.analytics-head{
    font-size: 20px;
    font-style: italic;
}

/* AI Page */
.ai-p-form{
    position: fixed;
    left: 65%;               
    transform: translateX(-50%);
    bottom: 8px;
    width: 70vw;               
    max-width: 900px;        
    min-width: 300px;
    box-sizing: border-box;
    z-index: 999;             
}
.ai-p-form form{
    display: grid;
    grid-template-columns: 1fr auto;  
    column-gap: 10px;
    align-items: center;
}
.ai-warn{
    text-align: center;
    font-weight: 200;
    font-size: 14px;
}
.ai-think-scr{
    text-align: center;
    padding-top: 150px;
    display: none;
}
.ai-think-scr3{
    display: none;
    padding: 50px;
    width: 90%;
    height: 400px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
    overflow-y: scroll;
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    scrollbar-width: none; /* For Firefox */
}
.ai-think-scr3::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}
.ai-think-scr2{
    text-align: center;
    padding-top: 150px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.ai-auto-ques{
    padding: 15px 20px;
    font-weight: 300;
    border-radius: 50px;
    margin: 4px;
    background-color: whitesmoke;
    border: 1px solid white;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.08);
    display: inline-block;
    transition: 0.6s;
    cursor: pointer;
}
.ai-auto-ques:hover{
    box-shadow: none;
}
.ai-think-loader {
    width: 48px;
    height: 48px;
    border: 5px solid #244A6D;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    animation: pulse 1s linear infinite;
}
.ai-think-loader:after {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    border: 5px solid #244A6D;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: scaleUp 1s linear infinite;
}
@keyframes scaleUp {
    0% { transform: translate(-50%, -50%) scale(0) }
    60% , 100% { transform: translate(-50%, -50%)  scale(1)}
}
@keyframes pulse {
    0% , 60% , 100%{ transform:  scale(1) }
    80% { transform:  scale(1.2)}
}


@media only screen and (max-width: 480px) {
    .legal{
        width: 95%;
    }
    .footer-logo{
        width: 80%;
    }
    .footer-sec1-sub {
        display: block;
    }
    .foot-sub1,
    .foot-sub2,
    .foot-sub3,
    .foot-sub4 {
        width: 90%;
    }
    .foot-sub4 {
        margin-bottom: 30px;
    }
}