/* --------------------------------- Colors --------------------------------- */
.bg-white {background-color: white}
.bg-white\/50 {background-color: rgba(255, 255, 255, 50%)}
.bg-light {background-color: #EFF3F5}
.bg-blue-grey {background-color: #E5EDF1}
.bg-dmf-blue {background-color: var(--dmf-blue)}
.bg-dmf-blue\/20 {background-color: rgba(2, 153, 251, 20%)}
.bg-dark {background-color: var(--bg-dark)}
.bg-dark-secondary {background-color: #203140}
.bg-divider-dark {background-color: #24546D}
.bg-black {background-color: #000000;}
.hover\:bg-dark:hover {background-color: var(--bg-dark)}
.bg-hero { background: #082034 }
.bg-text-dark {background-color: var(--dmf-text-dark-grey)}

.bg-dmf-orange { background:  var(--dmf-orange) }
.bg-dmf-orange\/20 {background-color: rgba(251, 176, 73, 20%)}
.bg-grey {background-color: var(--dmf-light-grey)}
.bg-grey.secondary-grey {background-color: var(--dmf-bg-grey-secondary)}
.bg-grey-1\/10 {background-color: #BACAD31A}
.bg-grey-4\/10 {background-color: #BACAD366}
.text-dark-blue {color: var(--dmf-text-dark)}
.text-white {color: white}
.text-0095F2 {color: #0095F2}
.hover\:text-white:hover {color: white}
.hover\:text-dmf-blue:hover {color: var(--dmf-blue)}
.text-dark-grey {color: var(--dmf-text-dark-grey)}
.text-grey {color: #BACAD3}
.text-grey-secondary {color: var(--dmf-bg-grey-secondary)}
.text-dmf-blue {color: var(--dmf-blue)}
.text-dmf-orange-shaded { color:  #CB8A32 }
.text-dmf-orange-shaded-\* * {color: #CB8A32;}
.text-dmf-orange {color: var(--dmf-orange)}
.dark-gradient {background: linear-gradient(-45deg, #162533 58.5%, #176280 106.97%)}
.dark-gradient-2 {background: linear-gradient(0deg, #172634 -0.08%, #17465D 100%)}

.bg-C2D5DF { background-color: #C2D5DF}
.bg-7291AC { background-color: #7291AC}
.bg-DBE7EF { background-color: #DBE7EF}
.hover\:bg-7291AC:hover { background-color: #7291AC}

.hover\:children-text-white:hover .parent-hover\:text-white {color: white;}

@media (max-width: 980px) {
    .md\:bg-dark {background-color: var(--bg-dark)}
    .md\:text-dark-blue {color: var(--dmf-text-dark)}
    .md\:text-dark-grey {color: var(--dmf-text-dark-grey)}
}

/* --------------------------------- Typography --------------------------------- */
.underline {text-decoration: underline}
.text-overflow-ellipsis {text-overflow: ellipsis}
.word-break-word {word-break: break-word;}
.white-space-nowrap {white-space: nowrap}
.white-space-pre-line {white-space: pre-line}
.uppercase {text-transform: uppercase}
.font-style-normal {font-style: normal}
.font-10 {font-size: 10px}
.font-11 {font-size: 11px}
.font-12 {font-size: 12px}
.font-13 {font-size: 13px}
.font-14 {font-size: 14px}
.font-16 {font-size: 16px}
.font-17 {font-size: 17px}
.font-18 {font-size: 18px}
.font-20 {font-size: 20px}
.font-21 {font-size: 21px}
.font-22 {font-size: 22px}
.font-23 {font-size: 23px}
.font-24 {font-size: 24px}
.font-25 {font-size: 25px}
.font-26 {font-size: 26px}
.font-28 {font-size: 28px}
.font-30 {font-size: 30px}
.font-32 {font-size: 32px}
.font-35 {font-size: 35px}
.font-37 {font-size: 37px}
.font-40 {font-size: 40px}
.font-45 {font-size: 45px}
.font-46 {font-size: 46px}
.font-55 {font-size: 55px}
.font-60 {font-size: 60px}
.font-65 {font-size: 65px}
.font-69 {font-size: 69px}
.font-100 {font-size: 100px}
.font-w-300 {font-weight: 300}
.font-w-400 {font-weight: 400}
.font-w-500 {font-weight: 500}
.font-w-600 {font-weight: 600}
.font-w-700 {font-weight: 700}
.zilla-font {font-family: var(--font-fam-zilla-slab)}
.font-fam-body {font-family: var(--font-fam-body)}
.leading-1em {line-height: 1em}
.leading-1\.2em {line-height: 1.2em}
.leading-1\.5em {line-height: 1.5em}
.leading-2em {line-height: 2em}
.leading-3 {line-height: 24px}
.leading-6\.5 {line-height: 52px}
.leading-8 {line-height: 64px}
.-letter-spacing-13px {letter-spacing: -13px;}

@media (max-width: 767px) {
    .sm\:font-11 {font-size: 11px}
    .sm\:font-12 {font-size: 12px}
    .sm\:font-13 {font-size: 13px}
    .sm\:font-14 {font-size: 14px}
    .sm\:font-16 {font-size: 16px}
    .sm\:font-19 {font-size: 19px}
    .sm\:font-20 {font-size: 20px}
    .sm\:font-21 {font-size: 21px}
    .sm\:font-24 {font-size: 24px}
    .sm\:font-26 {font-size: 26px}
    .sm\:font-35 {font-size: 35px}
    .sm\:font-40 {font-size: 40px}

    .sm\:leading-2\.5 {line-height: 20px}
    .sm\:leading-3 {line-height: 24px}
}

/* --------------------------------- layout --------------------------------- */
.float-left {float: left}
.block {display: block}
.inline-block {display: inline-block}
.hidden {display: none}
.text-center {text-align: center}
.text-left {text-align: left}
.text-right {text-align: right}
.align-middle {vertical-align: middle;}
.align-text-top {vertical-align: text-top;}

.flex {display: flex}
.flex-wrap {flex-wrap: wrap}
.flex-nowrap {flex-wrap: nowrap}
.justify-center {justify-content: center}
.justify-around {justify-content: space-around}
.justify-between {justify-content: space-between}
.justify-start {justify-content: flex-start}
.justify-end {justify-content: flex-end}
.items-center {align-items: center}
.items-start {align-items: flex-start}
.items-end {align-items: flex-end}
.self-stretch {align-self: stretch;}
.content-center {align-content:center}
.content-start {align-content:start}
.content-end {align-content: end}
.flex-col {flex-direction: column}
.flex-col-reverse {flex-direction: column-reverse;}
.flex-row {flex-direction: row}
.flex-row-reverse {flex-direction: row-reverse}
.flex-1 {flex: 1 1 auto}
.flex-0 {flex: 0 0 auto}
.flex-none {flex: none}
.basis-100px {flex-basis: 100px}
.basis-full {flex-basis: 100%}
.basis-2\/3 {flex-basis: 66.66%}
.basis-6\/10 {flex-basis: 60%}
.basis-5\.5\/10 {flex-basis: 55%}
.basis-4\.5\/10 {flex-basis: 45%}
.basis-4\/10 {flex-basis: 40%}
.basis-1\/2 {flex-basis: 50%}
.basis-1\/3 {flex-basis: 33.33%}
.basis-32\.33\% {flex-basis: 32.33%}
.basis-1\/4 {flex-basis: 25%}
.basis-1\/5 {flex-basis: 20%}
.grow {flex-grow: 1}
.grow-0 {flex-grow: 0}
.shrink-0 {flex-shrink: 0}
.shrink {flex-shrink: 1}
.gap-0\.5 {gap: 4px}
.gap-0\.75 {gap: 6px}
.gap-1 {gap: 8px}
.gap-1\.5 {gap: 12px}
.gap-2 {gap: 16px}
.gap-2\.5 {gap: 20px}
.gap-y-2\.5 {row-gap: 20px}
.gap-3 {gap: 24px}
.gap-3\.5 {gap: 28px}
.gap-4 {gap: 32px}
.gap-5 {gap: 40px}
.gap-6 {gap: 48px}
.gap-8 {gap: 64px}
.gap-12 {gap: 96px}
.gap-14 {gap: 112px}
.gap-20 {gap: 160px}
.grid {display: grid}
.grid-cols-1 {grid-template-columns: repeat(1, minmax(0, 1fr));}
.grid-cols-2 {grid-template-columns: repeat(2, minmax(0, 1fr));}
.grid-cols-3 {grid-template-columns: repeat(3, minmax(0, 1fr));}
.grid-cols-4 {grid-template-columns: repeat(4, minmax(0, 1fr));}
.grid-cols-5 {grid-template-columns: repeat(5, minmax(0, 1fr));}
.grid-cols-6 {grid-template-columns: repeat(6, minmax(0, 1fr));}


@media (max-width: 1520px) {
    .xl\:hidden {display: none}


    .xl\:grid-cols-1 {grid-template-columns: repeat(1, minmax(0, 1fr));}
    .xl\:grid-cols-2 {grid-template-columns: repeat(2, minmax(0, 1fr));}
    .xl\:grid-cols-3 {grid-template-columns: repeat(3, minmax(0, 1fr));}
    .xl\:grid-cols-4 {grid-template-columns: repeat(4, minmax(0, 1fr));}
    .xl\:grid-cols-5 {grid-template-columns: repeat(5, minmax(0, 1fr));}
    .xl\:grid-cols-6 {grid-template-columns: repeat(6, minmax(0, 1fr));}
}
@media (max-width: 1200px) {
    .lg\:hidden {display: none}

    .lg\:flex-col {flex-direction: column}

    .lg\:grid-cols-1 {grid-template-columns: repeat(1, minmax(0, 1fr));}
    .lg\:grid-cols-2 {grid-template-columns: repeat(2, minmax(0, 1fr));}
    .lg\:grid-cols-3 {grid-template-columns: repeat(3, minmax(0, 1fr));}
    .lg\:grid-cols-4 {grid-template-columns: repeat(4, minmax(0, 1fr));}
    .lg\:grid-cols-5 {grid-template-columns: repeat(5, minmax(0, 1fr));}
    .lg\:grid-cols-6 {grid-template-columns: repeat(6, minmax(0, 1fr));}
}
@media (max-width: 980px) {
    .md\:hidden {display: none}

    .md\:flex {display: flex}
    .md\:flex-col {flex-direction: column}
    .md\:flex-col-reverse {flex-direction: column-reverse;}
    .md\:items-center {align-items: center}
    .md\:text-center {text-align: center}

    .md\:grid-cols-1 {grid-template-columns: repeat(1, minmax(0, 1fr));}
    .md\:grid-cols-2 {grid-template-columns: repeat(2, minmax(0, 1fr));}
    .md\:grid-cols-3 {grid-template-columns: repeat(3, minmax(0, 1fr));}
    .md\:grid-cols-4 {grid-template-columns: repeat(4, minmax(0, 1fr));}
    .md\:grid-cols-5 {grid-template-columns: repeat(5, minmax(0, 1fr));}
    .md\:grid-cols-6 {grid-template-columns: repeat(6, minmax(0, 1fr));}

    .md\:gap-8 {gap: 64px}

    .md\:flex-1 {flex: 1 1 auto;}
    .md\:flex-0 {flex: 0 0 auto;}

    .md\:basis-2\/5 {flex-basis: 40%;}
    .md\:basis-1\/2 {flex-basis: 50%}
}

@media (max-width: 767px) {
    .sm\:hidden {display: none}
    .sm\:hidden\! {display: none !important}
    .sm\:grid { display: grid }

    .sm\:flex-col {flex-direction: column}
    .sm\:flex-col-reverse {flex-direction: column-reverse;}
    .sm\:flex-row {flex-direction: row}
    .sm\flex-row-reverse {flex-direction: row-reverse}
    
    .sm\:flex-1 {flex: 1 1 auto}
    .sm\:flex-none {flex: none}

    .sm\:basis-full {flex-basis: 100%;}
    .sm\:basis-3\/4 {flex-basis: 75%;}

    .sm\:justify-center {justify-content: center}
    .sm\:items-center {align-items: center}
    .sm\:items-start {align-items: flex-start}
    .sm\:text-center {text-align: center}

    .sm\:gap-0 {gap: 0px}
    .sm\:gap-1 {gap: 8px}
    .sm\:gap-1\.5 {gap: 12px}
    .sm\:gap-2 {gap: 16px}
    .sm\:gap-2\.5 {gap: 20px}
    .sm\:gap-3 {gap: 24px}
    .sm\:gap-3 {gap: 24px}
    .sm\:gap-4 {gap: 32px}
    .sm\:gap-5 {gap: 40px}
    .sm\:gap-6 {gap: 48px}
    .sm\:gap-8 {gap: 64px}


    .sm\:grid-cols-1 {grid-template-columns: repeat(1, minmax(0, 1fr));}
    .sm\:grid-cols-2 {grid-template-columns: repeat(2, minmax(0, 1fr));}
    .sm\:grid-cols-3 {grid-template-columns: repeat(3, minmax(0, 1fr));}
    .sm\:grid-cols-4 {grid-template-columns: repeat(4, minmax(0, 1fr));}
    .sm\:grid-cols-5 {grid-template-columns: repeat(5, minmax(0, 1fr));}
    .sm\:grid-cols-6 {grid-template-columns: repeat(6, minmax(0, 1fr));}
}

@media (max-width: 600px) {
    .xs\:grid-cols-1 {grid-template-columns: repeat(1, minmax(0, 1fr));}
    .xs\:grid-cols-2 {grid-template-columns: repeat(2, minmax(0, 1fr));}
    .xs\:grid-cols-3 {grid-template-columns: repeat(3, minmax(0, 1fr));}
    .xs\:grid-cols-4 {grid-template-columns: repeat(4, minmax(0, 1fr));}
    .xs\:grid-cols-5 {grid-template-columns: repeat(5, minmax(0, 1fr));}
    .xs\:grid-cols-6 {grid-template-columns: repeat(6, minmax(0, 1fr));}
    .xs\:flex-col {flex-direction: column;}
}
@media (max-width: 500px) {
    .xxs\:basis-full {flex-basis: 100%;}
    .xxs\:basis-2\/3 {flex-basis: 66.66%;}
    .xxs\:flex-1 {flex: 1 1 auto}
    .xxs\:flex-none {flex: none}
}






@media (min-width: 981px) {
    .md-min\:flex {display: flex}
    .md-min\:hidden {display: none}
    
    .md-min\:gap-2\.5 {gap: 20px}

    .md-min\:basis-full {flex-basis: 100%}

    .md-min\:flex-1 {flex: 1 1 auto}
}
@media (min-width: 768px) {
    .sm-min\:flex {display: flex}
    .sm-min\:hidden {display: none}
    
    .sm-min\:gap-2\.5 {gap: 20px}
}

/* --------------------------------- Spacing --------------------------------- */
.m-auto {margin: auto;}
.m-0\! {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.mt-auto {margin-top: auto;}
.mx-auto {margin-left: auto; margin-right: auto;}

.-mb-36 {margin-bottom: -288px}
.-mb-31 {margin-bottom: -248px}
.-mb-28 {margin-bottom: -224px}
.-mb-18 {margin-bottom: -144px}
.-mb-12 {margin-bottom: -96px}
.-mb-10 {margin-bottom: -80px}
.-mb-0\.5 {margin-bottom: -4px}
.mb-auto {margin-bottom: auto}
.mb-0 {margin-bottom: 0px}
.mb-0\.5 {margin-bottom: 4px}
.mb-1 {margin-bottom: 8px}
.mb-1\.5 {margin-bottom: 12px}
.mb-2 {margin-bottom: 16px}
.mb-3 {margin-bottom: 24px}
.mb-4 {margin-bottom: 32px}
.mb-5 {margin-bottom: 40px}
.mb-6 {margin-bottom: 48px}
.mb-7 {margin-bottom: 56px}
.mb-8 {margin-bottom: 64px}
.mb-10 {margin-bottom: 80px}
.mb-12 {margin-bottom: 96px}
.mb-16 {margin-bottom: 128px}
.mb-20 {margin-bottom: 160px}

.mt-0 {margin-top: 0px}
.mt-0\.5 {margin-top: 4px}
.mt-1 {margin-top: 8px}
.mt-2 {margin-top: 16px}
.mt-3 {margin-top: 24px}
.mt-4 {margin-top: 32px}
.mt-5 {margin-top: 40px}
.mt-6 {margin-top: 48px}
.mt-8 {margin-top: 64px}
.mt-9 {margin-top: 72px}
.mt-10 {margin-top: 80px}
.mt-14 {margin-top: 112px}

.-mr-0\.5 {margin-right: -4px}
.-mr-1\.5 {margin-right: -12px}
.-mr-22px {margin-right: -22px}
.mr-1 {margin-right: 8px}
.mr-1\.5 {margin-right: 12px}
.mr-2 {margin-right: 16px}
.mr-2\.5 {margin-right: 20px}

/* -ml-10 md:-ml-5 sm:-ml-1.75 */
.-ml-10 {margin-left: -80px}
.ml-0 {margin-left: 0px}
.ml-1 {margin-left: 8px}
.ml-1\.5 {margin-left: 12px}

.-mt-5 {margin-top: -40px}
.-mt-7 {margin-top: -56px}
.-mt-11 {margin-top: -88px}
.-mt-236px {margin-top: -236px}
.-mt-31 {margin-top: -248px}
.-mt-40 {margin-top: -320px}
.-mt-45 {margin-top: -360px}
.-mx-2\.5 {margin-left: -20px; margin-right: -20px}


.p-1 {padding: 8px}
.p-1\.5 {padding: 12px}
.p-2 {padding: 16px}
.p-3 {padding: 24px}

.px-section {padding-left: 80px; padding-right: 80px;}
.px-13\% {padding-left: 13%; padding-right: 13%}
.px-1 {padding-left: 8px; padding-right: 8px}
.px-1\.75 {padding-left: 14px; padding-right: 14px}
.px-2\.5 {padding-left: 20px; padding-right: 20px}
.px-3 {padding-left: 24px; padding-right: 24px}
.px-6 {padding-left: 48px; padding-right: 48px}
.px-10 {padding-left: 80px; padding-right: 80px}
.px-20 {padding-left: 160px; padding-right: 160px}

.py-0\.5 {padding-top: 4px; padding-bottom: 4px;}
.py-11 {padding-top: 88px; padding-bottom: 88px;}
.py-12 {padding-top: 96px; padding-bottom: 96px;}
.py-16 {padding-top: 128px; padding-bottom: 128px;}
.py-20 {padding-top: 160px; padding-bottom: 160px;}
.py-23 {padding-top: 184px; padding-bottom: 184px;}


.pl-0\.5 {padding-left: 4px}
.pl-1 {padding-left: 8px}
.pl-1\.5 {padding-left: 12px}
.pl-1\.75 {padding-left: 14px}
.pl-2 {padding-left: 16px}
.pl-2\.5 {padding-left: 20px}
.pl-3 {padding-left: 24px}
.pl-3\.5 {padding-left: 28px}
.pl-4 {padding-left: 32px}
.pl-4\.5 {padding-left: 36px}
.pl-5 {padding-left: 40px}
.pl-6 {padding-left: 48px}

.pr-0\.5 {padding-right: 4px}
.pr-1 {padding-right: 8px}
.pr-1\.5 {padding-right: 12px}
.pr-1\.75 {padding-right: 14px}
.pr-2 {padding-right: 16px}
.pr-2\.5 {padding-right: 20px}
.pr-3 {padding-right: 24px}
.pr-3\.5 {padding-right: 28px}
.pr-4 {padding-right: 32px}
.pr-4\.5 {padding-right: 36px}
.pr-5 {padding-right: 40px}
.pr-6 {padding-right: 48px}
.pr-15 {padding-right: 120px}
.pr-20 {padding-right: 160px}

.pt-1px {padding-top: 1px}
.pt-1 {padding-top: 8px}
.pt-1\.5 {padding-top: 12px}
.pt-2 {padding-top: 16px}
.pt-3 {padding-top: 24px}
.pt-4 {padding-top: 32px}
.pt-5 {padding-top: 40px}
.pt-6 {padding-top: 48px}
.pt-7 {padding-top: 56px}
.pt-8 {padding-top: 64px}
.pt-9 {padding-top: 72px}
.pt-10 {padding-top: 80px}
.pt-12 {padding-top: 96px}
.pt-14 {padding-top: 112px}
.pt-15 {padding-top: 120px}
.pt-16 {padding-top: 128px}
.pt-17 {padding-top: 136px}
.pt-19 {padding-top: 152px}
.pt-20 {padding-top: 160px}
.pt-21 {padding-top: 168px}
.pt-22 {padding-top: 176px}
.pt-24 {padding-top: 192px}
.pt-25 {padding-top: 200px}
.pt-28 {padding-top: 224px}
.pt-30 {padding-top: 240px}
.pt-38 {padding-top: 304px}

.pb-1 {padding-bottom: 8px}
.pb-1\.5 {padding-bottom: 12px}
.pb-2 {padding-bottom: 16px}
.pb-2\.5 {padding-bottom: 20px}
.pb-3 {padding-bottom: 24px}
.pb-4 {padding-bottom: 32px}
.pb-5 {padding-bottom: 40px}
.pb-6 {padding-bottom: 48px}
.pb-8 {padding-bottom: 64px}
.pb-10 {padding-bottom: 80px}
.pb-12 {padding-bottom: 96px}
.pb-13 {padding-bottom: 104px}
.pb-15 {padding-bottom: 120px}
.pb-16 {padding-bottom: 128px}
.pb-17 {padding-bottom: 136px}
.pb-20 {padding-bottom: 160px}
.pb-21 {padding-bottom: 168px}
.pb-22 {padding-bottom: 172px}
.pb-25 {padding-bottom: 200px}
.pb-27 {padding-bottom: 216px}
.pb-40 {padding-bottom: 320px}
.pb-50 {padding-bottom: 400px}
.pb-52 {padding-bottom: 416px}


@media (max-width: 1919px) {
    .xxl\:-mb-16\% {margin-bottom: -16%}
}
@media (max-width: 1520px) {
    .xl\:pt-4\.5 {padding-top: 36px}
}
@media (max-width: 1200px) {
    .lg\:pt-4\.5 {padding-top: 36px}
    .lg\:pt-10 {padding-top: 80px}
    .lg\:pb-8 {padding-top: 64px}
    .lg\:px-3 {padding-left: 24px; padding-right: 24px;}

}


@media (max-width: 981px) {
    .px-section {padding-left: 40px; padding-right: 40px;}
    .md\:px-section {padding-left: 40px; padding-right: 40px;}
    .md\:-ml-5 {margin-left: -40px}
    .md\:pt-0 {padding-top: 0px}
    .md\:pt-5 {padding-top: 40px}
    .md\:px-5 {padding-left: 40px; padding-right: 40px}
    .md\:py-10 {padding-top: 80px; padding-bottom: 80px;}
    .md\:pr-2 {padding-right: 16px}

    .md\:py-0 {padding-top: 0px; padding-bottom: 0px;}
    .md\:py-10 {padding-top: 80px; padding-bottom: 80px;}
}
@media (max-width: 767px) {
    .sm\:-ml-9\% {margin-left: -9%}
    .sm\:-ml-1\.75 {margin-left: -14px}

    .sm\:-mt-148px {margin-top: -148px}
    .sm\:-mt-100 {margin-top: -100px}
    .sm\:-mt-15 {margin-top: -120px}
    .sm\:-mt-5 {margin-top: -40px}
    .sm\:mt-0 {margin-top: 0px}
    .sm\:mt-4 {margin-top: 32px}
    .sm\:mt-5 {margin-top: 40px}

    .sm\:-mb-26\% {margin-bottom: -26%}
    .sm\:-mb-24\% {margin-bottom: -24%}
    .sm\:-mb-8 {margin-bottom: -64px}
    .sm\:-mb-5 {margin-bottom: -40px}
    .sm\:-mb-3 {margin-bottom: -24px}
    .sm\:mb-0 {margin-bottom: 0px}
    .sm\:mb-0\.5 {margin-bottom: 4px}
    .sm\:mb-1 {margin-bottom: 8px}
    .sm\:mb-2 {margin-bottom: 16px}
    .sm\:mb-3 {margin-bottom: 24px}
    .sm\:mb-4 {margin-bottom: 32px}
    .sm\:mb-5 {margin-bottom: 40px}
    .sm\:mb-6 {margin-bottom: 48px}
    .sm\:mb-7 {margin-bottom: 56px}
    .sm\:mb-9 {margin-bottom: 72px}
    .sm\:mb-11 {margin-bottom: 88px}

    .sm\:-mr-14px {margin-right: -14px}
    .sm\:mr-6 {margin-right: 48px}

    .px-section {padding-left: 14px; padding-right: 14px}
    .sm\:p-0 {padding: 0px}
    .sm\:px-0 {padding-left: 0px; padding-right: 0px}
    .sm\:px-1 {padding-left: 8px; padding-right: 8px}
    .sm\:px-1\.75 {padding-left: 14px; padding-right: 14px}
    .sm\:px-2 {padding-left: 16px; padding-right: 16px}
    .sm\:ml-2\.5 {margin-left: 20px}

    .sm\:p-2 {padding: 16px}

    .sm\:pl-0\.5 {padding-left: 4px}
    .sm\:pl-1 {padding-left: 8px}
    .sm\:pl-1\.5 {padding-left: 12px}
    .sm\:pl-1\.75 {padding-left: 14px}
    .sm\:pl-2 {padding-left: 16px}
    .sm\:pl-2\.5 {padding-left: 20px}
    .sm\:pl-3 {padding-left: 24px}
    .sm\:pl-3\.5 {padding-left: 28px}
    .sm\:pl-4 {padding-left: 32px}
    .sm\:pl-4\.5 {padding-left: 36px}
    .sm\:pl-5 {padding-left: 40px}

    .sm\:py-5 {padding-top: 40px; padding-bottom: 40px;}


    .sm\:pt-1\.75 {padding-top: 14px}
    .sm\:pt-2 {padding-top: 16px}
    .sm\:pt-3 {padding-top: 24px}
    .sm\:pt-3\.5 {padding-top: 28px}
    .sm\:pt-4 {padding-top: 32px}
    .sm\:pt-5 {padding-top: 40px}
    .sm\:pt-7 {padding-top: 56px}
    .sm\:pt-8 {padding-top: 64px}
    .sm\:pt-9 {padding-top: 72px}
    .sm\:pt-10 {padding-top: 80px}
    .sm\:pt-20 {padding-top: 160px}

    .sm\:pb-2 {padding-bottom: 16px}
    .sm\:pb-3 {padding-bottom: 24px}
    .sm\:pb-3\.5 {padding-bottom: 28px}
    .sm\:pb-4 {padding-bottom: 32px}
    .sm\:pb-5 {padding-bottom: 40px}
    .sm\:pb-7 {padding-bottom: 56px}
    .sm\:pb-8 {padding-bottom: 64px}
    .sm\:pb-10 {padding-bottom: 80px}
    .sm\:pb-12 {padding-bottom: 96px}
    .sm\:pb-20 {padding-bottom: 160px}

    .sm\:pr-1 {padding-right: 8px}
    .sm\:pr-1\.5 {padding-right: 12px}
    .sm\:pr-1\.75 {padding-right: 14px}
    .sm\:pr-2 {padding-right: 16px}
    .sm\:pr-3 {padding-right: 24px}
    .sm\:pr-4 {padding-right: 32px}
}


/* --------------------------------- Sizing --------------------------------- */
.aspect-1180\/564 {aspect-ratio: 1180/564;}
.aspect-3\/2 {aspect-ratio: 3/2;}
.aspect-4\/3 {aspect-ratio: 4/3;}
.aspect-square {aspect-ratio: 1/1;}

.max-w-77px {max-width: 77px}
.max-w-300px {max-width: 300px}
.max-w-360px {max-width: 360px}
.max-w-420px {max-width: 420px}
.max-w-450px {max-width: 450px}
.max-w-500px {max-width: 500px}
.max-w-xs {max-width: 600px}
.max-w-615px {max-width: 615px}
.max-w-700 {max-width: 700px}
.max-w-tablet {max-width: 767px}
.max-w-1420 {max-width: 1420px}
.max-w-1300 {max-width: 1300px;}
.max-w-1200 {max-width: 1200px}
.max-w-1180 {max-width: 1180px}
.max-w-1100 {max-width: 1100px}
.max-w-1024 {max-width: 1024px}
.max-w-900 {max-width: 900px}
.max-w-full {max-width: 100%}
.min-w-max-content {min-width: max-content}
.min-w-267px {min-width: 267px}
.min-w-760px {min-width: 760px}
.w-auto {width: auto;}
.w-130\% {width: 130%}
.w-full {width: 100%}
.w-9\/10 {width: 90%}
.w-8\/10 {width: 80%}
.w-7\/10 {width: 70%}
.w-5\/10 {width: 50%}
.w-4\/10 {width: 40%}
.w-3\/10 {width: 30%}
.w-2\/10 {width: 20%}
.w-13\.75\% {width: 13.75%}
.w-0\.5 {width: 4px}
.w-1px {width: 1px}
.w-1 {width: 8px}
.w-1\.5 {width: 12px}
.w-2 {width: 16px}
.w-3 {width: 24px}
.w-3\.5 {width: 28px}
.w-4 {width: 32px}
.w-5 {width: 40px}
.w-6 {width: 48px}
.w-8 {width: 64px}
.w-10 {width: 80px}
.w-15 {width: 120px}
.w-17 {width: 136px}
.w-22 {width: 176px}
.w-28 {width: 224px}
.w-30 {width: 240px}
.w-37 {width: 296px}
.w-41 {width: 328px}
.w-45 {width: 360px}
.w-190px {width: 190px}
.w-9999px {width: 9999px;}
.w-1920px {width: 1920px}

.h-full {height: 100%}
.h-auto {height: auto}
.h-800px {height: 800px}
.max-h-6 {max-height: 48px}
.max-h-60px {max-height: 60px}
.max-h-20 {max-height: 160px}
.max-h-410px {max-height: 410px}
.max-h-564px {max-height: 564px}
.max-h-700px {max-height: 700px}
.max-h-800px {max-height: 800px}
.max-h-75vw {max-height: 75vw}
.h-100vh {height: 100vh}
.h-75vw {height: 75vw}
.h-1\/2 {height: 50%}
.h-1px {height: 1px}
.h-2px {height: 2px}
.h-0 {height: 0px}
.h-0\.5 {height: 4px}
.h-1 {height: 8px}
.h-1\.5 {height: 12px}
.h-2 {height: 16px}
.h-3 {height: 24px}
.h-4 {height: 32px}
.h-5 {height: 40px}
.h-6 {height: 48px}
.h-6\.5 {height: 52px}
.h-8 {height: 64px}
.h-10 {height: 80px}
.h-12 {height: 92px}
.h-15 {height: 120px}
.h-22 {height: 176px}
.h-30 {height: 240px}
.h-440px {height: 440px}
.h-526px {height: 526px}

@media(max-width: 1919px) {
    .xxl\:w-110\% {width: 110%}
}

@media (max-width: 980px) {
    .md\:max-h-75vw {max-height: 75vw}
    .md\:aspect-4\/3 {aspect-ratio: 4/3;}
    .md\:w-full {width: 100%}
    .md\:max-w-full {max-width: 100%}
}

@media (max-width: 767px) {
    .sm\:aspect-initial {aspect-ratio: unset;}
    .sm\:aspect-3\/4 {aspect-ratio: 3/4;}
    
    .sm\:h-4\.5 {height: 36px}
    .sm\:h-15 {height: 120px}

    .sm\:max-w-12 {max-width: 96px}
    .sm\:max-w-16 {max-width: 128px}
    .sm\:max-w-700 {max-width: 700px}
    
    .sm\:w-4\.5 {width: 36px}
    .sm\:w-8 {width: 64px}
    .sm\:w-15 {width: 120px}
    .sm\:w-full {width: 100%}
    .sm-w-full {width: 100%}
    .sm\:w-full {width: 100%}

    .sm\:w-17\/100 {width: 17%}
    .sm\:w-8\/10 {width: 80%}
    .sm\:w-110\% {width: 110%}
    .sm\:w-130\% {width: 130%}
    .sm\:w-170\% {width: 170%}
}

@media (max-width: 500px) {
    .xxs\:aspect-square {aspect-ratio: 1/1}

    .xxs\:max-w-16 {max-width: 128px}
    .xxs\:w-2\/3 {width: 66.66%}
    .xxs\:w-full {width: 100%}
}

/* --------------------------------- Borders --------------------------------- */
.rounded-full {border-radius: 9999px}
.rounded-0\.5 {border-radius: 4px}
.rounded-0\.75 {border-radius: 6px}
.rounded-1 {border-radius: 8px}
.rounded-1\.25 {border-radius: 10px}
.rounded-tl-1\.25 {border-top-left-radius: 10px}
.rounded-tr-1\.25 {border-top-right-radius: 10px}
.rounded-1\.5 {border-radius: 12px}
.rounded-2 {border-radius: 16px}
.rounded-2\.5 {border-radius: 20px}
.rounded-3 {border-radius: 24px}
.rounded-4 {border-radius: 32px}

.border {border: 1px solid #AFBFC9}
.border-r {border-right: 1px solid #BACAD3}
.border-b {border-bottom: 1px solid transparent}
.border-t {border-top: 1px solid transparent}

.border-blue {border-color: var(--dmf-blue)}
.border-2B3D4E {border-color: #2B3D4E}
.border-3D5164 {border-color: #3D5164}
.border-dark-grey {border-color: #485D6A}
.border-gray {border-color: rgba(0,0,0,0.15)}
.border-light-grey {border-color: #C3D8E3}

.border-w-2 {border-width: 2px}

.hover\:border-b:hover {border-bottom: 1px solid transparent}
.hover\:border-blue:hover {border-color: var(--dmf-blue)}

.ring-1 {box-shadow: 0 0 0 1px var(--dmf-blue)}
.ring-2 {box-shadow: 0 0 0 2px var(--dmf-blue)}
.ring-3 {box-shadow: 0 0 0 3px var(--dmf-blue)}

.ring-1-dark-grey {box-shadow: 0 0 0 1px #485D6A}
.ring-1-grey {box-shadow: 0 0 0 1px #a1c2d4}

.focus\:ring-1:is(:focus-visible) {box-shadow: 0 0 0 1px var(--dmf-blue)}
.focus\:ring-2:is(:focus-visible) {box-shadow: 0 0 0 2px var(--dmf-blue)}
.focus\:ring-3:is(:focus-visible) {box-shadow: 0 0 0 3px var(--dmf-blue)}


@media (max-width: 980px) {
    .md\:rounded-1 {border-radius: 8px}
}

@media (max-width: 767px) {
    .sm\:rounded-0 {border-radius: 0px}
    .sm\:rounded-2 {border-radius: 16px}
}
@media (min-width: 1520px) {
    .xl-min\:pr-20 {padding-right: 160px}
}

@media (min-width: 768px) {
    .sm-min\:border-t {border-top: 1px solid transparent}
    .sm-min\:border-light-grey {border-color: #C3D8E3}
}
@media (min-width: 600px) {
    .xs-min\:border-t {border-top: 1px solid transparent}
    .xs-min\:border-light-grey {border-color: #C3D8E3}
}


/* --------------------------------- Position --------------------------------- */
.absolute {position: absolute}
.fixed {position: fixed}
.sticky {position: sticky}
.relative {position: relative}

.top-0 {top:0}
.top-1\.25 {top:10px}
.top-1\.5 {top:12px}
.top-2 {top:16px}
.top-8 {top: 64px}
.top-12\.5 {top: 100px}
.top-9\% {top:9%}
.top-10\% {top:10%}
.top-18\% {top:18%}
.top-25 {top:25%}
.top-40 {top:40%}
.top-50 {top:50%}
.top-55 {top:55%}
.top-100 {top:100%}
.-top-10px {top: -10px} 
.-top-22\% {top: -22%} 
.-top-4\/5 {top: -80%} 
.-top-300px {top: -300px} 
.-top-170px {top: -170px} 


.bottom-0 {bottom:0}
.bottom-3 {bottom: 24px}
.bottom-100 {bottom:100%}
.-bottom-11\% {bottom: -11%}
.-bottom-300px {bottom: -300px}
.-bottom-40px {bottom: -40px}


.left-0 {left:0}
.left-0\.5 {left: 4px}
.left-2\.5 {left: 20px}
.left-6\% {left: 6%}
.left-1\/4 {left: 25%}
.left-44\% {left: 44%}
.left-100 {left:100%}
.-left-4\/5 {left: -80%}
.-left-8\% {left: -8%}
.-left-14\% {left: -14%}
.-left-16\% {left: -16%}
.-left-1px {left: -1px}
.-left-2px {left: -2px}
.-left-6 {left: -48px}
.-left-300px {left: -300px}
.-left-500px {left: -500px}

.right-0 {right:0}
.right-3 {right: 24px}
.right-25px {right: 25px}
.right-100 {right:100%}
.-right-10px {right: -10px}
.-right-500px {right: -500px}
.-right-22\% {right: -22%}
.-right-14\% {right: -14%}
.-right-10\% {right: -10%}
.-right-4\% {right: -4%}


.translate-y-180 {transform: translateY(180px)}
.translate-y-248 {transform: translateY(248px)}
.translate-y-316 {transform: translateY(316px)}
.translate-top-right-half {transform: translate(50%, -50%);}
.translate-left-half {transform: translateX(-50%)}
.rotate-180 {transform: rotate(180deg)}
.-rotate-180 {transform: rotate(-180deg)}
.rotate-90 {transform: rotate(90deg)}

@media (max-width: 767px) {
    .sm\:relative {position: relative;}
    .sm\:absolute {position: absolute;}
    .sm\:static {position: static;}

    .sm\:translate-y-118 {transform: translateY(118px)}
    .sm\:translate-y-140 {transform: translateY(140px)}
    .sm\:translate-y-176 {transform: translateY(176px)}
    .sm\:scale-75 {transform: scale(0.75)}
    
    .sm\:right-0 {right: 0}
    .sm\:right-4\% {right: 4%}
    .sm\:right-5\% {right: 5%}
    .sm\:right-7\/100 {right: 7%}

    .sm\:left-1px {left: 1px}
    .sm\:left-2\.5 {left: 20px}
    .sm\:left-4\% {left: 4%}
    .sm\:left-44\% {left: 44%}

    .sm\:top-4\% {top: 4%}
    .sm\:top-18\% {top: 18%}
    .sm\:top-0\.5 {top: 4px}
    .sm\:top-11 {top: 88px}
    .sm\:-top-50px {top: -50px}
}

/* --------------------------------- Filters --------------------------------- */
.grayscale {filter: grayscale(100%)}
.opacity-0 {opacity: 0%}
.opacity-10 {opacity: 10%}
.opacity-20 {opacity: 20%}
.opacity-30 {opacity: 30%}
.opacity-50 {opacity: 50%}
.opacity-60 {opacity: 60%}
.opacity-70 {opacity: 70%}
.opacity-100 {opacity: 100%}
.blur-10 {filter: blur(10px)}
.blur-20 {filter: blur(20px)}
.blur-30 {filter: blur(30px)}
.blur-40 {filter: blur(40px)}
.blur-100 {filter: blur(100px)}
.hover\:opacity-100:hover {opacity: 100%}
.focus\:opacity-100:focus-visible {opacity: 100%}

.hover\:children-opacity-20:hover .parent-hover\:opacity-20 {opacity: 20%;}

/* --------------------------------- Effects --------------------------------- */
.shadow-1 {box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.06)}
.shadow-2 {box-shadow: 0px -1px 84px 0px rgba(0, 0, 0, 0.25)}
.shadow-3 {box-shadow: 0px 5.424px 46.105px 0px rgba(0, 0, 0, 0.06)}
.shadow-4 {box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.08)}
.shadow-5 {box-shadow: 0px 5.424px 16.105px 0px rgba(0, 0, 0, 0.06)}
.shadow-6 {box-shadow:  0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);}
.mix-blend-multiply {mix-blend-mode: multiply}

.object-cover {object-fit: cover}

@media (max-width: 990px) {
    .md\:shadow-none {box-shadow: none;}
}
@media (max-width: 767px) {
    .sm\:shadow-none {box-shadow: none;}
}
/* --------------------------------- Flow Control --------------------------------- */
.overflow-auto {overflow: auto}
.overflow-hidden {overflow: hidden}
.overflow-x-clip {overflow-x: clip;}
.overflow-x-hidden {overflow-x: hidden;}
.z-0 {z-index: 0}
.z-1 {z-index: 1}
.z-2 {z-index: 2}
.z-3 {z-index: 3}


/* --------------------------------- Interactivity --------------------------------- */
.user-select-none {user-select: none}
.pointer-events-none {pointer-events: none}
.pointer {cursor: pointer}



/* --------------------------------- Transitions --------------------------------- */
.will-change-transform {will-change: transform;}
.will-change-opacity {will-change: opacity;}
.will-change-both {will-change: transform, opacity;}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-all	{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-shadow	{
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-colors-custom {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: var(--cubic-bezier);
    transition-duration: 350ms;
}

.duration-0 { transition-duration: 0s}
.duration-75 { transition-duration: 75ms}
.duration-100 { transition-duration: 100ms}
.duration-150 { transition-duration: 150ms}
.duration-200 { transition-duration: 200ms}
.duration-300 { transition-duration: 300ms}
.duration-400 { transition-duration: 400ms}
.duration-500 { transition-duration: 500ms}
.duration-700 { transition-duration: 700ms}
.duration-1000 { transition-duration: 1000ms}

.ease-custom {transition-timing-function: var(--cubic-bezier);}

/* --------------------------------- Animations --------------------------------- */
.animate-bounce	{animation: animation_bounce 1s infinite;}
.animate-bounce-slow {animation: animation_bounce 6s infinite;}
.animate-bounce-slow-reverse {animation: animation_bounce_reverse 6s infinite;}

@keyframes animation_bounce {
  0%, 100% {
    transform: translateY(0%);
    animation-timing-function: cubic-bezier(0.1, 0.1, 1, 1);
  }
  50% {
    transform: translateY(20%);

    animation-timing-function: cubic-bezier(0.1, 0.1, 1, 1);
  }
}
@keyframes animation_bounce_reverse {
  0%, 100% {
    transform: translateY(20%);
    animation-timing-function: cubic-bezier(0.2, 0, 1, 1);
  }
  50% {
    transform: translateY(0%);

    animation-timing-function: cubic-bezier(0.2, 0, 1, 1);
  }
}

.animate-dmf-pulse {animation: dmf-pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;}
@keyframes dmf-pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.6;
    }
}

.animate-ping {animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite}
.animate-ping-subtle {animation: ping_subtle 5s cubic-bezier(0, 0, 0.2, 1) infinite}
@keyframes ping {
   75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes ping_subtle {
   30%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.animate-wobble-subtle {animation: wobble_subtle 5s cubic-bezier(0, 0, 0, 1) infinite}
@keyframes wobble_subtle {
    0% { transform: translateX(12%) rotate(12deg); } 
    3% { transform: translateX(-10%) rotate(-10deg); } 
    6% { transform: translateX(8%) rotate(8deg); } 
    9% { transform: translateX(-6%) rotate(-6deg); } 
    12% { transform: translateX(4%) rotate(4deg); } 
    15% { transform: translateX(-2%) rotate(-2deg); } 
    16% {
        transform: rotate(0deg) translateX(0%);
    }
}

.animate-enlarge-subtle {animation: enlarge_subtle 5s cubic-bezier(0,0,0,1) infinite}
@keyframes enlarge_subtle {
    0% { transform: scale(1) } 
    10% {transform: scale(1.1); }
    20%, 100% {
        transform: scale(1);
    }
}


/* --------------------------------- Components --------------------------------- */
.overlay-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.blue-mask {
    background-color: #1AC7FF;
    border-radius: 50%;
    filter: blur(100px) opacity(40%);
    width: 580px;
    height: 760px;
    pointer-events: none;
    z-index: 0;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.absolute-x-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hero-bg-pattern {position: relative}
.hero-bg-pattern::after {
    bottom: 0;
    right: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    pointer-events: none;
    z-index: 0;
    background-image: url('../images/pattern-cropped-top-left.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    mix-blend-mode: hard-light;
    opacity: 30%;
}

.top-left-bg-pattern::after {
    bottom: 0;
    right: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    pointer-events: none;
    z-index: 0;
    background-image: url('../images/pattern-cropped-bottom-right.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0% 0%;
    opacity: 30%;
}

.top-right-bg-pattern::after {
    top: -800px;
    right: -420px;
    position: absolute;
    display: block;
    width: 1478.1px;
    height: 1429.4px;
    content: '';
    pointer-events: none;
    z-index: 0;
    background-image: url('../images/pattern.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0% 0%;
    transform: rotate(45deg);
    opacity: 30%;
}

@media (max-width: 767px) {
    .hero-bg-pattern::after {
        background-size: 1720px 1220px;
        background-position: 40% 100%;
    }

    .top-left-bg-pattern::after {
        background-size: 1720px 1220px;
        background-position: 100% 0%;
    }
}
.bottom-right-tiny-pattern::after {
    bottom: 0;
    right: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    pointer-events: none;
    z-index: 0;
    background-image: url('../images/tiny-pattern.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 0% 0%;
}

.bottom-right-bg-pattern {position: relative}
.bottom-right-bg-pattern::after {
    bottom: 0;
    right: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    pointer-events: none;
    z-index: 0;
    background-image: url('../images/pattern-cropped-top-left.svg');
    background-repeat: no-repeat;
    background-position: 20% 15%;
    background-size: 1720px 1220px;
    mix-blend-mode: hard-light;
    opacity: 30%;
}


.ellipsis-overflow-vertical-2 {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    /* autoprefixer: off */
    -webkit-box-orient: vertical;
    /* autoprefixer: on */
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-overflow-vertical-3 {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    /* autoprefixer: off */
    -webkit-box-orient: vertical;
    /* autoprefixer: on */
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-hide-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .sm\:text-hide-overflow {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.btn {
    padding: 0px 32px;
    border-radius: var(--border-radius-button);
    font-size: 15px;
    font-weight: 400;
    line-height: 1em;
    display: inline-block;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: var(--cubic-bezier);
    transition-duration: 350ms;
    line-height: 47px;
    text-align: center;
    cursor: pointer;
}

.btn:disabled {
    opacity: 50%;
}

.btn.btn-lg {
    line-height: 52px;
}
.btn.btn-sm {
    line-height: 44px;
}
.btn.btn-blue {
    background-color: var(--dmf-blue);
    color: white;
}
.btn.btn-blue:is(:focus, :hover) {background-color: var(--dmf-blue-hover)}

.btn.btn-outline {
    color: var(--dmf-blue);
    box-shadow: inset 0 0 0px 1px var(--dmf-blue);
    background-color: inherit;
}
.btn.btn-outline:is(:focus, :hover) {
    background-color: var(--dmf-blue-hover);
    color: white;
}
.btn.btn-outline.text-white {
    color: white;
}


.btn.btn-outline-dark {
    color: var(--bg-dark);
    box-shadow: inset 0 0 0px 1px #C8CED2;
    background-color: inherit;
}
.btn.btn-outline-dark:is(:focus, :hover) {
    background-color: var(--dmf-blue); 
    color: white; 
    box-shadow: inset 0 0 0px 1px #fff0;
}

.pagination-btn {
    font-size: 13px;
    height: 44px;
    width: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    background-color: white;
    color: var(--dmf-grey-color-secondary);
    cursor: pointer;
    flex: 0 0 auto;
    transition-property: opacity;
    transition-timing-function: var(--cubic-bezier);
    transition-duration: 350ms;
}

.pagination-btn:hover,
.pagination-btn:focus {
    color: var(--bg-dark);
}

.pagination-btn.active {
    color: var(--bg-dark);
    background: white;
}
.pagination-btn.pagination-arrow {
    background-color: #7391AC;
}
.pagination-btn.pagination-arrow:hover {
    opacity: 60%;
}
.pagination-btn.pagination-end {
    background-color: #C2D5DF;
    cursor: not-allowed;
}

.scroll-snap-mandatory {
    scroll-snap-type: x mandatory;
}
.scroll-snap-center {
    scroll-snap-align: center;
}
.scroll-snap-start {
    scroll-snap-align: start;
}