*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body{
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
nav{
    background-color: #0049B1;
    position: sticky;
    top: 0;
}

nav ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

nav ul li{
    padding: 0.1em 0.5em 0.1em 0.5em;
}

nav ul li a{
    position: relative;
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 1em;
}

nav ul li a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 0.35rem;
    background: #74aeff;
    left: 0;
    bottom: 0;
    transform: scale(0, 1);
    transition: transform 0.4s ease-out;
}

nav ul li a:hover::after{
    transform: scale(1, 1);
}

nav ul li i{
    color: white;
}

.logo1{
    height: 3.5em;
    width: 4em;
 }
 
 .logo2{
     height: 1em;
     width: 5em;
 }

 .company-logo{
     margin-right: 2em;
 }

 .nasscom-div{
    background-color: white;
    border-radius: 12px;
    margin-right: 1em;
    max-height: 3.5em;
    padding: 5px;
}
 
 .nasscom-div p{
     text-align: center;
     font-weight: 600;
     text-transform: uppercase;
 }

.navbar-toggle{
    display: none;
}

/* Page 1 */

.container-1{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 3em;
}

 .form-box{
    width: 45em;
    padding: 2em;
    border-radius: 2em;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
 }

 .form-box h2{
    color: #0049B1;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 2em;
    margin-bottom: 1em;
    border-bottom: 0.13em solid #0049B1;
 }

 .form-box .inp{
    margin-bottom: 1em;
 }

 .form-box .inp label{ 
    display: block;
    font-size: 1em;
    margin-bottom: 0.5em;
    color: #0049B1;
    letter-spacing: 1px;
 }

 .form-box .inp input{
    width: 100%;
    padding: 1em 1.2em;
    font-size: 1em;
    letter-spacing: 1px;
    border-radius: 2em;
    border: none;
    outline: none;
    color: #0049B1;
    background-color: #F4F4FC;
  }

  ::placeholder {
    color: #0049B1;
  }

  .form-box .inp-btn button{
    margin-top: 1em;
    width: 12em;
    padding: 0.6em;
    letter-spacing: 1px;
    border-radius: 2em;
    border: none;
    color: white;
    background-color: #337DE4;
    font-size: 1em;
    font-weight: bold;
    box-shadow: 0px 4px 29px -7px #337DE4;
  }

  .form-box .inp-btn button:hover{
    background-color: #1A64CB;
    transition: 0.1s;
  }

  /* Page 2 */

  .container-2{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 3em;
}

 .intern-box{
    width: 45em;
    padding: 2em;
    border-radius: 2em;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
 }

 .intern-box h2{
    color: #0049B1;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 2em;
    margin-bottom: 1em;
    border-bottom: 0.13em solid #0049B1;
 }

 .intern-box p{
    color: red;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 1.2em;
    text-align: center;
    margin-top: 1em;
 }

  .intern-box .intern .intern-details{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .intern-box .intern .intern-details .intern-img img{
    width: 18em;
    height: 14em;
 }

  .intern-box .intern .intern-details .intern-info{
    display: flex;
    flex-wrap: wrap;
  }

  .intern-box .intern .intern-details .intern-info .info1{
    margin-right: 1em;
  }

  .intern-box .intern .intern-details .intern-info .info1,.info2 h4{
    color: #0049B1;
    font-size: 20px;
  }

  .intern-box .inp-btn{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .intern-box .inp-btn button{
    padding: 1em;
    letter-spacing: 1px;
    border-radius: 2em;
    border: none;
    color: white;
    background-color: #337DE4;
    font-size: 1em;
    font-weight: bold;
    box-shadow: 0px 4px 29px -7px #337DE4;
  }

  .intern-box .inp-btn button:hover{
    background-color: #1A64CB;
    transition: 0.1s;
  }

  #modal-1, #modal-2, #modal-3{
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #000000b3;
    z-index: 1;
    overflow: auto;
    display: none;
  }

  .modalContent{
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .modal-img{
    width: 70%;
    max-width: 25em;
    max-height: 32em;
  }

  #close-1, #close-2, #close-3{
    position: absolute;
    top: 1em;
    right: 1.5em;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
  }


/* Footer */

.footer{
    background-color: #0049B1;
}

.footer-top{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
    text-align: center;
}

.footer-contents{
    flex-basis: 25%;
    padding: 4em 0;
}

.footer-contents h5{
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 1em;
}

.footer-contents a{
    padding-top: 1em;
    font-size: 0.9em;
    display: block;
    text-decoration: none;
    color: #e3e3e3;
}

.footer-contents a:hover{
    text-decoration: underline;
    color: white;
    transition: 0.3s;
}

.footer-images{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
}

.footer-images .footer-image{
    color: white;
}

.footer-bottom p{
    text-align: center;
    color: #e3e3e3;
    padding: 1em;
}

  @media (max-width: 325px){
    nav{
        background-color: #F9F9F9;
    }

    .navbar-toggle{
        display: block;
        margin-right: 1em;
        cursor: pointer;
    }

    .navbar-toggle i{
        font-size: 30px;
    }

    .nasscom-div{
        background-color: #F9F9F9;
    }

    .nasscom-div img{
        display: block;
        margin: auto;
    }

    .nasscom{
        flex: 2;
    }

    .nav-links{
        display: none;
        width: 100%;
    }

    .nav-links a, .navbar-toggle i{
        color: black;
    }

    .active{
        display: block;
    }

    .container-1{
        margin: 1em 0;
    }

    .form-box{
        box-shadow: none;
    }

    .form-box h2{
        font-size: 24px;
     }

     .form-box .inp-btn button{
        box-shadow: none;
     }

     .container-2{
        margin: 1em 0;
    }

     .intern-box{
        box-shadow: none;
        padding: 1em;
    }

    .intern-box h2{
        font-size: 24px;
     }

     .intern-box .intern .intern-details .intern-info .info1,.info2 h4{
        color: #0049B1;
        font-size: 17px;
      }

     .intern-box .inp-btn{
        flex-direction: column;
      }

      .intern-box .inp-btn button{
        width: 100%;
        margin-top: 1em;
        box-shadow: none;
      }

    .footer-contents{
        flex-basis: 100%;
    }

    .footer-image{
        flex-basis: 100%;
        text-align: center;
    }

    .footer-image img{
        display: block;
        margin: 1em auto;
    }
  }

  @media (min-width: 325px) and (max-width: 425px){
    nav{
        background-color: #F9F9F9;
    }

    .navbar-toggle{
        display: block;
        margin-right: 1em;
        cursor: pointer;
    }

    .navbar-toggle i{
        font-size: 30px;
    }

    .nasscom-div{
        background-color: #F9F9F9;
    }

    .nasscom-div img{
        display: block;
        margin: auto;
    }

    .nasscom{
        flex: 2;
    }

    .nav-links{
        display: none;
        width: 100%;
    }

    .nav-links a, .navbar-toggle i{
        color: black;
    }

    .active{
        display: block;
    }

    .container-1{
        margin: 1em 0;
    }

    .form-box{
        box-shadow: none;
    }

    .form-box h2{
        font-size: 25px;
     }

    .form-box .inp-btn button{
        box-shadow: none;
     }

     .container-2{
        margin: 1em 0;
    }

    .intern-box{
        box-shadow: none;
    }

    .intern-box h2{
        font-size: 25px;
     }

     .intern-box .intern .intern-details .intern-info .info1,.info2 h4{
        color: #0049B1;
        font-size: 17px;
      }

     .intern-box .inp-btn{
        flex-direction: column;
      }

      .intern-box .inp-btn button{
        width: 100%;
        margin-top: 1em;
        box-shadow: none;
      }

    .footer-contents{
        flex-basis: 100%;
    }

    .footer-image{
        flex-basis: 50%;
        text-align: center;
    }

    .footer-image img{
        display: block;
        margin: 1em auto;
    }

    
  }

  @media (min-width: 425px) and (max-width: 768px){
    nav{
        background-color: #F9F9F9;
    }

    .navbar-toggle{
        display: block;
        margin-right: 1em;
        cursor: pointer;
    }

    .navbar-toggle i{
        font-size: 30px;
    }

    .nasscom-div{
        background-color: #F9F9F9;
    }

    .nasscom-div img{
        display: block;
        margin: auto;
    }

    .nasscom{
        flex: 2;
    }

    .nav-links{
        display: none;
        width: 100%;
    }

    .nav-links a, .navbar-toggle i{
        color: black;
    }

    .active{
        display: block;
    }

    .intern-box .inp-btn{
        flex-direction: column;
      }

    .intern-box .inp-btn button{
        width: 100%;
        margin-top: 1em;
    }

    .intern-box .intern-details{
        flex-direction: column;
    }

    .intern-box .intern .intern-details .intern-info .info1,.info2 h4{
        color: #0049B1;
        font-size: 17px;
      }

    .footer-contents{
        flex-basis: 50%;
    }
  }


