*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,body{
    scroll-behavior: smooth;
}

/* ----------preloder---------- */
.preloder{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    align-content: center;
    display: grid;
    background-color: #fff;
    z-index: 999999;
}

/* ----------clicktotop------ */
.click_top button{
    position: fixed;
    bottom: 6%;
    right: 2%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    color: #fff;
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    border: none;
    border-radius: 5ex;
    z-index: 9999;
}

/*------------------- NAV-SECTION -----------------*/
.nav_stcky{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 5px 10px -6px #8888;
}

.nav_background{
    background-color: #000;
}

.unorder_space li a{
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    transition: all 0.6s;
}

.unorder_space li a:hover{
    background: -webkit-linear-gradient(180deg, #fc01ff, #1604ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.unorder_space li{
    margin-left: 20px;
}


.hero{
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}


.hero_content{
    padding-left: 15%;
}

.hero_content h1{
    font-size: 120px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px;
    padding-top: 180px;
}

.hero_content p{
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0px;
    padding-top: 20px;
}

.hero_content a{
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #fff;
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    padding: 20px 40px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 50px;
    margin-bottom: 222px;
    transition: all 0.6s;
} 

.hero_content a:hover{
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

.hero_img img{
    margin-top: 140px;
}

.back_img{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.back_img img{
    width: 100%;
    height: 100%;
    animation: 8s linear infinite alternate zoom_img;
}

@keyframes zoom_img{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.20);
    }
}

.img_over{
    overflow: hidden;
}

.hero_img img{
    animation: 8s linear infinite alternate space_left;
}

@keyframes space_left{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(15deg);
    }
}

/*------------------- FORM-AREA -----------------*/
.form_area{
    background-color: #000;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.form_background{
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    border-radius: 25px;
    padding-left: 80px;
    padding-right: 80px;
}

.form_background input{
    width: 92%;
    height: 60px;
    background-color: transparent;
    margin-top: 10px;
    margin-bottom: 10px;
    border: none;
    outline: none;
    font-size: 18px;
    color: #fff;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.form_background input::placeholder{
    font-size: 18px;
    color: #fff;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.form_background button{
    width: 7%;
    background-color: transparent;
    border: none;
    display: inline-block;
    color: #fff;
    font-size: 25px;
}

/*--------------- FOLLW-US-SECTION -----------------*/
.flw_sec{
    position: fixed;
    top: 38%;
    right: 0%;
    z-index: 999;
}
.flw_sec ul{
    list-style: none;
}
.flw_sec ul li{
    margin-top: 15px;
}
.flw_sec ul li a{
    font-size: 18px;
    color: #fff;
    padding: 7px 40px 7px 15px;
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    text-decoration: none;
    border-radius: 50px 0px 0px 50px;
    display: inline-block;
    transform: translate(28px,0px);
    transition: all 0.5s;
}

.flw_sec ul li:hover a{
    transform: translate(0px,0px);
}

/* -----------------ABOUT-SEC-------------------- */
.about_sec{
    background-color: #000;
    width: 100%;
}

.about_img{
    margin-top: 180px;
}

.about_right_content h2{
    font-size: 26px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-top: 163px;
}

.about_right_content h1{
    font-size: 46px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-top: 70px;
    width: 65%;
    letter-spacing: 6px;
    line-height: 60px;
}

.about_right_content p{
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-top: 95px;
    padding-bottom: 100px;
    line-height: 30px;
}


/*--------------------- SECOND-ABOUT --------------------*/
.second_about{
    background-color: #000;
    width: 100%;
    padding-bottom: 100px;
    padding-top: 50px;
}

.second_bout_head h1{
    font-size: 40px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 0px;
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    width: 65%;
    padding: 40px 15px 40px 390px;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    text-transform: uppercase;
    letter-spacing: 5px;
}


.row_space{
    margin-top: 110px;
}

.about_para p{
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 35px;
}

.full_line{
    width: 100%;
    height: 2px;
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    margin-top: 40px;
}

/*----------------- GALLARY-SECTION ---------------*/
.gallary_sec{
    background-color: #000;
    width: 100%;
}

.gallary_head h1{
    font-size: 42px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-bottom: 0px;
    width: 60%;
    line-height: 60px;
    padding-top: 50px;
}

.gallary_head p{
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    padding-top: 25px;
    margin-bottom: 0px;
    padding-bottom: 120px;
}
.gallary_head p i{
    padding-left: 10px;
}

.planet_content {
    padding-left: 12%;
}
.planet_content h1{
    font-size: 38px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-bottom: 0px;
    padding-top: 30px;
}

.planet_content p{
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 28px;
    padding-top: 30px;
    padding-bottom: 40px;
}

.planet_content span{
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}
.span_space{
    padding-left: 50px;
}

.planet_btn a{
    display: inline-block;
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    padding: 19px 33px;
    margin-top: 57px;
    transition: all 0.5s;
}
.planet_btn a i{
    padding-left: 5px;
}

