@charset "UTF-8";
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    min-width: 0;
    min-height: 0;
    --background1: #1A365D;
    --background2: #4ECDC4;
    --background3: #E9c46A;
    --btn-bg: #E9c46A;
    --btn-text: #ffffff;
}

.sn-author-desc-mobile,
.sn-mobile-table {
    display: none;
}

body {
    background-color: var(--background1);
}

.sn-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.sn-hidden {
    display: none;
}

.sn-container.full {
    max-width: 100%;
}

.landing {
    padding: 64px 24px;
}

.landing.dark-theme,
.landing .dark-theme {
    --heading: #FFFFFF;
    --text: #ffffff;
}

.landing.light-theme,
.landing .light-theme {
    --heading: #1A365D;
    --text: #1A365D;
}

.landing h1,
.landing h2,
.landing h3 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    text-transform: capitalize;
}

.landing h1 {
    font-size: 52px;
    line-height: 1.1;
    color: var(--heading);
}

.landing h2 {
    font-size: 30px;
    line-height: 1.3;
    color: var(--heading);
}

.landing h3 {
    font-size: 24px;
    line-height: 1.4;
    color: var(--heading);
}

.landing h4 {
    font-size: 18px;
    line-height: 1.5;
    color: var(--heading);
}

.landing p {
    line-height: 1.6;
}

.landing p,
.landing ul li,
.landing a,
.landing span .landing div,
body,
input,
table tr th,
table tr td {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: var(--text);
}

.landing label {
    font-size: 14px;
    display: block;
}

.landing ul {
    -webkit-padding-start: 40px;
    -moz-padding-start: 40px;
    list-style: none;
}

