/* RESETS */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    border: none;
    background: none;
    outline: none;
    color: inherit;
}
/* VARIABLES */
:root {
    /* COLOURS */
    --body-text-dark: #003639;
    --body-text-light: #FFFFFF;
    --body-color: #FBF6EA;
    --white: #FFFFFF;
    --yellow: #FCE081;
    --orange: #EB5C46;
    --red: #D1362E;
    --green-400: #003639;
    --green-300: #406865;
    --green-200: #7D9A96;
    --green-100: #DCDFD5;

    /* PADDING */
    --container-padding: 0 5vw;

    /* FONTS */
    --primary-font: "forma-djr-micro", sans-serif;
}
body {
    font-family: var(--primary-font);
    color: var(--body-text-dark);
    background: var(--body-color);
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 {
    font-weight: 400;
}
.heading--1 {
    font-size: 28px
}
.heading--2 {
    font-size: 24px
}
.heading--3 {
    font-size: 20px;
}
.heading--4 {
    font-size: 20px;
}
.heading--5 {
    font-size: 20px;
}
.body--large {
    font-size: 16px;
}
.body--regular {
    font-size: 16px;
}
.button-text {
    font-size: 16px;
}

@media(min-width: 768px) {
    .heading--1 {
        font-size: 60px;
    }
    .heading--2 {
        font-size: 53px;
    }
    .heading--3 {
        font-size: 44px;
    }
    .heading--4 {
        font-size: 36px;
    }
    .heading--5 {
        font-size: 28px;
    }
    .body--large {
        font-size: 24px;
    }
    .body--regular {
        font-size: 20px;
    }
    .button-text {
        font-size: 16px;
    }
}

/* ELEMENTS */
.no-scroll {
    overflow: hidden;
}

.AS-001 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--container-padding);
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}
.no-scroll .AS-001:before {
    content: '';
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--orange);
}

.AS-001.AS-001--red {
    background: var(--red);
    color: var(--body-text-light)
}

.AS-001.AS-001--green-200 {
    background: var(--green-200);
    color: var(--body-text-light)
}

.AS-001.AS-001--green-300 {
    background: var(--green-300);
    color: var(--body-text-light)
}

.AS-001.AS-001--green-400 {
    background: var(--green-400);
    color: var(--body-text-light)
}

.AS-001__logo {
    display: inline-flex;
    z-index: 100;
    display: inline-flex;
}
.AS-001__logo-svg {
    color: var(--body-text-light);
    width: 84px;
    height: 24.27px;
}
@media (min-width: 768px) {
    .AS-001 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .AS-001__logo-svg {
        width: 205px;
        height: 59px;
    }
}

.AS-001__nav-btn ,
.app-nav__btn {
    z-index: 100;
    width: 20px;
    height: 25px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.AS-001__nav-btn span,
.app-nav__btn span {
    display: block;
    height: 2px;
    width: 20px;
    background: var(--body-text-light);
    margin: 4px auto;
    transition: all 0.3s ease-in-out;
}

.AS-001__nav-btn span.true,
.app-nav__btn span.true {
    background: var(--body-text-dark);
}

.app-nav__btn.toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.app-nav__btn.toggle span:nth-child(2) {
    opacity: 0;
}

.app-nav__btn.toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 768px) {
    .app-nav__btn {
        width: 40px;
        height: 42px;
    }
    .app-nav__btn span {
        display: block;
        height: 5px;
        width: 39px;
        /* background: var(--body-text-light); */
        margin: 7px auto;
    }
    .app-nav__btn.toggle span:nth-child(1) {
        transform: translateY(12px) rotate(45deg);
    }
    .app-nav__btn.toggle span:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }
}

.AS-001__menu {
    visibility: hidden;
    display: flex;
    background: var(--orange);
    color: var(--body-text-light);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    height: 100vh;
    padding: 100px 5vw 60px;
}
.AS-001__menu.visible {
    visibility: visible;
}
.AS-001__links {
    width: 100%;
}
.AS-001__link {
    background: var(--orange);
    color: var(--body-text-light);
    display: block;
    font-size: 28px;
    text-decoration: none;
}
.AS-001__link:hover {
    font-style: italic;
}
@media(min-width: 768px) {
    .AS-001__link {
        font-size: 72px;
    }
    .AS-001__links {
        margin-top: auto;
    }
    .AS-001__menu {
        padding: 160px 5vw 80px;
    }
}
.AS-001__logo-svg.true {
    color: var(--body-text-dark);
}

.AS-002 {
    background: var(--orange);
    color: var(--body-text-light);
    padding: 46px 0;
}

@media (min-width: 768px) {
    .AS-002 {
        padding: 100px 0 92px;
    }
}

@media (min-width: 1240px) {
    .AS-002 {
        padding: 100px 0 64px;
    }
}

.AS-002 .container {
    padding: var(--container-padding);
}

.AS-002__symbol {
    width: 87px;
    height: 86.12px;
}

@media (min-width: 768px) {
    .AS-002__symbol {
        width: 98px;
        height: 97.01px;
    }
}

