/* #region base */
.line-invite-container {
    display: none;
}

.content-header {
    position: relative;
    display: grid;
    gap: 6px;
    place-content: center;
    color: #6a505c;
}

.content-header div {
    position: relative;
}

.content-header h2,
.content-header h3 {
    text-align: center;
    text-transform: uppercase;
}

.content-header h2 {
    font-size: 2.5rem;
}

.content-description {
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
    display: grid;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.content-container {
    position: relative;
    margin: 10rem 0;
    width: 100%;
    display: grid;
    gap: 5rem;
}

@-webkit-keyframes moveAnim {
    from {
        left: 0;
    }

    to {
        left: 1rem;
    }
}

@keyframes moveAnim {
    from {
        left: 0;
    }

    to {
        left: 1rem;
    }
}

/* #endregion base */

/* #region carousel */
.slide-container {
    height: 100vh;
    position: relative;
    background-color: var(--main-bg);
    overflow: hidden;
    margin-bottom: 5rem;
}

.slide-container div.slide-deco {
    z-index: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20%;
    background-color: #fff;
    --mask:
        radial-gradient(17.88rem at 50% 24rem, #000 100%, #0000 101%) calc(50% - 16rem) 0/32rem 100%,
        radial-gradient(17.88rem at 50% -16rem, #0000 100%, #000 101%) 50% 8rem/32rem 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
}

.slide-container span.slide-deco {
    position: absolute;
    width: 25rem;
    height: 25rem;
    background-color: skyblue;
    border-radius: 50%;
}

.slide-container span.slide-deco:nth-child(1) {
    left: -5%;
    top: 16px;
    background-color: #003e4e;
}

.slide-container span.slide-deco:nth-child(2) {
    right: 5%;
    top: -15%;
    background-color: #eeb200;
}

.slide-container span.slide-deco:nth-child(3) {
    right: -32px;
    bottom: -5%;
    background-color: #2bb6b0;
}

.swiper-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 10rem 0;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: unset;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 3rem;
}

.swiper-slide-shadow-coverflow {
    border-radius: 3rem;
}

.swiper-pagination {
    --swiper-pagination-bottom: 112px;
    text-align: right;
    padding-right: 20%;
}

.swiper-pagination-bullet {
    background: #bbb;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: #717171;
}

/* #endregion carousel */

/* #region latest container */
.latest-container {
    position: relative;
    justify-self: center;
    display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    padding: 0 6rem;
}

.latest-wrapper {
    background-color: #ff7979;
    width: 100%;
    display: grid;
    grid-template-rows: repeat(auto-fit, minmax(1rem, 1fr));
    padding: 1.5rem 3rem;
    border-radius: 25px;
    overflow: hidden;
}

.latest-item {
    display: grid;
    grid-template-columns: 1fr 1fr 5.5fr 0.5fr;
    grid-template-rows: 1fr;
    grid-template-areas: "tag date cnt icon";
    gap: 2rem;
    grid-auto-flow: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    /* color: black; */
    text-decoration: none;
    word-break: keep-all;
}

.latest-tag {
    grid-area: tag;
}

.latest-date {
    grid-area: date;
}

.latest-content {
    grid-area: cnt;
}

.latest-icon {
    grid-area: icon;
    position: relative;
    width: 3rem;
    height: 3rem;
    /* filter: brightness(0) saturate(100%) */
}

.latest-icon img {
    max-width: 100%;
    max-height: 100%;
}

.latest-item:hover .latest-icon {
    -webkit-animation: moveAnim 350ms ease-in-out;
    animation: moveAnim 350ms ease-in-out;
}

.latest-content {
    font-weight: normal;
}
/* #endregion latest container */

/* #region service container */
.price-header .heading-maintext::after,
.service-header .heading-maintext::after {
    content: url('../img/top/deco_heading1.png');
    position: absolute;
    top: -50%;
    left: 90%;
}

.service-wrapper1 {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 5fr 3fr;
    grid-template-rows: 1fr 2fr;
    grid-template-areas:
        ". cap" "btn btn";
}

.service-button-wrapper {
    grid-area: btn;
    justify-self: end;
    position: static;
    width: 95%;
    float: right;
    padding: 5rem;
    background-color: #2bb6b0;
    border-radius: 2rem 0 0 2rem;
}

.service-button-container-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(3, 0.3fr);
    justify-content: center;
    gap: 3rem;
}

.service-button-container {
    padding: 4rem;
    background-color: #fff;
    display: grid;
    grid-auto-flow: row;
    gap: 1rem;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    border-radius: 2rem;
    box-shadow: 0 8px 24px #777;
    cursor: pointer;
}

.service-button-container:hover {
    background-color: var(--orange);
    box-shadow: 0 8px 24px #f29600aa;
    transition: all 400ms cubic-bezier(0.23, 1, 0.320, 1);
}

.service-button-container:hover img {
    -webkit-filter: brightness(0) invert(100%) sepia(100%) saturate(0%) hue-rotate(116deg) brightness(102%) contrast(101%);
    filter: brightness(0) invert(100%) sepia(100%) saturate(0%) hue-rotate(116deg) brightness(102%) contrast(101%);
    transition: contrast 400ms cubic-bezier(0.23, 1, 0.320, 1);
}

.service-icon-wrapper {
    width: 128px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.service-icon-caption {
    font-size: 1.5rem;
}

.service-img-hover {
    top: 0;
    left: 0;
    max-width: 60%;
    height: auto;
}

.service-img-hover img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0 2rem 2rem 0;
}

.service-img-hover,
.service-img-caption {
    position: absolute;
    opacity: 0;
    transition: opacity 400ms ease-in-out;
}

.service-img-hover:nth-child(1),
.service-img-caption:nth-child(1) {
    opacity: 1;
}

.service-img-caption-wrapper {
    position: relative;
    grid-area: cap;
    text-align: justify;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    min-width: 30%;
}

.service-img-caption {
    padding: 0 5rem;
}

.service-img-caption-title {
    color: #ff7979;
    font-size: 1.5rem;
}

.service-button-wrapper::after {
    content: url("../img/top/deco_service2.png");
    position: absolute;
    top: 95%;
    left: 0;
}

.service-wrapper2 {
    position: relative;
    width: 100%;
    border-radius: 10rem 0;
    background-color: #f6f8c7;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 5rem 6rem;
}

.service-description {
    max-width: 1100px;
    margin-bottom: 3rem;
    word-break: keep-all;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4rem;
}

.service-grid-item {
    position: relative;
    border: 5px solid #000;
    border-radius: 1rem;
    overflow: hidden;
}

.service-item-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

.service-item-img-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    -o-object-fit: cover;
    object-fit: cover;
}