.landing ul li {
    position: relative;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.landing ul li::before {
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    left: -35px;
    top: 0;
    content: "";
}

.landing .sn-btn {
    display: inline-block;
    padding: 12px 36px;
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-bottom: 7px solid rgba(0, 0, 0, 0.5);
    outline: transparent;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: var(--background1);
    border-radius: 50px;
    text-transform: capitalize;
    background-color: var(--btn-bg);
    transition: ease-in-out 0.4s;
    position: relative;
    overflow: hidden;
}

.landing .sn-btn:hover {
    border: 2px solid #000;
    border-bottom: 7px solid #000;
}

.landing .sn-btn.short-btn {
    max-width: 400px;
}

.landing .sn-btn.btn-alt {
    background: var(--btn-text);
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay {
    position: relative;
    z-index: 1;
}

.overlay::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    z-index: -1;
}

.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.p-30 {
    padding: 30px;
}

.p-40 {
    padding: 40px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.m-10 {
    margin: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.m-20 {
    margin: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.br-5 {
    border-radius: 5px;
}

.br-10 {
    border-radius: 10px;
}

.br-20 {
    border-radius: 20px;
}

.text-center {
    text-align: center;
}

.vcenter {
    align-items: center;
}

.hcenter {
    justify-content: center;
}

.sn-col-1 {
    flex-basis: 100%;
}

.sn-col-2 {
    flex-basis: 50%;
}

.sn-col-2.m-10 {
    flex-basis: calc(50% - 20px);
}

.sn-col-3 {
    flex-basis: 33.3333333333%;
}

.sn-col-3.m-10 {
    flex-basis: calc(33.3333333333% - 20px);
}

.sn-col-4 {
    flex-basis: 25%;
}

.sn-col-4.m-10 {
    flex-basis: calc(25% - 20px);
}

.sn-col-5 {
    flex-basis: 20%;
}

.sn-col-5.m-10 {
    flex-basis: calc(20% - 20px);
}

.sn-img {
    max-width: 100%;
    display: block;
}

.slick-next,
.slick-prev {
    opacity: 0;
    z-index: 2;
    transition: ease-in-out 0.4s;
}

.slick-next {
    right: -10px;
}

.slick-prev {
    left: -10px;
}

.slick-slider:hover .slick-next,
.slick-slider:hover .slick-prev {
    opacity: 1;
}

.slick-slider:hover .slick-next {
    right: 10px;
}

.slick-slider:hover .slick-prev {
    left: 10px;
}

.slick-next:before,
.slick-prev:before {
    color: var(--primary);
}

.sn-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.sn-rating .sn-stars {
    margin-right: 10px;
}

.sn-stars {
    color: var(--stars);
}

.collapsible {
    background-color: var(--background1);
    color: var(--heading);
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.active,
.collapsible:hover {
    background-color: var(--background1);
}

.collapsible:after {
    content: "+";
    color: var(--heading);
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "−";
}

.content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-out;
    background-color: transparent;
}

#sn-hero {
    padding: 20px 24px 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--background1);
    position: relative;
    overflow: hidden;
}

#sn-hero h2 {
    font-size: 24px;
    font-family: 'Raleway', sans-serif;
}

.book-wrap img {
    z-index: 2;
    position: relative;
}

.element3 {
    position: absolute;
    top: 10%;
    left: 45%;
    opacity: 0.2;
    width: 200px;
    height: 200px;
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.elements {
    animation: float 6s ease-in-out infinite;
}

.element1 {
    position: absolute;
    top: 20%;
    left: auto;
    right: -7%;
    opacity: 0.5;
    width: 200px;
    height: 200px;
    transform: rotate(90deg);
    animation: float 10s ease-in-out infinite;
    z-index: 1;
}

.element2 {
    position: absolute;
    top: 40%;
    left: -10%;
    opacity: 0.1;
    width: 300px;
    height: 3000px;
    z-index: 1;
}

.premium-badge {
    font-size: 14px;
    background: transparent;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    color: var(--background3);
    border-radius: 50px;
    border: 2px solid var(--background3);
    display: inline-block;
    margin-top: 0;
}


/* hero section shape divider */

.custom-shape-divider-bottom-1751431802 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1751431802 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 160px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1751431802 .shape-fill {
    fill: #E9c46A;
}


/** For mobile devices **/

@media (max-width: 767px) {
    .custom-shape-divider-bottom-1751431802 svg {
        width: calc(165% + 1.3px);
        height: 76px;
    }
}


/* hero section shape divider end */

#sn-emotional-validation {
    position: relative;
    background: var(--background3);
    padding: 60px 20px 200px;
}

.emotional-validation-wrap {
    max-width: 800px;
}

ul.emotions-list {
    -webkit-padding-start: 0;
    -moz-padding-start: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

ul.emotions-list li {
    padding: 10px 20px;
    margin-bottom: 20px;
    background: var(--background1);
    color: #FFF;
    border-radius: 50px;
    width: fit-content;
}


/* emotional validation shape divider */

.custom-shape-divider-bottom-1749438603 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.custom-shape-divider-bottom-1749438603 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1749438603 .shape-fill {
    fill: #FFF;
}


/** For tablet devices **/

@media (min-width: 768px) and (max-width: 1023px) {
    .custom-shape-divider-bottom-1749438603 svg {
        width: calc(100% + 1.3px);
        height: 100px;
    }
}


/** For mobile devices **/

@media (max-width: 767px) {
    .custom-shape-divider-bottom-1749438603 svg {
        width: calc(100% + 1.3px);
        height: 60px;
    }
}


/* emotional validation section shape divider end */

#sn-products {
    background: #FFF;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}

.element4 {
    position: absolute;
    top: 0%;
    left: 25%;
    opacity: 0.05;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.element5 {
    position: absolute;
    top: 50%;
    animation: float 10s ease-in-out infinite;
    left: auto;
    right: -5%;
    opacity: 0.1;
    width: 200px;
    height: 500px;
}

.element6 {
    position: absolute;
    top: 40%;
    left: 0;
    animation: float 3s ease-in-out infinite;
    opacity: 0.7;
    width: 50px;
    height: 50px;
}

.sn-btn-wrap {
    margin-top: 20px;
}

.sn-price {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.sn-price .sale-price {
    font-size: 24px;
}

.sn-price .regular-price {
    font-size: 18px;
    opacity: 0.7;
}

#sn-journey {
    position: relative;
    padding: 100px 20px 250px;
    background: var(--background1);
    overflow: hidden;
    border-top: 2px solid var(--background3);
}

.journey-card {
    padding: 20px;
    border-radius: 20px;
    background: #FFF;
    position: relative;
    border: 2px solid transparent;
    transition: ease-in-out 0.4s;
}

.journey-card h3 {
    color: var(--background1);
}

.journey-card:hover {
    border: 2px solid var(--background2);
}

.journey-card::after {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--background2);
    content: '→';
    position: absolute;
    right: -40px;
    font-size: 28px;
    top: 50%;
    animation: flow 3s forwards infinite ease;
}

.journey-card-wrap:last-child .journey-card::after {
    display: none;
}

@keyframes flow {
    0% {
        transform: translateX(-20%) translateY(-50%);
        opacity: 0;
    }
    100% {
        transform: translateX(10%) translateY(-50%);
        opacity: 1;
    }
}

@keyframes flow-down {
    0% {
        transform: translateY(-20%) translateX(-50%) rotate(90deg);
        opacity: 0;
    }
    100% {
        transform: translateY(10%) translateX(-50%) rotate(90deg);
        opacity: 1;
    }
}


/* journey section shape divider */

.custom-shape-divider-bottom-1749444530 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1749444530 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1749444530 .shape-fill {
    fill: #E9c46A;
}


/** For tablet devices **/

@media (min-width: 768px) and (max-width: 1023px) {
    .custom-shape-divider-bottom-1749444530 svg {
        width: calc(100% + 1.3px);
        height: 100px;
    }
}


/** For mobile devices **/

@media (max-width: 767px) {
    .custom-shape-divider-bottom-1749444530 svg {
        width: calc(100% + 1.3px);
        height: 60px;
    }
}


/* journey section shape divider end */

.sn-product-card {
    color: var(--heading);
    border-radius: 20px;
    padding: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sn-product-badge {
    display: block;
    position: absolute;
    left: 50%;
    width: fit-content;
    top: 0;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px;
    background: var(--background2);
    font-size: 14px;
}

.sn-product-content {
    padding: 20px;
    margin-top: 20px;
    border-radius: 20px;
    position: relative;
    background: rgba(0, 0, 0, 0.05);
}

.sn-product-card h3 {
    text-align: center;
    margin-bottom: 20px;
}

.sn-product-card p {
    margin-bottom: 10px;
}

.sn-product-card ul {
    list-style: none;
    -webkit-padding-start: 40px;
    -moz-padding-start: 40px;
    margin-top: 20px;
}

.sn-product-card ul li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
}

.sn-product-card ul li::before {
    display: block;
    width: 30px;
    height: 30px;
    content: '—';
    position: absolute;
    left: -30px;
}

.sn-product-card ul li:last-child {
    border-bottom: none;
}

.sn-product-card .sn-btn {
    width: 100%;
    margin-top: 20px;
}

#sn-about {
    background: var(--background1);
    position: relative;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.sn-features-row {
    max-width: 900px;
}

.sn-feature-wrap {
    text-align: center;
}

.sn-feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--background3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sn-feature-icon img {
    width: 60px;
}

#sn-compare {
    background: var(--background3);
    padding: 60px 24px 200px;
    position: relative;
    overflow: hidden;
}

.table-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateY(-100%) translateX(-50%);
    font-size: 14px;
    border: 2px solid var(--background1);
    text-align: center;
    border-radius: 50px;
    padding: 5px 10px;
    display: block;
    width: 80%;
}