.AS-002__row {
    margin-top: 52px;
}

@media (min-width: 768px) {
    .AS-002__row {
        margin-top: 84px;
    }
}

@media (min-width: 1240px) {
    .AS-002__row--primary {
        /* width: calc(66.6667% + 20px); */
        display: flex;
        width: calc(50% + 10px);
        flex-direction: column;
        align-items: start;
        justify-content: end;
    }
}

.AS-002__row--secondary {
    align-items: end;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .AS-002__row--secondary {
        display: flex;
        align-items: end;
    }
}

.AS-002__link {
    display: block;
    text-decoration: none;
}

.AS-002__link--social {
    margin-top: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px SOLID var(--body-text-light);
}
@media (min-width: 768px) {
    .AS-002__link--social {
        margin-top: 0px;
        /* margin-left: 80px; */
    }
}

.linkedin-icon {
    width: 16px;
    height: 16px;
}

@media (min-width: 1240px) {
    .AS-002__details {
        display: flex;
    }
}

.AS-100 {
    position: relative;
}
@media(min-width: 1024px) {
    .AS-100 {
        width: 100%;
        max-height: 100vh;
    }
}
.AS-100__image {
    position: relative;
    width: 100%;
    padding-bottom: calc(100% / 16 * 9);
}
@media(min-width: 1024px) {
    .AS-100__image {
        height: 100vh;
        padding-bottom: 0;
    }
}
.AS-100__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.AS-100__content {
    position: relative;
    background: var(--orange);
    color: var(--body-text-light);
    padding: 60px 8vw 60px 5vw;
}

@media (min-width: 768px) {
    .AS-100__content {
        padding: 60px 8vw 60px 5vw;
    }
}

@media (min-width: 1024px) {
    .AS-100__content {
        position: absolute;
        bottom: 0;
        max-width: calc(((100% - 10vw) / 12 * 9) + 5vw);
    }
}

@media (min-width: 1240px) {
    .AS-100__content {
        position: absolute;
        bottom: 0;
        max-width: calc(((100% - 10vw) / 12 * 7) + 5vw);
    }
}
.AS-100__heading {

}
.AS-100__intro {
    margin-top: 24px;
}
@media (min-width: 768px) {
    .AS-100__intro {
        margin-top: 48px;
    }
}
.AS-100__manifesto {
    margin-top: 24px;
    padding: 12px 20px;
    border: 1px SOLID var(--body-text-light);
    color: var(--body-text-light);
    display: inline-block;
}
.AS-100__manifesto:hover {
    background: var(--body-text-light);
    color: var(--orange);
}
@media (min-width: 768px) {
    .AS-100__manifesto {
        margin-top: 48px;
    }
}

.AS-101 {
    margin: 60px 0;
}
@media(min-width: 768px) {
    .AS-101 {
        margin: 124px 0;
    }
}
.AS-101 .container {
    padding: var(--container-padding);
}

.AS-101__content {

}

@media(min-width: 1024px) {
    .AS-101__content {
        max-width: calc(100% / 12 * 8);
    }
}

.AS-101__btn {
    margin-top: 40px;
    padding: 12px 20px;
    border: 1px SOLID var(--body-text-dark);
    color: var(--body-text-dark);
    display: inline-block;
}
.AS-101__btn:hover {
    background: var(--body-text-dark);
    color: var(--body-text-light);
}

.AS-102 {
    padding: var(--container-padding);
    background: linear-gradient(to bottom, transparent 50%, var(--green-400) 50%);
}
.AS-102__image {
    width: 100%;
    padding-bottom: calc(100% / 16 * 9);
    position: relative;
    background: var(--body-text-light);
}
.AS-102__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

:root {
    --swiper-pagination-bottom: 0px;
}

.AS-103 {
    padding: 124px 5vw;
    width: 100%;
    overflow: visible !important;
    overflow-x: hidden !important;
    z-index: 0;
}

.AS-103--green-400 {
    color: var(--body-text-light);
    background: var(--green-400);
}
.AS-103--green-100 {
    color: var(--body-text-dark);
    background: var(--green-100);
}

.AS-103__header {
    display: flex;
    justify-content: space-between;
}

.AS-103__header-text {
    margin-top: 24px;
}
@media(min-width: 768px) {
    .AS-103__header-text {
        margin-top: 48px;
    }
}
@media(min-width: 1024px) {
    .AS-103__header-text {
        width: calc((100% / 12 * 6) - 20px);
    }
}

.AS-103__swiper {
    margin-top: 52px;
}

.AS-103__swiper-controls {
    display: flex;
    gap: 6px;
}
@media(min-width: 768px) {
    .AS-103__swiper-controls {
        gap: 12px;
    }
}

.AS-103__swiper-controls-prev,
.AS-103__swiper-controls-next {
    color: inherit;
    cursor: pointer;
    width:28px;
    height: 28px;
}
@media(min-width: 768px) {
    .AS-103__swiper-controls-prev,
    .AS-103__swiper-controls-next {
        width: 48px;
        height: 48px;
    }
}