.planet_btn a:hover{
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

.carousel .left_key{
    color: #fff !important;
    font-size: 30px;
    opacity: 1;
    top: 45%;
    left: -15%;
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    width: 50px;
    height: 50px;
}

.carousel .right_key{
    color: #fff !important;
    font-size: 30px;
    opacity: 1;
    top: 45%;
    right: -15%;
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    width: 50px;
    height: 50px;
}


/*-------------------------- NEWS-SECTION ------------------------*/
.news_sec{
    background-color: #000;
    width: 100%;
    padding-bottom: 100px;
}

.news_top_margin{
    padding-top: 185px;
}

.news_head h1{
    font-size: 40px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    width: 40%;
    margin-bottom: 0px;
    padding-top: 50px;
}

.news_head p{
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-top: 20px;
}

.news_content p{
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-top: 100px;
    line-height: 30px;
}

.news_content a{
    display: inline-block;
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    padding: 19px 33px;
    text-decoration: none;
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    margin-top: 100px;
    transition: all 0.5s;
}

.news_content a i{
    padding-left: 5px;
}

.news_content a:hover{
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

/*--------------------- CONNECT-SECTION ------------------*/
.connect_sec{
    background-color: #000;
    width: 100%;
}

.connect_pading{
    padding-top: 100px;
    padding-bottom: 120px;
}

.connect_content{
    padding-left: 10%;
}

.connect_content h1{
    font-size: 36px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    width: 80%;
    margin-bottom: 0px;
}

.conect_img img{
    animation: 6s linear infinite alternate space_right;
}

@keyframes space_right{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(6deg);
    }
}

.connect_frm{
    padding-top: 40px;
}

.input_grp input{
    width: 90%;
    height: 50px;
    background-color: transparent;
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #fc01ff, #1604ff);
    border-image-slice: 1;
    outline: none;
    margin-top: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    padding-left: 10px;
}

.input_grp input::placeholder{
    font-size: 16px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.input_grp textarea{
    width: 90%;
    height: 110px;
    background-color: transparent;
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #fc01ff, #1604ff);
    border-image-slice: 1;
    outline: none;
    margin-top: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    padding-left: 10px;
}

.input_grp textarea::placeholder{
    font-size: 16px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.connect_frm button{
    width: 90%;
    height: 50px;
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    margin-top: 20px;
    letter-spacing: 3px;
    border: none;
    transition: all 0.5s;
}

.connect_frm button i{
    padding-left: 10px;
}

.connect_frm button:hover{
    transform: scale(1.1);
}
/*----------------- FOOTER_SECTION ---------------*/

.footer-section{
   background-image: url(../images/footer-3.jpeg);
   width: 100%;
   height: auto;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
}

.bac_overlay{
    background-color: rgb(12, 12, 12);
}

.footer_logo{
    padding-top: 30px;
}

.footer_list{
    padding-top: 25px;
}

.footer_logo p{
    font-size: 17px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    padding-top: 20px;
    margin-bottom: 0px;
}

.footer_list ul{
    list-style: none;
    text-align: center;
}

.footer_list ul li{
    margin-top: 10px;
}

.footer_list ul li a{
    font-size: 17px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.6s;
}

.footer_list ul li a:hover{
    background: -webkit-linear-gradient(180deg, #fc01ff, #1604ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub_input input{
    width: 100%;
    height: 45px;
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #fc01ff, #1604ff);
    border-image-slice: 1;
    font-size: 17px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: capitalize;
    outline: none;
    background-color: transparent;
    padding-left: 8px;
}

.sub_input input::placeholder{
    font-size: 17px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.subcribe{
    padding-top: 50px;
}

.subcribe button{
    width: 40%;
    height: 45px;
    font-size: 17px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    margin-top: 15px;
    border: none;
    text-transform: uppercase;
    transition: all 0.5s;
}

.subcribe button:hover{
    transform: scale(1.1);
}

.footer_padding{
    padding-top: 120px;
    padding-bottom: 80px;
}

.copyright_area p{
    font-size: 16px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-bottom: 15px;
    padding-top: 20px;
}


/* -------------MODEL------------------ */
.model_custom_header{
    background-color: #fff;
    border-bottom: none !important;
    border-top: none !important;
}

.model_form .model_grp input{
    width: 90%;
    height: 55px;
    color: #000;
    font-size: 17px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #fc01ff, #1604ff);
    border-image-slice: 1;
    outline: none;
    background-color: transparent;
    padding-left: 8px;
    margin-top: 25px;
}

.model_form .model_grp input::placeholder{
    font-size: 17px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.model_form button{
    width: 90%;
    height: 55px;
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    font-size: 17px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    margin-top: 30px;
    margin-bottom: 40px;
}

.model_title_custom{
    font-size: 22px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-right: 5%;
    padding-top: 3%;
}

.model_custom_header img{
    margin-left: 5%;
    margin-top: 2%;
}

.model_btn_cus{
    background-image: linear-gradient(90deg, #fc01ff, #1604ff);
    font-size: 17px;
    color: #fff !important;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}


/*================= *INNER-PAGE-DESIGN-OF-HUBBLE-SPACE-WEBSITE* ===================*/


/*-------------- NEWS-INNER-PAGE ------------*/
.inner_news_back{
    background-image: url(../images/news-back-2.png);
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inner_news_head h1{
    font-size: 60px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-top: 80px;
    margin-bottom: 0px;
    width: 50%;
}

.inner_news_head p{
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    padding-top: 20px;
    margin-bottom: 0px;
    padding-bottom: 80px;
}

.inner_row_padding{
    padding-top: 50px;
}
.inner_bus_img{
    padding-top: 50px;
}


/* -------------planet----------------*/
.inner_planet_content{
    padding-top: 50px;
}
.inner_caro_item{
    padding-top: 80px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #fc01ff, #1604ff);
    border-image-slice: 1;
    padding-bottom: 40px;
}
.inner_caro_item_last{
    padding-top: 80px;
    padding-bottom: 40px;
}





