*{
    padding: 0;
    margin: 0;
}

body {
    background-color: rgb(229, 247, 255);
}

nav{
    background-color: rgb(67, 164, 255);
    padding: 20px;
    box-shadow: 0px 3px rgb(235, 235, 235);
    position: sticky;
    top: 0px;
    z-index: 10000;
}

nav ul{
    display: flex;
    align-items: center;
}

.navbar{
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin-left: auto;
    align-items: center;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    padding: 20px;
    color: white;
}

a:hover{
    background-color: rgb(3, 120, 244)
}

.QuoteBtn {
    margin-left: 10px;
    padding: 10px 5px;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    border: 1px solid rgb(233, 229, 229);;
    cursor: pointer;
}
.QuoteBtn:hover {
    background-color: rgb(3, 120, 244);
    color: white;
}

/* Body Content begin here...(Card) */
.card{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100vw;
    height: 40vh;
    gap: 10;
}

.heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
    width: 60vw;
    font-size: 3.2vmax;
}

.span{
    color: rgb(3, 120, 244);
}

.heading_img {
    display: block;
    margin-left: auto;
}

.heading_img img{
    height: 40vw;
    width: 100%;
    min-width: 40vw;
    max-height: 40vh;
}

.heading .QuoteBtn{
    width: 200px;
    align-self: baseline;
    margin-top: 10px;
}