.sn-mobile-table .table-badge {
    width: 100%;
    transform: translateY(0) translateX(-50%);
    margin-top: 10px;
    position: relative;
}

.table-badge.emotional-badge {
    background: var(--background2);
}

.table-badge.professional-badge {
    background-color: var(--background1);
    color: #fff;
}

.element7 {
    position: absolute;
    top: 15%;
    left: 30%;
    animation: float 20s ease-in-out infinite;
    opacity: 0.2;
    width: 200px;
    height: 200px;
}

.element8 {
    position: absolute;
    top: 70%;
    left: 10%;
    animation: float 10s ease-in-out infinite;
    opacity: 0.7;
    width: 50px;
    height: 50px;
}

.element9 {
    position: absolute;
    top: 0%;
    left: 80%;
    animation: float 10s ease-in-out infinite;
    opacity: 0.7;
    width: 100px;
    height: 100px;
}

.sn-table-wrap {
    max-width: 900px;
    border-radius: 20px;
    margin: 40px auto;
    position: relative;
    z-index: 2;
    padding: 10px 0;
}

.sn-table-wrap .table-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    border-bottom: 1px solid #000;
}

.sn-table-wrap .table-row.table-head {
    text-align: center;
}

.sn-mobile-table .table-row.table-head {
    text-align: center;
}

