﻿/* #region Variables */

:root {
    --midnight: #1D416D;
    --sandstone: #E2D8C1;
    --sandstone_tint: #F7F4ED;
    --fawn: #F2AE6A;
    --burnt_sienna: #E76F51;
    --lagoon: #29A193;
    --deep_teal: #31616F;
    --true_blue: #326DB2;
    --slate: #3B464C;
}

/* #endregion */

p, li {
    font-size: 18px;
}

li {
    margin-bottom: 10px;
}

a {
    color: #1D416D;
}

strong {
    font-weight: 500;
}

ins {
    text-decoration: none;
}

.btn-primary,
.btn-empty,
.btn-cancel,
.ui-icon,
.ui-datepicker-current,
.ui-datepicker-close,
.calendar-header,
.calendar-grid .active > .day {
    background: #1D416D;
}


.btn-primary:hover,
.btn-empty:hover,
.ui-icon:hover,
.ui-datepicker-current:hover,
.ui-datepicker-close:hover {
    background: #1D416Dbf;
    color: white;
}

.bg-primary-mid:before {
    background: #1D416D;
}

.split-bg-primary:after {
    background: #1D416D;
}

.modal-header {
    border-bottom: 1px solid #1D416D;
    background-color: #1D416D;
}

.icon-logout:before,
.icon-login:before,
.icon-register:before {
    filter: brightness(0%);
}

.btn-secondary {
    border-image-source: linear-gradient(to left, #1D416D, #1D416D);
}

form strong {
    font-weight: 500;
}

.swooshA:before,
.swooshB:after {
    display: none;
}

.blog-grid .blog-grid-item:not(.hide-star):after {
    background: #FCAC2F !important;
}

.events-filter .event-switch .active,
.calendar-grid .items .single {
    color: #1D416D !important;
}

.slider:before {
    background-color: #1D416D;
}

input:checked + .slider {
    background-color: #1D416D;
}

.btn-primary.solid {
    background: #1D416D;
}

.btn-primary.solid:hover {
    background: #1D416Dbf;
}

.btn-primary.solid:after {
    color: #1D416D !important;
}

.header {
    background-image: linear-gradient(to top right, #1D416D, #1D416D);
}

.desktop-hide {
    display: none !important;
}

.btn-edit {
    margin-left: 10px;
}

#txtSubject {
    width: 100%;
}

table.mceToolbar {
    margin: 0 6px 2px;
    display: inline-table;
}

.btn-like {
    cursor: pointer;
}

.btn-unlike {
    cursor: pointer;
}

.resource-grid-bottom {
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0px 15px 10px;
    width: 100%;
}

.resource-grid-bottom i {
    font-size: 30px;
    color: #666666;
}

.blog-grid-item .institution p {
    color: #1B1B1B !important;
}

#RegistrationForm h4 {
    margin-top: 20px;
}

.event-grid-bottom {
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0px 15px 10px;
    width: 100%;
}

.event-grid-bottom i {
    font-size: 30px;
    color: #666666;
}

.t-a-r{
    text-align : right;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide spin buttons in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.p0{
    padding : 0px;
}
.pr5{
    padding-right : 5px;
}

.m-t-m-30{
    margin-top : -30px;
}

.p-y-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

/* #region Header Styles */

.header-pages {
    display: flex;
    justify-content: end;
    background: var(--midnight);
}

    .header-pages a {
        background: transparent;
        color: var(--sandstone_tint);
        padding: 10px 20px;
        margin-right: 5px;
        border-radius: 20px 20px 0px 0px;
        text-decoration: none;
        transition: 0.3s;
    }

        .header-pages a.selected {
            background: var(--sandstone_tint);
            color: var(--midnight);
        }

        .header-pages a:hover {
            background: var(--sandstone_tint);
            color: var(--midnight);
        }

        .header-pages a:last-of-type {
            margin-right: 25px;
        }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    background: var(--sandstone_tint);
}

    .navbar .container-fluid {
        height: 100%;
        background: var(--sandstone_tint);
        margin-top: 10px !important;
        z-index: 1000;
    }

.navbar .nav-link {
    font-size: 16px;
}

.navbar li {
    margin: 0px;
}

.dropdown-toggle i {
    font-size: 14px;
    transition: 0.3s;
}

.dropdown-toggle.show i {
    transform: rotate(90deg);
}

.header-buttons i {
    font-size: 14px;
    margin-left: 5px;
}

.dropdown ul {
    display: none;
    position: absolute;
    min-width: 180px;
    background: #FFFFFF;
    text-align: left;
    list-style: none;
    padding: 0px;
    margin-top: 10px;
    z-index: 10;
}

.dropdown li {
    
}

.dropdown ul a {
    width: 100%;
    background: #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    padding: 10px 20px 11px;
    white-space: nowrap;
    box-sizing: border-box;
    color: var(--slate);
    text-decoration: none;
}

        .navbar .dropdown-menu a:not(:first-of-type) {
            border-top: 1px solid var(--sandstone);
        }

.nav-link {
    color: var(--slate);
}

.header-logo {
    display: block;
    max-width: 50%;
    margin-left: 50px;
    z-index: 10;
}

.header-logo img {
    width: 100%;
    max-height: 150px;
}

.header-buttons {
    display: flex;
    justify-content: end;
    align-items: center;
}

    .navbar .nav-link {
        height: fit-content;
        color: var(--slate);
        font-weight: 300;
        padding: 10px 20px;
        text-decoration: none;
    }

.search-button {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 50px !important;
    height: 50px !important;
    padding: 5px !important;
    margin: 0px 45px 0px 30px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
}

    .search-button i {
        height: fit-content;
        font-size: 20px;
        margin: 0px !important;
    }

.navbar .search-button {
    border-top: 1px solid var(--sandstone);
}

.login-button {
    height: fit-content;
    background: var(--midnight);
    color: #FFFFFF !important;
    font-weight: 400 !important;
    padding: 10px 50px 10px 15px !important;
    border-radius: 100px 0px 0px 100px;
    text-decoration: none;
    transition: 0.3s;
}

    .login-button:hover {
        transform: scale(1.1);
    }

.login-button i {
    font-size: 16px;
    margin-right: 7.5px
}

/* #endregion */

/* #region Footer Styles */