.AS-103__slide {

}

.AS-103__slide-img {
    background: #f4f4f4;
}
.AS-103__slide-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.AS-103__slide-content {
    margin-top: 20px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #006670 !important;
}

.AS-103__item::after {
    content: "";
    position: absolute;
    background-image: var(--background);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-color: white; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: brightness(50%);
    /* z-index: 0; */
    width: 100%;
}

/* .AS-103__item::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    filter: brightness(50%);
    pointer-events: none;
} */

.AS-103__wrapper {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    transition: background 0.3s ease;
    color: var(--body-text-light);
    z-index: 1;
}

.AS-103__wrapper:hover {
    background-image: none;
    background-color: var(--yellow);
    color: var(--body-text-dark);
}

.AS-103__wrapper:hover .AS-103__summary {
    display: block;
}

.AS-103__wrapper:hover .AS-103__idx {
    border: 1px SOLID var(--body-text-dark);
}

.AS-103__idx {
    width: 46px;
    height: 46px;
    border: 1px SOLID var(--body-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.AS-103__content {
    margin-top: auto;
    padding-right: 5%;
}

.AS-103__summary {
    margin-top:20px;
}

@media(min-width: 1024px) {
    .AS-103__summary {
        display: none;
    }
}

:root {
    --swiper-pagination-bottom: 0px;
}

.AS-104 {
    padding: 60px 5vw;
    width: 100%;
    overflow: visible !important;
    overflow-x: hidden !important;
    z-index: 0;
}
@media(min-width: 768px) {
    .AS-104 {
        padding: 124px 5vw;
    }
}

.AS-104--green-400 {
    color: var(--body-text-light);
    background: var(--green-400);
}
.AS-104--green-100 {
    color: var(--body-text-dark);
    background: var(--green-100);
}

.AS-104__header {
    display: flex;
    justify-content: space-between;
}

.AS-104__header-text {
    margin-top: 24px;
}
@media(min-width: 768px) {
    .AS-104__header-text {
        margin-top: 48px;
    }
}
@media(min-width: 1024px) {
    .AS-104__header-text {
        width: calc((100% / 12 * 6) - 20px);
    }
}

.AS-104__swiper {
    margin-top: 52px;
}

.AS-104__swiper-controls {
    display: flex;
    gap: 6px;
}
@media(min-width: 768px) {
    .AS-104__swiper-controls {
        gap: 12px;
    }
}

.AS-104__swiper-controls-prev,
.AS-104__swiper-controls-next {
    color: inherit;
    cursor: pointer;
    width:28px;
    height: 28px;
}
@media(min-width: 768px) {
    .AS-104__swiper-controls-prev,
    .AS-104__swiper-controls-next {
        width: 48px;
        height: 48px;
    }
}

.AS-104__swiper-controls-prev:hover,
.AS-104__swiper-controls-next:hover {
    background: var(--green-200);
}

.AS-104__swiper-controls-svg {
    width: 100%;
    height: 100%;
    color: inherit;
}

.AS-104__swiper-controls-prev:hover .AS-104__swiper-controls-svg,
.AS-104__swiper-controls-next:hover .AS-104__swiper-controls-svg {
    /* color: var(--green-300); */
}

.AS-104__slide {

}

.AS-104__slide-img {
    background: #f4f4f4;
}
.AS-104__slide-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.AS-104__slide-content {
    margin-top: 20px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #006670 !important;
}

.AS-104__item::after {
    content: "";
    position: absolute;
    background-image: var(--background);
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: brightness(50%);
    width: 100%;
}

.AS-104__wrapper {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    transition: background 0.3s ease;
    background-color: var(--green-300);
    color: var(--body-text-light);
    z-index: 1;
}

.AS-104__wrapper:hover {
    background-image: none;
    background-color: var(--green-200);
    /* color: var(--body-text-dark); */
}

.AS-104__wrapper:hover .AS-104__summary {
    display: block;
}

.AS-104__wrapper:hover .AS-104__idx {
    border: 1px SOLID var(--body-text-dark);
}

.AS-104__idx {
    width: 46px;
    height: 46px;
    border: 1px SOLID var(--body-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.AS-104__content {
    margin-top: auto;
    padding-right: 5%;
}

.AS-104__summary {
    margin-top:20px;
}

@media(min-width: 1024px) {
    .AS-104__summary {
        display: none;
    }
}

.AS-105 {
    margin: 60px 0;
}

@media(min-width: 768px) {
    .AS-105 {
        margin: 124px 0;
    }
}

.AS-105 .container {
    padding: var(--container-padding);
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}

.AS-105__col {
    width: 100%;
}

@media(min-width: 1024px) {
    .AS-105__col {
        width: calc(50% - 10px);
    }
}

.AS-105__col:nth-of-type(1) {
    margin-bottom: 40px;
}

@media(min-width: 768px) {
    .AS-105__col:nth-of-type(1) {
        margin-bottom: 68px;
    }
}

.AS-105__intro {
    padding-right: calc(100% / 6);
}

.AS-105__form-row {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    width: 100%;
}
.AS-105__form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
}
.AS-105__form-group label {
    margin-bottom: 5px;
}

.AS-105__form-group input,
.AS-105__form-group textarea {
    font-size: 16px;
    padding: 20px;
    border: 1px solid var(--orange);
    width: 100%;
    font-weight: 700;
    color: #7E7B75;
    background: transparent;
    font-family: var(--primary-font);
    outline: none;
}

.AS-105__form-group input:focus,
.AS-105__form-group textarea:focus {
    background: var(--body-text-light);
}

.AS-105__form-row .AS-105__form-group:last-child {
    margin-right: 0;
}

.AS-105__btn {
    font-size: 16px;
    padding: 12px 20px;
    border: 1px SOLID var(--orange);
    margin-top: 40px;
    cursor: pointer;
}
.AS-105__btn:hover {
    background: var(--orange);
    color: var(--body-text-light);
}

.AS-111 {

}
.AS-111__container {
    padding: 0 5vw;
}
.AS-111__item {
    padding: 40px 0;
    border-bottom: 1px SOLID var(--body-text-dark);
}
.AS-111__item:nth-of-type(1) {
    border-top: 1px SOLID var(--body-text-dark);
}
@media(min-width: 1024px) {
    .AS-111__item {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 50px;
    }
}
@media(min-width: 1280px) {
    .AS-111__item {

    }
}

.AS-111__title {
    margin-bottom: 24px;
}

@media(min-width: 1024px) {
    .AS-111__title {
        grid-column: span 4 / span 4;
    }
}
@media(min-width: 1280px) {
    .AS-111__title {
        grid-column: span 3 / span 3;
        grid-column-start: 3;
    }
}


.AS-111__text {

}

@media(min-width: 1024px) {
    .AS-111__text {
        grid-column: span 8 / span 8;
    }
}

@media(min-width: 1280px) {
    .AS-111__text {
        grid-column: span 7 / span 7;
    }
}

.AS-112 {
    background-color: var(--green-400);
    color: var(--body-text-light);
    padding: 60px 0;
}
@media(min-width: 768px) {
    .AS-112 {
        padding: 100px 0;
    }
}

.AS-112__item-content {
    width: 100%;
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 5vw;
}

.AS-112__item-image {
    margin-top: 40px;
}
@media(min-width: 768px) {
    .AS-112__item-image {
        width: calc((100% / 12 * 5) - 10px);
        margin-top: 0px;
    }
}
@media(min-width: 1024px) {
    .AS-112__item-image {
        width: calc((100% / 12 * 5) - 10px);
        margin-top: 0px;
    }
}
@media(min-width: 1280px) {
    .AS-112__item-image {
        width: calc((100% / 12 * 6) - 10px);
        margin-top: 0px;
    }
}

.AS-112__item-desc {
    margin-top: 24px;
}

.AS-112__item-title {
    font-weight: 700;
}

@media(min-width: 768px) {
    .AS-112__item-text {
        width: calc((100% / 12 * 6) - 10px);
    }
}

@media(min-width: 1024px) {
    .AS-112__item-text {
        width: calc((100% / 12 * 6) - 10px);
    }
}

@media(min-width: 1280px) {
    .AS-112__item-text {
        width: calc((100% / 12 * 5) - 10px);
    }
}

.AS-112 img {
    aspect-ratio: 4 / 3; /* This sets the width and height to be equal, forming a square */
    width: 100%; /* Adjust this as needed */
    object-fit: cover; /* This ensures the image covers the area without stretching. Adjust as needed */
}

.AS-112__btn {
    margin-top: 24px;
    padding: 12px 20px;
    border: 1px SOLID var(--body-text-light);
    color: var(--body-text-light);
    display: inline-block;
}
.AS-112__btn:hover {
    background: var(--body-text-light);
    color: var(--green-400);
}
@media (min-width: 768px) {
    .AS-112__btn {
        margin-top: 40px;
    }
}

.AS-113 {
    background: var(--green-300);
    padding: 60px 0;
    color: var(--body-text-light);
}
@media(min-width: 768px) {
    .AS-113 {
        padding: 124px 0;
    }
}

.AS-113 .container {
    padding: var(--container-padding);
}

.AS-113__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px SOLID var(--body-text-light);
    border-radius: 50%;
}

@media(min-width: 768px) {
    .AS-113__icon {
        width: 100px;
        height: 100px;
    }
}

.AS-113__svg {
    width: 24px;
    height: 19.5px;
}

@media(min-width: 768px) {
    .AS-113__svg {
        width: 37px;
        height: 30px;
    }
}

.AS-113__text {
    margin-top: 52px;
}
@media(min-width: 768px) {
    .AS-113__text {
        width: calc((100% / 12 * 10) - 20px);
    }
}
@media(min-width: 1024px) {
    .AS-113__text {
        width: calc((100% / 12 * 8) - 20px);
    }
}
.AS-113__credits {
    margin-top: 52px;
}

.AS-114 {
    background-color: var(--green-200);
    color: var(--body-text-light);
    padding: 60px 0;
}
@media(min-width: 768px) {
    .AS-114 {
        padding: 100px 0;
    }
}

.AS-114__item-content {
    width: 100%;
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 5vw;
}

.AS-114__item-image {
    margin-top: 40px;
}
@media(min-width: 768px) {
    .AS-114__item-image {
        width: calc((100% / 12 * 5) - 10px);
        margin-top: 0px;
    }
}
@media(min-width: 1024px) {
    .AS-114__item-image {
        width: calc((100% / 12 * 5) - 10px);
        margin-top: 0px;
    }
}
@media(min-width: 1280px) {
    .AS-114__item-image {
        width: calc((100% / 12 * 6) - 10px);
        margin-top: 0px;
    }
}

.AS-114__item-desc {
    margin-top: 24px;
}

.AS-114__item-title {
    font-weight: 700;
}

@media(min-width: 768px) {
    .AS-114__item-text {
        width: calc((100% / 12 * 6) - 10px);
    }
}

@media(min-width: 1024px) {
    .AS-114__item-text {
        width: calc((100% / 12 * 6) - 10px);
    }
}

@media(min-width: 1280px) {
    .AS-114__item-text {
        width: calc((100% / 12 * 5) - 10px);
    }
}

.AS-114 img {
    aspect-ratio: 4 / 3; /* This sets the width and height to be equal, forming a square */
    width: 100%; /* Adjust this as needed */
    object-fit: cover; /* This ensures the image covers the area without stretching. Adjust as needed */
}

.AS-114__btn {
    margin-top: 24px;
    padding: 12px 20px;
    border: 1px SOLID var(--body-text-light);
    color: var(--body-text-light);
    display: inline-block;
}
.AS-114__btn:hover {
    background: var(--body-text-light);
    color: var(--green-200);
}
@media (min-width: 768px) {
    .AS-114__btn {
        margin-top: 40px;
    }
}

.AS-121 {
    padding: 60px 5vw 0;
}

@media(min-width: 768px) {
    .AS-121 {
        padding: 124px 5vw 0;
    }
}

.AS-121__list {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column */
    column-gap: 20px; /* Adjust the gap between items as needed */
    row-gap: 60px;
}
@media(min-width: 600px) {
    .AS-121__list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns when the viewport is 768px wide or more */
    }
}
@media(min-width: 768px) {
    .AS-121__list {
        row-gap: 60px;
        column-gap: 50px;
    }
}

@media(min-width: 1240px) {
    .AS-121__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width: 1240px) {
    .AS-121__item:nth-of-type(1) {
        grid-column-start: 2;
    }
}

.AS-121__item-title {
    padding: 20px 0;
}

.AS-121__item-contact {
    border-top: 1px SOLID #7E7B75;
    padding-top: 14px;
}

.AS-121__item-phone {
    color: #7E7B75;
    margin-top: 2px;
}
.AS-121__item-email {
    color: #7E7B75;
}

.AS-121__item-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px SOLID #7E7B75;
    color: #7E7B75;
    margin-top: 12px;
}

