@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap"); div#landing {
    position: relative;
    height: 800px;
    overflow: hidden;
    width: 100%;
}

.left_side {
    width: 1050px;
    position: absolute;
    z-index: 999;
    top: calc(50% + (70px/2));
    left: 50%;
    transform: translate(-50%, -50%);
}

#landing > .left_side > .landing_container_left > h1 {
    color: rgb(219, 219, 219);
    font-size: 72px;
    font-weight: 900;
    margin: 0px auto;
    font-family: "Merriweather", serif;
    text-align: center;
}

#landing > .left_side > .landing_container_left > p {
    color: rgb(255, 255, 255);
    font-size: 21px;
    font-weight: 100;
}

#landing > .left_side > .landing_container_left > div > button {
    padding: 15px 24px;
    font-size: 17px;
    margin-top: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
    background: rgb(251, 176, 50);
}

.right_side {
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1;
}

.video_container {
    height: 100%;
}

.video_container {
    position: absolute;
    right: 0px;
    width: 100%;
    overflow: hidden;
}

video#fontana_landing {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 12px;
    transform: translate(-50%, -50%);
}

.video_overflow {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 44%);
    z-index: 99;
}


.image_container {
    background-image: url('/assets/img/articles_bg.jpeg');
    background-size: cover;
    width: 100%;
    height: 100%;
}

/*  */
/*  */

.section_heading {
    text-align: center;
    height: fit-content;
    margin-top: 140px;
}

.text {
    --text-color: #fbb032;
    --bg-color: hsl(0 0% 100%);
    --bg-size: 200px;
    font-family: "Dela Gothic One", sans-serif;
    grid-area: body / body / body / body;
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 38px;
}

.heading span {
    display: block;
    text-transform: uppercase;
}

.heading span.filled {
    color: var(--text-color);
}

.heading span:not(.filled) {
    --stroke: min(0.25vmin, 2px) var( --text-color);
    color: rgb(19, 32, 60);
    -webkit-text-stroke: var(--stroke);
}


/*  */
/*  */

.articles_container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1050px;
    margin: 60px auto 0px auto;
    width: 90%;
}

.article_item {
    width: 310px;
    height: 350px;
    border-radius: 12px;
    margin: 20px 0px 0px 0px;
}

.article_container {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    display: flex;
}

.article_big > .article_container > .article_container_img {
    width: 380px;
    height: 350px;
    background-size: cover;
    background-position: center center;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.article_item.article_big {
    width: 660px;
}

.article_big > .article_container > .article_content {
    width: 320px;
    background: rgb(255, 255, 255);
    padding: 20px 40px;
    height: 350px;
}

.article_big > .article_container > .article_content > div:nth-child(3) {
    overflow: hidden;
}

.article_big > .article_container > .article_content {
    width: 320px;
    background: rgb(255, 255, 255);
    padding: 28px 40px;
    height: 350px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.article_big > .article_container > .article_content > div:nth-child(3) {
    overflow: hidden;
    font-size: 15px;
    font-weight: 200;
    margin-bottom: 10px;
    height: 180px;
    color: rgb(44, 44, 44);
}

.label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgb(152, 152, 152);
    margin-bottom: 10px;
    display: block;
}

.article_title {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 700;
    display: block;
}

.read_more {
    display: none;
}

.article_link {
    text-decoration: none;
    color: black;
}

.article_regular > .article_container > .article_container_img {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-radius: 12px;
}

.article_regular > .article_container {
    display: block;
}

.article_regular > .article_container > .article_content {
    background: rgb(255, 255, 255);
    height: fit-content;
    padding: 14px 40px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.article_regular > .article_container > .article_content > div > .label {
    margin-bottom: 0px;
}

.article_regular > .article_container > .article_content > div > .article_title {
    margin-bottom: 0px;
}

div#section_with_header {
    width: 1050px;
    margin: auto;
}