*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

a{
    text-decoration: none;
    color: rgb(0, 22, 77);
}

body{
    width: 100vw;
    overflow-x: hidden;
}

/* ---------- Header ----------  */
.upper-head{
    background-color: rgb(0, 22, 77);
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.upper-head>a{
    color: white;
    text-decoration: none;
    margin: 0px 10px;
    transition: .5s ease;
}
.upper-head>a:hover{
    color: aquamarine;
}

.navbar{
    background-color: rgb(239, 237, 237);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

.nav-links>a{
    color: black;
    text-decoration: none;
    margin: 0px 20px;
    padding: 10px;
    border-bottom: 2px solid transparent;
    transition: .5s ease;
}
.nav-links>a:hover{
    border-bottom: 2px solid black;
}


.nav-btns>a{
    text-decoration: none;
    color: black;
    margin: 0px 10px;
}

.login-btn{
    background-color: rgb(12, 0, 64);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 20px;
    transition: .5s ease;
    color: white !important;
}

.login-btn:hover{
    background-color: rgb(227, 227, 227);
    color: rgb(5, 0, 36);
}

.nav-img>img{
    width: 120px;
}

.head-part{
    background: url(../images/head-image.jpg);
    background-size: cover;
    width: 100vw;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.head-inner-part{
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.head-inner-part>p{
    color: black;
    font-size: 15px ;
    margin-bottom: 20px;
    text-align: center;
}
.head-inner-part>h1{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
}

/* ---------- Header ----------  */
/* ---------- first section ----------  */
.first-section{
    background-color: rgb(207, 206, 206);
    padding: 150px;
}
.first-inner-section{
    display: flex;
    flex-direction: row;
    margin-top: 40px;
}
.left-first-section{
    flex: 1;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    
}
.left-first-section>h1{
    font-size: 60px;
    
}
.left-first-section>p{
    font-size: 17px;
    color: gray;
    margin-bottom: 50px;
}
.right-first-section{
    flex: 1;
}
.right-first-section>img{
    width: 100%;
}
/* ---------- first section ----------  */
/* ---------- second section ----------  */

.second-part{
    background: url(../images/head-image.jpg);
    background-size: cover;
    width: 100vw;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.second-inner-part{
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.second-inner-part>p{
    color: black;
    font-size: 15px ;
    margin-bottom: 20px;
    text-align: center;
}
.second-inner-part>h1{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 80px;
    text-align: center;
    margin-bottom: 20px;
}

/* footer start  */
.footer{
    background-color: white;
    padding: 0px 100px;
}
.first-footer{
    display: flex;
    flex-direction: row;
    margin-top: 100px;
}

.first-footer-one{
    flex: 1;
}

.first-footer-one>h1{
    font-size: 60px;
}

.first-footer-two{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.first-footer-two>a{
    font-size: 17px;
    margin-bottom: 10px;
}

.first-footer-three{
    flex: 1;
    padding: 20px;
}
.first-footer-three>p{
    font-size: 18px;
    color: gray;
}
.first-footer-four{
    flex: 1;
}

.first-footer-four>h6{
    font-size: 18px;
}
.first-footer-four>p{
    font-size: 15px;
    margin-bottom: 20px;
}

.second-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 50px 0px;
}
/* footer end  */