.AS-121__item-social-link:hover {
    background: #7E7B75;
    color: var(--body-text-light);
}

.AS-121__item-social-icon {
    width: 14px;
    height: 14px;
}

.AS-121__item-img {
    aspect-ratio: 3 / 4;
    width: 100%;
    object-fit: cover;
}

.clients {
    padding: 60px 5vw 0;
}

@media(min-width: 768px) {
    .clients {
        padding: 24px 5vw 0;
    }
}

.clients__list {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column */
    column-gap: 20px; /* Adjust the gap between items as needed */
    row-gap: 60px;
}
@media(min-width: 600px) {
    .clients__list {
        grid-template-columns: repeat(4, 1fr); /* 2 columns when the viewport is 768px wide or more */
    }
}
@media(min-width: 768px) {
    .clients__list {
        row-gap: 60px;
        column-gap: 50px;
    }
}

@media(min-width: 1240px) {
    .clients__list {
        grid-template-columns: repeat(6, 1fr);
        /*grid-template-columns: auto auto auto auto;*/
    }
}

@media(min-width: 1240px) {
    .clients__item:nth-of-type(1) {
        /*grid-column-start: 2;*/
    }
}

.clients__item-title {
    padding: 20px 0;
}

.clients__item-img {
    /*aspect-ratio: 3 / 4;*/
    width: 100%;
    object-fit: cover;
}