.footer-about {
    display: flex;
    flex-direction: row;
    background: var(--sandstone);
    padding: 100px 10% 75px;
    border-radius: 50px 50px 0px 0px;
}

    .footer-about.latest-events-section {
        flex-direction: column;
    }

    .footer-about .col-md-6 {
        display: flex;
        flex-direction: column;
    }

    .footer-about .col-md-6:first-child {
        padding-right: 5%;
    }

    .footer-about h4 {
        color: var(--midnight);
        font-size: 22px;
        margin: 0px;
    }

    .footer-about h2 {
        color: var(--midnight);
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    .footer-about p {
        color: var(--slate);
        font-size: 18px;
        margin-bottom: 44px;
    }

    .footer-about .btn-banner {
        width: fit-content;
    }

    .footer-about img {
        width: 100%;
        border-radius: 20px 20px 0px 20px;
    }

    .footer-about span:not(.latest-events-section) {
        color: var(--slate);
        padding-left: 25px;
        margin-top: 10px;
    }

.footer-main {
    background: var(--midnight);
    
}

    .footer-main .search-row {
        padding: 50px 0px;
    }

    .footer-main hr {
        color: var(--true_blue);
        margin: 0px;
    }

    .footer-lists {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        padding: 50px 10%;
    }

    .footer-lists .col-md-2 {
        display: flex;
        flex-direction: column;
    }

    .footer-lists h5 {
        color: var(--sandstone_tint);
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 30px;
    }

    .footer-lists a {
        color: var(--sandstone_tint) !important;
        line-height: 28px;
        font-weight: 250;
        text-decoration: none;
        transition: 0.2s;
    }

    .footer-lists a:hover {
        color: #FFFFFF !important;
        font-weight: 350;
    }

    .footer-lists .col-md-4 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .footer-main .company-logos {
        display: flex;
        flex-direction: row;
        justify-content: start;
    }

        .footer-main .company-logos a {
            display: flex;
            align-items: center;
            width: 30%;
            margin-right: 25px;
        }

    .footer-lists img {
        width: 100%;
    }

    .footer-lists p {
        color: var(--sandstone_tint);
        line-height: 28px;
        font-weight: 200;
        margin: 0px;
    }

    .footer-copyright {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 25px 10%;
    }

        .footer-copyright p {
            color: var(--sandstone_tint);
            line-height: 24px;
            font-size: 16px;
            font-weight: 150;
            margin: 0px;
        }

        .footer-copyright .social-icons {
            display: flex;
            align-items: center;
            height: 35px;
        }

        .footer-copyright a {
            height: 100%;
            margin-left: 25px;
        }

        .footer-copyright img {
            height: 100%;
        }

/* #endregion */

/* #region General Styles */

.white-section {
    padding: 75px 10%;
}

    .white-section h1,
    .white-section h2 {
        color: var(--midnight);
        font-size: 44px;
        line-height: 44px;
    }

    .white-section h2 {
        padding-bottom: 15px;
        border-bottom: 1px solid var(--lagoon);
    }

    .white-section p {
        color: var(--slate);
        line-height: 1.2;
    }

.btn-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    background: var(--midnight);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 25px 15px 20px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-banner i {
        color: var(--fawn);
        margin-left: 15px;
        font-size: 14px;
    }

        .btn-banner i:not(.no-scale) {
            transform: scaleX(2);
        }

    .btn-banner.btn-white {
        background: var(--sandstone_tint);
        color: var(--midnight);
    }

    .btn-banner.btn-white i {
        color: var(--true_blue);
    }

.btn-left {
    border-radius: 0px 100px 100px 0px;
}

.btn-right {
    border-radius: 100px 0px 0px 100px;
}

.row {
    display: flex;
    flex-direction: row;
}

hr {
    height: 1px !important;
}

breadcrumb {
    font-size: 20px;
    font-weight: 300;
}

breadcrumb a {
    text-decoration: none;
}

.fit-content {
    width: fit-content;
    height: fit-content;
}

/* #endregion*/

/* #region Homepage Styles */

.featured-section {
    display: inline-flex;
    max-width: 100%;
    height: 600px
}

.featured-section h2 {
    margin-bottom: 20px;
}

/*.featured-section .col-md-8 {
    position: static;
}*/

    .featured-section img {
        position: absolute;
        right: 5%;
    }

   /* .featured-section span{
        position: absolute;
        right: 105px;
        bottom: -105px;
    }*/

   



.cta-section {
    background: var(--midnight);
    padding: 100px 10%;
    border-top: 10px solid var(--lagoon);
    border-bottom: 10px solid var(--lagoon);
}

    .cta-section:not(.resource-section):not(.latest-events-section) {
        display: flex;
        flex-direction: row;
    }

    .cta-section .col-md-9 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .cta-section .col-md-3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .cta-section .col-md-9 h2 {
        margin: 0px;
    }

    .cta-section .col-md-5 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .cta-section .col-md-3 .btn-banner {
        width: fit-content;
        transform: scale(1.4);
    }

    .cta-section .col-md-5 .btn-banner {
        width: fit-content;
    }

.cta-section p {
    font-size: 22px;
}

.cta-section h2 {
    color: #FFFFFF;
}

.cta-section *:not(h2) {
    color: var(--sandstone_tint);
}

.resource-section {
    padding: 175px 0px 50px 0px;
}

    .resource-section h2 {
        margin-left: 10%;
    }

.search-row {
    display: flex;
    justify-content: start;
    flex-direction: row;
}

.search-bar {
    display: inline-flex;
    width: 700px;
    background: var(--sandstone_tint);
    padding: 10px 15px 10px 10%;
    border-radius: 0px 50px 50px 0px;
}

.search-bar input {
    background: var(--sandstone_tint);
    color: var(--slate);
    border: 0px;
    flex-grow: 1;
}

.search-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    text-decoration: none;
}

.search-bar i {
    height: fit-content
}

.search-filters {
    display: flex;
    align-items: center;
    padding-left: 50px;
}

    .search-filters * {
        height: fit-content;
        font-size: 18px;
        font-weight: 300;
    }

    .search-filters select {
        background: transparent;
        color: var(--sandstone_tint);
        margin-left: 25px;
        border: none;
    }

    .search-filters label {
        color: var(--sandstone_tint);
    }

    .search-filters option {
        color: #000000;
    }

.search-row .btn-banner {
    margin-left: 20px;
}

