body {
    margin: 0;
    padding: 0;
}

header {
    display: flex; 
    justify-content: end;
    align-items: center;
    height: 100px;
    top: 0;
    position: sticky;
    background: linear-gradient(0.2turn,grey, white);
    padding: 0 20px;
}

a {
    color: inherit; 
    text-decoration: none;
    transition: color 1s ease-in-out;
}

a:hover {
    color: blue;
    transition: color 0.5s;
}

.header-nav-items {
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.condensed-para {
    max-width: 25rem;
    padding: 0 2rem;
}

.main-section {
    padding-top: 5rem;
}

.hero-section {
    height: 50vh;
    background-image: url(imgs/view.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: space-around;
}

.hero-section-container {
    color: white;
}

.what-we-do-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 0 20px;
    margin-top: 2rem;
}

.what-we-do-top {
    display: flex; 
    flex-direction: column; 
    align-items: center;
}

.what-we-do-middle {
    display: grid; 
    gap: 2rem;
    justify-items: center;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.what-we-do-bottom {
    display: flex;
    justify-content: center;
}

.info-card-1 {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: solid navy;
    border-radius: 10px;
    min-height: 20rem;
    justify-content: space-around;
}

.info-card-1-img {
    height: 3rem;
    width: 3rem;
}

.info-card-1-top {
    display: flex; 
    align-items: center;
    gap: 1rem;
}

.info-card-1-bottom {
    display: flex;
}

.how-it-works-section {
    display: flex;
    flex-direction: column; 
    gap: 3rem; 
}

.how-it-works-section-top {
    display: flex; 
    flex-direction: column;
    align-items: center;
}

.how-it-works-section-bottom {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); 
    gap: 3rem; 
    padding: 0 20px;
}

.info-card-3 {
    border: solid grey; 
    padding: 1rem; 
}

.why-partner-with-us-section {
    display: flex;
    flex-direction: column;
    gap: 3rem; 
    align-items: center;
}

.why-partner-with-us-section-top {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.why-partner-with-us-section-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.info-card-2 {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: solid navy;
    border-radius: 1rem;
}

.info-card-2-img {
    height: 3rem; 
    width: 3rem;
}

.info-card-2-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-section {
    display: flex; 
    flex-direction: column;
    gap: 3rem; 
}

.pricing-card {
    border: solid grey; 
    padding: 1rem;
}

.pricing-section-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-section-bottom {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
    gap: 3rem; 
    padding: 0 20px;
}

.item-list {
    list-style-type: none;
}

.item-list > li {
    margin-bottom: 1rem;
}

/*Article Page Styles*/

.article-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.article-para {
    max-width: 40rem;
    min-width: 50%;
}

.article-para > li {
    margin-bottom: 1rem;
}

footer {
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 5rem;
}

.footer-top {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); 
}

.footer-top-section > ul {
    list-style-type: none;
    padding: 0px; 
}

.footer-top-section > ul > li {
    margin-bottom: 1rem; 
}