* {
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

a {
    text-decoration: none;
    color: rgb(22, 28, 36);
}

button {
    background-color: #ffce51;
    border-radius: 10px;
    border-width: 0px;
    text-align:center;
    box-shadow: 0px 0px 5px #00000080;
    font-weight:900;
    color: rgb(22, 28, 36);
}

#header {
    padding:10px 5px;
    position:sticky;
    top:0;
    background-color: rgb(255, 255, 255, 1);
    width:100%;
    display:flex;
    flex-flow:row nowrap;
    justify-content: space-between;
    align-items: center;
    gap:10px;
}

#header img {
    max-width:300px;
    flex-shrink:1; 
    flex-grow:0;
    min-width:0;
    background-color: rgb(255, 255, 255, 1);
}

#header button {
    padding: 15px 20px;
    flex-shrink:0;
    flex-grow:0;
    line-height:1;
    font-size: 15px;
}

#hero {
    display:flex;
    background-color: #e9f4ff;
    flex-direction: column;
    align-items:center;
    padding: 40px 0px;
    border-radius: 0 0 30px 30px;
    gap: 20px 0px;
}

h1 {
    font-size: 40px;
    line-height: 1.1em;
    word-spacing: 0em;
    font-weight: 800;
    text-align: center;
    margin: 0px 20px;
}

h6 {
    font-size: 18px;
    font-weight: 400;
    color: rgb(88, 98, 114);
    line-height: 27px;
    margin: 0;
    text-align: center;
} 

#text-call {
    text-decoration-line: underline;
    font-weight:700;
}

#hero button {
    font-size: 20px;
    font-weight: 900;
    padding: 22px 30px;
}

#hero ul {
    margin:0;
}

#hero li {
    list-style: none;
    padding: 2.5px 30px;
    background-image: url("assets/checkmark1.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px; 
    color: rgb(88, 98, 114);
    font-size:16px;
    font-weight:700;
    line-height: 24px;

}

#features {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 75px 0;
    row-gap:10px;
}

h2 {
    color: rgb(22, 28, 36);
    font-size: 26px;
    font-weight: 900;
    margin: 0;
}

.features-section {
    border-top: 1px solid rgb(238, 241, 244);
    width: 95%;
    display: flex;
    flex-direction: row;
    align-items: start;
    padding: 20px 10px 0px 10px;
    column-gap: 20px;
}

.features-section img {
    width:28px;
    border-color: rgb(255, 206, 81);
    border-width: 0 0 3px 0;
    border-style: solid;
    padding: 5px 0 6px 0;
}

.inner-section {
    display: flex;
    flex-direction: column;
}

p {
    color: rgb(88, 98, 114);
    font-size: 16px;
    font-weight: 400;
}

h3 {
    color: rgb(22, 28, 36);
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

#features button {
    margin-top: 30px;
    padding: 30px 50px;
    font-size: 20px;
    line-height: 20px;
}

#services {
    background-color: #f7f9fc;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px 50px 30px;
    row-gap: 20px;
}

#services h2 {
    text-align: center;
    padding: 0 8px;
}

#services p {
    margin: 0;
    font-weight: 500;
    text-align: left;
    line-height: 24px;
}

#services ul {
    align-self: flex-start;
    margin: 0;
    padding: 0;
    color: rgb(88, 98, 114);
    font-weight:700;
    font-size:17px;
    line-height: 24px;
}

#services li {
    list-style: none;
    padding: 5px 40px;
    background-image: url("assets/checkmark2.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 28px;
}

#services button {
    padding: 30px 50px;
    font-size: 20px;
    line-height: 20px;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px 120px 30px;
}

#content h2{
    text-align: center;
    margin-bottom:20px;
}

#content p {
    line-height: 26.7px;
    margin: 0;
    font-weight: 600;
    margin-bottom:16px;
}

#content button {
    padding: 30px 50px;
    line-height: 20px;
    font-size: 20px;
    margin: 10px 0;
}

#content ul {
    margin: 0 0 10px 0;
    padding-left: 24px;
    color: rgb(88, 98, 114);
    line-height: 24px;
    list-style-type: disc;
}

#content li {
    font-weight:600;
    font-size:16px;
    line-height:26.7px;
    margin-bottom:8px;
    padding-left:8px;
}

#content span {
    font-weight: 900;
    font-size: 16px;
    color: rgb(0,0,0)
}

#content h3 {
    align-self: flex-start;
    margin-bottom:8px;
}

#footer {
    background-color: #1a386a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 10px 30px 10px;
    row-gap: 45px;
    border-radius: 20px 20px 0 0;
}

#footer h2 { 
    color: #e9f4ff;
    font-size: 22px;
    font-weight: 800;
}

#footer p {
    color: #e9f4ff;
    font-size: 14px;
    font-weight: 600;
    text-align: justify;
}

#footer-links p{
    font-size: 16px;
    margin: 0;
    width: 50%;
    text-align: center;

}

#footer-links {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

/* * {
  outline: 1px solid red;
} */