.our-focus-areas div {
    display: flex;
    flex-direction: row;
}

.our-focus-areas h2 {
    width: fit-content;
}

.focus-areas-list {
    display: flex;
    justify-content: start;
    flex-direction: column;
}

    .focus-areas-list a {
        background: none;
        color: var(--midnight);
        font-size: 18px;
        font-weight: 500;
        padding: 35px 20px;
        border: 0px;
        border-left: 10px solid #29A19350;
        text-align: left;
        text-decoration: none;
        transition: 0.3s;
    }

        .focus-areas-list a.selected,
        .focus-areas-list a:hover {
            border-left: 10px solid var(--lagoon);
        }

.focus-areas-details {
    border-radius: 20px 20px 0px 20px;
}

    .focus-areas-details .details {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: #FFFFFF;
        padding: 40px;
        border-radius: 20px 0px 0px 20px;
    }
    
    .focus-areas-details .details div {
        display: flex;
        flex-direction: column;
    }

    .focus-areas-details .area-info {
        height: 100%;
    }

    .focus-areas-details h5 {
        color: var(--midnight);
        margin-bottom: 20px;
    }

    .focus-areas-details p {
        color: var(--slate);
        font-size: 18px;
        font-weight: 300;
    }

    .focus-areas-details .find-out-more {
        color: var(--midnight);
        font-size: 18px !important;
        font-weight: 500;
        text-decoration: none;
        align-self: end;
        transition: 0.3s;
    }

    .focus-areas-details .find-out-more i {
        transform: scaleX(2);
        color: var(--true_blue);
        margin-left: 15px;
        font-size: 14px;
    }

    .focus-areas-details .find-out-more:hover {
        transform: scale(1.1);
    }

    .focus-areas-details img {
        display: block;
        max-height: 360px;
        object-fit: cover;
        aspect-ratio: 1 / 1;
        border-radius: 0px 20px 0px 0px;
    }

.latest-news-section {
    border-radius: 50px 50px 0px 50px !important;
}

.latest-news-section .row {
    margin-bottom: 50px;
}

.latest-news-section h2 {
    width: fit-content;
    color: #FFFFFF;
    margin-bottom: 0px;
}

.latest-news-section .btn-banner {
    width: fit-content;
    height: fit-content;
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 25px;
}

    .latest-news-section .logo-motif {
        position: absolute;
        width: 200px;
        height: 200px;
        top: -105px;
        right: -105px;
    }

.news-articles {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.content-item {
    display: flex;
    justify-content: start;
    position: relative;
    flex-wrap: wrap;
    width: 49%;
    background: var(--sandstone_tint);
    margin-bottom: 20px;
    border-radius: 20px 20px 0px 20px;
}

    .content-item img,
    .content-item .image {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 20px 0px 0px 0px;
    }

    .content-item h4 {
        flex-grow: 1;
        white-space: normal;
        color: var(--midnight);
        font-size: 28px;
        font-weight: 500;
    }

    .content-item div:not(.article-details):not(.item-details) {
        display: flex;
        flex-direction: column;
    }

    .content-item .info-container {
        width: calc(100% - 200px);
        padding: 30px 20px;
        flex-grow: 1;
    }

    .content-item a:not(.static) {
        display: block;
        font-size: 24px;
        font-weight: 500;
        text-align: right;
        text-decoration: none;
        padding-right: 25px;
        transition: 0.3s;
    }

    .content-item a:not(.static) {
        transform: scale(1.1);
    }

    .content-item .item-details {
        width: 100%;
        height: 50px;
        background: var(--true_blue);
        color: var(--sandstone_tint);
        font-size: 22px;
        font-weight: 300;
        padding: 15px 30px;
        border-radius: 0px 0px 0px 20px;
    }

    .content-item .item-details span {
        color: var(--sandstone_tint);
    }

    .content-item h4 a {
        font-size: 28px;
        font-weight: 500;
    }

.content-list .article h4 a {
    font-size: 28px;
    font-weight: 500;
}

    .content-item a.static,
    .content-list .article a.static {
        text-decoration: none;
    }

    .content-item a.static:has(> img) {
        height: 200px;
    }

.featured-resources {
    justify-content: space-between;
}

.featured-resources .col-md-4 {
    padding: 50px 50px 50px 0px;
}

.featured-resources .col-md-8 {
    padding: 50px 50px 50px 100px;
}

.featured-resources h2 {
    width: fit-content;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--lagoon);
}

.featured-resource {
    display: flex;
    background: #FFFFFF;
    text-decoration: none;
    border-radius: 25px 25px 0px 25px;
}

    .featured-resource:not(:last-child) {
        margin-bottom: 25px;
    }

    .featured-resource .info-container {
        display: flex;
        flex-direction: column;
        max-height: 250px;
        padding: 35px 40px;
    }

    .featured-resource h4 {
        font-size: 28px;
        line-height: 28px;
    }

    .featured-resource p {
        display: -webkit-box;
        width: 100%;
        font-size: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0px !important;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .featured-resource img {
        width: 250px;
        height: 250px;
        object-fit: cover;
        border-radius: 25px 0px 0px 25px;
    }

.latest-events-section {
    padding: 100px 10%;
}

.latest-events-section .row * {
    width: fit-content;
    height: fit-content;
}

.latest-events-section .btn-banner {
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 25px;
}

.latest-events-section .row {
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
}

.latest-events-section .events-list {
    display: flex;
    flex-direction: row;
    justify-content: start;
}

.latest-events-section .event-item {
    width: 27.5%;
    text-decoration: none;
}

    .latest-events-section .event-item:not(:last-child) {
        margin-right: 8.75%;
    }

    .latest-events-section .event-details {
        display: flex;
        flex-direction: row;
    }

    .latest-events-section .event-item a {
        display: flex;
        flex-direction: column;
        justify-content: end;
        text-decoration: none;
    }

    .latest-events-section .event-item h4 {
        color: var(--sandstone_tint);
        font-size: 22px;
        font-weight: 400;
        line-height: 30px;
        padding: 5px 0px 5px 25px;
        margin: 0px;
    }

    .latest-events-section.footer-about .event-item h4 {
        color: var(--midnight);
    }

    .latest-events-section .event-item span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70px;
        height: 70px;
        background: var(--true_blue);
        text-align: center;
        vertical-align: middle;
        line-height: 20px;
        font-size: 20px !important;
        font-weight: 400;
        padding: 17.5px;
        border-radius: 20px 20px 0px 20px;
        color: var(--sandstone_tint);
    }

    .latest-events-section.footer-about .event-item span {
        background: var(--midnight);
    }

    .latest-events-section .event-item hr {
        margin-bottom: 20px;
    }

    .latest-events-section.footer-about .event-item hr {
        color: var(--midnight);
    }

    .latest-events-section .event-item p {
        color: var(--sandstone_tint);
        font-size: 18px;
        font-weight: 300;
    }

    .latest-events-section.footer-about .event-item p {
        color: var(--slate);
        margin: 0px 0px 10px 0px;
    }

    .latest-events-section .event-item i {
        color: var(--sandstone_tint);
        font-weight: 300;
        margin-right: 7.5px;
    }

    .latest-events-section.footer-about .event-item i {
        color: var(--midnight);
    }

    .latest-events-section .event-item .fa-location-dot {
        transform: scaleX(1.1);
    }

