
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 75px;
    background-color: white;
    width: 100%;
    height: 60px;
    position: relative;
    font-weight: 600;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.nav-links a:hover {
    color: orange;
}

.one, .two {
    border-radius: 10px;
    padding: 10px 20px;
    color: blue;
    background-color: white;
    border: 1px solid blue;
    cursor: pointer;
}

.one:hover, .two:hover {
    background-color: blue;
    color: white;
}
.two{
    margin-left:7px;
}

.body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 100px;
    background-color: #F7F9FF;
    height:788px;
}

.content {
    max-width: 600px;
    margin-left:60px;
    margin-top:-80px;
}

.content h1 {
    font-size: 42px;
    line-height: 52px;
    font-weight: bold;
}

.highlight {
    color: blue;
}

.content p {
    font-size: 18px;
    line-height: 26px;
    margin-top: 40px;
}

.features {
    margin-top: 40px;
    font-size: 16px;
}

.cta {
    margin-top: 60px;
    padding: 12px 20px;
    border: none;
    background-color: rgb(153, 153, 165);
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
}

.cta:hover {
    background-color: rgb(48, 48, 71);
}

.img {
    position: relative;
    width: 600px;
    height: 425px;
    margin-right:100px;
    margin-top:-80px;
}
.image{
    margin-left:200px;
}
.pic{
    margin-bottom:-20px;
    margin-left:-30px;
}
.picc{
    margin-bottom:-10px;
    margin-left:10px;
}
.video{
    height:650px;
    width:100%;
    align-items: center;
    padding-top:150px;
}
.video h1{
   text-align:center;
}
.grp{
    justify-content:space-around;
    align-items:center;
    display:flex;
    width:85%;
    gap:5px;
    margin-left:auto;
    margin-right:auto;
    padding-top:50px;
}

