
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


nav{

    width: 100%;
    height: 100px;
    line-height: 75px;
    padding: 0px 100px;
    position: absolute;
    background: linear-gradient(to right, #00093c, #2d0b00);

}

nav .logo {

    float: left;
    width: 150px;
    cursor:pointer;
    margin-top: 15px;
    

}

nav ul{

    float: right;

}

nav li{

    display: inline-block;
    list-style: none;
    margin-top: 15px;


}

nav li a{

    font-size: 18px;
    padding: 0px 30px;
    color: #fff;
    text-decoration: none;


}

nav li a:hover{

    color: deeppink;
    transition: all 0.4s ease 0s;




}


body{

    background-color:beige;
}

body .content h1{

    font-family: Arial, Helvetica, sans-serif;
    font-size:50px ;
    text-align:center;
    word-spacing: 10px;
    color:#fff;
    background: linear-gradient(to right, #00093c, #2d0b00);
    padding: 20px;
    border-radius: 125px;
    
 

}

body .content img{

    width:100%;
    height:800px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:100px; 
    display:block;
}




/* Container holding the image and the text */
.container {
    position: relative;
    text-align: center;
    color: white;
  }
  
  /* Bottom left text */
  .bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
  }
  
  /* Top left text */
  .top-left {
    position: absolute;
    top: 8px;
    left: 16px;
  }
  
  /* Top right text */
  .top-right {
    position: absolute;
    top: 8px;
    right: 16px;
  }
  
  /* Bottom right text */
  .bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
  }
  
  /* Centered text */
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }









footer{
    width: 100%;
    position: absolute;
    bottom: 1;
    left: 0;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 12px;
    line-height: 20px;
    font-family: Arial, Helvetica, sans-serif;

}

.row{

    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;

}

.col{

    flex-basis: 25%;
    padding: 10px;

}

.col:nth-child(2) , .col:nth-child(3) , .col:nth-child(1){

    flex-basis: 15%;
}





.logo{

    width: 150px;
    margin-bottom: 30px;

}

.col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;

}

.email-id{

    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

.links{

    list-style: none;
    margin-bottom: 12px;

}

.col a{

    text-decoration: none;
    color: #fff;
}

form{

    padding-bottom: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;



}

form .fa-solid {

    font-size: 18px;
    margin-right: 10px;

}

form input {

    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

form button {

    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;


}

form button .fa-solid {

    font-size: 14px;
    color: #ccc;


}

.social-icons .fa-brands{

    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;



}

hr{

    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
.copyright{

    text-align: center;


}

.underline{

    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;

}

.underline span{

    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;

}

@keyframes moving{

    0%{
        left: -20px;
    }

    100%{
        left: 100%;
    }

}

@mdia (max-width:700px){

    footer{
        bottom: unset;
    }


    .col{

        flex-basis: 100%;
        
    
    }
    
    .col:nth-child(2) , .col:nth-child(3) , .col:nth-child(1){
    
        flex-basis: 100%;
    }
}
