:root {
    --softOrange: #FFF0DE;
    --orange: #FB8500;
    --mainDark: #023047;
    --brandYellow: #FFB703;
    --blue: #219EBC;
    --alternative: #8ECAE6;
    --grayBody: #606060;
    --graySoft: #E8E8E8;
    --graySofter: #F4F4F4;
    --softSectionBg: #FFF6F1;
    --accordionItemBg: #FBFBFB;
}
body {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: normal;
    color: var(--mainDark);
}
body.menu {
    overflow: hidden;
}
body.menu .app-content, body.menu footer {
    display: none;
}
body.menu::-webkit-scrollbar {
    height: 0;
    width: 0;
}
.divider-10 {
    height: 10px;
}
.divider-20 {
    height: 20px;
}
.divider-30 {
    height: 30px;
}
.divider-40 {
    height: 40px;
}
a {
    color: var(--mainDark);
    text-decoration: none;
}
h1 {
    font-size: 24px;
    margin: 20px 0;
}
h2 {
    font-size: 20px;
    margin: 20px 0;
}
h3 {
    font-size: 18px;
    margin: 20px 0;
}
h4 {
    font-size: 16px;
    margin: 20px 0;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.form-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 56px;
}
textarea.form-field {
    height: 128px;
}
.text-left {
    text-align: left !important;
}
.text-small {
    font-size: 13px;
}
.section-title {
    font-size: 32px;
    font-weight: 600;
}
.flex-1 {
    flex: 1;
}
ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}
* {
    border-radius: 0 !important;
}
.gap-20x {
    gap: 20px;
}
.font-bold {
    font-weight: 600;
}
.bg-soft-section {
    background-color: var(--softSectionBg);
}
.btn {
    display: inline-flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--mainDark);
    white-space: nowrap;
}
.btn:hover {
    color: var(--mainDark);
}
.btn.btn-orange {
    background-color: var(--brandYellow) !important;
}
.btn.loading {
    background-color: rgba(194, 194, 194, 0.2) !important;
    cursor: initial;
    color: #C5C5C5;
    touch-action: none;
}
.pr {
    position: relative !important;
}
.ass {
    align-self: start;
}
.btn-md-spread {
    padding: 12px 80px;
}
.btn.large {
    padding-left: 80px;
    padding-right: 80px;
}
.btn.small {
    padding: 10px;
}
.btn-line {
    display: inline-flex;
    padding: 12px 24px;
    border: solid 1px var(--graySoft);
    justify-content: center;
    align-items: center;
}
.bg-mainDark {
    background-color: var(--mainDark);
}
.ml-0 {
    margin-left: 0 !important;
}
.mr-0 {
    margin-right: 0 !important;
}
.mlr-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.drag-scroll::-webkit-scrollbar {
    height: 0;
    width: 0;
}
.m-80x {
    margin: 80px;
}
.mlr-80x {
    margin-left: 80px;
    margin-right: 80px;
}
.mtb-80x {
    margin-top: 80px;
    margin-bottom: 80px;
}
.mt-40x {
    margin-top: 40px;
}
.mt-50x {
    margin-top: 50px;
}
.mt-80x {
    margin-top: 80px;
}
.mb-80x {
    margin-bottom: 80px;
}
.m-40x {
    margin: 40px;
}
.mb-40x {
    margin-bottom: 40px;
}
.mb-50x {
    margin-bottom: 50px;
}
.m-50x {
    margin: 50px;
}
.pt-40x {
    padding-top: 40px;
}
.pt-50x {
    padding-top: 50px;
}
.p-40x {
    padding: 40px;
}
.pb-40x {
    padding-bottom: 40px;
}
.pb-50x {
    padding-bottom: 50px;
}
.p-50x {
    padding: 50px;
}
.text-center {
    text-align: center;
}
.ellipsis-l-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: wrap;
}

.tabs-container .tabs {
    display: flex;
    gap: 20px;
}
.tabs-container .tabs a {
    color: #9C9C9C;
    padding: 12px 0;
}
.tabs-container .tabs a.active {
    color: var(--mainDark);
    border-bottom: solid 2px var(--brandYellow);
}
.tabs-container .tab-contents .tab:not(.active) {
    display: none;
}
