body {
    margin: 0;
    font-family: "Lexend", sans-serif;
    color: #141515;
}

/* Layout */
.section {
    padding: 60px 20px;
    box-sizing: border-box;
}

.section--center {
    text-align: center;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    box-sizing: border-box;
}

.container--md {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

.container--sm {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.px--none .row {
    margin: 0;
}

.col {
    padding: 15px;
    box-sizing: border-box;
    flex: 1;
    position: relative;
}

.col--1 {
    flex: 0 0 8.333%;
    max-width: 8.333%;
}

.col--2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
}

.col--3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col--4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col--5 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
}

.col--6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col--7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
}

.col--8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}

.col--9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col--10 {
    flex: 0 0 83.333%;
    max-width: 83.333%;
}

.col--11 {
    flex: 0 0 91.666%;
    max-width: 91.666%;
}

.col--12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col__item--center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Typography */
.heading {
    font-weight: 700;
    margin: 0 0 13px 0;
}

.heading--h1 {
    font-size: 48px;
    line-height: 56px;
    font-family: "Libre Caslon Text", serif;
}

.heading--h2 {
    font-size: 40px;
    font-weight: 600;
}

.heading--h3 {
    font-size: 28px;
    font-weight: 600;
}

.heading--h4 {
    font-size: 24px;
    font-weight: 600;
}

.heading--h5 {
    font-size: 20px;
    font-weight: 500;
}

.heading--h6 {
    font-size: 16px;
}

.heading--xl {
    font-size: 64px;
    line-height: 72px;
}

.heading--lg {
    font-size: 54px;
    line-height: 72px;
}