.service-item-img-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    min-width: 60%;
    width: max-content;
    height: 4rem;
    border-radius: 1rem 0;
    background-color: #000;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 1.3rem;
}

.service-item-caption-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-items: center;
}

.service-item-caption-icon img {
    width: 2rem;
    height: 2rem;
}

.service-grid-item:hover .service-item-caption-icon {
    -webkit-animation: moveAnim 350ms ease-in-out;
    animation: moveAnim 350ms ease-in-out;
}

.service-grid-item:nth-child(1),
.service-grid-item:nth-child(1) .service-item-img-caption {
    background-color: #2bb6b0;
    border-color: #2bb6b0;
}

.service-grid-item:nth-child(2),
.service-grid-item:nth-child(2) .service-item-img-caption {
    background-color: #ff7979;
    border-color: #ff7979;
}

.service-grid-item:nth-child(3),
.service-grid-item:nth-child(3) .service-item-img-caption {
    background-color: #f29600;
    border-color: #f29600;
}

.service-grid-item:nth-child(4),
.service-grid-item:nth-child(4) .service-item-img-caption {
    background-color: #21ad38;
    border-color: #21ad38;
}

.service-wrapper2::after {
    content: url("../img/top/deco_service3.png");
    position: absolute;
    top: 83%;
    right: 0;
    opacity: 0.7;
}

/* #endregion service container */

/* #region price container */
.price-wrapper1 {
    justify-self: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    justify-items: center;
    grid-auto-flow: column;
    gap: 1rem;
    padding: 0 4rem;
}