.our-projects-section {
    
}

    .our-projects-section h2 {
        display: block;
        width: fit-content;
        text-align: center;
        padding-bottom: 10px;
        margin: auto;
        margin-bottom: 60px;
        border-bottom: 1px solid var(--lagoon);
        left: 0;
        right: 0;
    }

    .our-projects-section .programmes-and-projects {
        display: flex;
        justify-content: start;
        flex-wrap: wrap;
    }

    .our-projects-section .project-item {
        width: 32%;
    }

        .our-projects-section .project-item {
            text-decoration: none;
        }

        .our-projects-section .project-item:not(:last-child) {
            margin-right: 1.3%;
        }

        .our-projects-section .project-item img {
            width: 100%;
            height: 250px;
            background: #FFFFFF;
            border-radius: 20px 20px 0px 20px;
            object-fit: cover;
        }

        .our-projects-section .project-item h4 {
            font-size: 24px;
            margin: 15px 0px 10px;
        }

        .our-projects-section .project-item p {
            font-size: 20px;
        }

/* #endregion*/

/* #region Page Styles */

.introduction-section {
    display: flex;
    flex-direction: row;
    padding: 0px !important;
}

.introduction-section section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px;
}

.introduction-section h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 30px 0px 40px !important;
}

.introduction-section section p {
    font-size: 22px;
}

.introduction-section img {
    height: 100%;
    object-fit: cover;
}

.introduction-section section a {
    width: fit-content;
    margin-top: 25px;
}

    .introduction-vision {
        display: flex;
        flex-direction: row;
    }

    .introduction-vision h2 {
        font-size: 36px;
    }

    .introduction-vision h2:first-child {
        width: fit-content;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--lagoon);
    }

.values-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.values-section h2 {
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--lagoon);
}

.values-section p {
    font-size: 22px;
}

.values-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 50px;
}

.values-grid article {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 32%;
    background: #FFFFFF;
    padding: 30px 25px;
    margin-bottom: 25px;
    border-radius: 20px 20px 0px 20px;
}

.values-grid article.large {
    width: 49%;
}

.values-grid i {
    color: var(--fawn);
    font-size: 60px;
    margin-right: 20px;
}

.values-grid img {
    width: 60px;
    height: 60px;
    margin-right: 25px;
}

.values-grid h4 {
    color: var(--midnight);
    font-size: 24px;
}

.values-grid p {
    font-size: 22px;
    font-weight: 300;
    color: var(--slate);
    margin: 0px;
}

.box-section {
    position: relative;
    background: var(--midnight);
    padding: 100px 10%;
    margin: 0px 25px;
    border-radius: 50px 50px 0px 0px;
    background-image: url("/images/Homepage/Blue_Petal_Formation.png");
    background-size: 33%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-position-x: left;
}

    .box-section:not(.latest-news-section) {
        padding: 120px 10%;
    }

    .box-section .box-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

.box-section h2 {
    color: var(--sandstone_tint);
    margin-bottom: 20px;
}

.box-section p {
    color: var(--sandstone_tint);
    font-size: 22px;
}

    .box-section .side-content {
        position: relative;
        background: var(--sandstone_tint);
        padding: 50px;
        border-radius: 20px 20px 0px 20px;
    }

    .box-section .side-content h2 {
        color: var(--midnight);
    }

    .box-section .side-content p,
    .box-section .side-content li {
        color: var(--slate);
        font-size: 22px;
        font-weight: 350;
    }

    .box-section .side-content ol {
        margin-bottom: 0px;
    }

    .box-section .side-content li {
        margin-bottom: 5px;
    }

    .box-section .side-content img {
        position: absolute;
        width: 200px;
        height: 200px;
        top: -105px;
        right: -105px;
    }

.box-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 50px);
    background: var(--true_blue);
    padding: 70px 10%;
    margin: 0px 25px;
    border-radius: 0px 0px 0px 50px;
}
    
    .box-footer span {
        color: var(--sandstone_tint);
        font-size: 28px;
        font-weight: 400;
        line-height: 1.2;
        padding-right: 50px;
    }

    .box-footer .btn-banner {
        width: fit-content;
        white-space: nowrap;
    }

.find-out-more-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
}

.find-out-more-section h2 {
    width: fit-content;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--lagoon);
}

.navigation-list {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 50px;
}

    .navigation-list a {
        width: 32%;
        background: #FFFFFF;
        border-radius: 25px;
        text-decoration: none;
    }

    .navigation-list a:not(:last-child) {
        margin-right: 2%
    }

    .navigation-list img {
        width: 100%;
        height: 250px;
        border-radius: 25px 25px 0px 0px;
        object-fit: cover;
    }

    .navigation-list h4 {
        font-size: 24px;
        text-align: center;
        padding: 20px 0px;
        margin: 0px;
    }

    .navigation-list .btn-banner {
        width: 100%;
        padding: 15px 25px;
    }

