body{
    display: grid;
    padding: 0%;
    margin: 0%;
    max-width: 100%;
}

    /* header */
    .header{
        background-color: rgba(10, 47, 143, 1);
        /* font-family: 'Rubik Bubbles'; */
        display: grid;
        padding: 50px 100px 10px 100px;
        justify-items: center;   
    }
    .header>h2{
        color: #FFF;
        font-family: Rubik Bubbles;
        font-size: 3em;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }      
    .head{
        display: grid;
        grid-template-columns: 365px 1fr 380px;
        margin-top: 62px;
        margin-bottom: 53px;
        gap: 45px;       
    }
    .headinfo{
        max-width: 100%;
    }
    .headinfo>div{
        display: grid;
        grid-template-columns: 80px 1fr;
        align-items: center;
        margin-top: 25px;
    }
    .contact{
        width: 45px;
        height: 45px;
    }
    .headinfo>p{
        color: #FFF;
        font-family: Rubik;
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .headinfo>div>a{
        color: #FFF;
        font-family: Rubik;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
    }
    .headinfo>div>a:hover{
        color: rgba(255, 145, 77, 1);  
    }
    .logohead{
        max-width: 100%;
    }
    .logohead>img{
        max-width: 100%;
        max-height: 100%;
    }
    .search{
        display: grid;
        grid-template-rows: 2fr 1fr;
        max-width: 100%;
        padding-right: 20px;
    }
    .search>a{
        color: #FFF;
        font-family: Rubik;
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
    }
    .search>a:hover{
        color: rgba(255, 145, 77, 1);    
    }
    #specialButton{
        padding-top: 25px;
    }
    /* header */

    /* nav */
    .container-fluid{
        align-items: center;
        color: #000;
        font-family: Rubik Bubbles;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .collapse.navbar-collapse{
        display: grid;
        padding: 22px 93px 22px 93px;
        gap: 306px;
    }  
    .collapse>ul{
        margin: 0px;
        padding: 0px;
    }
    .collapse>ul.li>a{
        
        padding: 0px;
    }
    svg{
        display: none;
    }
    .navbar-nav{
        gap: 55px;
    }
    *, *:before, *:after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    .btnnav { 
        text-align: center;
        border-radius: 30px;
    }
    .blob-btn-nav {
        z-index: 1;
        position: relative;
        padding: 10px 26px;
        text-align: center;
        color: #ededf7;
        font-family: Rubik Bubbles;
        font-size: 15px;
        font-weight: normal;
        background-color: transparent;
        outline: none;
        border: none;
        transition: color 0.5s;
        cursor: pointer;
        border-radius: 30px;
    }
    .blob-btn-nav:before {
        content: "";
        z-index: 1;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border: 2px solid #0505A9;
        border-radius: 30px;
    }
    .blob-btn-nav:after {
        content: "";
        z-index: -2;
        position: absolute;
        left: 3px;
        top: 3px;
        width: 100%;
        height: 100%;
        transition: all 0.3s 0.2s;
        border-radius: 30px;
    }
    .blob-btn-nav:hover {
        color: #FFFFFF;
        border-radius: 30px;
    }
    .blob-btn-nav:hover:after {
        transition: all 0.3s;
        left: 0;
        top: 0;  
        border-radius: 30px;
    }
    .blob-btn__inner-nav {
        z-index: -1;
        overflow: hidden;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 30px; 
        background:#0505A9;
    }
    .blob-btn__blobs-nav {
        position: relative;
        display: block;
        height: 100%;
        filter: url("#goo");
    }
    .blob-btn__blob-nav {
        position: absolute;
        top: 2px;
        width: 25%;
        height: 100%;
        background: rgba(255, 145, 77, 1); 
        border-radius: 100%;
        transform: translate3d(0, 150%, 0) scale(1.7);
        transition: transform 0.45s;
    }
    @supports (filter: url("#goo")) {
        .blob-btn__blob-nav {
        transform: translate3d(0, 150%, 0) scale(1.4);
        }
    }
    .blob-btn__blob-nav:nth-child(1) {
        left: 0%;
        transition-delay: 0s;
    }
    .blob-btn__blob-nav:nth-child(2) {
        left: 30%;
        transition-delay: 0.08s;
    }
    .blob-btn__blob-nav:nth-child(3) {
        left: 60%;
        transition-delay: 0.16s;
    }
    .blob-btn__blob-nav:nth-child(4) {
        left: 90%;
        transition-delay: 0.24s;
    }
    .blob-btn-nav:hover .blob-btn__blob {
        transform: translateZ(0) scale(1.7);
    }
    @supports (filter: url("#goo")) {
        .blob-btn-nav:hover .blob-btn__blob-nav {
        transform: translateZ(0) scale(1.4);
        }
    }
/* nav */

  /* main */
.container_doc{
    max-width: 100%;
    padding: 120px 100px 50px 100px; 
}
.container_doc>p{
    text-align: center;
    color: #000;
    text-decoration: none;
    font-family: Rubik;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.container_doc>h1{
    text-align: center;
    padding-bottom: 40px;
    color: #000;
    font-family: Rubik;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.container_doc>h3{
    text-align: center;
    padding-bottom: 40px;
    color: #000;
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.table_pupil{
    max-width: 100%;
}
    tr{
        color: #000;
        text-align: center;
        font-family: Rubik;
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    th{
        background-color: #0505A9;
        color: #ffffff;
        text-align: center;
        padding: 20px 3px 20px 3px;    
    }
    td{
        background-color: #ffe0cb;
        /* padding: 20px 5px 20px 5px;  */
    }

/* main */

        /* footer */

        .footer{
            background-color: rgba(10, 47, 143, 1);
            color: #FFF;
            font-family: Rubik;
            font-size: 1em;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            text-decoration: none;
        }
        /* footer */

/* for mobile */
@media screen and (max-width: 760px){
     /* header */
    .header{
        display: grid;
        padding: 50px 30px 10px 30px;
        justify-content: center;
    }
    .header>h2{
        text-align: center;
        font-size: 26px;
    }  
    .head{
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 1fr 1fr 1fr;
        margin-top: 50px;
        margin-bottom: 50px;
        gap: 50px;
    }
    .headinfo{
        justify-self: center;
        grid-column: 1 / 1;
        grid-row: 2 / 3;
    }
    .headinfo>div{
        display: grid;
        grid-template-columns: 40px 1fr;
        margin-top: 25px;
    }
    .contact{
        width: 25px;
        height: 25px;
    }
    .headinfo>p{ 
        font-size: 18px;
    }
    .headinfo>div>a{
        font-size: 16px;
    }
    .logohead{
        grid-column: 1 / 1;
        grid-row: 1 / 1;
    }
    .search{
        display: grid;
        text-align: center;
        grid-column: 1 / 1;
        grid-row: 3 / 4;
    }
    .search>a{
        font-size: 18px;
    }
    /* header */

/* nav */

.container-fluid{
    font-size: 12px;
}
.collapse.navbar-collapse{
    display: grid;
    padding: 0px 0px 0px 0px;
    gap: 0px;
} 
.btnnav {
    text-align: left;
    border-radius: 30px;
}
.navbar-nav{
    gap: 15px;
}
/* nav */

  /* main */
.container_doc{
    max-width: 100%;
    padding: 50px 5px 50px 5px;
    
}
.container_doc>h1{
    text-align: center;
    padding-bottom: 50px;
    color: #000;
    font-family: Rubik;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.container_doc>h3{
    text-align: center;
    padding-bottom: 20px;
    color: #000;
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.container_doc>p{
    padding-bottom: 20px;
    color: #000;
    text-decoration: none;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.table_pupil{ 
    max-width: 100%; 
}
    tr{
        color: #000;
        text-align: center;
        font-family: Rubik;
        font-size: 8px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    th{
        background-color: #0505A9;
        color: #ffffff;
        text-align: center;
        padding: 10px 3px 10px 3px;   
    }
    td{
        background-color: #ffe0cb;
        padding: 10px 3px 10px 3px;
    }
/* main */

    /* footer */
    /* footer */
}
/* for mobile */

/* for laptop */
@media screen and (max-width: 1242px) and (min-width:761px) {
    /* header */
    .header{
        display: grid;
        padding: 70px 40px 30px 40px;
        justify-content: center; 
    }
    .header>h2{
        text-align: center;
        font-size: 30px;
    }
    .head{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        margin-top: 50px;
        margin-bottom: 50px;
        gap: 20px;
    } 
    .headinfo>div{
        display: grid;
        grid-template-columns: 40px 1fr;
        margin-top: 25px;
    }
    .contact{
        width: 25px;
        height: 25px;
    }
    .headinfo>p{ 
        font-size: 14px;
    }
    .headinfo>div>a{
        font-size: 14px;
    }
    .search{
        display: grid;
        grid-template-rows: 1fr 40px;
        padding-right: 25px;
    }
    .search>a{
        font-size: 14px;
    }
   /* header */

   /* nav */
.container-fluid>div>ul>li>a{
    align-items: center;
    color: #000;
    font-family: Rubik Bubbles;
    font-size: 12px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}
.collapse.navbar-collapse{
    display: grid;
    margin: 0px;
    padding: 22px 40px 22px 40px;
    font-size: 12px;
    gap: 10px;
}
.collapse>ul{
    margin: 0px;
    padding: 0px;
    align-items: center;
} 
    .btnnav{
        align-self: center;
    }
    .navbar-nav{
        gap: 20px;
    }
    .blob-btn-nav {
        padding: 15px 20px;
        margin: 0px;
        font-size: 12px;
    }
   /* nav */

 /* main */
.container_doc{
    max-width: 100%;
    padding: 100px 40px 50px 40px;
    
}
.container_doc>h1{
    padding-bottom: 50px;
    color: #000;
    font-family: Rubik;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.container_doc>p{
    padding-bottom: 20px;
    color: #000;
    text-decoration: none;
    font-family: Rubik;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.table_pupil{ 
    border: 1px solid black;
    border-collapse: collapse;
}
    tr{
        border: 1px solid black;
        color: #000;
        text-align: center;
        font-family: Rubik;
        font-size: 10px;
        font-style: normal;
        font-weight: 100;
        line-height: normal; 
    }
    th{
        border: 1px solid black;
        background-color: #0505A9;
        color: #ffffff;
        text-align: center;
        padding: 10px 2px 10px 2px;   
    }
    td{
        border: 1px solid black;
        background-color: #ffe0cb;
        padding: 10px 2px 10px 2px;  
    }
/* main */

    /* footer */
    /* footer */

}
/* for laptop */

/* for large */
@media screen and (min-width:1800px) {
    /* header */
    .header{
        display: grid;
        padding: 70px 150px 30px 150px;
        justify-content: center; 
    }
    .header>h2{
        text-align: center;
        font-size: 50px;
    }
    .head{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        margin-top: 100px;
        margin-bottom: 100px;
        gap: 60px;
    } 
    .headinfo>div{
        display: grid;
        grid-template-columns: 80px 1fr;
        margin-top: 50px;
        padding-right: 0px;
    }
    .contact{
        width: 45px;
        height: 45px;
    }
    .headinfo>p{ 
        font-size: 24px;
    }
    .headinfo>div>a{
        font-size: 24px;
    }
    .search{
        display: grid;
        grid-template-rows: 2fr 1fr;
        padding-right: 25px;
    }
    .search>a{
        font-size: 24px;
    }
   /* header */

   /* nav */
.container-fluid>div>ul>li>a{
    align-items: center;
    color: #000;
    font-family: Rubik Bubbles;
    font-size: 22px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}
.collapse{
    display: grid;
    margin: 22px 50px 22px 50px;
    padding: 22px 50px 22px 50px;
    font-size: 22px;
    gap: 0px;
}
.collapse>ul{
    align-items: center; 
}
.collapse>ul>li{
    margin-right: 85px;
}
    .btnnav{
        align-self: center;
    }
    .navbar-nav{
        gap: 20px;
    }
    .blob-btn-nav {
        padding: 20px 25px;
        margin: 0px;
        font-size: 20px;
    }
   /* nav */

 /* main */
.container_doc{
    max-width: 100%;
    padding: 150px 150px 50px 150px;
    
}
.container_doc>h1{
    text-align: center;
    padding-bottom: 70px;
    color: #000;
    font-family: Rubik;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.container_doc>p{
    padding-bottom: 20px;
    color: #000;
    text-decoration: none;
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

}
.table_pupil{
    border: 1px solid black;
    border-collapse: collapse;
}
    tr{
        border: 1px solid black;
        color: #000;
        text-align: center;
        font-family: Rubik;
        font-size: 14px;
        font-style: normal;
        font-weight: 100;
        line-height: normal;
    }
    th{
        border: 1px solid black;
        background-color: #0505A9;
        color: #ffffff;
        text-align: center;
        padding: 15px 5px 15px 5px; 
    }
    td{
        border: 1px solid black;
        background-color: #ffe0cb;
        padding: 15px 5px 15px 5px;    
    }
/* main */


    /* footer */
    .footer{
        padding: 50px 150px 60px 150px;
        margin-top: 50px;
        gap: 10px;
        font-size: 20px;
    }
    /* footer */

}
/* for large */