:root {
    --page-primary-bg: #D33C45;
    --page-secondary-bg: #141414;
    --page-fade: #FFF5F6;
    --text-theme: #000000;
    --text-grey: #5D5D5D;
    --tick-icon: url(../images/cake-images/check-icon.webp);
}

body {
    background-color: var(--page-secondary-bg);
}

main section {
    font-family: 'Gilroy' !important;
}

.banner-heading {
    font-size: clamp(2rem, 6vw, 3.9rem);
}

.page-primary {
    background-color: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey) !important;
}

.link-white,
.link-white:hover {
    color: var(--white-color) !important;
    text-decoration: underline !important;
}

.circle-icon,
.border-0 {
    border: none;
}

.button {
    border-radius: unset !important;
    font-family: 'Gilroy' !important;
    padding: 12px 16px !important;
}

.button-primary,
.button-primary:hover {
    background: var(--page-primary-bg) !important;
    color: var(--white-color) !important;
    font-weight: 600;
}

.button-secondary,
.button-secondary:hover {
    background-color: var(--page-secondary-bg) !important;
    color: var(--white-color) !important;
    font-weight: 600;
}

.z-1 {
    z-index: 1;
    position: relative;
}

.object-cover {
    object-fit: cover;
}

/* Hero Intro */

.hero-section {
    background-image: url(../images/cake-images/banner-intro.webp);
    background-color: var(--white-color);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0 0 220px 220px;
}

.tick-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px dashed #808080;
    text-align: left;
    gap: 20px;
    padding: 30px 30px;
    border-radius: 10px;
}

.tick-list.grid-list  {
    grid-template-columns: repeat(2, 1fr);
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 30px;
    position: relative;
    color: var(--white-color);
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 4px auto 0 0;
    width: 22px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Choose Block */

.choose-intro {
    background-color: var(--white-color);
    border-radius: 30px;
}

.choose-block {
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 10px 0px #0000001A;
    background-color: var(--white-color);
    padding: 30px 30px;
    border-radius: 20px;
}

.choose-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--page-fade);
    border-radius: 50px;
    padding: 15px;
}

.choose-block:hover {
    transform: translateY(-5px);
}

/* Table Block */

.inner-pricing-section table {
    border-radius: 30px;
    overflow: hidden;
}

.inner-pricing-section table tr th {
    width: 33.3%;
    border-bottom: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    text-align: center;
    height: 90px;
    padding: 10px;
    font-size: 24px;
    color: var(--white-color);
    font-weight: 600 !important;
}

.inner-pricing-section table tr th span {
    width: 100%;
    display: inline-block;
    font-weight: 300;
}

tbody tr td:first-child {
    background-color: #484848;
    font-weight: 600;
    font-size: 18px !important;
    color: var(--white-color) !important;
}

tbody tr td {
    background-color: var(--white-color);
    font-weight: 500;
    color: #1C1B21 !important;
}

.inner-pricing-section table tr th:nth-child(1) {
    background-color: #3E3E3E;
}

.inner-pricing-section table tr th:nth-child(2) {
    background-color: #343434;
}

.inner-pricing-section table tr th:last-child {
    background-color: #2A2A2A;
}

.flex-featured {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner-pricing-section img {
    width: 100%;
    max-width: 24px;
}

.inner-pricing-section table tr td {
    font-size: 17px;
    padding: 20px 20px;
    border-bottom: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
}

/* Serice Block */

.service--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.4s;
    background-color: var(--white-color);
    border: 1px solid #DEDEDE;
}

.icon--box {
    width: 90px;
    height: 90px;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--page-fade);
    border: 1px dashed transparent;
    border-radius: 50px;
}

.service--block:hover {
    border-color: var(--page-fade);
    background-color: var(--page-fade);
}

.service--block:hover .icon--box {
    background-color: #ffffff20;
}

.service--block:hover h4,
.service--block:hover p {
    color: var(--white-color) !important;
}

.develop--wrapper .service--block {
    display: flex;
    gap: 30px;
}

/* Bordered Blocks */

.border-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 24px 24px;
    border-right: 1px solid #FFFFFF4D;
    border-bottom: 1px solid #FFFFFF4D;
}

.border-card.borderr-0 {
    border-right: none;
}

.border-card.borderb-0 {
    border-bottom: none;
}

/* Stand Block */

.stand--slider .swiper-slide  {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.slider-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 50px 0 0;
}

.slider-btn .swiper-button-next,
.slider-btn .swiper-button-prev {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 1px solid var(--page-primary-bg);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--page-primary-bg);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:hover,
.slider-btn .swiper-button-prev:hover {
    background: var(--page-primary-bg);
    border-color: var(--page-primary-bg);
    color: var(--white-color);
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:after,
.slider-btn .swiper-button-prev:after  {
    font-size: 18px;
}

/* CTA Block */

.cta--wrap {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/cake-images/cta-intro.webp);
    padding: 90px 90px;
    border-radius: 20px;
}

.cta--wrapper {
    padding: 50px 50px;
    border-radius: 20px;
    background-color: #202020;
}

.cta--intro {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/cake-images/cta-intro-2.webp);
    padding: 90px 90px;
    border-radius: 20px;
}

/* Faq */

main .accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 32px 0;
    font-size: 22px;
    font-weight: 600;
}

.faq .accordion-button, .faq .accordion-item {
    background: transparent !important;
    color: #fff !important;
}

.faq-blocks .accordion-item {
    border-top: 1px solid #ffffff70 !important;
}

.faq-blocks .accordion:last-child {
    border-bottom: 1px solid #ffffff70 !important;
}

.faq-blocks .accordion-button {
    padding: 30px 0 !important;
    font-size: 20px !important;
    gap: 15px;
}

.faq-blocks .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-blocks .accordion-body {
    padding: 0 300px 30px 0 !important;
    color: inherit;
}

/* Responsive */

@media (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }

    .banner-heading {
        font-size: clamp(2rem, 6vw, 2.7rem);
    }
}

@media only screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .button {
        width: auto !important;
    }

    .hero-section {
        border-radius: 0 0 60px 60px;
        padding: 40px 0 !important;
    }

    .tick-list {
        grid-template-columns: repeat(2, 1fr);
        margin-inline: auto;
    }

    .choose-block {
        padding: 20px 20px;
    }

    .cta--wrap,
    .cta--wrapper,
    .cta--intro {
        padding: 50px 20px;
    }

    .border-card {
        border: 1px solid #FFFFFF4D !important;
        margin: 0 0 20px;
    }

}

@media only screen  and (max-width: 767px) {

    .tick-list,
    .tick-list.grid-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .inner-pricing-section table {
        border-radius: unset !important;
        padding: 0;
        border: none !important;
    }

    .inner-pricing-section table tr td:not(:last-child) {
        border-bottom: 1px solid #d5d5d5 !important;
    }

    .inner-pricing-section table tbody tr td:first-child:before {
        color: var(--white-color);
    }

    .inner-pricing-section table, thead, tbody, th, td, tr {
      display: block;
    }

    .inner-pricing-section thead {
        display: none;
    }

    .inner-pricing-section tr {
        padding: 10px 0;
        border: none !important;
    }

    .inner-pricing-section td {
        text-align: right;
        padding-left: 50% !important;
        position: relative;
        border: none !important;
        min-height: 90px;
    }

    .inner-pricing-section td::before {
        content: attr(data-label);
        position: absolute;
        left: 16px;
        width: 45%;
        text-align: left;
        font-weight: 600;
        color: var(--text-theme);
    }
}
}