* {
    box-sizing: border-box;
    font-size: 16px;
}

:root {
    --primary: rgba(1, 54, 152, 1);
    --secondary: rgba(17, 216, 158, 1);
    --black: rgba(17, 17, 17, 1);
    --white: rgba(255, 255, 255, 1);
    --body-font: "Poppins";
    --heading: "Urbanist";
    --box-border: border: 4px solid rgba(255, 255, 255, 0.20);
    --box-shadow: box-shadow: 0px 4px 12px 0px rgba(1, 54, 152, 0.25);
}

h1 {
    color: var(--primary);
    font-family: var(--heading);
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 800;
    line-height: 3.25rem;
}

h2 {
    color: #111;
    font-family: var(--heading);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3rem;
}

p {
    color: var(--black);
    font-family: var(--body-font);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
}

.sub-head {
    color: var(--primary);
    font-family: var(--heading);
    font-size: 2rem;
    font-style: normal;
    font-weight: 800;
}

.lead-text {
    font-size: 1.2rem;
}

.text-small {
    color: var(--primary);
    font-size: 0.8rem !important;
    line-height: 1.2rem !important;
    font-style: italic;
}

.post-link {
    color: var(--primary);
    font-family: var(--body-font);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2rem;
    text-decoration: underline;
}

.view-all-link {
    color: var(--primary);
    font-family: var(--body-font);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.75rem;
    text-decoration: none;
    transition: 300ms;
}

.view-all-link:hover {
    color: var(--secondary);
}

.view-all-link::after {
    content: ">";
    font-size: 1.5rem;
    position: absolute;
    margin-left: 8px;
    transition: 300ms;
}

.view-all-link:hover::after {
    margin-left: 16px;
}

.subscribe-form p {
    font-weight: 700;
}

.hero-bg {
    background: url(../imgs/hero_section_bg.jpg) no-repeat top center;
    background-size: cover;
}

/* .hero-area,
.last-week-section {
    min-height: calc(100vh - 2rem);
} */

.hero-area {
    padding: 1.5rem 0 2.5rem 0;
}

.last-week-section {
    padding: 6rem 0 4rem 0;
}


.row,
.container {
    max-width: 1120px;
    margin: 0 auto;
}

.trust-label {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    border-radius: 16px;
    border: 4px solid rgba(1, 54, 152, 0.20);
    background: #FFF;
    box-shadow: 0px 4px 12px 0px rgba(1, 54, 152, 0.25);
    text-align: center;
}



.trust-label p {
    margin: 0;
    padding: 0px;
    width: 100%;
    font-weight: 500;
}

.trust-label img {
    margin-top: 12px;
    width: 100%;
}

.arrow-deco {
    margin-top: -56px;
    float: right;
    margin-right: -64px;
}

.video-thumb .deco-img {
width: 100%;
    position: absolute;
    z-index: 1;
    opacity: 0.15;
    margin-left: -32px;
    max-width: 600px;
    align-self: center;
}

@media (max-width:900px) {
    .video-thumb .deco-img {
        display: none;
    }
}

.video-thumb img {
    z-index: 2;
    position: relative;
    width: 100%;;
}

.last-week-section {
    background: url(../imgs/last-4-week-section-bg.jpg) center no-repeat;
    background-size: auto;
}

.email-group {
    border-radius: 16px;
    outline: 4px solid rgba(255, 255, 255, 0.20);
    background: #FFF;
    box-shadow: 0px 4px 12px 0px rgba(1, 54, 152, 0.25);
    padding: 32px;
    margin-bottom: 48px;
}

.list-group {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 20px;
}

.list-group p {
    margin: 0;
}

.list-number {
    display: flex;
    min-width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid rgba(1, 54, 152, 0.10);
    color: var(--primary);
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.5;
}


.list-content a {
    transition: 300ms;
}

.list-content a:hover {
    color: var(--secondary);
}

.footer {
    background-color: #011B4B;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}


.footer p {
    color: #fff;
    margin: 18px 0;
}

@media(max-width:767px) {
    h1 {
    color: var(--primary);
    font-family: var(--heading);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: 3rem;
}

.last-week-section {
    padding: 4rem 0 1rem 0;
}


}