.price-info-bubble {
    width: 100%;
    height: 100%;
    font-weight: bold;
    color: #333a;
    font-size: 18px;
    max-width: 30ch;
    text-align: center;
    display: grid;
    grid-template-rows: auto auto 50px;
    gap: 0.5rem;
}

.price-info-bubble {
    /* triangle dimension */
    --b: 1em;
    /* base */
    --h: 1em;
    /* height */
    --p: 50%;
    /* triangle position (0%:left 100%:right) */
    --r: 2rem;
    /* the radius */
    --c: #4ECDC4;

    padding: 1em;
    border-radius: var(--r) var(--r) min(var(--r),
            100% - var(--p) - var(--b)/2) min(var(--r),
            var(--p) - var(--b)/2)/var(--r);
    -webkit-clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%,
            min(100%, var(--p) + var(--b)/2) 100%,
            var(--p) calc(100% + var(--h)),
            max(0%, var(--p) - var(--b)/2) 100%);
    clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%,
            min(100%, var(--p) + var(--b)/2) 100%,
            var(--p) calc(100% + var(--h)),
            max(0%, var(--p) - var(--b)/2) 100%);
    background: var(--c);
    -o-border-image: conic-gradient(var(--c) 0 0) 0/ var(--r) calc(100% - var(--p) - var(--b)/2) 0 calc(var(--p) - var(--b)/2)/ 0 0 var(--h) 0;
    border-image: conic-gradient(var(--c) 0 0) fill 0/ var(--r) calc(100% - var(--p) - var(--b)/2) 0 calc(var(--p) - var(--b)/2)/ 0 0 var(--h) 0;
}

.price-info-bubble:not(:nth-child(2)) .price-bubble-text {
    grid-row: span 2;
}

.price-info-bubble:nth-child(2) .price-bubble-text:nth-child(2) {
    font-size: 0.8rem;
}

.price-bubble-text {
    display: grid;
    place-content: center;
}

.price-bubble-price {
    height: 50px;
    font-size: 2rem;
}

.price-price-duration {
    width: 2rem;
    border-radius: 4rem;
    background-color: #fff;
    font-size: 1rem;
    padding: 0.4rem 1rem;
    margin-right: 0.5rem;
}

.price-info-bubble:nth-child(1) {
    background-color: #ffc9c9;
    --c: #ffc9c9;
    color: #803d3d;
}

.price-info-bubble:nth-child(2) {
    background-color: #a9e2df;
    --c: #a9e2df;
    color: #165b58;
}

.price-info-bubble:nth-child(3) {
    background-color: #fad59a;
    --c: #fad59a;
    color: #784b01;
}

.price-wrapper2 {
    position: relative;
    margin-top: 2rem;
    justify-self: center;
    width: 100%;
    display: grid;
    place-items: center;
}

.price-link-container {
    min-width: 50%;
    width: calc((100vw * 0.3292) + 328.18px);
    position: relative;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    border-radius: 2rem 0;
    text-decoration: none;
}

.price-link-right-section {
    position: relative;
    width: 100%;
    height: 300px;
}

.price-link-right-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    transition: opacity 400ms ease-in-out;
    opacity: 0;
    border-radius: 2rem 0;
}

.price-link-right-img img:first-child {
    opacity: 1;
}

.price-link-container:hover .price-link-right-img img:nth-child(1) {
    opacity: 0;
}

.price-link-container:hover .price-link-right-img img:nth-child(2) {
    opacity: 1;
}

