@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
:root {
    /*
    --primary-color: #1703FF ; */
    --primary-color: #054ADA ;
    --secondary-color: #EF8A17;
    --primary-btn: #1703FF;
    --primary-btn-hover: #EF8A17;
}
.wrapper {
    width: 100%;
    height: 100vh;
    flex-direction: column;
}
 .nav-container{
    width: 1140px;
    height: 136px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
 .nav-container .nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}
.nav-container .nav ul li{
    margin-right: 40px;
}
.nav-container .nav .contact {
    margin-right: 0px;
}
.nav-container .nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: normal;
    font-size: 14px;
}
.nav-container .nav ul li a:hover{
    color: var(--secondary-color);
}
.hero-section {
    width: 100%;
   
}
.hero-section .hero-container{
    width: 1140px;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    padding-top: 56px;
}
.hero-section .hero-container .hero-cont{
    width: 50%;
}
.hero-section .hero-container .hero-cont h1{
    margin-bottom: 40px;
    line-height: 130%;
}
.hero-section .hero-container .hero-cont p{
    margin-bottom: 40px;
    line-height: 160%;
    font-size: 18px;
}
.hero-section .hero-container .hero-cont a {
    color: white;
    font-family: "Poppins", sans-serif;
    padding: 16px 32px;
    background-color:  var(--primary-btn);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}
.hero-section .hero-container .hero-cont a:hover{
    background-color: var(--primary-btn-hover);
}