#content>.ast-container {
    max-width: 100%;
    padding: 0 !important;
}

div#primary {
    margin: 0 !important;
}

body {
    background: #eeede9;
}

:root {
    --color-primary-new: #030D36;
    --section-heading: #163746;
    --gray-light: #ADADAD;
    --light-gray-bg: #F7F8F9;
    --color-red: #F12C3E;
    --slick-arrow-dim: 30px;
}

.column-gap {
    height: 50px;
}

.uppercase {
    text-transform: uppercase !important;
}

.font-100 {
    font-weight: 100 !important;
}

.font-200 {
    font-weight: 200 !important;
}

.font-300 {
    font-weight: 300 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-500 {
    font-weight: 500 !important;
}

.font-600 {
    font-weight: 600 !important;
}

.font-700 {
    font-weight: 700 !important;
}

.font-800 {
    font-weight: 800 !important;
}

.font-900 {
    font-weight: 900 !important;
}

.section-padding {
    padding: 50px 0;
}

.section-padding-top {
    padding-top: 50px;
}

.section-padding-bottom {
    padding-bottom: 50px;
}

.large-heading {
    font-size: 25px !important;
    font-weight: 700;
    color: var(--color-primary-new);
    margin-bottom: 18px;
    text-transform: capitalize;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 1.5rem;
    text-transform: capitalize;
    transition: all .4s ease-in-out;
    font-weight: 400;
    border: none;
}

.btn-small {
    padding: 4px 20px;
    width: 50%;
    font-size: 15px;
}

.btn-primary-blue {
    background: var(--black-jet);
    color: var(--white);
    box-shadow: 0 0 0 1px inset var(--black-jet);
}

.btn-primary-blue:hover {
    background: var(--color-red);
    color: var(--white);
    box-shadow: 0 0 0 1px inset var(--color-red);
}

.btn-red {
    background: #128187;
    color: var(--white);
}

.btn-red:hover {
    background: var(--color-primary-new);
    color: var(--white);
}

.btn-outline {
    background: none;
    color: var(--color-primary-new);
    box-shadow: 0 0 0 1px inset var(--color-primary-new);
}

.btn-outline:hover {
    background: var(--color-red);
    color: var(--white);
    box-shadow: 0 0 0 1px inset var(--color-red);
}

.btn-centered {
    justify-content: center;
}

/* Banner Section */
h1.banner-content__title.large-heading {
    font-size: 20px !important;
}

.hero-banner-content {
    background: var(--white);
    border-radius: 1rem;
    padding: 25px 32px;
}

section.section-padding.hero-banner-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media screen and (min-width:769px) {
    .hero-banner-content {
        max-width: 90%;
    }

    .whats-included .btn {
        max-width: 80%;
        margin: auto;
    }
}

.banner-logo-container img {
    width: 300px;
    position: absolute;
    right: 0;
    top: -100px;
}

.hero-banner-content__body {
    display: flex;
    gap: 20px;
    margin: 1rem auto;
    align-items: center;
}

.hero-banner-content__left img {
    width: 500px;
    aspect-ratio: 1;
}

.product-price {
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.product-price ins {
    color: var(--color-primary-new);
}


.product-price>span {
    display: flex;
    align-items: baseline;
}

.product-price .savings {
    padding: 2px 10px;
    color: var(--color-red);
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #1C1C1B;
    text-align: center;
    font-size: 16px;
}

.product-price ins {
    font-weight: 700;
    display: initial;
    border-left: 2px solid var(--color-primary-new);
    padding-left: 5px;
}

.product-price del {
    color: #C3C3C3;
    display: initial;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 1;
    margin-right: 8px;
}

.product-summary ul li {
    position: relative;
    padding-left: 25px;
    list-style: none;
}

.product-summary ul li::before {
    content: url('/wp-content/uploads/2024/09/green-tick.svg');
    height: 8px;
    aspect-ratio: 1;
    display: inline-block;
    border-radius: 100%;
    position: absolute;
    left: 0;
}

.product-summary {
    font-weight: 600;
    color: var(--color-primary-new);
}

/* Features section */
.feature-body {
    display: flex;
    gap: 32px;
    color: var(--color-primary-new);
}

.feature:not(:last-child) {
    margin-bottom: 2rem;
}

.feature-body__icon img {
    max-width: 55px;
}

.feature-title {
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--color-primary-new);
}

.feature-body__description>p:last-child {
    margin-bottom: 0;
}

.feature-body__description>p {
    margin-bottom: 1rem;
}

.feature-body__description ul,
.whats-included-content ul {
    margin-left: 20px;
}

.feature-body__description ul li,
.whats-included-content ul li {
    list-style: disc;
}

/* Whats included */

.whats-included {
    background: var(--white);
    padding: 25px 40px;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.whats-included .product-price {
    justify-content: center;
    margin: 1rem auto;
}

/* CTA Boxes */
.cta-box {
    display: flex;
    border-radius: 1rem;
    overflow: hidden;
}

.cta-box:first-of-type {
    margin-bottom: 2rem;
}


.cta-box__right {
    background: #E4E7E9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    flex: 2;
}

h5.cta-title {
    color: var(--color-primary-new);
    font-weight: 600;
}

.cta-desc {
    font-size: 15px;
    color: var(--color-primary-new);
}

/* Photo gallery */

.photo-gallery .splide__slide img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}

/* Logo Group */

.logo-group {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.logo-group .image {
    min-height: auto;
    /* padding: 0 25px; */
}

.logo-group .image img {
    height: 60px;
    width: auto;
}

.logo-group:nth-child(2) {
    display: none;
}

@media screen and (max-width:768px) {
    .banner-logo-container {
        display: none;
    }

    .logo-group .image {
        width: calc(50% - 1rem);
    }

    .cta-box {
        flex-direction: column;
    }

    img.cta-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: top;
    }

    .cta-btn {
        width: 100% !important;
    }

    .whats-included {
        padding: 20px;
        margin-top: 2rem;
    }

    .hero-banner-content {
        padding: 20px;
    }

    .feature-body__icon {
        display: none;
    }

    .hero-banner-content__body {
        flex-direction: column;
    }

    .hero-banner-content__left img {
        width: 100px;
    }
}