.benefits-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .benefits-section .col-md-3 {
        display: flex;
        flex-direction: column;
    }

    .benefits-section .col-md-3 p {
        font-size: 22px;
        margin: 25px 0px 30px;
    }

        .benefits-section .col-md-3 * {
            width: fit-content;
        }

    .benefits-section .col-md-8 {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .benefits-section article {
        display: flex;
        flex-direction: row;
        width: 49%;
        height: fit-content;
        background: #FFFFFF;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 20px 20px 0px 20px;
    }

    .benefits-section article h4 {
        font-size: 24px;
        color: var(--midnight);
    }

    .benefits-section article p {
        font-size: 22px;
        font-weight: 300;
        color: var(--slate);
        margin: 0px;
    }

    .benefits-section img {
        width: 60px;
        height: 60px;
        margin-right: 20px;
    }

    .benefits-section article i {
        color: var(--fawn);
        font-size: 60px;
        margin-right: 20px;
    }

    .selector-section {
        display: flex;
        flex-direction: column;
    }

    .selector-section h2 {
        width: fit-content;
        margin-bottom: 40px;
    }

    .selector-section p {
        font-size: 22px;
    }

    #selector {
        display: flex;
        flex-direction: row;    
    }

    #selector .area-info {
        display: flex;
        flex-direction: row;
    }

