@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0px;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

nav {
    margin: auto;
    width: 70%;
    background-color: rgb(230, 211, 177);
    padding: 5px;
    height: 47px
}

nav ul a li {
    font-family: "Roboto", sans-serif;
    list-style: none;
}

nav ul {
    padding-left: 2rem;
    margin-bottom: 1rem;
    margin-top: 2px;
}

nav ul a {
    text-transform: uppercase;
    text-decoration-line: none;
    font-weight: bold;
    color: white;
    margin-top: 8px;
}

a {
    text-decoration-line: none;
    color: black;
}

.home-page-banner-container {
    border-radius: 10px;
    width: 70%;
    display:flex;
    justify-content:center;
    margin:auto;
}

.html-form-container {
    width: 100%;
    background:black;
    z-index: 0;
    animation: move-twink 400s linear infinite;
    padding: 5px;
}

@keyframes move-twink {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 0 0, -10000px 6000px;
    }
}

.html-form-container .header-image img {
    width: 70%;
    margin: auto;
    align-items: center;
    display: flex;
}

.html-form-heading h2 {
    color: black;
    text-align: center;
}

.registration-heading {
    width: 100%;
    display: flex;
    margin: auto;
    background-color: #29669b;
    color: rgb(255 253 253);
    padding: 5px;
}

.registration-content {
    display: flex;
    margin: auto;
    width: 100%;
}

.registration-content .fst-content {
    width: 60%;
    background-color: transparent;
    color: rgb(204, 200, 200);
    padding: 5px;
    font-size: 15px;
    font-family: sans-serif;
    font-weight: bold;
    border-right: 2px solid rgb(204, 200, 200);
    border-top: 0.5px  solid rgb(204, 200, 200);
    border-bottom: 2px solid rgb(204, 200, 200);
}

.schedule-page {
    width: 80%;
}

iframe {
    height: 500px;
    display: flex;
    margin: auto;
    justify-content: center;
    width: 70%;
    border-radius: 10px;
    margin-top: 10px;
}

.home-page-schedule {
    display: flex;
    margin: auto;
    justify-content: center;
    width: 70%;
    padding: 20px;
    background: #ebe2e2;
    border-radius: 10px;
}

.registration-content .scnd-content {
    width: 50%;
    border-bottom: 2px solid rgb(204, 200, 200);
    border-top: 0.5px solid rgb(204, 200, 200);
    padding: 5px;
}

.registration-content .scnd-radio-content {
    width: 50%;
    border-bottom: 2px solid rgb(204, 200, 200);
    padding: 5px;
}

select {
    width: 300px;
    padding: 5px;
}

.inner-form-container {
    width: 70%;
    margin: auto;
    border: 2px solid rgb(204, 200, 200);
}

.scnd-content input {
    width: 300px;
    padding: 5px;
}

button {
    margin: auto;
    display: flex;
    padding: 5px;
    width: 115px;
    justify-content: center;
}

#same {
    margin-left: 20px;
    width: 1.4%;
}

#same_permanent {
    font-size: 18px;
}

.about-internship {
    width: 70%;
    margin: auto;
    border: 1px solid rgb(160, 159, 159);
    padding: 15px;
    background-color: rgb(235, 231, 226);
}

.about-internship .main-heading {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.contact-container-page {
    width: 100%;
}

.contact-container-page .contact-address {
    width: 70%;
    background: url('/static/images/india-map.png');
    display: flex;
    justify-content: center;
    margin: auto;
}

.contact-container-page .contact-address table {
    width: 50%;
}

.contact-container-page .contact-address .contact-query-form {
    width: 50%;
}

.razorpay-payment-button {
    display: none;
}

.footer_nav ul {
    display: flex;
    font-size: 16px;
    justify-content: center;
    list-style-type: none;
    margin-top: 10px;
}

.footer_nav ul li {
    color: #f3f4f7
}

.footer_nav a {
    text-decoration: none;
}

.footer_nav ul li::after {
    content: "|";
    margin: 5px;
}

.footer_nav_content {
    color: white;
    text-align: center;
}

  .internship-details-table{
        width:70%; 
        margin:auto;
    }
    .ongoing-workshops{
        width:70%; 
        margin:auto;
    }
   tbody tr td {
    border: 1px solid #44484d;
    font-weight: bold;
    background: black;
    color: white;
    text-transform: uppercase;
  }

  .institutions {
    width: 70%;
    margin: auto;
    border: 2px solid grey;
    padding: 10px;
    border-radius: 10px;
}
@media(max-width:1200px) {
    .footer_nav ul {
        display: flex;
        font-size: 12px;
        justify-content: center;
        list-style-type: none;
    }
}

@media(max-width:1000px) {
    .html-form-container .header-image img {
        width: 100%;
        margin: auto;
        align-items: center;
        display: flex;
    }

    .contact-container-page .contact-address {
        display: flex;
        flex-direction: column;
    }

    .contact-container-page .contact-address {
        width: 100%;
    }

    .contact-container-page .contact-address table {
        width: 100%;
    }

    .contact-container-page .contact-address .contact-query-form {
        width: 100%;
    }

    nav {
        margin: auto;
        width: 100%;
        background-color: rgb(230, 211, 177);
        padding: 10px;
    }

    .html-form-container {
        width: 100%;
    }

    .inner-form-container {
        width: 100%;
    }

    .about-internship {
        width: 100%;
    }

    iframe {
        width: 100%;
    }

    .schedule-page {
        width: 100%;
    }

    .home-page-schedule {
        display: flex;
        margin: auto;
        justify-content: center;
        width: 100%;
        padding: 20px;
        background: #ebe2e2;
        border-radius: 10px;
    }

    .home-page-banner-container {
        width: 100%;
    }
    
     .footer_nav ul {
        display: flex;
        font-size: 12px;
        justify-content: center;
        list-style-type: none;
    }
    
    .internship-details-table{
        width:100%; 
    }
    .ongoing-workshops{
        width:100%; 
    }

    .institutions {
        width: 100%;
    }
}

@media(max-width:997px) {
    .scnd-content input {
        width: 200px;
    }

    select {
        width: 200px;
    }

    h3 {
        font-size: 14px;
    }
}

@media(max-width:750px) {
    #same_permanent {
        font-size: 15px;
    }

    #same {
        width: 2%;
    }

    .schedule-page {
        overflow-x: scroll;
    }
}

