/* Home Page */
.home-hero {
    position: relative;
    background: linear-gradient(45deg, #0000004f 10%, rgba(255, 255, 255, 0) 100%);
    display: flex;
    flex-direction: column;
    padding: 0 75px;
}
.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--ang-green);
    z-index: -1;
    mix-blend-mode: color;
}
.home-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.video-fade-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-poster-fade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    transition: opacity 0.7s;
    pointer-events: none;
}
.home-hero .home-hero-content {
    width: var(--container-width);
    margin: 0 auto;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-grow: 1;
}
.home-hero .left {
    width: 900px;
    max-width: 100%;
    position: relative;
    z-index: +1;
    padding-top: var(--nav-height);
    height: 100%;
    display: flex;
    align-items: center;
}
.home-hero .left .content {
    padding: 100px 0px;
        max-width: 100%;
}
.home-hero .left .links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.home-hero .left img {
    width: 300px;
    max-width: 100%;
    margin-bottom: 5px;
    margin-left: -25px;
}
.home-hero .left h1 {
    font-family: var(--secondary-font);
    color: #fff;
    font-size: 6rem;
    line-height: 5.8rem;
    font-weight: 900;
    margin-bottom: 35px;
    text-transform: uppercase;
}
.home-hero .left p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 45px;
    width: 600px;
    max-width: 100%;
}
.home-hero .left a {
    width: max-content;
    max-width: 100%;
    text-align: center;
    display: flex;
    align-items: stretch;
    gap: 2px;
}
.home-hero .left a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--tertiary-font);
    background-color: black;
    color: white;
    padding: 15px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
    border-radius: 50rem;
}
.home-hero .left a span {
    position: relative;
    height: 30px;
    width: 30px;
    background-color: white;
    color: black;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.home-hero .left a span i {
    font-size: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.home-hero .left a:hover {
    color: var(--ang-green);
}
.home-hero .left a:hover span {
    background-color: var(--ang-green);
    color: black;
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
}
.home-hero .left a:first-of-type {
    background-color: white;
    color: black;
}
.home-hero .left a:first-of-type:hover {
    background-color: var(--ang-green);
    color: white;
}
.home-hero .right {
    position: relative;
    width: calc(50% - 40px);
    display: flex;
    gap: 20px;
}
.home-hero .right .content {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 20px;
}
@media (max-width: 1100px) {
    .home-hero {
        padding: 0 30px;
    }
}
@media (max-width: 900px) {
    .home-hero .content h1 {
        font-size: 10vw;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .home-hero .content p {
        font-size: 1rem;
    }
    .home-hero .links {
        /* justify-content: center; */
        margin-top: 30px;
    }
}
@media (max-width: 575px) {
    .home-hero .content {
        text-align: center;
    }
    .home-hero .content h1 {
        font-size: 3rem;
    }
    .home-hero .left a {
        margin: auto;
    }
}
@media (max-width: 360px) {
    .home-hero .content h1 {
        font-size: 2rem;
    }
}
.who-are-we {
    padding: 100px 0;
}
.who-are-we h2 {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 35px;
    width: 800px;
    max-width: 100%;
}
@media (max-width: 900px) {
    .who-are-we h2 {
        font-size: 2rem;
        width: 500px;
        max-width: 100%;
    }
}
.separator-img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
}
@media (max-width: 900px) {
    .separator-img {
        height: 500px;
    }
    
}
.services {
    padding: calc(100px + 10vh) 0 0px 0;
}
.services h1 {
    font-family: var(--secondary-font);
    color: inherit;
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 35px;
    text-transform: uppercase;
}
.services h2 { /* was h2, now for section title */
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.services h3 {
    font-family: var(--secondary-font);
    color: inherit;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 35px;
}
.services h4 {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.services h5 {
    font-family: var(--secondary-font);
    color: inherit;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 35px;
    text-transform: uppercase;
}
.services h6 {
    font-family: var(--secondary-font);
    color: inherit;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 35px;
    text-transform: uppercase;
}
.services p {
    color: inherit;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 30px;
}
.services .title-block {
    width: 700px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 205px;
}
.services .services-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 400px;
}
.services .services-list .service {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin-bottom: 50px;
}
.services .services-list .service .service-content {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 60px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
    max-height: 80vh;
    overflow: hidden;
    background-color: rgb(24, 24, 24);
    color: white;
    height: 700px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18.7rem 5.2rem 0 transparent, 0 11.9rem 4.8rem 0 rgba(0, 0, 0, .01), 0 6.7rem 4rem 0 rgba(0, 0, 0, .05), 0 3rem 3rem 0 rgba(0, 0, 0, .09), 0 .7rem 1.6rem 0 rgba(0, 0, 0, .1);
}
.services .services-list .service:nth-child(1) .service-content {
    box-shadow: none;
    background-color: #e0e0e0;
    color: black;
}
.services .services-list .service:nth-child(2) {
    top: calc(50% + 40px);
}
.services .services-list .service:nth-child(2) .service-content {
    background-color: var(--ang-green);
}
.services .services-list .service:nth-child(3) {
    top: calc(50% + 80px);
}
.services .services-list .service:nth-child(3) .service-content {
    background-color: #478540;
}
.services .services-list .service:nth-child(4) {
    top: calc(50% + 120px);
}
.services .services-list .service:nth-child(4) .service-content {
    background-color: #2b2c2b;
}
.services .services-list .service:last-of-type {
    margin-bottom: 0;
}

.services .services-list .service .service-content .image-holder {
    width: 100%;
    flex-grow: 1;
    position: relative;
}
.services .services-list .service .service-content img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.services .services-list .service .service-content .title-block {
    background-color: white;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    width: max-content;
    margin: 0 0 15px 0;
}
.services .services-list .service .service-content h3 {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: black;
    padding: 5px 10px;
    max-width: 100%;
    text-align: center;
}
.services .services-list .service .service-content p {
    font-family: var(--primary-font);
    color: inherit;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 30px;
}
@media (max-width: 900px) {
    .services h2 {
        font-size: 13vw;
    }
    .services .title-block p {
        font-size: 0.9rem;
        width: 400px;
        max-width: 100%;
        margin: auto;
    }
}
.quote-block {
    width: 90rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 60px;
}
.quote-block h6 {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 35px;
    text-align: center;
}
.quote-block h2 { /* was h6, now h2 for quote */
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 35px;
    text-align: center;
}
.quote-block .creditation {
    max-width: 100%;
    border: 1px solid #00000017;
    padding: 10px 20px;
    margin: 0 auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    gap: 20px;
}
.quote-block .creditation img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.quote-block .creditation p, .quote-block .creditation strong {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #000000;
}
.quote-block .creditation p {
    color: #696969;
}
@media (max-width: 1100px) {
    .quote-block h2 {
        font-size: 7.25vw;
    }
}
.home-portfolio {
    padding: 100px 30px;
    width: 90rem;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    column-gap: 150px;
    row-gap: 50px;
    justify-content: space-between;
    position: relative;
}
.home-portfolio .title-block {
    width: 400px;
    max-width: 100%;
    position: sticky;
    top: 110px;
    height: max-content;
}
.home-portfolio .portfolio-blocks {
    flex-grow: 1;
    width: 500px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 60px;
}
.home-portfolio .portfolio-blocks .case {
    width: 400px;
    padding: 10px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
.home-portfolio .portfolio-blocks .case:hover {
    background-color: white;
    -webkit-transform: scale(0.98);
    -moz-transform: scale(0.98);
    -ms-transform: scale(0.98);
    -o-transform: scale(0.98);
    transform: scale(0.98);
}
.home-portfolio img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.home-portfolio h2 {
    color: black;
    font-family: var(--tertiary-font);
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 35px;
}
.home-portfolio h3 {
    color: black;
    font-family: var(--tertiary-font);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}
.home-portfolio h4 {
    color: black;
    font-family: var(--tertiary-font);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2px;
}
.home-portfolio h5 {
    color: black;
    font-family: var(--tertiary-font);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.home-portfolio h6 {
    color: black;
    font-family: var(--tertiary-font);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 15px;
}
.home-portfolio p {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #707070;
}
.home-portfolio .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.home-portfolio .tags span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #797979;
    padding: 5px 10px;
    background-color: #ececec;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.home-portfolio .tags span.active {
    background-color: #052c6c;
    color: white;
}
@media (max-width: 1200px) {
    .home-portfolio {
        display: block;
    }
    .home-portfolio .title-block {
        position: static;
        width: 100%;
        margin-bottom: 50px;
        width: 600px;
        max-width: 100%;
        padding: 0 10px;
    }
    .home-portfolio .title-block h2 {
        font-size: 10vw;
        margin-bottom: 10px;
    }
    .home-portfolio .title-block h3 {
        font-size: 1.1rem;
    }
    .home-portfolio .portfolio-blocks {
        width: 100%;
    }
    .home-portfolio .portfolio-blocks .case {
        flex-grow: 1;
    }
}
.home-news {
    padding: 30px 0;
    width: 100%;
    overflow: hidden;
}
.home-news .title-block {
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto 40px auto;
    padding: 0 30px;
}
.home-news .title-block h2 {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.home-news .title-block h3 { /* was h6, now h3 for subtitle */
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 35px;
    width: 800px;
    max-width: 100%;
}
.home-news .news-buttons {
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto 20px auto;
    padding: 0 30px;
    display: flex;
    gap: 10px;
}
.home-news .news-buttons button {
    background-color: white;
    color: #131313;
    font-size: 1.4rem;
    height: 3.4rem;
    width: 3.4rem;
    border: 0;
    outline: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.home-news .news-buttons button:hover {
    background-color: var(--ang-green);
    color: white;
}
.home-news .news-blocks {
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto 40px auto;
    padding: 0 30px;
    display: flex;
    gap: 20px;
}
.home-news .news-blocks .news-story {
    display: flex;
    flex-direction: column;
    min-width: 550px;
    max-width: 100%;
    background-color: white;
    padding: 40px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
}
.home-news .news-blocks .news-story:nth-child(1) {
    --news-tag-color: white;
    --news-tag-bg: var(--ang-green);
    background-color: var(--ang-green-light);
    color: rgb(46, 46, 46);
}
.home-news .news-blocks .news-story:nth-child(2) {
    --news-tag-color: white;
    --news-tag-bg: var(--ang-cyan);
    background-color: var(--ang-cyan-light);
    color: rgb(46, 46, 46);
}
.home-news .news-blocks .news-story:nth-child(3) {
    --news-tag-color: white;
    --news-tag-bg: var(--ang-blue);
    background-color: var(--ang-blue-light);
    color: rgb(46, 46, 46);
}
.home-news .news-blocks .news-story:nth-child(4) {
    --news-tag-color: white;
    --news-tag-bg: var(--ang-purple);
    background-color: var(--ang-purple-light);
    color: rgb(46, 46, 46);
}
.home-news .news-blocks .news-story:nth-child(5) {
    --news-tag-color: white;
    --news-tag-bg: var(--ang-pink);
    background-color: var(--ang-pink-light);
    color: rgb(46, 46, 46);
}
.home-news .news-blocks .news-story:nth-child(6) {
    --news-tag-color: white;
    --news-tag-bg: var(--ang-red);
    background-color: var(--ang-red-light);
    color: rgb(46, 46, 46);
}
.home-news .news-blocks .news-story img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.home-news .news-blocks .news-story h4 {
    font-family: var(--secondary-font);
    color: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.home-news .news-blocks .news-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.home-news .news-blocks .news-story p {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}
.home-news .news-blocks .news-story .link {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    text-align: right;
    flex-grow: 1;
}
.home-news .news-blocks .news-story .link span {
    font-family: var(--secondary-font);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0.8;
}
.home-news .news-blocks .news-story .link p {
    font-family: var(--tertiary-font);
    font-size: 1rem;
    font-weight: 800;
    color: inherit;
    width: max-content;
    max-width: 100%;
}
.home-news .news-blocks .news-story .link p:hover {
    opacity: 0.7;
}
@media (max-width: 900px) {
    .home-news .title-block h2 {
        font-size: 9vw;
    }
    .home-news .title-block h3 {
        font-size: 1.5rem;
        font-weight: 600;
        width: 100%;
    }
    .home-news .news-blocks .news-story {
        min-width: 85vw;
    }
}
.home-marquee .marquee {
	position: relative;
	display: flex;
    align-items: stretch;
	overflow: hidden;
    -webkit-user-select: none;
	user-select: none;
	padding: 0;
    flex-grow: 1;
}
.home-marquee {
    padding: calc(100px + 5vh) 0;
}
.home-marquee .marquee li {
    width: 600px;
    max-width: 80vw;
    margin-right: 20px;
    background-color: #e6e6e6;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
}
.home-marquee .marquee li .context-image {
    width: 100%;
    height: 500px;
    padding: 30px 50px 90px 50px;
}
.home-marquee .marquee li .context-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    -webkit-filter: drop-shadow(0px 0px 10px #0000002d);
    filter: drop-shadow(0px 0px 10px #0000002d);
}
.home-marquee .marquee li .content {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: left;
}
.home-marquee .marquee li .content img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.home-marquee .marquee li .content .text {
    flex-grow: 1;
}
.home-marquee .marquee li .content .text h6 {
    font-family: var(--tertiary-font);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2px;
}
.home-marquee .marquee li .content .text p {
    font-family: var(--tertiary-font);
    font-size: 1rem;
    font-weight: 500;
    color: #363636;
    margin: 0;
}
.home-marquee .marquee-content {
	flex-shrink: 0;
	display: flex;
    align-items: stretch;
	list-style: none;
	text-align: center;
	margin: 0;
	padding: 0;
}

@keyframes scroll {
	from {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
}
	to {
		-webkit-transform: translateX(-100%);
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
		transform: translateX(-100%);
}
}

@media (prefers-reduced-motion: reduce) {
	.home-marquee .marquee-content {
		animation-play-state: paused !important;
	}
}
.home-marquee .marquee-content {
	-webkit-animation: scroll 120s linear infinite;
	animation: scroll 120s linear infinite;
}

/* Reverse animation */
.home-marquee .marquee-reverse .marquee-content {
	animation-direction: reverse;
}
.home-marquee .marquee-fit-content {
	max-width: fit-content;
}
.home-marquee .marquee-pos-absolute .marquee-content:last-child {
	position: absolute;
	top: 0;
	left: 0;
}
.home-marquee .marquee-pos-absolute .marquee-content:last-child {
	animation-name: scroll-abs;
}

@keyframes scroll-abs {
	from {
		transform: translateX(calc(100% + var(--gap)));
	}
	to {
		transform: translateX(0);
	}
}
@media (max-width: 900px) {
    .home-marquee .marquee li {
        width: 500px;
    }
    .home-marquee .marquee li .context-image {
        height: 300px;
        padding: 30px 20px 50px 20px;
    }
    .home-marquee .marquee li .content .text h3 {
        font-size: 1.2rem;
        margin: 0;
    }
    .home-marquee .marquee li .content .text p {
        font-size: 0.8rem;
    }
    .home-marquee .marquee li .content img {
        width: 40px;
        height: 40px;
    }
}
.home-cta {
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px calc(100px + 5vh) 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.home-cta .website-test-block, .home-cta .hosting-block {
    width: 500px;
    max-width: 100%;
    flex-grow: 1;
    background-color: white;
    color: black;
    padding: 50px 70px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
}
@media (max-width: 600px) {
    .home-cta .website-test-block, .home-cta .hosting-block {
        padding: 25px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .home-cta .website-test-block span, .home-cta .hosting-block span {
        justify-content: center;
    }
}

.home-cta .website-test-block:hover, .home-cta .hosting-block:hover {
    -webkit-transform: scale(0.96);
    -moz-transform: scale(0.96);
    -ms-transform: scale(0.96);
    -o-transform: scale(0.96);
    transform: scale(0.96);
}
.home-cta .website-test-block {
    background-color: #91ec87;
    color: black;
}
.home-cta .hosting-block {
    background-color: #c4b9e9;
    color: black;
}
.home-cta .website-test-block h3, .home-cta .hosting-block h3 {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    width: 500px;
    max-width: 100%;
}
.home-cta .website-test-block p, .home-cta .hosting-block p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    width: 300px;
    max-width: 100%;
    opacity: 0.7;
}
.home-cta .website-test-block span, .home-cta .hosting-block span {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.home-cta .website-test-block span i, .home-cta .hosting-block span i {
    margin-top: 1px;
}
.home-cta .website-test-block img, .home-cta .hosting-block img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.call-to-action {
    width: 850px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px calc(100px + 5vh) 30px;
    text-align: center;
}
.call-to-action h2 {
    font-family: var(--tertiary-font);
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.call-to-action p {
    font-size: 1.3rem;
    font-weight: 500;
    width: 600px;
    max-width: 100%;
    margin: auto;
    margin-bottom: 20px;
    opacity: 0.8;
}
.call-to-action a {
    display: block;
    font-size: 1.2rem;
    width: max-content;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    font-weight: 500;
    color: white;
    background-color: rgb(24, 24, 24);
    padding: 15px 40px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
.call-to-action a:hover {
    background-color: var(--ang-green);
    color: white;
}
@media (max-width: 900px) {
    .call-to-action h2 {
        font-size: 9vw;
    }
    .call-to-action p {
        font-size: 1rem;
        width: 100%;
    }
}
.why-us .intro-content {
    width: 800px;
    max-width: 100%;
    padding: 0 60px 25px 60px;
    margin: 0 auto;
    text-align: center;
}
.why-us .intro-content h2 {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.why-us .features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 30px;
    justify-content: center;
}
.why-us .features .feature {
    width: 300px;
    max-width: 100%;
    background-color: white;
    padding: 25px 30px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
}
.why-us .features .feature img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 3px solid var(--ang-green);
}
.why-us .features .feature h3 {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    min-height: 120px;
    color: var(--ang-green);
}
.why-us .features .feature p {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0px;
}
.why-us.gd {
    --ang-green: var(--ang-purple);
    --ang-green-light: var(--ang-purple-light);
}
.sticky-image-scroll {
    max-width: calc(var(--container-width) - 60px);
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
    display: flex;
    justify-content: center;
}
.sticky-image-scroll .sticky-image {
    position: sticky;
    top: calc(var(--nav-height) + 30px);
    width: 600px;
    max-width: 100%;
    height: calc(100vh - var(--nav-height) - 60px);
}
.sticky-image-scroll .sticky-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.sticky-image-scroll .sticky-image h1 {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: var(--tertiary-font);
    color: #141414;
    background-color: #f1f1f1;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 10px 20px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    border-radius: 7px;
    max-width: calc(100% - 30px);
}
.sticky-image-scroll .content {
    width: 600px;
    padding-left: 50px;
}
.sticky-image-scroll .content h2 {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.sticky-image-scroll .content h4 {
    font-family: var(--tertiary-font);
    color: var(--ang-green);
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.sticky-image-scroll .content p {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0;
}
.sticky-image-scroll .content .block {
    width: 100%;
    max-width: 100%;
    padding: 100px 30px;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hide mobile images on desktop */
.sticky-image-scroll .mobile-block-image {
    display: none;
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .sticky-image-scroll {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }
    
    .sticky-image-scroll .sticky-image {
        position: relative;
        top: auto;
        width: 100%;
        height: 60vh;
        margin-bottom: 40px;
    }
    
    .sticky-image-scroll .content {
        width: 100%;
        padding-left: 0;
    }
    
    .sticky-image-scroll .content .block {
        min-height: auto;
        padding: 60px 20px;
    }
    
    .sticky-image-scroll .content h4 {
        font-size: 1.5rem;
    }
    
    .sticky-image-scroll .content p {
        font-size: 1rem;
    }
}

/* Mobile breakpoint */
@media (max-width: 1024px) {
    .sticky-image-scroll {
        padding: 0 15px;
    }
    
    /* Hide main sticky image on mobile */
    .sticky-image-scroll .sticky-image {
        display: none;
    }
    
    /* Show mobile images */
    .sticky-image-scroll .mobile-block-image {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .sticky-image-scroll .mobile-block-image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        object-position: center;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        border-radius: 10px;
    }
    
    .sticky-image-scroll .content .block {
        padding: 40px 15px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .sticky-image-scroll .content .block:last-child {
        border-bottom: none;
    }
    
    .sticky-image-scroll .content h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .sticky-image-scroll .content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
    .sticky-image-scroll .mobile-block-image img {
        height: 200px;
    }
    
    .sticky-image-scroll .content .block {
        padding: 30px 10px;
    }
    
    .sticky-image-scroll .content h4 {
        font-size: 1.2rem;
    }
    
    .sticky-image-scroll .content p {
        font-size: 0.9rem;
    }
}
.services-info.gd {
    --ang-green: var(--ang-purple);
    --ang-green-light: var(--ang-purple-light);
}
.services-info .intro-content {
    width: 800px;
    max-width: 100%;
    padding: 0 40px 25px 40px;
}
.services-info .intro-content h2 {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.our-process {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 40px;
    margin-top: 120px;
    background-color: white;
    color: black;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
}
.our-process span {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: 100%;
    text-align: center;
    font-family: var(--tertiary-font);
    color: white;
    background-color: var(--ang-green);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 800;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;  
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.our-process span i {
    font-size: 1.2rem;
}
.our-process h2 {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-align: center;
}
.our-process h4 {
    font-family: var(--tertiary-font);
    color: inherit;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0;
}
.our-process p {
    /* font-family: var(--tertiary-font); */
    color: inherit;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0px;
    color: #696969;
}
.our-process .process-steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.our-process .process-steps .step {
    background-color: white;
    padding: 30px 0;
    border-bottom: 1px solid #cccccc;
}
.our-process .process-steps .step:last-of-type {
    border-bottom: none;
    padding-bottom: 20px;
}
.our-process .process-steps .step .title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.testimonial-marquee h2 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.testimonial-marquee .review-block {
    flex-grow: 1;
    display: flex;
    flex-direction: column;justify-content: space-between;
}
.testimonial-marquee .title-block p {
    font-family: var(--secondary-font);
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    background-color: var(--ang-green);
    width: max-content;
    max-width: 100%;
    padding: 5px 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.testimonial-marquee .author {
    font-family: var(--secondary-font);
    color: #223d1f;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0px;
    padding-top: 20px;
    text-align: right;
    width: 100%;
    display: block;
}
.testimonial-marquee .marquee {
	position: relative;
	display: flex;
    align-items: stretch;
	overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
	user-select: none;
	padding: 0;
    flex-grow: 1;
}
.testimonial-marquee .marquee li {
    width: 600px;
    max-width: 70vw;
    margin: 0;
    margin-right: 30px;
    overflow: hidden;
    font-family: var(--tertiary-font);
    color: #242424;
    font-size: calc(1rem + 0.5vw);
    font-weight: 900;
    background-color: var(--ang-green-light);
    padding: 40px 50px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
}
.testimonial-marquee .marquee li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.testimonial-marquee .marquee-content {
    min-width: 100%;
	flex-shrink: 0;
	display: flex;
    align-items: stretch;
    justify-content: space-evenly;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (prefers-reduced-motion: reduce) {
	.testimonial-marquee .marquee-content {
		animation-play-state: paused !important;
	}
}
.testimonial-marquee .marquee-content {
	-webkit-animation: scroll 50s linear infinite;
	animation: scroll 50s linear infinite;
}

/* Reverse animation */
.testimonial-marquee .marquee-reverse .marquee-content {
	animation-direction: reverse;
}
.testimonial-marquee .marquee-fit-content {
	max-width: fit-content;
}
.testimonial-marquee .marquee-pos-absolute .marquee-content:last-child {
	position: absolute;
	top: 0;
	left: 0;
}
.testimonial-marquee .marquee-pos-absolute .marquee-content:last-child {
	animation-name: scroll-abs;
}
.case-studies {
    --tag-bg: var(--ang-green-light);
    --tag-color: #232523;
    --story-link-color: var(--ang-green);

    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 40px 0 100px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}
.case-studies.portfolio {
    --tag-bg: #dde9f5;
    --tag-color: #232325;
    --story-link-color: var(--ang-blue);
}
.case-studies.news {
    --tag-bg: var(--ang-cyan-light);
    --tag-color: #232425;
    --story-link-color: var(--ang-cyan);
}
.case-studies .story {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 10px;
    align-items: stretch;
    width: 100%;
}
.case-studies .story a:has(img) {
    position: relative;
    overflow: hidden;
    display: block;
    width: 300px;
    max-width: 100%;
    min-height: 500px;
    flex-grow: 1;
}
.case-studies .story a:has(img) img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.case-studies .story-content {
    width: 400px;
    max-width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.case-studies .story-content h5 {
    font-family: var(--secondary-font);
    color: #141414;
    font-size: calc(1.75rem + 1.5vw);
    font-weight: 800;
    margin-bottom: 20px;
}
.case-studies .story-content h6 {
    font-family: var(--secondary-font);
    color: #141414;
    font-size: calc(1rem + 0.25vw);
    font-weight: 600;
    margin-bottom: 20px;
}
.case-studies .story-content p {
    font-family: var(--primary-font);
    color: #141414;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0px;
}
.case-studies .story-content p:last-of-type {
    margin-bottom: 20px;
}
.case-studies .story-content p.date {
    font-family: var(--tertiary-font);
    color: var(--story-link-color);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
}
.case-studies .story-content .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}
.case-studies .story-content .tags span {
    font-family: var(--tertiary-font);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--tag-color);
    padding: 5px 15px;
    background-color: var(--tag-bg);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: default;
}
.case-studies .story-content .tags span.active {
    --tag-color: white;
    --tag-bg: var(--ang-blue);
}
.case-studies .story-content a.read-more {
    display: block;
    position: relative;
    color: var(--story-link-color);
    font-family: var(--tertiary-font);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: auto;
    margin-left: auto;
    width: max-content;
    max-width: 100%;
}
.case-studies .story-content a.read-more::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--story-link-color);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}
.case-studies .story-content a.read-more:hover::after {
    width: 100%;
}
.case-studies button#loadMore, .case-studies button#loadMoreNews {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 15px 25px;
    background-color: transparent;
    color: var(--story-link-color);
    font-family: var(--secondary-font);
    font-size: 1.3rem;
    font-weight: 400;
    border: 2px solid var(--story-link-color);
    outline: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.case-studies button#loadMore span, .case-studies button#loadMoreNews span {
    position: relative;
    height: 16px;
    width: 16px;
    display: block;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.case-studies button#loadMore span::before, .case-studies button#loadMoreNews span::before {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--story-link-color);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;

}
.case-studies button#loadMore span::after, .case-studies button#loadMoreNews span::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 100%;
    background-color: var(--story-link-color);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.case-studies button#loadMore:hover, .case-studies button#loadMoreNews:hover {
    background-color: var(--story-link-color);
    color: white;
}
.case-studies button#loadMore:hover span::before,
.case-studies button#loadMore:hover span::after,
.case-studies button#loadMoreNews:hover span::before,
.case-studies button#loadMoreNews:hover span::after {
    background-color: white;
}
.case-studies button#loadMore:hover span,
.case-studies button#loadMoreNews:hover span {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
.filters {
    position: fixed;
    top: 1rem;
    left: 0;
    bottom: 1rem;
    padding: 20px;
    overflow-y: auto;
    background: white;
    z-index: 9000;
    width: 300px;
    max-width: 80%;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    pointer-events: none;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-border-radius: 0 10px 10px 0;
    -moz-border-radius: 0 10px 10px 0;
    -ms-border-radius: 0 10px 10px 0;
    -o-border-radius: 0 10px 10px 0;
    border-radius: 0 10px 10px 0;
}
.filters::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}
.filters.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    pointer-events: all;
}
.filters #closeFilters {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: 0;
    background-color: #e2e2e2;
    color: #444444;
    font-size: 1.2rem;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    margin: 0 0 15px auto;
}
.filters #closeFilters:hover {
    background-color: #bebebe;
}
.filters h2 {
    font-family: var(--tertiary-font);
    color: var(--ang-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.filters .tag-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.filters .tag-container button {
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    background-color: #c3defa;
    color: #052c6c;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    border-radius: 7px;
    border: 2px solid transparent;
    outline: 0;
}
.filters .tag-container button:hover {
    border: 2px solid var(--ang-blue-light);
}
.filters .tag-container button.active {
    background-color: var(--ang-blue-light);
    border: 2px solid var(--ang-blue-light);
}
.filters .tag-container button.active:hover {
    background-color: var(--ang-blue-light);
    border: 2px solid var(--ang-blue-light);
    opacity: 0.9;
}
.filters .tag-container button.clear-filters {
    background-color: transparent;
    color: var(--ang-blue);
    border: 2px solid var(--ang-blue);
    width: max-content;
}
.filters .tag-container button.clear-filters:hover {
    background-color: var(--ang-blue);
    color: white;
    border: 2px solid var(--ang-blue);
}
#filterOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 112, 173, 0.5);
    z-index: 8000;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
#filterOverlay.active {
    opacity: 1;
    pointer-events: all;
}

.filter-options {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 40px 0 0 0;
}
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-options button {
    display: block;
    padding: 10px 20px;
    background-color: #e6e6e6;
    color: #242424;
    font-size: 1rem;
    font-weight: 500;
    border: 0;
    outline: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.filter-options button:hover {
    background-color: var(--ang-blue-light);
    color: #052c6c;
}
.filter-options .clear-filters {
    background-color: transparent;
    color: #444444;
    border: 2px solid #444444;
}
.filter-options .clear-filters:hover {
    background-color: #444444;
    color: white;
}

button.clear-filters.active {
    opacity: 0;
    pointer-events: none;
}

/* ===========================
   SKELETON LOADING STYLES
   =========================== */
.skeleton-loader {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    width: 100%;
}

.skeleton-story {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 10px;
    align-items: stretch;
    width: 100%;
}

.skeleton-image {
    width: 300px;
    max-width: 100%;
    height: 500px;
    flex-grow: 1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

.skeleton-content {
    width: 400px;
    max-width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skeleton-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.skeleton-tag {
    width: 80px;
    height: 24px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 10px;
}

.skeleton-tag:nth-child(2) {
    width: 60px;
}

.skeleton-tag:nth-child(3) {
    width: 100px;
}

.skeleton-title {
    width: 70%;
    height: 28px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-subtitle {
    width: 50%;
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 20px;
}

.skeleton-text {
    width: 100%;
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-text:last-child {
    width: 80%;
}

.skeleton-button {
    width: 100px;
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
    margin-top: auto;
    margin-left: auto;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.gallery-marquee .marquee {
	position: relative;
	display: flex;
    align-items: stretch;
	overflow: hidden;
    -webkit-user-select: none;
	user-select: none;
	padding: 0;
    flex-grow: 1;
}
.gallery-marquee {
    padding: calc(100px + 5vh) 0;
}
.gallery-marquee .marquee li {
    width: 600px;
    max-width: 80vw;
    margin-right: 20px;
    background-color: #e6e6e6;
    padding: 20px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
}
.gallery-marquee .marquee li .context-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
    padding: 10px;
}
.gallery-marquee .marquee li .context-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.gallery-marquee .marquee li .content {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: left;
}
.gallery-marquee .marquee li .content img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.gallery-marquee .marquee li .content .text {
    flex-grow: 1;
}
.gallery-marquee .marquee li .content .text h3 {
    font-family: var(--tertiary-font);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2px;
}
.gallery-marquee .marquee li .content .text p {
    font-family: var(--tertiary-font);
    font-size: 1rem;
    font-weight: 500;
    color: #7c7c7c;
    margin: 0;
}
.gallery-marquee .marquee-content {
	flex-shrink: 0;
	display: flex;
    align-items: stretch;
	list-style: none;
	text-align: center;
	margin: 0;
	padding: 0;
}
.gallery-marquee .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gallery-marquee .tags span {
    font-family: var(--tertiary-font);
    font-size: 0.8rem;
    font-weight: 700;
    color: #1b2122;
    padding: 5px 10px;
    background-color: var(--ang-cyan-light);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

@media (prefers-reduced-motion: reduce) {
	.gallery-marquee .marquee-content {
		animation-play-state: paused !important;
	}
}
.gallery-marquee .marquee-content {
	-webkit-animation: scroll 120s linear infinite;
	animation: scroll 120s linear infinite;
}

/* Reverse animation */
.gallery-marquee .marquee-reverse .marquee-content {
	animation-direction: reverse;
}
.gallery-marquee .marquee-fit-content {
	max-width: fit-content;
}
.gallery-marquee .marquee-pos-absolute .marquee-content:last-child {
	position: absolute;
	top: 0;
	left: 0;
}
.gallery-marquee .marquee-pos-absolute .marquee-content:last-child {
	animation-name: scroll-abs;
}
@media (max-width: 900px) {
    .gallery-marquee .marquee li {
        width: 500px;
    }
    .gallery-marquee .marquee li .context-image {
        height: 300px;
        padding: 30px 20px 50px 20px;
    }
    .gallery-marquee .marquee li .content .text h3 {
        font-size: 1.1rem;
    }
    .gallery-marquee .marquee li .content .text p {
        font-size: 0.8rem;
    }
    .gallery-marquee .marquee li .content img {
        width: 40px;
        height: 40px;
    }
}
.pricing-from {
    width: 100%;
    max-width: 100%;
    padding: 30px 0;
    text-align: center;
}
.pricing-from h2 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.pricing-from p {
    font-family: var(--primary-font);
    color: #141414;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0px;
}
.pricing-from .price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
}
.pricing-from .price-item {
    width: 400px;
    max-width: 100%;
    background-color: white;
    padding: 10px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
}
.pricing-from .price-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: calc(25px - 10px);
    -moz-border-radius: calc(25px - 10px);
    -ms-border-radius: calc(25px - 10px);
    -o-border-radius: calc(25px - 10px);
    border-radius: calc(25px - 10px);
}
.pricing-from .price-item .text-container {
    padding: 20px;
    text-align: center;
}
.pricing-from .price-item .text-container h3 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.pricing-from .price-item .text-container p {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0px;
}
.pricing-from .price-item .text-container p.price {
    font-family: var(--tertiary-font);
    color: var(--ang-green);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0px;
}
.graphic-services {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 30px 0;
}
.graphic-services .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}
.graphic-services .service-list .service-block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
    width: 100%;
}
.graphic-services .service-list img {
    width: 400px;
    height: 400px;
    flex-grow: 1;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.news-story-page {
    --ang-green-light: var(--ang-cyan-light);
    --ang-green: var(--ang-cyan);
}
.case-study-page {
    --ang-green-light: var(--ang-blue-light);
    --ang-green: var(--ang-blue);
}
.graphic-services .service-list h3 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 4rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 3px;
    /* text-transform: uppercase; */
}
.graphic-services .service-list p {
    /* font-family: var(--alt-font); */
    color: #303030;
    font-size: 1rem;
    font-weight: 200;
    margin-bottom: 0px;
}
.story-hero {
    width: 100%;
    padding-top: var(--nav-height);
    background-color: var(--ang-green-light);
}
.story-hero .story-hero-container {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 75px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.story-hero img {
    width: 400px;
    max-width: 100%;
    height: fit-content;
    align-self: flex-end;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
.story-hero .hero-content {
    width: 600px;
    max-width: 100%;
}
.story-hero .hero-content a {
    display: block;
    width: max-content;
    max-width: 100%;
    text-align: center;
    font-family: var(--secondary-font);
    color: white;
    background-color: var(--ang-green);
    margin-bottom: 15px;
    padding: 5px 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}
.story-hero .hero-content h1 {
    font-family: var(--secondary-font);
    color: var(--ang-purple);
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0px;
    width: 600px;
    max-width: 100%;
}
.story-hero .hero-content h6 {
    font-family: var(--tertiary-font);
    color: var(--ang-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0px;
    width: 600px;
    max-width: 100%;
}
.story-hero .hero-content p {
    font-family: var(--primary-font);
    color: var(--ang-purple);
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0px;
    width: 600px;
    max-width: 100%;
}
.story-hero .tags {
    margin-top: 20px;
    margin-bottom: 0px;
    width: 600px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.story-hero .tags span {
    font-family: var(--tertiary-font);
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    padding: 5px 15px;
    background-color: var(--ang-green);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.story-area {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 75px 0;
    display: flex;
    justify-content: space-between;
    column-gap: 75px;
}
.story-area.news {
    width: var(--container-width);
    position: relative;
}
.story-area .story-content {
    width: 600px;
    flex-grow: 1;
    max-width: 900px;
}
.story-area .other-stories {
    background-color: #ffffff;
    width: 500px;
    max-width: 100%;
    height: max-content;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.story-area.news .other-stories {
    position: sticky;
    top: calc(var(--nav-height) + 30px);
    align-self: flex-start;
    max-height: fit-content;
}
.story-area .story-content h1 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.story-area .story-content h2 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.story-area .story-content h3 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.story-area .story-content h4 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.story-area .story-content h5 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.story-area .story-content h6 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.story-area .story-content p {
    font-family: var(--primary-font);
    color: #141414;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 7px;
}
.story-area .story-content img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.story-area .other-stories h2 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-align: center;
}
.story-area .other-stories .story {
    display: flex;
    align-items: stretch;
    width: 100%;
    background-color: #f9f9f9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.story-area .other-stories .story .image-link {
    position: relative;
    padding: 10px 0 10px 10px;
    width: 175px;
    max-width: 100%;
    flex-shrink: 0;
}
.story-area .other-stories .story img {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 0;
    bottom: 10px;
    width: calc(100% - 10px);
    height: calc(100% - 20px);
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.story-area .other-stories .story .small-story-content {
    padding: 10px 15px;
    flex-grow: 1;
}
.story-area .other-stories .story h3 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;    
    
}
.story-area .other-stories .story p {
    font-family: var(--primary-font);
    color: #141414;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 0;
}
.story-area .other-stories .story a.read-more {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-top: 10px;
    font-family: var(--secondary-font);
    color: var(--ang-green);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    margin-left: auto;
}
.story-area .other-stories .story strong {
    font-family: var(--tertiary-font);
    color: var(--ang-green);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}
.story-area .other-stories .view-more {
    display: block;
    width: 100%;
    text-align: center;
    border: 2px solid var(--ang-green);
    color: white;
    background-color: var(--ang-green);
    font-family: var(--tertiary-font);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.story-area .other-stories .view-more:hover {
    background-color: transparent;
    color: var(--ang-green);
}
@media (max-width: 1400px) {
    .story-area {
        flex-direction: column;
        gap: 50px;
    }
    .story-area .story-content {
        width: 100%;
        margin: auto;
    }
    .story-area .other-stories {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .story-area .other-stories h2 {
        width: 100%;
        margin-bottom: 20px;
    }
    .story-area .other-stories .story {
        width: 20%;
        flex-grow: 1;
        max-width: 100%;
        flex-direction: column;
    }
    .story-area .other-stories .story .image-link {
        height: 200px;
        width: calc(100% - 10px);
    }
    .story-area .other-stories .story .small-story-content {
        flex-grow: 1;
        display: grid;
    }
    .story-area .other-stories .story .small-story-content a {
        margin-top: auto;
    }
}
@media (max-width: 1080px) {
    .story-area .other-stories .story {
        width: 40%;
    }
}
@media (max-width: 650px) {
    .story-area .other-stories .story {
        width: 100%;
    }
}
.other-projects {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 50px 0;
}
.other-projects h2 {
    width: 100%;
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.other-projects h3 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.other-projects p {
    font-family: var(--primary-font);
    color: #141414;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
}
.other-projects .project {
    width: 20%;
    max-width: 100%;
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    background-color: white;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
.other-projects .project .project-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.other-projects .project .project-content a {
    display: block;
    width: max-content;
    max-width: 100%;
    font-family: var(--secondary-font);
    color: var(--ang-green);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px;
    text-decoration: none;
    margin-left: auto;
}
.other-projects .project img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.other-projects .view-more {
    width: 100%;
    text-align: center;
    border: 2px solid var(--ang-green);
    color: var(--ang-green);
    font-family: var(--tertiary-font);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 15px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.other-projects .view-more:hover {
    background-color: var(--ang-green);
    color: white;
}
@media (max-width: 1250px) {
    .other-projects .project {
        width: 40%;
    }
}
@media (max-width: 700px) {
    .other-projects .project {
        width: 100%;
    }
}
.case-study-area {
    width: var(--container-width-narrow);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 75px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.case-study-area a:has(img) {
    width: 400px;
    max-width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.case-study-area img {
    width: 100%;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    border-radius: 7px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.075);
}
.case-study-area .title-block,
.case-study-area .text-block {
    width: 100%;
}
/* .case-study-area .title-content,
.case-study-area .text-content {
    width: 700px;
    max-width: 100%;
    margin: auto;
} */
.case-study-area .title-block h2{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    padding: 30px 0;
    font-family: var(--tertiary-font);
    color: var(--ang-green);

}
.case-study-area .text-block {
    padding: 30px 0;
}
.case-study-area .text-block h1 {
    font-family: var(--tertiary-font);
    color: var(--ang-green-light);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}
.case-study-area .text-block h2 {
    font-family: var(--tertiary-font);
    color: var(--ang-green-light);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.case-study-area .text-block h3 {
    font-family: var(--tertiary-font);
    color: var(--ang-green-light);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.case-study-area .text-block h4 {
    font-family: var(--tertiary-font);
    color: var(--ang-green);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 40px;
}
.case-study-area .text-block h5 {
    font-family: var(--tertiary-font);
    color: var(--ang-green-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.case-study-area .text-block h6 {
    font-family: var(--tertiary-font);
    color: var(--ang-green-light);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.case-study-area .text-block strong,
.case-study-area .text-block b,
.case-study-area .text-block [style*="font-weight: bolder"] {
    font-family: var(--tertiary-font);
    color: var(--ang-green-light);
    font-weight: 800;
}
.case-study-area .text-block a {
    position: relative;
    display: inline-block;
    font-family: var(--tertiary-font);
    color: var(--ang-purple);
    font-weight: 800;
}
.case-study-area .text-block a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--ang-purple);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}
.case-study-area .text-block a:hover::after {
    width: 0%;
}
.case-study-area .text-block p, .case-study-area .text-block ul {
    font-family: var(--primary-font);
    color: #141414;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.case-study-area .text-block p:last-of-type {
    margin-bottom: 0px;
}
.case-study-area a.visit-website {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-top: 20px;
    font-family: var(--secondary-font);
    color: white;
    background-color: var(--ang-green);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none;
}
.case-study-area a.visit-website:hover {
    background-color: var(--ang-green-light);
    color: white;
}
.faqs {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 100px 0;
}
.faqs .faqs-container {
    background-color: white;
    padding: 30px 30px 50px 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.faqs h2 {
    font-family: var(--tertiary-font);
    color: var(--ang-red);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0;
}
.faqs .sub-header {
    font-family: var(--secondary-font);
    color: #141414;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 35px;
}
/* Bootstrap Accordion Custom Styles for .faqs */
.faqs .accordion {
    background: none;
    border: none;
}
.faqs .accordion-item {
    background-color: transparent;
    border: 0;
    margin-bottom: 0;
    overflow: hidden;
    border-top: 1px solid var(--ang-red-light);
}
.faqs .accordion-item:first-of-type {
    border-top: none;
}
.faqs .accordion-item:last-child {
    margin-bottom: 0;
}
.faqs .accordion-header {
    margin: 0;
}
.faqs .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    color: #141414;
    font-family: var(--primary-font);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
}
.faqs .accordion-button::after {
    content: none;
}
.faqs .accordion-button span {
    font-size: 0.8rem;
    padding: 0 10px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.faqs .accordion-button:not(.collapsed) span {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.faqs .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--ang-red);
}
.faqs .accordion-button:focus {
    box-shadow: 0;
    outline: none;
}

.faqs .accordion-button.collapsed::after {
    background-color: transparent;
}
.faqs .accordion-body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: start;
    background: transparent;
    color: #2e2424;
    font-family: var(--primary-font);
    font-size: 1.1rem;
    padding: 0 0 30px 0;
    border-top: 0;
}
.faqs .accordion-body strong {
    font-weight: 600;
    color: #791d1d;
}
.faqs .accordion-item:last-of-type .accordion-body {
    padding: 0;
}
.faqs .accordion-body .accordion-content {
    width: 600px;
    max-width: 100%;
    flex-grow: 1;
    background-color: var(--ang-red-light);
    padding: 15px 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.faqs .accordion-body .accordion-content p {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 5px;
}
.faqs .accordion-body .accordion-content p:last-of-type {
    margin-bottom: 0;
}
.faqs .accordion-body .accordion-content ul {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 300;
}
.faqs .accordion-body .accordion-other {
    width: 600px;
    max-width: 100%;
    padding: 5px 0;
}
.faqs .accordion-body .accordion-other h5 {
    font-family: var(--secondary-font);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2px;
}
.faqs .accordion-body .accordion-other p {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 10px;
}
.faqs .accordion-body .accordion-other ul {
    color: var(--ang-red);
}
.faqs .accordion-body .accordion-other ul li {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2px;
}
.faqs .accordion-body .accordion-other ul li:last-child {
    margin-bottom: 0;
}
.faqs .accordion-body .accordion-other ul li a {
    color: var(--ang-red);
    text-decoration: underline;
    font-weight: 500;
}
.faqs .accordion-body .accordion-other ul li a:hover {
    color: #791d1d;
}
.faqs .follow-up {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 20px;
    gap: 20px;
}
.faqs .follow-up .left,
.faqs .follow-up .right {
    width: 500px;
    max-width: 100%;
    flex-grow: 1;
    padding: 40px 30px;
    background-color: white;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}
.faqs .follow-up .left h3,
.faqs .follow-up .right h3 {
    font-family: var(--tertiary-font);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    width: 500px;
    max-width: 100%;
}
.faqs .follow-up .left p,
.faqs .follow-up .right p {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 25px;
}
.faqs .follow-up .left a,
.faqs .follow-up .right a {
    margin-top: auto;
    display: block;
    font-family: var(--tertiary-font);
    font-size: 1.2rem;
    font-weight: 900;
    width: max-content;
    max-width: 100%;
    text-align: center;
    padding: 10px 20px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;    
}
.faqs .follow-up .left {
    background-color: var(--ang-red);
    color: white;
}
.faqs .follow-up .left a {
    background-color: white;
    color: var(--ang-red);
}
.faqs .follow-up .left a:hover {
    background-color: #791d1d;
    color: white;
}
.faqs .follow-up .right {
    background-color: var(--ang-red-light);
    color: #27292e;
}
.faqs .follow-up .right a {
    background-color: var(--ang-red);
    color: white;
}
.faqs .follow-up .right a:hover {
    background-color: #791d1d;
}
@media (max-width: 650px) {
    .faqs h2 {
        font-size: 2.5rem;
    }
    .faqs .follow-up .left h3, .faqs .follow-up .right h3 {
        font-size: 2rem;
    }
    .faqs .follow-up .left p, .faqs .follow-up .right p {
        font-size: 1.3rem;
    }
}
@media (max-width: 400px) {
    .faqs h2 {
        font-size: 1.8rem;
    }
    .faqs .follow-up .left h3, .faqs .follow-up .right h3 {
        font-size: 1.7rem;
    }
    .faqs .follow-up .left p, .faqs .follow-up .right p {
        font-size: 1.1rem;
    }
}
.sitemap-container {
    width: var(--container-width-narrow);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 75px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.sitemap-container .block {
    width: 300px;
    max-width: 100%;
    flex-grow: 1;
    background-color: white;
    padding: 25px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
.sitemap-container .block h2 {
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.sitemap-container .block.pages {
    width: 100%;
}
.sitemap-container .block ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sitemap-container .block ul li {
    width: 100%;
}
.sitemap-container .block.pages ul li {
    width: 300px;
    max-width: 100%;
    flex-grow: 1;
}
.sitemap-container .block ul li a i {
    width: 40px;
    height: 40px;
    background-color: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}
.sitemap-container .block ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background-color: #f7f7f7;
    color: #141414;
    font-family: var(--primary-font);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 10px 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.sitemap-container .block.pages ul li a {
    padding: 10px 15px 10px 10px;
    font-size: 1rem;
}
.sitemap-container .block ul li a:hover {
    background-color: #dadada;
}
.sitemap-container .block.pages ul li a:hover {
    background-color: var(--ang-orange);
    color: white;
}
.sitemap-container .block.pages ul li a:hover i {
    background-color: var(--ang-orange-light);
    color: white;
}
.story-area .story-content article header {
    margin-bottom: 30px;
}
.story-area .story-content article section {
    margin-bottom: 50px;
}
.story-area .story-content article section:first-of-type {
    margin-top: 50px;
}
.story-area .story-content article figure {
    background-color: white;
    overflow: hidden;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    border-radius: 7px;
}
.story-area .story-content article figure img {
    max-width: 100%;
    height: auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
.story-area .story-content article figure figcaption {
    font-family: var(--primary-font);
    color: #606060;
    font-size: 0.8rem;
    font-weight: 300;
    padding: 10px 15px;
    margin: 0;
}
.story-area .story-content article h1 {
    margin-bottom: 20px;
    font-family: var(--tertiary-font);
    color: var(--ang-green);
    font-size: 2.25rem;
    font-weight: 900;
}
.story-area .story-content article h2 {
    margin-bottom: 15px;
    font-family: var(--tertiary-font);
    color: #186474;
    font-size: 1.75rem;
    font-weight: 800;
}
.story-area .story-content article h3 {
    margin-bottom: 10px;
    margin-top: 30px;
    font-family: var(--tertiary-font);
    color: #186474;
    font-size: 1.5rem;
    font-weight: 700;
}
.story-area .story-content article h4 {
    margin-bottom: 15px;
    font-family: var(--tertiary-font);
    color: #186474;
    font-size: 1.3rem;
    font-weight: 600;
}
.story-area .story-content article h5 {
    margin-bottom: 10px;
    font-family: var(--tertiary-font);
    color: #186474;
    font-size: 1.25rem;
    font-weight: 500;
}
.story-area .story-content article h6 {
    margin-bottom: 10px;
    font-family: var(--tertiary-font);
    color: #186474;
    font-size: 1rem;
    font-weight: 400;
}
.story-area .story-content article p {
    margin-bottom: 10px;
    font-family: var(--secondary-font);
    color: #141414;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}
.story-area .story-content article p a {
    color: var(--ang-green);
    text-decoration: underline;
}
.story-area .story-content article p a:hover {
    color: var(--ang-green-light);
}
.story-area .story-content article ul {
    margin-bottom: 10px;
    padding-left: 20px;
}
.story-area .story-content article ul li {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}
.story-area .story-content article hr {
    border: 0;
    border-top: 1px solid var(--ang-green-light);
    margin: 50px 0;
}