.default-white-section {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.default-white-section div {
    display: flex;
    flex-direction: column;
}

.default-white-section img {
    border-radius: 20px 20px 0px 20px;
}

.default-white-section h2 {
    width: fit-content;
    margin-bottom: 50px;
}

.default-white-section h3 {
    color: var(--midnight);
}

.default-white-section p {
    font-size: 22px;
}

.default-white-section .btn-banner {
    width: fit-content;
    justify-self: end;
    align-self: end;
    margin-top: 25px;
}

.box-section.sandstone-bg {
    background: var(--sandstone);
    background-image: url("/images/Homepage/Sand_Petal_Formation.png");
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-position-x: left;
}

.sandstone-bg h2 {
    color: var(--midnight);
}

.members-slider-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .members-slider-section img,
    .carousel-item img {
        max-width: 200px;
        background: var(--sandstone_tint);
        border-radius: 100%;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }

.carousel-item {
    flex-direction: row;
    padding: 0px 75px;
}

.carousel-item-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.carousel-item-content div {
    display: flex;
    flex-direction: column;
}

.carousel-item p {
    font-size: 24px;
    line-height: 24px;
    color: var(--slate);
    margin-bottom: 30px;
}

.carousel-item span {
    color: var(--slate);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background-image: none;
    color: var(--slate);
    font-size: 40px;
    opacity: 1;
    transition: 0.2s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    color: var(--sandstone_tint);
}

.midnight-background {
    background: var(--midnight);
}

.white-section .accordion-item,
.white-section .accordion-button {
    background: transparent;
    border: 0px;
}

.white-section .accordion-button {
    font-size: 22px;
    color: var(--slate);
    padding: 0px;
}

.white-section .accordion-item {
    padding: 20px 0px;
    margin: 0px;
    border-top: 1px solid var(--true_blue);
}

    .white-section .accordion-item.last {
        border-bottom: 1px solid var(--true_blue);
    }

.white-section .accordion-body {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    padding: 10px 0px 0px 0px;
}


.content-list-section:not(:last-child) {
    padding-bottom: 0px;
}

.content-list-section h2 {
    margin-bottom: 50px;
    border: 0px;
}

.content-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content-list .article {
    display: flex;
    flex-direction: column;
    width: 32%;
    background: #FFFFFF;
    margin-bottom: 2%;
    border-radius: 20px 20px 0px 20px;
}

.content-list .article.horizontal {
    flex-direction: row;
}

.content-list .article.horizontal img {
    max-width: 250px;
    max-height: 250px;
    border-radius: 20px 0px 0px 20px;
    aspect-ratio: 1 / 1;
}

.content-list .article.horizontal div {
    width: 100%;
    justify-content: space-between;
    padding: 30px 40px 20px 40px;
}

.content-list .article.horizontal p {
    display: none;
}

.content-list .article.horizontal .btn-banner {

}

.content-list a.article {
    text-decoration: none;
}

.content-list img {
    width: 100%;
    max-height: 250px;
    border-radius: 20px 20px 0px 0px;
    object-fit: cover;
}

.content-list div {
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 20px 40px 20px 40px;
}

.content-list h4 {
    color: var(--midnight);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.content-list p {
    font-size: 20px;
}

.content-list .btn-banner {
    width: fit-content;
    background: #FFFFFF;
    font-size: 20px;
    align-self: end;
    transition: 0.2s;
}

.content-list .btn-banner:hover {
    transform: scale(1.1);
}

.item-details {
    
}

.item-details span {
    color: var(--slate);
    font-size: 22px;
}

.item-details span:not(:first-child):not(:last-child) {
    margin: 0px 10px;
}

.resource-introduction i {
    font-size: 22px;
    margin-left: 7.5px;
}

.resource-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .resource-details .col-md-3 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-height: fit-content;
        background: var(--true_blue);
        background-image: url("/images/Homepage//Full_Blue_Petal_Formation.png");
        background-size: 75%;
        background-repeat: no-repeat;
        background-position: bottom;
        background-position-x: right;
        padding: 50px 50px;
    }

.resource-details .col-md-3 span {
    color: var(--sandstone_tint);
    font-size: 22px;
    font-weight: 250;
}

.resource-details tbody {
    display: flex;
    flex-direction: column;
}

.resource-details tr:not(:first-child) {
    padding: 50px 0px 0px 0px;
}

.resource-details .col-md-3 i {
    color: var(--sandstone_tint);
    font-size: 24px;
    margin-right: 30px;
}

.resource-details .col-md-3 a {
    color: var(--sandstone_tint);
    overflow-wrap: anywhere;
    text-decoration-thickness: 1px;
}


.related-resources-section {
    background-image: none;
    border-radius: 50px 50px 0px 50px;
}

.related-resources-section h2 {
    margin-bottom: 50px;
}

.related-resources-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .related-resources-list .related-resource {
        position: relative;
        width: 45%;
        padding: 40px 0px;
        border-top: 1px solid var(--sandstone_tint);
        border-bottom: 1px solid var(--sandstone_tint);
    }

    .related-resources-list .related-resource:nth-child(-n+2) {
        border-bottom: 0px;
    }

    .related-resources-list i {
        position: absolute;
        top: 50%;
        bottom: 50%;
        right: 25px;
        transform: scaleX(2);
        color: #FFFFFF;
    }

.related-resources-list h4 {
    color: var(--sandstone_tint);
    font-size: 24px;
}

.related-resources-list .item-details {
    margin-bottom: 25px;
}

.related-resources-list .item-details span {
    color: var(--sandstone_tint);
}

.related-resources-list p {
    font-weight: 250;
    line-height: 1.2;
    padding-right: 75px;
    margin: 0px;
}

.latest-resources-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.latest-resources-section h2 {
    width:fit-content;
    margin-right: 50px;
}

.latest-resources-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.latest-resources-list .content-item {
    background: #FFFFFF;
}

.box-section .accordion {
    padding-top: 25px;
}

.box-section .accordion-item {
    background: none;
    color: var(--sandstone_tint);
    padding: 25px 0px;
    border: 0px;
}

.box-section .accordion-button {
    background: none;
    color: var(--sandstone_tint);
    font-size: 28px;
    font-weight: 500;
    padding: 0px;
}

    .accordion-button::after {
        height: fit-content;
        font-family: "Font Awesome 7 Pro";
        content: "\f078" !important;
    }

    .accordion-button:not(.collapsed)::after {
        font-family: "Font Awesome 7 Pro";
        content: "\f078" !important;
    }

.box-section .accordion-body {
    font-size: 24px;
    font-weight: 250;
    line-height: 1.2;
    padding: 10px 0px 0px 0px;
    border: 0px;
    text-decoration: none;
}

.accordion-box {
    padding: 100px 10% !important;
    border-radius: 50px 50px 0px 50px;
}

    .accordion-box .col-md-12 {
        margin: 30px 0px;
    }

    .accordion-box .flex-row {
        width: 100%;
    }

    .box-section .accordion-container {
        width: 45%;
    }

.box-section .accordion {
    width: 100%;
}

.box-section .accordion-item {
    border-top: 1px solid var(--sandstone_tint);
}

    .box-section .accordion-item.last {
        border-bottom: 1px solid var(--sandstone_tint);
    }

.box-section .accordion-button::after {
    flex-shrink: 0;
    margin-left: auto;
    content: "";
    background: -moz-linear-gradient(270deg, var(--sandstone_tint) 0%, var(--slate) 100%);
    background: -webkit-linear-gradient(270deg, var(--sandstone_tint) 0%, var(--slate) 100%);
    background: -o-linear-gradient(270deg, var(--sandstone_tint) 0%, var(--slate) 100%);
    background: linear-gradient(270deg, var(--sandstone_tint) 0%, var(--sandstone_tint) 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.2s ease-in-out;
}

.accordion-box .flex-row {
    display: flex;
}

.image-blocks {
    display: flex;
    flex-direction: row;
    justify-content: start;
    flex-wrap: wrap;
    margin: 25px 0px 0px;
}

.image-blocks .block {
    width: 30%;
    margin: 0px 1.5%;
}

.image-blocks img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.image-blocks h4 {
    color: var(--midnight);
    font-size: 24px;
    margin: 10px 0px 8px;
}

.anchor-section {
    display: none;
    width: 100%;
    height: 50px;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
}

.search-button.desktop-hide {
    display: none !important;
}

/* #endregion */
/* #region SDG Accord Styles */
.terms-and-conditions input {
    display: inline;
    margin-bottom: 5px;
}

    .terms-and-conditions label {
        display: inline;
    }

.content-list .article {
    width: 32%;
}

.header-banner-message {
    background: var(--true_blue);
    padding: 15px 10%;
}

    .header-banner-message * {
        color: var(--sandstone_tint);
        text-align: center;
        margin: 0px;
    }

.white-space {
    width: 100%;
    background: var(--sandstone_tint);
}

.max-width {
    width: 100%;
}

.header-padding {
    display: flex;
    flex-direction: column;
}

/* #endregion */
/* #region Mobile Styles */
@media (max-width: 767px) {
    .header-pages {
        justify-content: space-between;
    }

        .header-pages a {
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 33%;
            line-height: 20px;
            text-align: center;
            padding: 5px;
            margin: 0px !important;
        }

    .header-logo {
        margin-left: 10px;
    }

        .header-logo img {
            max-height: 85px;
        }

    .mobile-hide {
        display: none !important;
    }

    .desktop-hide {
        display: inline;
    }

    .mobile-column {
        flex-direction: column !important;
    }

    .white-section {
        height: auto;
        padding: 25px 10%;
    }

    .resource-section {
        padding: 25px 0px;
    }

        .resource-section h2 {
            width: fit-content;
            margin: 0px auto;
        }

    .search-row {
        width: 100%;
    }

    .search-bar {
        width: 100%;
        padding: 10px 25px;
        margin: 0px auto 10px;
        border-radius: 50px;
    }

        .search-bar input {
            width: 100%;
        }

    .search-filters {
        align-items: start;
        padding: 0px;
    }

        .search-filters select {
            width: 100%;
            margin: 10px auto 0px;
        }

    .search-row .btn-banner {
        width: 100%;
        justify-content: center;
        margin: 20px 0px 0px !important;
    }

    .box-section {
        padding: 50px 25px;
    }

    .latest-news-section {
        margin: 0px;
    }

        .latest-news-section .row {
            margin-bottom: 25px;
        }

            .latest-news-section .row h2 {
                margin: 0px auto 20px;
            }

            .latest-news-section .row .btn-banner {
                margin: 0px auto;
            }

    .news-articles .content-item {
        width: 100%;
    }

    .content-item img,
    .content-item .image {
        width: 100%;
        height: auto;
    }

    .news-articles .info-container {
        width: 100%;
        padding: 20px 20px 15px 20px;
    }

    .content-item .item-details {
        font-size: 18px;
    }

    .content-item a:not(.static) {
        font-size: 20px;
        padding: 0px 20px 0px 0px;
        margin: 10px 0px 0px 0px;
    }

    .item-details span {
        font-size: 16px;
    }

    .featured-resources .col-md-4 {
        padding: 50px 0px 50px 0px;
    }

    .featured-resources .col-md-8 {
        padding: 0px;
    }

    .featured-resource img {
        width: 100%;
        height: 100%;
        border-radius: 25px 25px 0px 0px;
    }

    .featured-resource .info-container {
        padding: 25px 30px;
    }

        .featured-resource .info-container h5 {
            margin: 0px;
        }

    .latest-events-section {
        padding: 25px 10%;
    }

        .latest-events-section .row {
            margin: 0px 0px 25px;
        }

        .latest-events-section h2 {
            width: fit-content;
            text-align: center;
            padding: 0px;
            margin: 0px auto 20px;
        }

        .latest-events-section .btn-banner {
            margin: 0px auto;
        }

        .latest-events-section .event-item {
            width: 100%;
        }

    .navigation-list a {
        width: 100%;
        margin: 0px 0px 25px;
    }

    .values-grid {
        margin: 0px;
    }

        .values-grid article,
        .values-grid article.large {
            width: 100%;
            padding: 20px 25px;
        }

    .accordion-section h2 {
        margin: 0px 0px 25px 0px;
        border: 0px;
    }

    .content-list-section article {
        width: 100% !important;
        margin: 0px 0px 20px 0px !important;
    }

        .content-list-section article div {
            background: #FFFFFF;
            padding: 20px 30px !important;
            border-radius: 0px 20px 0px 0px;
        }

    .content-list-section img {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 20px 20px 0px 0px !important;
    }

    .content-list .article div {
        border-radius: 0px 0px 0px 20px;
    }

    .cta-section {
        align-items: center;
        padding: 25px 10%;
    }

        .cta-section .col-md-9 {
            text-align: center;
        }

        .cta-section .col-md-3 {
            margin-top: 25px;
        }

            .cta-section .col-md-3 .btn-banner {
                transform: scale(1);
            }

        .cta-section .col-md-5 {
            margin: 10px 0px;
        }

        .cta-section h2 {
            text-align: center;
        }

        .cta-section:not(.latest-events-section) p {
            text-align: center;
        }

        .cta-section .btn-banner {
            margin: auto;
        }

    .our-projects-section h2 {
        margin-bottom: 25px;
    }

    .programmes-and-projects .project-item {
        width: 100%;
        margin-bottom: 25px;
    }

    .default-white-section div {
        width: 100% !important;
    }

    .default-white-section h2 {
        margin: auto auto 25px auto;
    }

    .default-white-section img {
        margin-bottom: 25px;
    }

    .default-white-section .btn-banner {
        margin: 25px auto 0px;
    }

    .content-list .article .btn-banner {
        padding: 10px 25px;
    }

    .benefits-section .col-md-8 {
        margin-top: 25px;
    }

    .benefits-section article {
        width: 100%;
    }

    .box-footer {
        width: 100%;
        padding: 25px 10%;
        margin: 0px;
    }

        .box-footer span {
            padding: 0px;
        }

        .box-footer .btn-banner {
            transform: scale(0.75);
        }

    .box-section {
        padding: 50px 10% !important;
        margin: 0px;
    }

        .box-section .side-content {
            padding: 25px;
        }

    .item-details span:not(:first-child):not(:last-child) {
        margin: 0px 5px;
    }

    .footer-about {
        flex-direction: column-reverse;
        padding: 50px 10%;
    }

        .footer-about img {
            margin-bottom: 10px;
        }

    .footer-lists {
        padding: 30px 10%;
    }

        .footer-lists h5 {
            margin: 25px 0px 10px;
        }

    .footer-main .company-logos a {
        margin: 0px 5px;
    }

    .footer-main .company-logos {
        margin: 0px 0px 20px;
    }

    .social-icons {
        margin-top: 25px;
    }

    footer {
        padding: 0px;
    }

    .footer-main .search-row {
        padding: 25px 0px;
    }

    .introduction-section section {
        padding: 50px 25px;
    }

    .introduction-section h1 {
        margin: 10px 0px !important;
    }

    .carousel-item {
        padding: 0px;
    }

    .cta-type-3 .flex-row {
        flex-direction: column-reverse !important;
    }

    .cta-type-3 p {
        margin: 0px;
    }

    .latest-resources-list .content-item {
        width: 100%;
    }

    .latest-resources-section h2 {
        padding: 0px 0px 15px;
        margin: 0px 0px 25px;
    }

    .members-slider-section {
        flex-direction: column;
        padding: 25px 0px !important;
    }

        .members-slider-section h2 {
            text-align: center;
        }

    .carousel {
        width: 90%;
        margin: 0px 0px 0px 5%;
    }

    .carousel-item-content {
        width: 80%;
        flex-direction: column;
    }

        .carousel-item-content .col-md-3 {
            width: 90%;
            margin-left: 20%;
        }

            .carousel-item-content .col-md-3 img {
                width: 100%;
                height: 100%;
                margin: 0px auto;
            }

        .carousel-item-content .col-md-8 {
            width: 90%;
            margin-left: 20%;
        }

    .carousel-control-prev {
        justify-content: start;
    }

    .carousel-control-next {
        justify-content: end;
    }

    .box-section h2 {
        margin-bottom: 0px;
    }

    .accordion-box .col-md-12 {
        margin: 15px 0px 25px 0px;
    }

    .box-section .accordion-container {
        width: 100% !important;
    }

    .box-section .accordion-button {
        font-size: 22px !important;
    }

    .box-section .accordion-item {
        padding: 15px 0px !important;
    }

    .accordion-box .flex-row {
        width: 100%;
        flex-direction: column !important;
    }

    .accordion-box .accordion-container:first-child {
        margin-bottom: 25px;
    }

    .latest-events-section .events-list {
        flex-direction: column;
    }

    .latest-events-section .event-item {
        margin-right: 0px !important;
    }

    footer {
        margin: 0px;
    }

    .image-blocks .block {
        width: 100%;
    }

    .image-block-section h2 {
        margin: 0px auto;
    }

    .banner-type-2-mobile{
        display: flex;
        flex-direction: column;
    }

    #focus-areas {
        display: flex;
        flex-direction: column;
    }

        #focus-areas .area-info {
            display: flex;
            flex-direction: column-reverse;
        }

        #focus-areas .details {
            padding: 20px;
            border-radius: 0px 0px 20px 20px;
        }

        #focus-areas img {
            margin: 25px 0px 0px 0px;
            border-radius: 20px 20px 0px 0px;
        }

        .focus-areas-list a {
            padding: 25px 20px;
        }

    .footer-main .search-row {
        padding: 25px 10%;
    }

    .navbar .nav-link {
        font-size: 18px;
    }

    .navbar .container-fluid {
        background: var(--sandstone_tint);
        border-bottom: 1px solid var(--slate);
        z-index: 1000;
    }

    .search-button {
        margin: 0px;
    }

    .dropdown ul {
        background: transparent;
        margin: 0px;
    }

        .dropdown ul a {
            background: transparent;
            margin: 0px 0px 0px 20px;
            border-top: 0px !important;
            border-bottom: transparent !important;
        }

    .navbar .nav-link.show {
        font-weight: 500;
    }

    .search-button.desktop-hide {
        display: flex !important;
    }

    .navbar {
        height: 100px;
    }

        .navbar .container-fluid {
            height: auto;
        }
}

