 body,
 html {
     width: 100%;
     margin: 0px;
     font-family: sans-serif, "Times New Roman", "Times, serif;

 }
 
 .cloud {
     width: 100%;
     height: 500px;
     background-image: url(images/cloud.jpg);
     margin-top: -60px;
 }
 
 .logo img {
     width: 200px;
     height: 150px;
     position: absolute;
     top: 40px;
     left: 40px;
 }
 
 .planet {
     width: 200px;
     height: 200px;
     position: absolute;
     top: 200px;
     left: 30px;
     animation: planet 15s linear infinite;
 }
 
 .rocket {
     position: absolute;
     left: 52%;
     top: 80%;
     display: inline-block;
     transform: translate(-50%, 80%);
     -webkit-transform: translate(-50%, 80%);
     -moz-transform: translate(-50%, 80%);
     animation-name: animate;
     -webkit-animation-name: animate;
     -moz-animation-name: animate;
     animation-duration: 8s;
     -webkit-animation-duration: 8s;
     -moz-animation-duration: 8s;
     animation-iteration-count: infinite;
     -moz-animation-iteration-count: infinite;
     -webkit-animation-iteration-count: infinite;
 }
 
 .rocket img {
     width: 200px;
     height: 200px;
 }
 
 .star0 {
     color: #fff;
     font-size: 30px;
     text-align: center;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     margin: 0px;
     padding: 0px;
     animation: shine;
     animation-duration: 2s;
     animation-iteration-count: infinite;
 }
 
 .star6 {
     color: #fff;
     font-size: 30px;
     text-align: center;
     position: absolute;
     top: 30%;
     left: 30%;
     transform: translate(0%, -50%);
     margin: 0px;
     padding: 0px;
     animation: shine;
     animation-duration: 2s;
     animation-iteration-count: infinite;
 }
 
 .star7 {
     color: #fff;
     font-size: 30px;
     text-align: center;
     position: absolute;
     top: 20%;
     left: 60%;
     transform: translate(-30%, -50%);
     margin: 0px;
     padding: 0px;
     animation: shine;
     animation-duration: 2s;
     animation-iteration-count: infinite;
 }
 
 .star8 {
     color: #fff;
     font-size: 30px;
     text-align: center;
     position: absolute;
     top: 20%;
     left: 30%;
     transform: translate(-60%, -40%);
     margin: 0px;
     padding: 0px;
     animation: shine;
     animation-duration: 2s;
     animation-iteration-count: infinite;
 }
 
 .star9 {
     color: #fff;
     font-size: 30px;
     text-align: center;
     position: absolute;
     top: 20%;
     left: 80%;
     transform: translate(-80%, -50%);
     margin: 0px;
     padding: 0px;
     animation: shine;
     animation-duration: 2s;
     animation-iteration-count: infinite;
 }
 
 .star svg {
     position: absolute;
     left: 50%;
     margin: 60px;
     animation-name: star;
     animation-duration: 4s;
     animation-iteration-count: infinite;
     border-radius: 60%;
     width: 20px;
     height: 20px;
 }
 
 @keyframes shine {
     0% {
         color: white;
     }
     25% {
         color: gray;
     }
     50% {
         color: white;
     }
     100% {
         color: yellow;
     }
 }
 
 @keyframes animate {
     0% {
         transform: translateY(180%);
         -webkit-transform: translateY(180%);
         -ms-transform: translateY(180%);
         -moz-transform: translateY(180%);
     }
     25% {
         transform: translateY(-180%);
         -webkit-transform: translateY(-180%);
         -ms-transform: translateY(-180%);
         -moz-transform: translateY(-180%);
     }
     50% {
         transform: translate(-0%, -180%) rotate(-90deg);
         -webkit-transform: translate(-0%, -180%) rotate(-90deg);
         -ms-transform: translate(-0%, -180%) rotate(-90deg);
         -moz-transform: translate(-0%, -180%) rotate(-90deg);
     }
     75% {
         transform: translate(-320%, -180%) rotate(-90deg);
         -webkit-transform: translate(-320%, -180%) rotate(-90deg);
         -ms-transform: translate(-320%, -180%) rotate(-90deg);
         -moz-transform: translate(-320%, -180%) rotate(-90deg);
     }
     100% {
         transform: translate(-380%, -200%);
         -webkit-transform: translate(-380%, -200%);
         -ms-transform: translate(-380%, -200%);
         -ms-transform: translate(-380%, -200%);
     }
 }
 
 @keyframes planet {
     0% {
         transform: rotate(0deg);
     }
     100% {
         transform: rotate(360deg);
     }
 }
 
 .india {
     color: #fff;
     height: 60px;
     background-color: black;
     text-align: justify;
     padding-left: 10px;
     padding-top: 5px;
 }
 
 .india h2 {
     color: blue;
     background-image: linear-gradient(to top, orange, white, green);
     display: inline-block;
 }
 
 .india a {
     text-decoration: none;
     color: white;
 }
 
 .venus {
     position: absolute;
     left: 70%;
     top: 10%;
     animation-name: Venus;
     animation-duration: 8s;
     animation-iteration-count: infinite;
 }
 
 @keyframes Venus {
     0% {
         transform: rotate(360deg);
         50% {
             transform: rotate(360deg);
         }
         100% {
             transform: rotate(360deg);
         }
     }
 }
 
 .path {
     animation-name: fire;
     animation-duration: 1s;
     animation-iteration-count: infinite;
 }
 
 @keyframes fire {
     0% {
         transform: translateX(-2%);
     }
     50% {
         transform: translateX(2%);
     }
     100% {
         transform: translateX(-2%);
     }
 }
 /*Strip the ul of padding and list styling*/
 
 ul {
     list-style-type: none;
     margin: 0;
     padding: 0;
     position: absolute;
 }
 /*Create a horizontal list with spacing*/
 
 li {
     display: inline-block;
     float: left;
 }
 /*Style for menu links*/
 
 .control {
     position: absolute;
     right: 200px;
     top: 10px;
     list-style: none;
     padding: 0;
     z-index: 1;
 }
 
 .control li {
     margin: 10px
 }
 
 .control li button {
     width: 40px;
     height: 40px;
     font-size: 20px
 }
 
 li a {
     display: block;
     min-width: 160px;
     height: 50px;
     text-align: center;
     line-height: 50px;
     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
     color: #fff;
     background-color: #5D6D7E;
     text-decoration: none;
 }
 /*Hover state for top level links*/
 
 .active,
 li a:hover {
     background-image: linear-gradient(to left, #FFC300, #FF5733);
     -webkit-background-image: linear-gradient(to left, #FFC300, #FF5733);
     color: #000;
 }
 /*Style for dropdown links*/
 
 li ul li {
     display: block;
     float: none;
 }
 /*Prevent text wrapping*/
 /*Style 'show menu' label button and hide it by default*/
 
 .show-menu {
     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
     text-decoration: none;
     color: #fff;
     background: #000;
     float: left;
     padding: 10px 0;
     display: none;
     font-size: 25px;
 }
 
 .design {
     transform: skewX(-24deg);
 }
 /*Hide checkbox*/
 
 input[type=checkbox] {
     display: none;
 }
 /*Show menu when invisible checkbox is checked*/
 
 input[type=checkbox]:checked~#menu {
     display: block;
     position: absolute;
 }
 /*Responsive Styles*/
 
 @media screen and (max-width: 768px) {
     /*Make dropdown links appear inline*/
     ul {
         position: static;
         display: none;
         margin-top: 60px;
     }
     /*Create vertical spacing*/
     li {
         margin-bottom: 1px;
     }
     /*Make all menu links full width*/
     ul li,
     li a {
         width: 100%;
     }
     /*Display 'show menu' link*/
     .show-menu {
         display: block;
     }
     li ul li a {
         width: 90%;
         max-width: 100%;
         padding: 0;
         margin-left: 5px;
     }
     li a {
         text-align: left;
         display: inline-block;
         margin-left: -6px;
         padding-left: 5px;
     }
     .design {
         transform: none;
     }
     .internal_column1 p {
         padding: 0px;
     }
     .control {
         position: absolute;
         left: 10px;
         top: 10px;
         list-style: none;
         padding: 0;
         z-index: 1;
     }
     .control li {
         margin: 5px
     }
     .control li button {
         width: 40px;
         height: 40px;
         font-size: 20px;
     }
     ul li a:hover:not("active") {
         50162.
     }
     .rocket {
         position: absolute;
         left: 25%;
         top: 80%;
         display: inline-block;
         transform: translate(-30%, 80%);
         animation-name: animate;
         animation-duration: 8s;
         animation-iteration-count: infinite;
         animation-timing-function: 4s;
     }
     @keyframes animate {
         0% {
             transform: translateY(180%);
         }
         25% {
             transform: translateY(-170%);
         }
         50% {
             transform: translate(-0%, -170%) rotate(-90deg);
         }
         75% {
             transform: translate(-35%, -170%) rotate(-90deg);
         }
         100% {
             transform: translate(-40%, -170%);
         }
     }
 }
 
 .ISRO {
     height: auto;
     font-family: sans-serif;
     padding: 10px;
     background-color: #000;
     color: #fff;
 }
 
 .ISRO h2 {
     display: block;
     text-decoration-color: #fff;
     padding: 15px;
     margin-top: 60px;
     color: white;
 }
 
 .ISRO p {
     text-align: justify;
     max-width: 96%;
     width: 800px;
     display: inline-block;
     margin-left: 10px;
 }
 
 .astronaut img {
     width: 100px;
     height: 100px;
     position: absolute;
     top: 20%;
     left: 50%;
     animation-name: astro;
     -webkit-animation-name: astro;
     -moz-animation-name: astro;
     animation-duration: 8s;
     -webkit-animation-duration: 8s;
     -moz-animation-duration: 8s;
     animation-iteration-count: infinite;
     -webkit-animation-iteration-count: infinite;
     -moz-animation-iteration-count: infinite;
     animation-delay: 2s;
     -webkit-animation-delay: 2s;
     -moz-animation-delay: 2s;
     animation-timing-function: linear;
     -webkit-animation-timing-function: linear;
     -moz-animation-timing-function: linear;
     z-index: 1;
 }
 
 @keyframes astro {
     0% {
         transform: translate(0%, -100%);
         width: 50px;
     }
     25% {
         transform: translate(-100%, 10%) rotate(0deg);
         width: 100px;
     }
     50% {
         transform: translate(-200%, 10%) rotate(0deg);
         width: 150px
     }
     100% {
         transform: translate(-500%, -150%) rotate(-55deg);
         width: 200px;
     }
 }
 
 @-webkit-keyframes astro {
     0% {
         transform: translate(0%, -100%);
         width: 50px;
     }
     25% {
         transform: translate(-100%, 10%) rotate(0deg);
         width: 100px;
     }
     50% {
         transform: translate(-200%, 10%) rotate(0deg);
         width: 150px
     }
     100% {
         transform: translate(-500%, -150%) rotate(-55deg);
         width: 200px;
     }
 }
 
 @-moz-keyframes astro {
     0% {
         transform: translate(0%, -100%);
         width: 50px;
     }
     25% {
         transform: translate(-100%, 10%) rotate(0deg);
         width: 100px;
     }
     50% {
         transform: translate(-200%, 10%) rotate(0deg);
         width: 150px
     }
     100% {
         transform: translate(-500%, -150%) rotate(-55deg);
         width: 200px;
     }
 }
 
 .icon-bar {
     position: fixed;
     z-index: 1;
     top: 0%;
     right: 0%;
     margin: 10px;
     transition: width 2s ease-in-out;
 }
 
 .icon-bar a {
     display: block;
     text-align: center;
     padding: 20px;
     transition: all 0.3s ease;
     color: white;
     font-size: 22px;
     text-decoration: none;
     padding: 10px;
     line-height: 16px;
     margin: 0;
     transition: 0.6s ease;
     -webkit-transition: 0.6s ease;
 }
 
 .icon-bar a:hover {
     background-color: #000;
     transition: 0.6s ease;
     -webkit-transition: 0.6s ease;
 }
 
 .facebook {
     background: #3B5998;
     color: white;
 }
 
 .twitter {
     background: #55ACEE;
     color: white;
 }
 
 .google {
     background: #dd4b39;
     color: white;
 }
 
 .linkedin {
     background: #007bb5;
     color: white;
 }
 
 .youtube {
     background: #bb0000;
     color: white;
 }
 
 .copyright {
     background-color: #5D6D7E;
     width: 100%;
     display: inline-block;
 }
 
 .copyright h2 {
     color: white;
     font-size: 15px;
     text-align: center;
     display: block;
 }
 
 .footer {
     background-color: #000;
     width: 100%;
     height: 220px;
     display: inline-block;
     margin-bottom: -4px;
     margin-top: 60px;
 }
 
 .clr {
     clear: both;
 }
 
 .slider {
     width: 100%;
     height: auto;
 }
 
 .column {
     max-width: 100%;
     width: 100%;
     background-color: white;
     margin: auto;
 }
 
 div.gallery {
     border: 1px solid #ccc;
     float: left;
     max-width: 100%;
     height: auto;
     margin: 20px 50px 20px 50px;
     font-family: montserrat;
     transition: transform 300ms;
     text-align: center;
 }
 
 div.gallery img {
     max-width: 100%;
     width: 400px;
     height: 160px;
     display: inline-block;
 }
 
 div .gallery:hover {
     border: 1px solid black;
     background-color: #000;
     color: #fff;
     transform: translateY(-20px);
     transition-timing-function: ease-in-out;
 }
 
 .more a {
     color: white;
     text-decoration: none;
 }
 
 .more:hover a {
     color: #F1C40F;
 }
 
 .About {
     width: 100%;
     height: 360px;
     background-color: #000;
     padding: 20px 0 30px 0;
 }
 
 .internal {
     float: left;
     width: 30%;
     padding: 5px;
 }
 
 .internal p {
     color: #fff;
     font-family: sans-serif;
     font-weight: bold;
     padding: 10px;
     display: inline-block;
     border-bottom: 2px solid;
 }
 
 .fa-bars {
     cursor: pointer;
 }
 
 .About h4 {
     display: block;
     color: #fff;
 }
 
 .About a {
     color: #fff;
     text-decoration: none;
     font-size: 17px;
     transition: 0.6s ease;
     -webkit- transition: 0.6s ease;
     padding: 0 20px;
    
     
 }
 
 .About a:hover {
     transform: scale(1.1);
     display: inline-block;
     color: #F1C40F;
     transition: 0.6s ease;
     -webkit- transition: 0.6s ease;
     
 }
 
 .internal-1 {
     width: inherit;
     height: auto;
     background: #fff;
 }
 
 .space {
     width: 100%;
     height: auto;
     background-color: #000;
     padding: 20px 0 0px 0;
 }
 
 .craft {
     width: 100%;
     height: auto;
     text-align: center;
     margin-top: 60px;
 }
 
 .craft p {
     color: #000;
     background-color: #F0F3F4;
     font-weight: bold;
     padding: 10px;
     display: inline-block;
     text-align: center;
     border: 1px solid;
 }
 
 .space .craft a {
     color: #fff;
     text-decoration: none;
     height: 35x;
     line-height: 35px;
     padding: 10px;
     margin: 10px;
     display: inline-block;
     font-size: 17px;
      transition: 0.8s ease;
     -webkit- transition: 0.8s ease;
 }
 
 .craft a:hover {
     transform: scale(1.1);
     color: #F1C40F;
      transition: 0.8s ease;
     -webkit- transition: 0.8s ease;
 }
 
 .container {
     width: 100%;
     height: auto;
     float: left;
 }
 
 .container h1 {
     text-align: center;
     font-size: 32px;
 }
 
 .row {
     width: 1260px;
     max-width: 100%;
     height: auto;
     text-align: justify;
     margin: auto;
 }
 
 .internal_internal {
     float: left;
     width: 30%;
     max-width: 100%;
     margin: 12px 10px 0 0;
     padding: 10px 10px 10px 10px;
 }
 
 .internal_internal img {
     width: 40px;
     max-width: 100%;
     height: 40px;
     outline: none;
     border: none;
     display: inline-block;
     float: left;
 }
 
 .main {
     width: 100%;
     height: auto;
     background-color: #000;
 }
 
 .main_internal {
     width: 1000px;
     height: 320px;
     max-width: 100%;
     text-align: center;
     display: block;
     padding: 30px 0px 60px 0px;
     margin: auto;
 }
 
 .main_internal a {
     display: inline-block;
     text-decoration: none;
     color: #fff;
     font-size: 18px;
     float: left;
     padding: 10px;
     text-align: center;
     height: 40px;
     line-height: 40px;
     font-weight: bold;
     margin-bottom: 20px;
 }
 
 .main_internal a:hover {
     color: #F1C40F;
 }
 
 .bottom_content {
     height: 400px;
     background: #fff;
 }
 
 .column_1 {
     text-align: center;
     width: 250px;
     max-width: 100%;
     height: auto;
     margin: 20px;
     float: left;
     padding: 10px;
 }
 
 .column_1 p {
     text-align: justify;
 }
 
 .column_1 h3 {
     font-size: 20px;
 }
 
 .column_1 img {
     width: 200px;
     height: 100px;
 }
 
 .circle {
     padding: 10px;
 }
 
 #slideshow {
     margin: 50px auto;
     position: relative;
     width: 1000px;
     max-width: 100%;
     height: 420px;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
 }
 
 #slideshow > div {
     position: absolute;
     top: 10px;
     left: 10px;
     right: 10px;
     bottom: 10px;
 }
 
 #slideshow img {
     width: 1200px;
     height: 400px;
     max-width: 100%;
 }
 
 .achieve {
     width: 100%;
     height: auto;
     text-align: center;
     margin-top: -20px 0 20px 0;
 }
 
 .number {
     font-size: 70px;
     font-weight: bold;
     display: inline-block;
 }
 
 .home {
     position: absolute;
     display: inline-block;
     color: white;
     right: 0;
     top: 445px;
     background-color: #5D6D7E;
     font-size: 24px;
     text-decoration: none;
     margin-right: 10px;
     padding: 10px;
 }
 
 .home:hover {
     color: #000;
 }
 
 .achieve1 a {
     text-decoration: none;
 }
 
 .fa-rocket {
     display: inline-block;
     transform: rotate(-45deg);
     -webkit-transform: rotate(-45deg);
 }
 
 .internal_column1 {
     margin: 0px 30px 50px 30px;
     padding: 20px 30px 120px 30px;
     background-color: #ECF0F1;
 }
 
 .internal_column1 h2 {
     text-align: center;
 }
 
 .internal_column1 a {
     text-decoration: none;
 }
 
 .internal_column1 a:first-child {
     text-decoration: underline;
 }
 
 .vertical {
     margin: 30px 0 0 0;
     float: left;
     width: 630px;
     max-width: 100%;
     text-align: justify;
     height: auto;
     /* Should be removed. Only for demonstration */
 }
 /* Clear floats after the columns */
 
 .row_1:after {
     content: "";
     display: table;
     clear: both;
 }
 
 .Abtimg {
     width: 640px;
     max-width: 100%;
     padding-bottom: 3px;
     background-color: #ECF0F1;
     text-align: center;
     margin-bottom: 20px;
 }
 
 .Abtimg img {
     width: 580px;
     max-width: 100%;
     height: 250px;
     margin-top: 10px;
 }
 
 #gototop img {
     width: 80px;
     height: 100px;
     outline: none;
     border: none;
     background: none;
 }
 
 #gototop {
     position: fixed;
     right: 10px;
     bottom: 20px;
     display: none;
     background-color: transparent;
     outline: none;
     border: none;
     cursor: pointer;
 }
 
 #App {
     margin: 50px auto;
     position: relative;
     width: 1200px;
     max-width: 100%;
     height: 460px;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
 }
 
 #App > div {
     position: absolute;
     top: 10px;
     left: 10px;
     right: 10px;
     bottom: 10px;
 }
 
 #App img {
     width: 1200px;
     height: 440px;
     max-width: 100%;
 }
 
 .text-block {
     position: absolute;
     bottom: 20px;
     left: 20px;
     background-color: black;
     color: white;
     padding-left: 20px;
     padding-right: 20px;
     border: none;
     outline: none;
 }
 
 .bottom_content {
     width: inherit;
     height: auto;
 }
 
 .bottom_content h1 {
     text-align: center;
 }
 
 .Mission {
     width: 100%;
     height: 400px;
     background-color: #000;
     padding: 20px 0 0 0;
 }
 
 .Mission_internal {
     float: left;
     width: 30%;
     max-width: 100%;
     height: auto;
 }
 
 .Mission_internal p {
     color: #fff;
     font-family: sans-serif;
     font-weight: bold;
     padding: 10px;
     display: inline-block;
     border-bottom: 2px solid;
 }
 
 .Mission h1 {
     display: block;
     color: #fff;
     text-align: center;
 }
 
 .Mission a {
     color: #fff;
     text-decoration: none;
     display: inline-block;
      transition: 0.8s ease;
     -webkit- transition: 0.8s ease;
 }
 
 .Mission a:hover {
     transform: scale(1.1);
     color: #F1C40F;
      transition: 0.8s ease;
     -webkit- transition: 0.8s ease;
 }
 
 .launcher {
     width: 100%;
     height: auto;
     background-color: #000;
     padding: 20px 0 10px 0;
 }
 
 .launcher_internal {
     float: left;
     width: 300px;
     max-width: 100%;
     height: auto;
     display: block;
     margin: 0 0 10px 30px;
 }
 
 .launch {
     width: 1450px;
     max-width: 100%;
     height: auto;
     display: inline-block;
     text-align: center;
     font-size: 15px;
     margin-bottom: 20px;
 }
 
 .launch a {
     text-align: center;
     padding: 10px 10px 10px 10px;
     display: inline-block;
     margin-bottom: 10px;
 }
 
 .launcher_internal p {
     color: #fff;
     font-family: sans-serif;
     font-weight: bold;
     padding: 10px;
     display: inline-block;
     border-bottom: 2px solid;
 }
 
 .launcher h1 {
     display: block;
     color: #fff;
     text-align: center;
 }
 
 .Content_launch1 {
     width: 1000px;
     max-width: 100%;
     height: auto;
     margin: 0 auto;
 }
 
 .Content_launch1 h1 {
     text-align: center;
 }
 
 .Content_launch1 img {
     width: 1000px;
     height: 500px;
     max-width: 100%;
     margin: auto;
     margin-top: 10px;
 }
 
 .Content_launch1 p {
     text-align: justify;
 }
 
 .launcher a {
     color: #fff;
     text-decoration: none;
     display: inline-block;
      transition: 0.3s ease;
     -webkit- transition: 0.3s ease;
     padding: 10px;
 }
 
 .launcher a:hover {
     transform: scale(1.1);
     color: #F1C40F;
     display: inline-block;
      transition: 0.3s ease;
     -webkit- transition: 0.3s ease;
 }
 
 .row_3 {
     width: 1000px;
     max-width: 100%;
     height: auto;
     margin: auto;
 }
 
 .column_3 {
     width: 290px;
     max-width: 100%;
     height: 500px;
     background-color: black;
     padding: 10px;
     float: left;
     text-align: center;
     margin: 10px;
 }
 
 .column_3 h2 {
     color: #fff;
     margin: 20px;
     display: inline-block;
 }
 
 .column_3 a {
     text-decoration: none;
 }
 
 .column_3 h3 {
     background-color: darkblue;
     text-align: center;
     color: #fff;
     padding: 5px;
 }
 
 .column_3 img {
     width: 290px;
     max-width: 100%;
     height: 230px;
     float: left;
 }
 
 .column_3 p {
     color: #fff;
     padding: 0px;
     text-align: justify;
 }