:root {
    --gray-color: #DDDDDD;
    --haeding-font: 'Poppins', sans-serif;
    --lime-green-color: #BED752;
    --ocean-green: #006657;
    --midnight-blue: #121228;
    --light-gray-color: #F2F2F2;
    --medium-gray-color: #999999;
    --border-black-16: 1px solid rgba(0, 0, 0, .16);
    --white: rgba(255, 255, 255, 1);
    --white-90: rgba(255, 255, 255, .9);
    --white-80: rgba(255, 255, 255, .8);
    --white-45: rgba(255, 255, 255, .45);
    --black: rgba(0, 0, 0, 1);
    --black-80: rgba(0, 0, 0, .8);
    --black-60: rgba(0, 0, 0, .6);
    --black-50: rgba(0, 0, 0, .5);
    --black-40: rgba(0, 0, 0, .4);
    --black-30: rgba(0, 0, 0, .3);
    --black-24: rgba(0, 0, 0, .24);
    --black-16: rgba(0, 0, 0, .16);
    --black-8: rgba(0, 0, 0, .08);
    --green-star: #A8C23A;
    --checkbox-size: .875rem;
    --hamburger-menu-size: 44px;
    --hamburger-menu-gap: 10px;
}

body {
    max-width: 100vw;
    width: 100vw;
    overflow-x: hidden;
    font-family: 'PT Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}


.line-limit-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.relative {
    position: relative;
}

.bb-black-16 {
    border-bottom: var(--border-black-16);
}

.section-title-container .title {
    font-family: var(--haeding-font);
    font-size: 1.5rem;
}

.section-title-container .title-arrow-container {
    display: flex;
    position: relative;
    right: -.5rem;
}

.section-title-container .title-arrow-container .arrow {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all ease .3s;
}

.section-title-container .title-arrow-container .arrow * {
    user-select: none;
}

.section-title-container .title-arrow-container .arrow.swiper-button-disabled {
    opacity: 0.32;
    pointer-events: none;
}

.section-title-container .title-arrow-container .arrow:hover {
    background-color: var(--black-16);
}

.section-title-container .title-arrow-container>*:first-of-type {
    margin-right: 1rem;
}

.section-title-container .title-arrow-container .arrow.arrow-prev {
    transform: scaleX(-1);
}

.section-title-container {
    margin-bottom: 1.5rem;
}

.section-title-container .col-right {
    display: flex;
    align-items: center;
}

.section-title-container.section-title-row {
    display: flex;
    align-items: center;
}

.bg-light-gray {
    background-color: var(--light-gray-color);
}

.ml-auto {
    margin-left: auto;
}

.mb-80 {
    margin-bottom: 5rem;
}

.mb-64 {
    margin-bottom: 4rem;
}

.mb-32 {
    margin-bottom: 2rem;
}

.mt-64 {
    margin-top: 4rem;
}

.mt-40 {
    margin-top: 2.5rem;
}

.mt-24 {
    margin-top: 1.5rem !important;
}

.mt-16 {
    margin-top: 1rem !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.py-80 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-44 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
}

.pt-80 {
    padding-top: 5rem;
}

.pb-80 {
    padding-bottom: 5rem;
}

.pb-64 {
    padding-bottom: 4rem;
}

.d-block {
    display: block;
}

.color-ocean-green {
    color: var(--ocean-green);
}

.discount-label {
    font-size: 1rem;
    color: #FFFFFF;
    font-family: 'PT Sans', sans-serif;
    background: #E63C3C;
    font-family: var(--haeding-font);
    font-weight: 500;
    padding: 0.3125rem 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.breadcrumb-container {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-container .breadcrumb-item a {
    color: var(--black-30);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-container .breadcrumb-item.active a {
    color: var(--black);
}

.breadcrumb-container .breadcrumb-item:not(:last-child) a::after {
    content: ' / ';
    display: flex;
    margin: 0 .5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 18px;
    display: flex;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .2s;
    transition: .2s;
    border-radius: 34px;
    display: flex;
    align-items: center;
    padding: 0 3px;
    overflow: hidden;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    /* left: 4px; */
    /* bottom: 4px; */
    background-color: white;
    -webkit-transition: .2s;
    transition: .2s;
    border-radius: 50%;
    z-index: 2;
}

.switch-slider::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    width: 0%;
    transition: all ease .3s;
    background-color: var(--lime-green-color);
}

input:checked+.switch-slider {
    background-color: #ccc;
}

input:checked+.switch-slider::after {
    width: 100%;
}

input:focus+.switch-slider {
    box-shadow: 0 0 1px var(--lime-green-color);
}

input:checked+.switch-slider:before {
    -webkit-transform: translateX(calc(100% + 6px));
    -ms-transform: translateX(calc(100% + 6px));
    transform: translateX(calc(100% + 6px));
}

.tab-has-marker {
    position: relative;
}

.tab-has-marker .marker {
    position: absolute;
    height: 2px;
    background-color: #000;
    transition: all ease .3s;
}

.button-primary {
    padding: .75rem 4rem;
    background-color: #121228;
    color: var(--white);
    font-size: 1.125rem;
    width: fit-content;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}

.button-green {
    padding: .75rem 4rem;
    background-color: #BED752;
    color: var(--white);
    font-size: 1.125rem;
    width: fit-content;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}

.button-gray {
    padding: .75rem 4rem;
    background-color: var(--gray-color);
    color: var(--black);
    font-size: 1rem;
    width: fit-content;
    cursor: pointer;
    user-select: none;
}

.button-green {
    padding: .75rem 4rem;
    background-color: var(--lime-green-color);
    color: var(--black);
    font-size: 1rem;
    width: fit-content;
    cursor: pointer;
    user-select: none;
}

.button-green.with-arrow {
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.button-green.with-arrow::after {
    content: '';
    display: flex;
    width: 23px;
    height: 17px;
    margin-left: 4.5rem;
    background-image: url('../images/wfhb-section/arrow-right.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0);
}

.button-primary.outline {
    color: var(--black-80);
    background-color: var(--white);
    border: 1px solid var(--black-24);
}

.btn-group {
    display: flex;
}

.btn-group>*:first-of-type {
    margin-right: 1rem;
    /* Accordion Styles */
}

.accordion .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0rem;
    font-family: 'PT Sans', sans-serif;
    font-size: 1.125rem;
    color: #003D34;
    cursor: pointer;
    position: relative;
}

.accordion .accordion-content {
    height: 0px;
    overflow: hidden;
    transition: all ease 0.5s;

}

.accordion .accordion-content li {
    padding: 0.5rem 0.2rem;
    font-family: 'PT Sans', sans-serif;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
}

.blue-btn {
    font-size: 1.125rem;
    color: #FFFFFF;
    background: #121228;
    padding: 0.625rem 4rem;
    border: none;
}

.checkbox-container {
    padding-left: calc(var(--checkbox-size) + .625rem);
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--black60);
    line-height: 1.35;
}

.checkbox-container:hover .checkmark {
    /* transform: scale(1.2); */
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    left: 0;
    height: .875rem;
    width: .875rem;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--black-16);
    border-radius: 2px;
    transition: all ease .3s;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input~.checkmark {
    background-color: var(--light-gray-color);
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked~.checkmark {
    background-color: var(--ocean-green);
    border-color: var(--ocean-green);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    opacity: 0;
}

/* Show the checkmark when checked */
.checkbox-container input:checked~.checkmark:after {
    opacity: 1;
    width: 4px;
    height: 8px;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    width: 0px;
    margin-top: -0.25rem;
    height: 0px;
    border: solid var(--white);
    border-width: 0 1.5px 1.5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all ease .3s;
}
@media (min-width: 768px) {
    .py-md-80 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}
@media (max-width: 575.98px) {
    .section-title-container.section-title-row {
        flex-direction: column;
        align-items: flex-start;
        
    }
    .section-title-container .col-right {
        margin-top: 1rem;
    }
}