.sn-table-wrap .table-row:last-child {
    border-bottom: none;
}

.sn-table-wrap .table-cell {
    font-size: 14px;
    padding: 10px;
    flex: 1;
    position: relative;
}


/* compare shape divider */

.custom-shape-divider-bottom-1749451188 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1749451188 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1749451188 .shape-fill {
    fill: #1A365D;
}


/** For tablet devices **/

@media (min-width: 768px) and (max-width: 1023px) {
    .custom-shape-divider-bottom-1749451188 svg {
        width: calc(100% + 1.3px);
        height: 100px;
    }
}


/** For mobile devices **/

@media (max-width: 767px) {
    .custom-shape-divider-bottom-1749451188 svg {
        width: calc(100% + 1.3px);
        height: 60px;
    }
}


/* compare shape divider end */

.table-cta {
    margin-top: 20px;
    max-width: 900px;
}

#sn-cta {
    background: #fff;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}

#sn-cta .sn-btn {
    display: block;
    max-width: 600px;
    margin: 20px auto;
}

.sn-btn.emotional {
    background: var(--background2);
}

.sn-btn.professional {
    background: var(--background1);
    color: #fff;
}

.sn-btn.bundle {
    background: var(--background3);
}

#sn-reviews {
    background: #1A365D;
    position: relative;
    overflow: hidden;
    top: -2px;
}

.sn-reviews-wrap {
    max-width: 900px;
}

#sn-author {
    background: #000000;
    overflow: hidden;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(26, 54, 93, 1) 100%);
}

.sn-author-wrap {
    max-width: 900px;
}

.sn-author-card {
    padding: 40px;
    background: #fff;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}

.sn-author-img img {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#sn-faq {
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(26, 54, 93, 1) 100%);
    position: relative;
    overflow: hidden;
}

.element10 {
    position: absolute;
    top: 20%;
    left: auto;
    right: -7%;
    opacity: 0.5;
    width: 200px;
    height: 200px;
    transform: rotate(90deg);
    animation: float 10s ease-in-out infinite;
    z-index: 1;
}

.element11 {
    position: absolute;
    top: 70%;
    left: 5%;
    opacity: 0.2;
    width: 50px;
    height: 50px;
    transform: rotate(90deg);
    animation: float 10s ease-in-out infinite;
    z-index: 1;
}

