@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins',sans-serif;
}

/*Global Tags */

h1{
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(35, 35, 85);
}

span{
    font-size: .9rem;
    color: #757373;
}

h6 {
    font-size: 1.1rem;
    color: rgb(24, 24, 49);
}

/*Navigation*/

nav {
    position: fixed;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 8vw;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 99;
}

nav img {
    width: 150px;
    cursor: pointer;
}

nav h2{
    color: rgb(163, 127, 7);
}

nav .navigation ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav .navigation ul li{
    list-style: none;
    margin-left: 30px;
}

nav .navigation ul li a{
    text-decoration: none;
    color: rgb(21, 21, 100);
    font-size: 16px;
    font-weight: 500;
    transition: .3s ease;
}

nav .navigation ul li a:hover{
    color: rgb(163, 127, 7);
}

/*Home*/

#home{
    background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4 ,46 , 0.7)),
    url("images/home-image1.png");
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#home h2{
    margin-top: 150px;
    color: white;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

#home p{
    margin-top: 50px;
    width: 50%;
    color: white;
    font-size: 1rem;
    line-height: 25px;
}

#home .btn {
    margin-top: 30px;
}

#home a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: white;
    font-weight: 600;
    border-radius: 5px;
}

#home a.blue{
    color: #fff;
    background-color: rgb(21, 21, 100);
    transition: 0.3s;
}

#home a.blue:hover{
    color: rgb(21, 21, 100);
    background-color: #fff
}

#home a.yellow{
    color: #fff;
    background-color:  rgb(163, 127, 7);
    transition: 0.3s;
}

#home a.yellow:hover{
    color:  rgb(163, 127, 7);
    background-color: #fff;
}


.cdetail ul li{
text-align: left;
}

/*Features*/

#features {
    padding: 5vw 8vw 0 8vw;
    text-align: center;
}

.fea-base{
    position: relative; 
    width: 1000px;   
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    margin-top: 50px;
    margin-left: 50px;
}

.fea-base .mycard{
    position: relative;
    max-width: 300px;
    height: 150px;
    background: rgb(163, 127, 7);
    margin: 30px 10px;
    padding: 40px 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.5);
    transition: 0.7s ease-in-out;
    cursor: pointer;
}

.fea-base .mycard:hover{
    height: 380px;
}


.fea-base .mycard .fea-img{
    position: relative;
    width: 260px;
    height: 150px;
    top: -60px;
    z-index: 1;
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.5);
}

.fea-base .mycard .fea-img img{
    max-width: 100%;
    height: 100%;
    border-radius: 5px;
}

.fea-base .mycard .cdetail{
    position: relative;
    margin-top: -140px;
    padding: 10px 15px;
    text-align: center;
    color: black;
    font-size: 15px;
    visibility: hidden;
    opacity: 0;
    transition: .5s ease-in-out;
}

.fea-base .mycard:hover .cdetail{
    visibility: visible;
    opacity: 1;
    margin-top: -60px;
}

/*Contact*/

#contact {
    padding: 6vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#contact .getin{
    width: 650px;
}

#contact .getin h2 {
    color: black;
    font-size: 30px;
    font-weight: 800;
    line-height: .8;
    margin-bottom: 16px;
}

#contact .getin p {
    color: black;
    line-height: 24px;
    margin-bottom: 33px;
}

#contact .getin h3 {
    color: black;
    line-height: 24px;
    margin-bottom: 16px;
}

#contact .getin .getin-details div {
    display: flex;
}

#contact .getin .getin-details div .get {
    font-size: 16px;
    line-height: 22px;
    color: hsla(235, 90%, 12%, 0.795);
    margin-right: 20px;
}

#contact .getin .getin-details .pro-links i {
    margin-right: 20px;
}






/*footer*/

footer{
    padding: 2vw;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

footer .footer-col{
    padding-bottom: 10px;
}

footer h3{
    color: white;
    font-weight: 600;
    padding-bottom: 20px;
}

footer li{
    list-style: none;
    color: lightgray;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
    transition: 3s ease;
}

footer li:hover{
    color: white;
}  

footer p {
    color: whitesmoke;
}

footer .subscribe {
    margin-top: 20px;
}

footer input {
    width: 220px;
    padding: 12px 15px;
    background: whitesmoke;
    border: none;
    outline: none;
    color: white;
}

footer .subscribe a {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 12px 15px;
    background-color: white;
    font-weight: 600;
}

footer .subscribe a.blue{
    color: white;
    background-color: darkblue;
    transition: .3s ease;
}

footer a.blue:hover{
    background-color: white;
    color: darkblue;
}

footer .copyright {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    flex-wrap: wrap;
}

footer .copyright p {

    font-size: 10px;
}

footer .copyright .pro-links {
    margin-top: 0px;
}

footer .copyright .pro-links i{
   background-color: #5f7185;
   color: #fff;
}

footer .copyright .pro-links i:hover{
   background: blue;
    color: white;
}