.price-link-left-section {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #e83828;
    color: #fff;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    --mask:
        radial-gradient(5.9rem at calc(100% - 8.5rem) 60%,
            #000 100%, #0000 100%) 0 calc(50% - 8rem)/100% 16rem,
        radial-gradient(6.2rem at calc(100% + 4.6rem) 58.6%,
            #0000 100%, #003 100%) calc(100% - 4rem) 50%/100% 19rem repeat-y;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    border-radius: 2rem 0;
}

.price-link-left-content {
    display: grid;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    padding-right: 2rem;
    text-decoration: none;
}

.price-link-left-caption {
    font-size: 1.5rem;
    font-weight: bold;
}

.price-link-left-icon {
    width: 96px;
    height: 96px;
}

.price-link-left-icon img {
    max-width: 100%;
    max-height: 100%;
}

.price-link-container::before {
    content: url("../img/top/deco_price1.png");
    position: absolute;
    bottom: 70%;
    left: -10%;
    opacity: 0.7;
}

.price-link-container::after {
    content: url("../img/top/deco_price2.png");
    position: absolute;
    top: 60%;
    right: -10%;
    opacity: 0.7;
}

/* #endregion price container */

/* #region campaign container */
.campaign-container {
    background-color: #f6f8c7;
    border-radius: 0 10rem;
    padding: 8rem 6rem;
}

.campaign-wrapper {
    position: relative;
    width: 70%;
    justify-self: center;
    background-color: #fff;
    border-radius: 2rem;
    box-shadow: 0 8px 2rem #555c;
    padding: 3rem;
}

.campaign-banner-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.campaign-banner-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
}

.campaign-banner-img-wrapper {
    position: relative;
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
}

.campaign-banner-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 1rem;
    aspect-ratio: 4 / 3;
    transition: transform 300ms linear;
    transform-origin: center;
}

.campaign-banner-img-wrapper:hover img {
    transform: scale(1.2);
}

.campaign-banner-img-caption {
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
}

.news-list-button-wrapper,
.campaign-list-button-wrapper {
    display: grid;
    justify-items: center;
    align-content: center;
}

.news-list-button,
.campaign-list-button {
    width: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 5rem;
    color: #fff;
    background-color: #f39801;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 3rem;
    border: 2px solid var(--orange);
    transition: all 400ms ease-in-out;
    cursor: pointer;
}

.campaign-list-button:hover {
    background-color: #fff;
    color: var(--orange);
}

/* TODO: change to favicon */
.news-list-button img,
.campaign-list-button img {
    fill: #fff;
    transition: all 200ms ease-in-out;
}

.campaign-list-button:hover img {
    filter: brightness(0) saturate(100%) invert(66%) sepia(79%) saturate(2539%) hue-rotate(1deg) brightness(97%) contrast(101%);
}

.news-list-button-icon,
.campaign-list-button-icon {
    position: absolute;
    right: 5%;
    top: 40%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 1.2rem;
}

.campaign-wrapper::before {
    content: url("../img/top/deco_campaign1.png");
    position: absolute;
    bottom: 71%;
    right: 87%;
    opacity: 0.7;
}

.campaign-wrapper::after {
    content: url("../img/top/deco_campaign2.png");
    position: absolute;
    top: 66%;
    left: 90%;
    opacity: 0.7;
}

/* #endregion campaign container */

/* #region news container */
.news-header .heading-maintext::before {
    content: url("../img/top/deco_heading2.png");
    position: absolute;
    right: 150%;
    top: 50%;
}

.news-header .heading-maintext::after {
    content: url("../img/top/deco_heading3.png");
    position: absolute;
    left: 150%;
    top: 50%;
}

.news-wrapper {
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

.news-content-list-wrapper {
    display: grid;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.news-content-list {
    display: grid;
    align-items: center;
    justify-items: center;
}

.news-content-list-item {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr 6fr;
    grid-template-rows: 3rem;
    grid-template-areas: "date tag cnt";
    align-items: center;
    justify-items: center;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    border-bottom: 2px solid #888a;
}

.tag {
    --tag-color: #abcdef;
    width: 100%;
    border-radius: 3rem;
    border: 2px solid var(--tag-color);
    padding: 0.3rem;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    color: var(--tag-color);
}

.news-item-date {
    grid-area: date;
}

.news-item-tag {
    grid-area: tag;
    justify-self: start;
}

.news-item-text {
    grid-area: cnt;
    justify-self: start;
}

.news-list-button {
    background-color: #003e4e;
    border-color: #003e4e;
}

.news-list-button:hover {
    background-color: #fff;
    color: #003e4e;
}

.news-list-button:hover img {
    filter: brightness(0) saturate(100%) invert(17%) sepia(50%) saturate(1850%) hue-rotate(160deg) brightness(92%) contrast(103%);
}

/* #endregion news container */

/* #region social container */
.social-container {
    gap: 3rem;
    margin-bottom: 5rem;
}

.social-header .heading-maintext::before {
    content: url("../img/top/deco_heading2.png");
    position: absolute;
    right: 170%;
    top: 25%;
}

.social-header .heading-maintext::after {
    content: url("../img/top/deco_heading3.png");
    position: absolute;
    left: 170%;
    top: 25%;
}

.social-wrapper1,
.social-wrapper2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.social-wrapper1 {
    justify-self: center;
    width: 90%;
}

.social-wrapper2 {
    position: fixed;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    transition: left 300ms ease-in;
}

.social-dummy-wrapper {
    position: relative;
    height: 320px;
}

.social-circle {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: width 300ms linear, border-radius 300ms linear;
    cursor: pointer;
}

.social-circle-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
}

.social-circle-text {
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
    font-size: 1.1rem;
    font-weight: bold;
}

.social-wrapper2.static {
    left: 40%;
    transform: none;
    transition: left 300ms ease-in;
}

.social-wrapper2.static .social-circle-text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    opacity: 1;
    visibility: visible;
}