@media(max-width:770px) {
    .footer_nav ul {
        display: flex;
        font-size: 12px;
        justify-content: center;
        list-style-type: none;
    }
}

@media(max-width:700px) {
    nav ul {
        font-size: 14px;
    }

    iframe {
        height: 300px;
    }
}

@media(max-width:650px) {
    nav ul {
        padding-left: 0rem;
        margin-bottom: 0rem;
        margin-top: 0px;
    }

    nav ul a {
        font-weight: normal;
        margin-top: 0px;
        font-size: 11px;
    }

    nav {
        margin: auto;
        width: 100%;
        background-color: rgb(230, 211, 177);
        height: auto;
    }

    .contact-container-page .contact-address {
        margin-top: 50px;
    }
}

@media(max-width:608px) {
    .registration-content {
        display: flex;
        flex-direction: column;
    }

    .registration-content .fst-content {
        width: 100%;
    }

    .registration-content .scnd-content {
        width: 100%;
    }

    .registration-content .scnd-content input {
        width: 100%;
    }

    .registration-content .scnd-content select {
        width: 100%;
    }
}

@media(max-width:568px) {
    .footer_nav ul {
        display: flex;
        font-size: 11px;
        justify-content: center;
        list-style-type: none;
    }
}

@media(max-width:560px) {
    .footer_nav ul {
        display: flex;
        font-size: 10px;
        justify-content: center;
        list-style-type: none;
    }
}

@media(max-width:550px) {
    #same_permanent {
        font-size: 14px;
    }

    #same {
        width: 3%;
    }
}

@media(max-width:500px) {
    nav ul {
        font-size: 12px;
    }

    .html-form-heading h2 {
        font-size: 20px;
    }
}

@media(max-width:482px) {
    .footer_nav ul {
        display: flex;
        font-size: 9px;
        justify-content: center;
        list-style-type: none;
    }
}

@media(max-width:450px) {
    #same_permanent {
        font-size: 12px;
    }

    #same {
        width: 5%;
    }

    nav ul a {
        font-size: 8px;
    }

}
@media(max-width:451px) {
    .footer_nav ul {
        display: flex;
        font-size: 8px;
        font-weight: 600;
        justify-content: center;
        list-style-type: none;
    }
}

@media(max-width:415px) {
    .footer_nav ul {
        display: flex;
        font-size: 7px;
        justify-content: center;
        list-style-type: none;
    }
}

@media(max-width:400px) {
    nav ul {
        font-size: 10.5px;
    }

    .html-form-heading h2 {
        font-size: 18px;
    }

    .about-internship .main-heading {
        text-align: center;
        font-size: 17px;
        font-weight: bold;
    }
}
@media(max-width:378px) {
    .footer_nav ul {
        display: flex;
        font-size: 6px;
        justify-content: center;
        list-style-type: none;
    }
}

@media(max-width:370px) {
    .html-form-heading h2 {
        font-size: 16px;
    }
}

@media(max-width:355px) {
    .footer_nav ul {
        display: flex;
        font-size: 6px;
        justify-content: center;
        list-style-type: none;
    }
}

@media(max-width:353px) {
    .footer_nav ul {
        display: flex;
        font-size: 5px;
        justify-content: center;
        list-style-type: none;
        padding:0px;
    }
}

@media(max-width:312px) {
    nav ul a {
        font-size: 5px;
    }
}