.AS-122 {
    margin: 60px 0;
    padding: var(--container-padding);
}
.AS-122__heading {
    margin-bottom: 28px;
}
@media(min-width: 768px) {
    .AS-122 {
        margin: 124px 0;
    }
    .AS-122__heading {
        margin-bottom: 40px;
    }
    .AS-122__text {
        width: calc(100% / 12 * 10);
    }
}
@media(min-width: 1024px) {
    .AS-122__text {
        width: calc(100% / 12 * 6);
    }
}

.AS-123 {
    padding: 60px 5vw;
    background: var(--green-300);
    color: var(--body-text-light);
}

@media(min-width: 768px) {
    .AS-123 {
        padding: 124px 5vw;
    }
}

.AS-123__container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}

.AS-123__heading {
    width: 100%;
    margin-bottom: 24px;
}

@media(min-width: 768px) {
    .AS-123__heading {
        margin-bottom: 40px;
    }
}

@media(min-width: 1024px) {
    .AS-123__heading {
        width: calc((100% / 12 * 4) - 10px);
    }
}

.AS-123__text {
    width: 100%;
}

@media(min-width: 1024px) {
    .AS-123__text {
        width: calc((100% / 12 * 8) - 10px);
    }
}

.AS-124 {
    padding: 60px 5vw;
}