.social-wrapper2.static .social-circle {
    width: 40ch;
    height: auto;
    padding: 0.5rem 3rem;
    border-radius: 2rem;
    justify-content: space-around;
}

.social-wrapper2.static .social-circle-icon {
    width: 48px;
    height: 48px;
}

.social-circle:nth-child(1):hover {
    background-color: #03c755;
    color: #fff;
}

.social-circle:nth-child(2):hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: #fff;
}

.social-circle:nth-child(3):hover {
    background-color: #000;
    color: #fff;
}

.social-wrapper2.static .social-circle:nth-child(1):hover svg,
.social-circle:nth-child(2):hover svg,
.social-circle:nth-child(3):hover svg {
    fill: #ffffff;
}

.social-circle:nth-child(1):hover svg {
    fill: #03c755;
}

/* #endregion social container*/

/* #region responsive */
@media screen and (max-width: 768px) {
    .slide-container {
        min-height: 60vh;
        height: fit-content;
    }

    .content-container {
        margin: 5rem 0;
        gap: 2rem;
    }

    .content-description {
        font-size: 1.2rem;
    }

    .swiper-container {
        padding: 10rem 0 5rem;
    }

    .slide-container div.slide-deco {
        height: 10rem;
    }

    .slide-container span.slide-deco {
        width: 10rem;
        height: 10rem;
    }

    .slide-container span.slide-deco:nth-child(1) {
        left: -20%;
        top: 45%;
    }

    .slide-container span.slide-deco:nth-child(2) {
        right: -10%;
        top: -10%;
    }

    .slide-container span.slide-deco:nth-child(3) {
        right: -30%;
        bottom: 7%;
    }

    .swiper-slide img {
        border-radius: 1rem;
    }

    .swiper-pagination {
        --swiper-pagination-bottom: 26px;
        text-align: center;
        padding-right: 0;
    }

    .swiper-pagination-bullet {
        --swiper-pagination-bullet-horizontal-gap: 1rem;
    }

    .latest-item {
        grid-template-columns: 4.75fr 0.25fr;
        grid-template-rows: repeat(3, .5fr);
        grid-template-areas: "tag icon" "date icon" "cnt icon";
        row-gap: 0.5rem;
    }

    .latest-container {
        width: 90%;
    }

    .latest-wrapper {
        padding: 1rem 1rem;
    }

    .latest-item:hover .latest-icon {
        -webkit-animation: none;
        animation: none;
    }

    .service-wrapper1 {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 3fr;
        grid-template-areas: "cap" "btn";
        gap: 3rem;
    }

    .service-button-wrapper {
        width: 100%;
        padding: 2rem;
        padding-top: 15%;
        margin-top: 25%;
    }

    .service-button-container-wrapper {
        grid-auto-flow: row;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 2rem;
    }

    .service-button-container {
        border-radius: 1rem;
        grid-auto-flow: column;
        padding: 1rem;
    }

    .service-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .service-icon-caption {
        font-size: 1.2rem;
    }

    .service-img-hover {
        max-width: 90%;
        top: 11rem;
    }

    .service-img-caption {
        padding: 1rem;
        top: 0;
        left: 0;
    }

    .service-button-wrapper::after {
        top: 99%;
        left: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(auto-fit, 1fr);
    }

    .service-wrapper2 {
        padding: 5rem 3rem;
    }

    .service-wrapper2::after {
        top: 90%;
    }

    .service-grid {
        gap: 2rem;
    }

    .service-grid-item:hover .service-item-caption-icon {
        animation: none;
    }

    .service-item-img-caption {
        font-size: 1rem;
        width: 100%;
        border-radius: unset;
    }

    .price-wrapper1 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(auto-fit, minmax(100px, 1fr));
        grid-auto-flow: row;
        gap: 2rem;
        width: 100%;
        padding: 0 1rem;
    }

    .price-info-bubble {
        --b: 2rem;
        --p: 100%;
        height: unset;
    }

    .price-link-container {
        width: 80%;
    }

    .price-link-right-section {
        display: none;
    }

    .price-link-left-section {
        position: static;
        width: 100%;
        mask: none;
        border-radius: 5rem;
    }

    .price-link-left-content {
        margin: 0;
        padding: 1rem;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-around;
        align-items: center;
        gap: 1rem;
    }

    .price-link-left-caption {
        font-size: 1.2rem;
    }

    .price-link-left-icon {
        width: 64px;
        height: 64px;
    }

    .campaign-container {
        padding: 5rem 2rem;
        gap: 4rem;
        overflow: hidden;
    }

    .campaign-wrapper {
        width: 100%;
        padding: 2rem;
    }

    .campaign-banner-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(auto-fit, 1fr);
        gap: 2.5rem;
    }

    .campaign-wrapper::before {
        bottom: 90%;
        right: 70%;
    }

    .campaign-wrapper::after {
        top: 90%;
        left: 80%;
    }

    .campaign-banner-img-wrapper img {
        aspect-ratio: 16/9;
    }

    .campaign-banner-img-wrapper:hover img {
        transform: none;
    }

    .news-wrapper {
        width: 90%;
        justify-self: center;
    }

    .news-content-list-item {
        grid-template-columns: 3fr 7fr;
        grid-template-rows: auto 1fr;
        grid-template-areas: "date tag" "cnt cnt";
    }

    .news-list-button,
    .campaign-list-button {
        width: 100%;
        padding: 1rem 2rem;
    }

    .tag {
        min-width: fit-content;
        width: 100%;
        max-width: 20ch;
        padding: 0 1rem;
    }

    .social-wrapper2.static .social-circle {
        width: 90%;
    }

    .news-header .heading-maintext::after,
    .social-header .heading-maintext::after,
    .news-header .heading-maintext::before,
    .social-header .heading-maintext::before,
    .price-header .heading-maintext::after,
    .service-header .heading-maintext::after,
    .service-button-wrapper::after,
    .price-link-container::before,
    .price-link-container::after,
    .campaign-wrapper::after,
    .campaign-wrapper::before,
    .service-wrapper2::after {
        content: none;
    }
}

/* #endregion responsive */

/* #region loaders */
#latest-loading .skeleton-loader {
    display: inline-block;
    width: 7rem;
    height: 1.25rem;
}

#latest-loading .latest-content .skeleton-loader {
    width: 100%;
    height: 1.25rem;
}

#hero-banner-loading .skeleton-loader {
    display: inline-block;
    width: 90vw;
    max-width: 900px;
    height: 20vh;
    min-height: 200px;
    border-radius: 3rem;
}

#news-loading .skeleton-loader {
    display: inline-block;
    width: 7rem;
    height: 1.25rem;
}

#news-loading .news-item-text .skeleton-loader {
    max-width: 38rem;
    width: 90vw;
    height: 1.25rem;
}

#campaign-loading .skeleton-loader {
    display: inline-block;
    width: 7rem;
    height: 1.25rem;
}

#campaign-loading .campaign-banner-img-wrapper .skeleton-loader {
    max-width: 340px;
    width: 90vw;
    height: 250px;
}

/* #endregion loaders */