.element12 {
    position: absolute;
    top: -10%;
    left: 50%;
    opacity: 0.3;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.sn-faq-wrap {
    max-width: 800px;
}

.collapse-wrap .collapsible {
    background: transparent;
    border-bottom: 2px solid var(--background3);
}

.collapse-wrap .collapsible::after {
    font-size: 24px;
}

footer {
    background: #000;
}

.sn-quote-island {
    padding: 40px 25px 25px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    max-width: 600px;
    margin: 60px auto 40px;
    position: relative;
}

.sn-quote-island::before,
.sn-testimonial-card::before {
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    left: 50%;
    content: '';
    background: var(--background3);
    border-radius: 50%;
    top: 0;
    transform: translateX(-50%) translateY(-50%);
}

.sn-quote-island::after,
.sn-testimonial-card::after {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 0;
    opacity: 0.4;
    background: url(images/quote.png) no-repeat center center;
    background-size: contain;
    transform: translateX(-50%) translateY(-50%);
    content: '';
}

.sn-testimonial-row {
    display: flex;
    gap: 20px;
    margin: 60px auto 40px;
}

.sn-testimonial-card {
    width: 100%;
    flex: 1;
    position: relative;
    max-width: 800px;
    border-radius: 20px;
    padding: 40px 25px 25px;
    background: transparent;
    border: 2px solid #000;
    background: var(--background3);
}

.sn-testimonial-card::before {
    border: 2px solid var(--background1);
}

.sn-testimonial-card::after {
    opacity: 1;
}

.sn-testimonial-card p {
    font-size: 18px;
    color: var(--background1);
    font-weight: bold;
}

@media screen and (max-width: 992px) {
    .landing {
        padding: 48px 24px;
    }
    .landing h1 {
        font-size: 28px;
    }
    .landing h2 {
        font-size: 24px;
    }
    .landing h3 {
        font-size: 22px;
    }
    .landing h4 {
        font-size: 16px;
    }
    .landing p,
    .landing ul li {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .sn-table-wrap .table-cell {
        flex-basis: 60%;
        flex-shrink: 0;
    }
    .sn-table-wrap .table-cell.criteria {
        flex-basis: 40%;
        flex-shrink: 0;
    }
    .sn-author-desc-mobile,
    .sn-mobile-table {
        display: block;
    }
    .sn-author-desc-desktop,
    .sn-desktop-table {
        display: none;
    }
    .landing {
        padding: 32px 16px;
    }
    .sn-col-2,
    .sn-col-3 {
        flex-basis: 100%;
    }
    .sn-col-2.m-10,
    .sn-col-3.m-10 {
        flex-basis: calc(100% - 20px);
    }
    .sn-col-4,
    .sn-col-5 {
        flex-basis: 100%;
    }
    .sn-col-4.m-10,
    .sn-col-5.m-10 {
        flex-basis: calc(100% - 20px);
    }
    .sn-table-wrap table tr th,
    .sn-table-wrap table tr td {
        padding: 10px 5px;
        font-size: 12px;
    }
    #sn-hero {
        padding: 40px 0 80px;
        height: unset;
    }
    #sn-hero h2 {
        font-size: 18px;
    }
    #sn-emotional-validation {
        margin-top: -1px;
        padding: 40px 20px 80px;
    }
    #sn-journey {
        padding: 40px 20px 80px;
    }
    .journey-card::after {
        animation: flow-down 2s forwards infinite ease;
        left: 50%;
        top: 100%;
    }
    .book-wrap {
        margin-top: 20px;
    }
    .sn-hero-in {
        text-align: center;
    }
    .elements {
        width: 50px;
        height: 50px;
    }
    .landing .sn-btn {
        width: 100%;
    }
    #sn-products {
        padding: 40px 20px;
        margin-top: -1px;
    }
    .sn-product-card {
        padding: 0;
    }
    .sn-product-card h3 {
        font-size: 18px;
    }
    #sn-about {
        padding: 20px;
        margin-top: -2px;
    }
    #sn-cta {
        padding: 40px 24px;
    }
    .sn-feature-wrap {
        flex-basis: 100%;
        margin: 0;
        padding: 10px;
    }
    #sn-compare {
        padding: 40px 20px 80px;
        margin-top: -2px;
    }
    #sn-author {
        padding: 40px 20px;
    }
    .sn-author-card {
        padding: 20px;
        border-radius: 0;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    .sn-author-img img {
        border-radius: 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .sn-testimonial-row {
        flex-wrap: wrap;
        margin: 40px 0;
    }
    .sn-testimonial-card {
        flex-basis: 100%;
        margin-top: 30px;
    }
}


/*# sourceMappingURL=landing.css.map */


/*# sourceMappingURL=landing.css.map */