@media(min-width: 768px) {
    .AS-124 {
        padding: 124px 5vw;
    }
}

.AS-124__container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}

.AS-124__heading {
    width: 100%;
    margin-bottom: 24px;
}

@media(min-width: 768px) {
    .AS-124__heading {
        margin-bottom: 40px;
    }
}

@media(min-width: 1024px) {
    .AS-124__heading {
        width: calc((100% / 12 * 4) - 10px);
    }
}

.AS-124__text {
    width: 100%;
}

@media(min-width: 1024px) {
    .AS-124__text {
        width: calc((100% / 12 * 8) - 10px);
    }
}

.AS-124__logos {
    margin-top: 40px;
    display:flex;
    align-items: center;
    flex-wrap: wrap;
}

@media(min-width: 768px) {
    .AS-124__logos {
        margin-top: 80px;
    }
}

.AS-124__logo {
    width: 100%;
    max-width: 120px;
    margin-right: 20px;
}

@media(min-width: 768px) {
    .AS-124__logo {
        width: 100%;
        max-width: 180px;
        margin-right: 50px;
    }
}

.AS-130 {
    margin: 60px 0;
}

@media(min-width: 768px) {
    .AS-130 {
        margin: 124px 0;
    }
}

.AS-130 .container {
    padding: var(--container-padding);
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}

.AS-130__col {
    width: 100%;
}

@media(min-width: 1024px) {
    .AS-130__col {
        width: calc(50% - 10px);
    }
}

.AS-130__col:nth-of-type(1) {
    margin-bottom: 40px;
}

@media(min-width: 768px) {
    .AS-130__col:nth-of-type(1) {
        margin-bottom: 68px;
    }
}

@media(min-width: 768px) {
    .AS-130__intro {
        margin-top: 40px;
    }
}
@media(min-width: 1024px) {
    .AS-130__intro {
        padding-right: calc(100% / 6);
    }
}

.AS-130__item {
    border-top: 1px SOLID var(--body-text-dark);
    padding: 32px 0 40px;
    padding-right: 5%;
}
.AS-130__item:nth-last-of-type(1) {
    border-bottom: 1px SOLID var(--body-text-dark);
}
.AS-130__item-intro {
    margin-top: 24px;
}
.AS-130__item-description {
    display: none;
    margin-top: 24px;
}
.AS-130__item-btn {
    margin-top: 24px;
    text-decoration: underline;
    text-underline-offset: 0.275em;
    text-decoration-thickness: 2px;
    cursor: pointer;
}

:root {
    --swiper-pagination-bottom: 0px;
}

.AS-131 {
    padding: 0 5vw 60px;
    width: 100%;
    overflow: visible !important;
    overflow-x: hidden !important;
    z-index: 0;
}
@media(min-width: 768px) {
    .AS-131 {
        padding: 0 5vw 124px;
    }
}

.AS-131__header {
    display: flex;
    justify-content: space-between;
}

.AS-131__header-text {
    margin-top: 24px;
}
@media(min-width: 768px) {
    .AS-131__header-text {
        margin-top: 48px;
    }
}
@media(min-width: 1024px) {
    .AS-131__header-text {
        width: calc((100% / 12 * 6) - 20px);
    }
}

.AS-131__swiper {
    margin-top: 52px;
}

.AS-131__swiper-controls {
    display: flex;
    gap: 6px;
}
@media(min-width: 768px) {
    .AS-131__swiper-controls {
        gap: 12px;
    }
}

.AS-131__swiper-controls-prev,
.AS-131__swiper-controls-next {
    color: inherit;
    cursor: pointer;
    width:28px;
    height: 28px;
}
@media(min-width: 768px) {
    .AS-131__swiper-controls-prev,
    .AS-131__swiper-controls-next {
        width: 48px;
        height: 48px;
    }
}

.AS-131__swiper-controls-prev:hover,
.AS-131__swiper-controls-next:hover {
    background: var(--green-200);
}

.AS-131__swiper-controls-svg {
    width: 100%;
    height: 100%;
    color: inherit;
}

.AS-131__swiper-controls-prev:hover .AS-131__swiper-controls-svg,
.AS-131__swiper-controls-next:hover .AS-131__swiper-controls-svg {
    /* color: var(--green-300); */
}

.AS-131__slide {

}

.AS-131__slide-img {
    background: #f4f4f4;
}
.AS-131__slide-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.AS-131__slide-content {
    margin-top: 20px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #006670 !important;
}