.paragraph {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.paragraph--small {
    font-size: 14px;
}

.paragraph--large {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.paragraph--medium {
    font-weight: 500;
}

.paragraph--highlight {
    border-radius: 50px;
    width: max-content;
    padding: 5px 12px;
    font-weight: 500;

}

.paragraph--3--line {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

p:last-child {
    margin: 0;
}

/* Button */
.button {
    transition: all 0.3s;
    display: inline-block;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 16px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    border: none;
}

.button--primary {
    background-color: #005a9c;
    color: #fff;
    border: 2px solid #005a9c;
    transition: all 0.3s;
}

.button--primary:hover {
    background-color: #fff;
    color: #005a9c;
}

.button--secondary {
    background-color: #fff;
    color: #333;
    border: 1px solid #b5b8ba;
}

.button--pink {
    background-color: #991e66;
    color: #fff;
    border: 1px solid #991e66;
}

.button--pink:hover {
    background-color: #fff;
    color: #991e66;
    border: 1px solid #991e66;
}

.button--yellow {
    background-color: #ffd057;
    color: #333;
    border: 1px solid #ffd057;

}

.button--secondary:hover {
    background-color: #005a9c;
    color: #fff;
    border: 1px solid #b5b8ba;
}

.button--outline {
    background-color: #fff;
    color: #333;
    border: 1px solid #b5b8ba;
}

.button--outline:hover {
    background-color: #005a9c;
    color: #fff;
    border: 1px solid #b5b8ba;
}

.button--rounded {
    border-radius: 50%;
    width: 48px;
    min-width: 48px;
    height: 48px;
    font-size: 18px;
    text-align: center;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button--flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
}

.button--flex--vertical {
    flex-direction: column;
    min-height: 200px;
}

.button--icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    width: max-content;
}

.button--icon:hover img {
    filter: brightness(100);
}

/* Links */
a {
    color: #991e66;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: #000;
}

/* Icons */
.icon--box {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

.icon--inner {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Shadows */
.shadow,
.shadow--md {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 0 4px 0 rgba(0, 0, 0, 0.08);
}

/* Backgrounds */
.bg__small {
    position: relative;
}

.bg__small::before {
    width: 100%;
    height: 340px;
    position: absolute;
    top: 50%;
    content: "";
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.bg__small--success::before {
    background-color: #f2ecf0;
}

.bg__small--secondary::before {
    background-color: #991e66;
}

/* Select Input */
select {
    border-radius: 8px;
    border: 1px solid #767b7f;
    background: #fff;
    padding: 8px 26px 8px 7px;
    font-family: "Lexend", sans-serif;
}

/* Background Colors */
.bg--white {
    background-color: #fff;
}

.bg--primary {
    background-color: #005a9c;
}

.bg--primary--dark {
    background-color: #0b3253;
}

.bg--secondary {
    background-color: #991e66;
}

.bg--success {
    background-color: #f2ecf0;
}

.bg--info {
    background-color: #f4f5f5;
}

.bg--info--dark {
    background-color: #dfe1e2;
}

.bg--light {
    background-color: #ccdeeb;
}

.bg--light_2 {
    background-color: #EEEAF7;
}

.bg--danger {
    background-color: #fdebd2;
}

.bg--warning {
    background-color: #f59c20;
}

.bg--dark {
    background-color: #000;
}

.bg--muted {
    background-color: #cca646;
}

.bg--accent {
    background-color: #6610f2;
}

.bg--accent_2 {
    background-color: #AA98D5;

}

.bg--yellow {
    background-color: #ffd057;
}

.bg--danger--light {
    background-color: #fff6dd;
}

.bg--gradient {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0) 284.76%);
    background-color: #000;
    backdrop-filter: blur(25.75px);
}

/* Text Colors */
.text--white {
    color: #fff;
}

.text--primary {
    color: #005a9c;
}

.text--secondary {
    color: #991e66;
}

.text--dark {
    color: #141515;
}

/* Font Sizes */
.text--xs {
    font-size: 10px;
}

.text--sm {
    font-size: 12px;
}

.text--base {
    font-size: 14px;
}

.text--md {
    font-size: 16px;
}

.text--lg {
    font-size: 18px;
}

.text--xl {
    font-size: 20px;
}

.text--2xl {
    font-size: 24px;
}

.text--3xl {
    font-size: 28px;
}

.text--4xl {
    font-size: 32px;
}

.text--5xl {
    font-size: 36px;
}

.text--7xl {
    font-size: 40px;
}

.text--8xl {
    font-size: 44px;
}

.text--9xl {
    font-size: 48px;
    font-family: "Libre Caslon Text", serif;
}

/* Margins */
.m--none {
    margin: 0 !important;
}

.mx--auto {
    margin-left: auto;
    margin-right: auto;
}

.mt--sm {
    margin-top: 10px !important;
}

.mt--md {
    margin-top: 20px !important;
}

.mt--lg {
    margin-top: 40px !important;
}

.mt--xl {
    margin-top: 70px !important;
}

.mb--sm {
    margin-bottom: 10px !important;
}

.mb--md {
    margin-bottom: 20px !important;
}

.mb--lg {
    margin-bottom: 40px !important;
}

.mb--xl {
    margin-bottom: 70px !important;
}

.ml--sm {
    margin-left: 10px !important;
}

.ml--md {
    margin-left: 20px !important;
}

.ml--lg {
    margin-left: 40px !important;
}

.mr--sm {
    margin-right: 10px !important;
}

.mr--md {
    margin-right: 20px !important;
}

.mr--lg {
    margin-right: 40px !important;
}

/* Negative Margins */
.m__top--n1 {
    margin-top: -4px !important;
}

.m__top--n2 {
    margin-top: -8px !important;
}

.m__top--n3 {
    margin-top: -12px !important;
}

.m__top--n4 {
    margin-top: -16px !important;
}

.m__top--n5 {
    margin-top: -20px !important;
}

.m__top--n6 {
    margin-top: -24px !important;
}

.m__top--n7 {
    margin-top: -32px !important;
}

.m__top--n8 {
    margin-top: -40 !important;
}

.m__top--n9 {
    margin-top: -48px !important;
}

.m__top--n10 {
    margin-top: -56px !important;
}

/* Padding All Side */
.p--none {
    padding: 0 !important;
}

.p--xs {
    padding: 4px !important;
}

.p--sm {
    padding: 8px !important;
}

.p--md {
    padding: 16px !important;
}

.p--lg {
    padding: 24px !important;
}

.p--xl {
    padding: 32px !important;
}

.p--xxl {
    padding: 48px !important;
}

/* Top Padding */
.pt--none {
    padding-top: 0 !important;
}

.pt--xs {
    padding-top: 4px !important;
}

.pt--sm {
    padding-top: 8px !important;
}

.pt--md {
    padding-top: 16px !important;
}

.pt--lg {
    padding-top: 24px !important;
}

.pt--xl {
    padding-top: 32px !important;
}

.pt--xxl {
    padding-top: 48px !important;
}

/* Right Padding */
.pr--none {
    padding-right: 0 !important;
}

.pr--xs {
    padding-right: 4px !important;
}

.pr--sm {
    padding-right: 8px !important;
}

.pr--md {
    padding-right: 16px !important;
}

.pr--lg {
    padding-right: 24px !important;
}

.pr--xl {
    padding-right: 32px !important;
}

.pr--xxl {
    padding-right: 48px !important;
}

/* Bottom Padding */
.pb--none {
    padding-bottom: 0 !important;
}

.pb--xs {
    padding-bottom: 4px !important;
}

.pb--sm {
    padding-bottom: 8px !important;
}

.pb--md {
    padding-bottom: 16px !important;
}

.pb--lg {
    padding-bottom: 24px !important;
}

.pb--xl {
    padding-bottom: 32px !important;
}

.pb--xxl {
    padding-bottom: 48px !important;
}

/* Left Padding */
.pl--none {
    padding-left: 0 !important;
}

.pl--xs {
    padding-left: 4px !important;
}

.pl--sm {
    padding-left: 8px !important;
}

.pl--md {
    padding-left: 16px !important;
}

.pl--lg {
    padding-left: 24px !important;
}

.pl--xl {
    padding-left: 32px !important;
}

.pl--xxl {
    padding-left: 48px !important;
}

/* Horizontal Padding (X-Axis) */
.px--none {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px--xs {
    padding-left: 4px !important;
    padding-right: 4px !important;
}

.px--sm {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.px--md {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.px--lg {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.px--xl {
    padding-left: 32px !important;
    padding-right: 32px !important;
}

.px--xxl {
    padding-left: 48px !important;
    padding-right: 48px !important;
}

/* Vertical Padding (Y-Axis) */
.py--none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py--xs {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.py--sm {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.py--md {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

.py--lg {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.py--xl {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
}

.py--xxl {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
}

/* Image Styles */
.image {
    display: block;
    max-width: 100%;
    height: auto;
}

.image--full {
    width: 100%;
}

.image--rounded {
    border-radius: 16px;
}

.image--rounded--top {
    border-radius: 16px 16px 0 0;
}

.image--cover {
    object-fit: cover;
}

.img--fluid {
    max-width: 100%;
}

/* Text Alignment */
.text--center {
    text-align: center;
}

.text--left {
    text-align: left;
}

.text--right {
    text-align: right;
}

/* Display Utilities */
.display--block {
    display: block;
}

.display--inline {
    display: inline;
}

.display--inline-block {
    display: inline-block;
}

.display--flex {
    display: flex;
}

.display--none {
    display: none;
}

/* Border Utilities */
.border {
    border: 1px solid #ccc;
}

.border--rounded {
    border-radius: 16px;
}

.border--rounded-Xl {
    border-radius: 24px;
}

.border--secondary {
    border-color: #991e66;
}

.border--dark {
    border-color: #767b7f;
}

/* Flex Alignment */
.align--items--center {
    align-items: center;
}

.justify--space--between {
    justify-content: space-between;
}

.justify_elements--vertical {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
}

.justify_elements--horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alerts {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.alerts .heading {
    margin: 0;
}

/* List Icons */
.icon--list li::before {
    content: url(../images/tick-circle.png);
}

.icon--list li {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 10px 0;
}

.icon--list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Order & Height */
.z--index--1 {
    position: relative;
    z-index: 1;
}

.z--index--2 {
    position: relative;
    z-index: 2;
}

.z--index--3 {
    position: relative;
    z-index: 3;
}

.z--index--4 {
    position: relative;
    z-index: 4;
}

.z--index--5 {
    position: relative;
    z-index: 5;
}

.z--index--6 {
    position: relative;
    z-index: 6;
}

.z--index--7 {
    position: relative;
    z-index: 7;
}

.h--full {
    height: 100%;
}

.item {
    box-sizing: border-box;
    position: relative;
    height: 100%;
}

/* Slick Slider */
.slick-slide {
    margin: 0 15px;
}

.slick-prev:before {
    content: url(https://21164580.fs1.hubspotusercontent-na1.net/hubfs/21164580/slick-arrow-left.png);
}

.slick-next:before {
    content: url(https://21164580.fs1.hubspotusercontent-na1.net/hubfs/21164580/slick-arrow-right.png);
}

.slick-prev,
.slick-next {
    top: inherit;
    bottom: -81px;
    width: 52px;
    height: 52px;
    right: 0;
    left: 0;
    margin: auto;
}

.slick-prev {
    transform: translateX(-130px);
}

.slick-next {
    transform: translateX(130px);
}

.slick-dots {
    bottom: -65px;
    width: max-content;
    margin: auto;
    left: 0;
    right: 0;
}

.slick-dots li button:before {
    font-size: 8px;
    opacity: 1;
    color: black;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #005a9c;
    font-size: 16px;
}

.slideshow--bg--secondary .slick-slide {
    background-color: #991e66;
}

.slideshow--rounded .slick-slide {
    border-radius: 16px;
}

.slider--quote .item::before {
    content: url(https://21164580.fs1.hubspotusercontent-na1.net/hubfs/21164580/quote.png);
    display: block;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: -90px auto auto auto;
}

.slider--quote .slick-slide {
    padding-top: 70px;
}

.slider--quote .slick-slide {
    padding: 50px;
}

.slider--quote .slick-track {
    padding-top: 70px;
}

.slide__bg--white .slick-slide {
    background-color: #fff;
}

.slide__bg--primary .slick-slide {
    background-color: #005a9c;
}

.slide__bg--secondary .slick-slide {
    background-color: #991e66;
}

.slide--rounded .slick-slide {
    border-radius: 16px;
}

.slide--border .slick-slide {
    border: 1px solid #000;
}

.slide--border--secondary .slick-slide {
    border-color: #991e66 !important;
}

.slide--border--light .slick-slide {
    border-color: #767B7F !important;
}

.slide--shadow .slick-slide {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 0 4px 0 rgba(0, 0, 0, 0.08);
}

.slide--shadow .slick-track {
    padding-bottom: 30px;
}

.slide__rows .slick-slide .item {
    margin-bottom: 30px;
    border-radius: 16px;
    min-height: 250px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.slide__rows--primary .item {
    background-color: #005a9c;
}

.slide__rows--white .item {
    background-color: #fff;
    border: 1px solid #767B7F;
}

.slide__rows--small .slick-slide .item {
 
    min-height: 200px;
 
}

/* Accordion */
.accordion h4 {
    margin: 0;
    display: flex;
    align-items: center;
}

.accordion .accordion--item+.accordion--item {
    border-top: 2px solid #14151575;
}

.accordion .accord--header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: bold;
}

.accordion .accord--content {
    display: none;
    padding: 15px;
    animation: slideDown 0.3s ease-out;
}

.accordion--icon {
    font-size: 20px;
    color: #3b3e409e;
    transition: transform 0.2s ease;
}

.accordion .accord--header.active .accordion--icon {
    content: "-";
    transform: rotate(180deg);
}

/* Tabs to Accordion Start */
.tabs {
    border-radius: 12px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab__item {
    border-bottom: 1px solid #ddd;
}

.tab__header {
    font-size: 16px;
    font-family: "Lexend", sans-serif;
    width: 100%;
    padding: 25px 20px;
    background: #f4f5f5;
    cursor: pointer;
    font-weight: 500;
    border: none;
    border-bottom: 4px solid #ddd;
    text-align: left;
    transition: background 0.3s;
}

.tab__header:hover,
.tab__header.active {
    border-bottom: 4px solid #005a9c;
}

.tab__content {
    display: none;
    padding: 30px;
    animation: fadeIn 0.4s ease-in-out;
    background-color: #f4f5f5;
}

.tab__content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tab--white .tab__header { background-color: #fff;;}
.tab--white .tab__content {
    background-color: #fff;
}
/* /* Tabs to Accordion Start -- Desktop layout */

.events__date {
    position: absolute;
    left: 20px;
    top: 20px;
    width: max-content;
}

.events__month {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px 5px 0 0;
    padding: 3px 10px;
    display: block;
}

.events__date span {
    color: #000;
    text-transform: uppercase;
    border-radius: 0 0 5px 5px;
    padding: 3px 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    display: block;
}

.info-div {
    border-radius: 50px;
    padding: 7px 8px;
    width: max-content;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 17px;
    gap: 5px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial__author_image {
    width: 125px;
    height: 125px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #005a9c;
}

.testimonial__author-info {
    font-size: 20px;
    font-weight: 700;
}

.testimonial__author-info span {
    font-size: 16px;
    font-weight: 500;
    display: block;
    color: #3b3e40;
    margin-top: 7px;
}

@media (min-width: 769px) {
    .tab__headers {
        display: flex;
        border-bottom: 0px solid #ddd;
    }

    .tab__header.mobile__only {
        display: none;
    }

    .tab__header.desktop__only {
        flex: 1;
        text-align: center;
    }

    .tab__item {
        border: none;
    }
}

/* /* Tabs to Accordion Start -- Mobile layout */
@media (max-width: 768px) {

    .tab__headers {
        display: none;
    }

    .tab__header.mobile__only {
        display: block;
        text-align: center;
    }

    .tab__header.desktop__only {
        display: none;
    }
}

@media (max-width: 1300px) {
    .heading--h1 {
        font-size: 54px;
        line-height: 62px;
    }
}

@media (max-width: 1000px) {
    .col--12--md {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .row__item--reverse--md {
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 1000px) and (min-width: 768px) {
    .col--6--md {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 768px) {
    .row__item--reverse {
        flex-direction: column-reverse;
    }

    .col--3,
    .col--4,
    .col--5,
    .col--6,
    .col--7,
    .col--8,
    .col--9 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .m__top--n10 {
        margin-top: inherit !important;
    }

    .col--12-sm {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .p--md--xl{
        padding: 20px !important;
    }
}

@media (max-width: 767px) {

    .slide__rows .slick-slide .item {
        min-height: 300px;
    }
    .slide__rows--small .slick-slide .item {
    min-height: 200px;
 
}
.pr--md--0{
    padding-right: 10px !important;
}
    .heading--lg {
        font-size: 40px;
        line-height: 50px;
    }

    .button--flex--vertical {
        min-height: 100px;
    }

    .col--6--sm {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .icon--box {
        display: block;

        margin: 10px 0 0 0;
    }

    .text--md--center {
        text-align: center;
    }

    .button {
        font-size: 13px;
        padding: 9px 15px;
    }

    .text--9xl {
        font-size: 40px !important;
    }

    .col {
        padding: 10px;
    }

    .col--2--sm {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .heading--h1 {
        font-size: 40px;
        line-height: 48px;
    }

    .heading--h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .heading--h3 {
        font-size: 23px;
        font-weight: 600;
    }

    .slider--quote .slick-slide {
        padding: 30px;
    }

    .slider--quote .item::before {
        margin: -80px auto auto auto;
        scale: 0.7;
    }

    .testimonial__author_image {
        width: 85px;
        height: 85px;
    }

    .px--none--mob {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .slick-slide {
        margin: 0 10px;
    }

    .heading--h4 {
        font-size: 20px;
        font-weight: 600;
    }

    .shadow--mob {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }

    .border-rounded--mob {
        border-radius: 16px;
    }

    .p--md--mob {
        padding: 10px;
    }
}