/* #endregion */

/* #region Tablet Styles */

@media (min-width: 1001px) and (max-width: 1200px) {
    .tablet-hide {
        display: none !important;
    }

    .desktop-hide {
        display: inline;
    }

    .featured-section .col-md-4 {
        width: 45% !important;
    }

    .featured-section .col-md-7 {
        width: 50% !important;
    }

    .content-item img,
    .content-item .image {
        width: 100%;
        height: auto;
    }

    .news-articles .info-container {
        width: 100%;
        padding: 20px 20px 15px 20px;
    }

    .content-item .item-details {
        font-size: 18px;
    }

    .content-item a:not(.static) {
        font-size: 20px;
        padding: 0px 20px 0px 0px;
        margin: 10px 0px 0px 0px;
    }

    .item-details span {
        font-size: 18px;
    }

    .white-section h2 {
        margin-bottom: 25px;
    }

    .content-list {
        flex-direction: column;
    }

    .content-list .article {
        width: 100% !important;
        margin-bottom: 25px;
    }

    .resource-section {
        padding: 50px 0px;
    }

    .featured-resources {
        flex-direction: column;
    }

    .featured-resources .col-md-4 {
        width: 100%;
    }

    .featured-resources .col-md-4 p {
        margin: 0px;
    }

    .featured-resources .col-md-8 {
        width: 100%;
        padding: 0px !important;
    }

    .benefits-section {
        flex-direction: column;
    }

    .benefits-section .col-md-3,
    .benefits-section .col-md-8 {
        width: 100% !important;
    }

    .benefits-section .col-md-8 {
        margin-top: 25px;
    }

    .values-grid {
        margin-top: 25px;
    }

    .values-grid article,
    .values-grid article.large {
        width: 100%;
    }

    .box-section {
        padding: 50px 75px !important;
    }

    .box-content {
        flex-direction: column;
    }

    .box-content .col-md-6,
    .box-content .col-md-5 {
        width: 100%;
    }

    .side-content {
        margin-top: 25px;
    }

    .box-footer {
        padding: 50px 25px;
    }

    .cta-section .col-md-3 {
        align-items: end;
    }

    .cta-section .col-md-3 .btn-banner {
        transform: scale(1.2);
    }

    .search-row {
        align-items: center;
    }

    .search-bar {
        width: 600px;
        height: 50px;
    }

    .search-filters {
        padding-left: 0px;
    }

    .introduction-section {
        flex-direction: column;
    }

    .introduction-section .col-md-6 {
        width: 100%;
    }

    .introduction-section section {
        padding: 50px;
    }

    .introduction-section h1 {
        margin: 20px 0px !important;
    }

    .item-details span {
        font-size: 16px;
    }

    .item-details span:not(:first-child):not(:last-child) {
        margin: 0px 5px;
    }

    .programmes-and-projects {
        flex-direction: column;
        align-items: center;
    }

    .programmes-and-projects .project-item {
        width: 80%;
        margin-bottom: 25px;
    }

    .accordion-section .col-md-3 {
        width: 100%;
    }

    .accordion-section h2 {
        width: 100%;
        text-align: center;
        margin: 0px 0px 30px;
        border: 0px;
    }

    .accordion-section .col-md-8 {
        width: 100%;
    }

    .accordion-section .flex-row {
        flex-direction: column !important;
    }

    .resource-section h2 {
        margin-bottom: 25px;
    }

    .search-row {
        width: 100%;
        flex-direction: column;
    }

    .search-bar {
        width: 80%;
        padding: 10px 25px;
        margin: 0px auto 10px;
        border-radius: 50px;
    }

        .search-bar input {
            width: 100%;
        }

    .search-filters {
        align-items: start;
        padding: 0px;
    }

        .search-filters select {
            width: 225px;
            margin: 10px 10px 0px;
        }

    .search-row .btn-banner {
        width: fit-content;
        margin: 20px auto 0px !important;
    }

    .members-slider-section {
        flex-direction: column;
    }

        .members-slider-section h2 {
            width: 100%;
        }

        .members-slider-section .carousel-control-prev {
            justify-content: start;
        }

        .members-slider-section .carousel-control-next {
            justify-content: end;
        }

        .members-slider-section .carousel {
            width: 100%;
        }

    .latest-events-section .events-list {
        justify-content: center;
        flex-wrap: wrap;
    }

    .latest-events-section .event-item {
        width: 48%;
        margin: 0px 1% !important;
    }

    .image-blocks .block {
        width: 70%;
        margin: 0px auto;
    }

    .image-block-section h2 {
        margin: 0px auto;
    }

    .header-logo img {
        max-width: 250px;
    }

    .navbar .nav-link {
        padding: 10px 5px !important;
    }
}

/* #endregion */

/* #region Smaller Tablet Styles */

@media (min-width: 768px) and (max-width: 1000px) {

    .header-logo {
        margin: 0px;
    }

    .header-logo img {
        max-width: 250px;
    }

    .search-button {
        margin: 0px 25px 0px auto;
    }

    .search-button.desktop-hide {
        display: flex !important;
    }

    .search-button.mobile-hide {
        display: none !important
    }

    .navbar .container-fluid {
        background: var(--sandstone_tint);
        border-bottom: 1px solid var(--slate);
        z-index: 1000;
    }

    .dropdown ul,
    .dropdown ul a {
        background: transparent !important;
        border: 0px;
    }

    .navbar .container-fluid {
        height: auto;
    }
}

/* #endregion */

/* #region Smaller Mobile Styles (Foldables) */

@media (max-width: 350px) {
    .navbar {
        height: auto;
    }

    .header-logo img {
        max-width: 150px;
    }
}

/* #endregion */

.pull-right{
    float: right !important;
}

.font-white{
    color: #fff;
}