.AS-131__item::after {
    content: "";
    position: absolute;
    background-image: var(--background);
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: brightness(50%);
    width: 100%;
}

.AS-131__wrapper {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    transition: background 0.3s ease;
    background-color: var(--green-300);
    color: var(--body-text-light);
    z-index: 1;
}

.AS-131__wrapper:hover {
    background-image: none;
    background-color: var(--green-200);
    /* color: var(--body-text-dark); */
}

.AS-131__wrapper:hover .AS-131__summary {
    display: block;
}

.AS-131__wrapper:hover .AS-131__idx {
    border: 1px SOLID var(--body-text-dark);
}

.AS-131__idx {
    width: 46px;
    height: 46px;
    border: 1px SOLID var(--body-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.AS-131__content {
    margin-top: auto;
    padding-right: 5%;
}

.AS-131__summary {
    margin-top:20px;
}

@media(min-width: 1024px) {
    .AS-131__summary {
        display: none;
    }
}

.AS-132 {
    margin-bottom: 60px;
    width: 100%;
}
@media(min-width: 768px) {
    .AS-132 {
        margin-bottom: 124px;
    }
}
.AS-132__container {
    padding: 0 5vw;
}
.AS-132__btn {
    padding: 12px 20px;
    border: 1px SOLID var(--body-text-dark);
    color: var(--body-text-dark);
    display: inline-block;
}
.AS-132__btn:hover {
    background: var(--body-text-dark);
    color: var(--body-text-light);
}

.AS-141 {

}

.AS-141__list {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 20px;
    row-gap: 20px;
    padding: var(--container-padding);
    margin: 60px 0;
}
@media(min-width: 768px) {
    .AS-141__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(min-width: 768px) {
    .AS-141__list {
        margin: 124px 0;
    }
}
@media(min-width: 1240px) {
    .AS-141__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.AS-141__item {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    background: var(--body-text-dark);
}

.AS-141__item::after {
    content: "";
    position: absolute;
    background-image: var(--background);
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: brightness(50%);
    width: 100%;
}

.AS-141__container {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    z-index: 1;
    transition: background 0.3s ease;
    color: var(--body-text-light);
    cursor: pointer;
}

.AS-141__container:hover {
    background-image: none;
    background-color: var(--yellow);
    color: black;
}

.AS-141__container:hover .AS-141__summary {
    display: block;
}

.AS-141__container:hover .AS-141__idx {
    border: 1px SOLID var(--body-text-dark);
}

.AS-141__idx {
    width: 46px;
    height: 46px;
    border: 1px SOLID var(--body-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.AS-141__content {
    padding-right: 5%;
}

.AS-141__summary {
    margin-top:20px;
}

@media(min-width: 1024px) {
    .AS-141__summary {
        display: none;
    }
}

.AS-141__icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: white;
    color: black;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(min-width: 768px) {
    .AS-141__icon {
        bottom: 32px;
        right: 32px;
        width: 48px;
        height: 48px;
    }
}

.AS-141__container:hover .AS-141__icon {
    color: white;
    background: black;
    opacity: 1;
}

.AS-141__icon-svg {

}

.AS-141__container:hover .AS-141__icon-svg {

}

#rich-text ul {
    margin-left: 16px;
}

.AS-141__link {
    margin: 60px 0;
}

@media(min-width: 768px) {
    .AS-141__link {
        margin: 124px 0;
    }
}

.AS-141__link-container {
    padding: 0 5vw;
}

.AS-141__btn {
    padding: 12px 20px;
    border: 1px SOLID var(--body-text-dark);
    color: var(--body-text-dark);
    display: inline-block;
}
.AS-141__btn:hover {
    background: var(--body-text-dark);
    color: var(--body-text-light);
}

.AS-142 {
    background: var(--green-400);
    padding: 60px 0;
    color: var(--body-text-light);
}
@media(min-width: 768px) {
    .AS-142 {
        background: var(--green-400);
        padding: 124px 0;
    }
}

.AS-142 .container {
    padding: var(--container-padding);
}

.AS-142__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px SOLID var(--body-text-light);
    border-radius: 50%;
}

@media(min-width: 768px) {
    .AS-142__icon {
        width: 100px;
        height: 100px;
    }
}

.AS-142__svg {
    width: 24px;
    height: 19.5px;
}

@media(min-width: 768px) {
    .AS-142__svg {
        width: 37px;
        height: 30px;
    }
}

.AS-142__text {
    margin-top: 52px;
}
@media(min-width: 768px) {
    .AS-142__text {
        width: calc((100% / 12 * 10) - 20px);
    }
}
@media(min-width: 1024px) {
    .AS-142__text {
        width: calc((100% / 12 * 8) - 20px);
    }
}
.AS-142__credits {
    margin-top: 52px;
}

.AS-151 {
    padding: var(--container-padding);
    margin: 60px 0;
}
.AS-151__list {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column */
    column-gap: 20px; /* Adjust the gap between items as needed */
    row-gap: 40px;
}

@media(min-width: 768px) {
    .AS-151__list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns when the viewport is 768px wide or more */
    }
}

@media(min-width: 768px) {
    .AS-151__list {
        margin: 124px 0;
        row-gap: 60px;
    }
}

.AS-151__item {

}

.AS-151__item-content {
    margin-top: 20px;
}

@media(min-width: 768px) {
    .AS-151__item-content {
        margin-top: 40px;
    }
}

.AS-151__item-title {
    padding-right: 5%;
}

.AS-151__item-summary {
    margin-top: 16px;
    padding-right: 5%;
}

@media(min-width: 787px) {
    .AS-151__item-summary {
        margin-top: 24px;
    }
}

.AS-151__item-figure {
    position: relative;
    width: 100%;
    padding-bottom: calc(100% / 16 * 10);
    background: #C9C5BB;
}
.AS-151__item-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
}

.AS-160 {
    margin: 60px 0;
}

@media(min-width: 768px) {
    .AS-160 {
        margin: 124px 0;
    }
}

.AS-160 .container {
    padding: var(--container-padding);
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}

.AS-160__col {
    width: 100%;
}

@media(min-width: 1024px) {
    .AS-160__col {
        width: calc(50% - 10px);
    }
}

.AS-160__col:nth-of-type(1) {
    margin-bottom: 40px;
}

@media(min-width: 768px) {
    .AS-160__col:nth-of-type(1) {
        margin-bottom: 68px;
    }
}

.AS-160__intro {
    padding-right: calc(100% / 6);
}

.AS-160__form-row {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    width: 100%;
}
.AS-160__form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
}
.AS-160__form-group label {
    margin-bottom: 5px;
}

.AS-160__form-group input,
.AS-160__form-group textarea {
    font-size: 16px;
    padding: 20px;
    border: 1px solid var(--orange);
    width: 100%;
    font-weight: 700;
    color: #7E7B75;
    background: transparent;
    font-family: var(--primary-font);
    outline: none;
}

.AS-160__form-group input:focus,
.AS-160__form-group textarea:focus {
    background: var(--body-text-light);
}

.AS-160__form-row .AS-160__form-group:last-child {
    margin-right: 0;
}

.AS-160__btn {
    font-size: 16px;
    padding: 12px 20px;
    border: 1px SOLID var(--orange);
    margin-top: 40px;
    cursor: pointer;
}
.AS-160__btn:hover {
    background: var(--orange);
    color: var(--body-text-light);
}

.AS-161 {
    margin: 60px 0;
}
@media(min-width: 768px) {
    .AS-161 {
        margin: 124px 0;
    }
}
.AS-161__container {
    padding: var(--container-padding);
}
.AS-161__map {
    width: 100%;
    padding-bottom: calc(100% / 16 * 9);
    position: relative;
    overflow: hidden;
}
.AS-161__iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.AS-200 {
    margin-top: 140px;
    margin-bottom: 40px;
    padding: var(--container-padding);
    display: flex;
    flex-wrap: wrap-reverse;
    row-gap: 28px;
    column-gap: 20px;
}
@media(min-width:768px) {
    .AS-200 {
        margin-top: 268px;
        margin-bottom: 84px;
        row-gap: 40px;
    }
}
.AS-200__col {
    width: 100%;
}

@media(min-width:1024px) {
    .AS-200__col:nth-of-type(1) {
        width: calc((100% / 12 * 4) - 10px);
    }
    .AS-200__col:nth-of-type(2) {
        width: calc((100% / 12 * 7) - 10px);
    }
}

.AS-201 {
    padding: var(--container-padding);
    margin: 40px 0;
}

@media (min-width: 768px) {
    .AS-201 {
        margin: 84px 0;
    }
}

.AS-201__img {
    position: relative;
    width: 100%;
    padding-bottom: calc(100% / 16 * 9)
}

.AS-201__img img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.AS-220 {
    margin-top: 140px;
    margin-bottom: 40px;
    padding: var(--container-padding);
}
@media(min-width:768px) {
    .AS-220 {
        margin-top: 268px;
        margin-bottom: 84px;
    }
}

.AS-220__title {
    margin-top: 60px;
}

.AS-220__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.AS-220__breadcrumb {

}

.AS-220__breadcrumb.AS-220__breadcrumb--active {
    color: var(--red);
    font-weight: 600;
}

    /* ------------------------------ */

    .AS-301 {
        margin: 60px 0;
    }

    @media(min-width: 768px) {
        .AS-301 {
            margin: 124px 0;
        }
    }

    /* ------------------------------ */

    .AS-301 .container {
        padding: var(--container-padding);
    }

    /* ------------------------------ */

    .AS-301__heading {
        margin-bottom: 28px;
    }

    @media(min-width: 768px) {
        .AS-301__heading {
            margin-bottom: 40px;
        }
    }

    /* ------------------------------ */

    @media(min-width: 768px) {
        .AS-301__text {
            width: calc(100% / 12 * 10);
        }
    }

    @media(min-width: 1024px) {
        .AS-301__text {
            width: calc(100% / 12 * 6);
        }
    }
