@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500;700&display=swap');
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: poppins;
  
}

.line-one {
    position: fixed;
    width: 15px;
    height: 100vh;
    background: #b89803;
    left: 23%;
}

.line-two {
    position: fixed;
    width: 25px;
    height: 100vh;
    background: #041A95;
    left: 25%;
}

nav {
    z-index: 2;
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px 0;
}

nav ul {
    flex: 1;
    text-align: right;
    padding-right: 270px;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 30px;
}

nav ul li a {
    color: #183d79;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #183d79;
    transition: width 0.4s;
}

nav ul li a:hover::after {
    width: 100%;
}

.logo {
    position: fixed;
    left: 120px;
    font-weight: bold;
    text-transform: uppercase;
}

.search {
    position: fixed;
    right: 160px;
}

.menu {
    position: fixed;
    right: 100px;
}

.img img {
    position: relative;
    width: 500px;
    left: 15%;
    top: -70px;
}

.title {
    position: relative;
    position: absolute;
    top: 140px;
    left: 40%;
    color: #041A95;
    font-size: 60px;
    font-weight: 700;
 
}

.title p {
  font-family: sans-serif;
  font-size: 15px;
  font-weight: 100;
  color:#183d79;
  text-transform: uppercase;
  left: 150px;
}


.btn a {
    position: relative;
    text-decoration: none;
    bottom: 260px;
    right: -57%;
    text-transform: uppercase;
    background: #183d79;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    transition: .4s;
}

.btn a:hover {
    background: #b89803;
    color: #fff;
}



.media ul {
    list-style: none;
    position: fixed;
    right: 20px;
    top: 63%;
    padding: 10px 10px;
}

.media ul li {
    cursor: pointer;
    font-size: 18px;
    margin: 24px 0;
    transition: 0.5s;
}

.media ul li:hover {
    transform: scale(1.5);
}





