.fa-fw,.fa-li {
    text-align: center
}

.fa {
    font-family: 'Font Awesome 6 Pro';
    font-family: var(--fa-style-family, 'Font Awesome 6 Pro');
    font-weight: 900;
    font-weight: var(--fa-style,900)
}


.fa,.fa-brands,.fa-duotone,.fa-light,.fa-regular,.fa-solid,.fa-thin,.fab,.fad,.fal,.far,.fas,.fat {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    color: inherit;
    color: var(--fa-color,inherit)
}

.fa-1x {
    font-size: 1em
}

.fa-2x,.fa-stack-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-6x {
    font-size: 6em
}

.fa-7x {
    font-size: 7em
}

.fa-8x {
    font-size: 8em
}

.fa-9x {
    font-size: 9em
}

.fa-10x {
    font-size: 10em
}

.fa-2xs {
    font-size: .625em;
    line-height: .1em;
    vertical-align: .225em
}

.fa-xs {
    font-size: .75em;
    line-height: .08333em;
    vertical-align: .125em
}

.fa-sm {
    font-size: .875em;
    line-height: .07143em;
    vertical-align: .05357em
}

.fa-lg {
    font-size: 1.25em;
    line-height: .05em;
    vertical-align: -.075em
}

.fa-xl {
    font-size: 1.5em;
    line-height: .04167em;
    vertical-align: -.125em
}

.fa-2xl {
    font-size: 2em;
    line-height: .03125em;
    vertical-align: -.1875em
}

.fa-fw {
    width: 1.25em
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    margin-left: var(--fa-li-margin,2.5em);
    padding-left: 0
}

.fa-ul>li {
    position: relative
}

.fa-li {
    left: -2em;
    left: calc(var(--fa-li-width,2em) * -1);
    position: absolute;
    width: 2em;
    width: var(--fa-li-width,2em);
    line-height: inherit
}

.fa-border {
    border-radius: .1em;
    border-radius: var(--fa-border-radius,.1em);
    border: .08em solid #eee;
    border: var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);
    padding: .2em .25em .15em;
    padding: var(--fa-border-padding,.2em .25em .15em)
}

.fa-pull-left {
    float: left;
    margin-right: .3em;
    margin-right: var(--fa-pull-margin,.3em)
}

.fa-pull-right {
    float: right;
    margin-left: .3em;
    margin-left: var(--fa-pull-margin,.3em)
}

.fa-spin {
    -webkit-animation-name: fa-spin;
    animation-name: fa-spin;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-direction: var(--fa-spin-direction,normal);
    animation-direction: var(--fa-spin-direction,normal);
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: var(--fa-spin-duration, 2s);
    animation-duration: var(--fa-spin-duration, 2s);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: var(--fa-spin-iteration-count,infinite);
    animation-iteration-count: var(--fa-spin-iteration-count,infinite);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-timing-function: var(--fa-spin-timing,linear);
    animation-timing-function: var(--fa-spin-timing,linear)
}

.fa-spin-reverse {
    --fa-spin-direction: reverse
}

.fa-pulse,.fa-spin-pulse {
    -webkit-animation-name: fa-spin;
    animation-name: fa-spin;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-direction: var(--fa-spin-direction,normal);
    animation-direction: var(--fa-spin-direction,normal);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--fa-spin-duration, 1s);
    animation-duration: var(--fa-spin-duration, 1s);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: var(--fa-spin-iteration-count,infinite);
    animation-iteration-count: var(--fa-spin-iteration-count,infinite);
    -webkit-animation-timing-function: steps(8);
    animation-timing-function: steps(8);
    -webkit-animation-timing-function: var(--fa-spin-timing,steps(8));
    animation-timing-function: var(--fa-spin-timing,steps(8))
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.fa-rotate-90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

.fa-flip-vertical {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1)
}

.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical {
    -webkit-transform: scale(-1);
    transform: scale(-1)
}

.fa-rotate-by {
    -webkit-transform: rotate(none);
    transform: rotate(none);
    -webkit-transform: rotate(var(--fa-rotate-angle,none));
    transform: rotate(var(--fa-rotate-angle,none))
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em
}

.fa-stack-1x,.fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: auto;
    z-index: var(--fa-stack-z-index,auto)
}

.fa-stack-1x {
    line-height: inherit
}

.fa-duotone.fa-inverse,.fa-inverse,.fad.fa-inverse {
    color: #fff;
    color: var(--fa-inverse,#fff)
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(../fonts/fa-brands-400.woff2) format('woff2'),url(../fonts/fa-brands-400.woff) format('woff'),url(../fonts/fa-brands-400.ttf) format('truetype')
}
.fa-brands,.fab {
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400
}
@font-face {
    font-family: 'Font Awesome 6 Pro';
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(../fonts/fa-light-300.woff2) format('woff2'),url(../fonts/fa-light-300.woff) format('woff'),url(../fonts/fa-light-300.ttf) format('truetype')
}
.fa-light,.fa-regular,.fa-solid,.fa-thin,.fal,.far,.fas,.fat {
    font-family: 'Font Awesome 6 Pro'
}
.fa-light,.fal {
    font-weight: 300
}
.fa-facebook-f:before {
    content: '\f39e';
}
.fa-twitter:before {
    content: '\f099';
}
.fa-linkedin-in:before {
    content: '\f0e1';
}
.fa-youtube:before {
    content: '\f167';
}
.fa-tiktok:before {
    content: '\e07b';
}
.fa-instagram:before {
    content: '\f16d';
}
.fa-calendar-check:before {
    content: '\f274';
}
.fa-bell:before {
    content: '\f0f3';
}
.fa-location-dot:before, 
.fa-map-marker-alt:before {
    content: '\f3c5';
}
.fa-circle-question:before,.fa-question-circle:before{
    content:'\f059'
}
.fa-circle-plus:before{
    content: '\f055';
}
.fa-circle-play:before {
    content: '\f144';
}
.fa-timer:before {
    content: '\e29e';
}
.fa-clock:before {
    content: '\f017';
}
.fa-plus:before {
    content: '\2b';
}
.fa-lock:before {
    content: '\f023';
}
.fa-volume:before {
    content: '\f6a8';
}
.fa-gift:before {
    content: '\f06b';
}
.fa-angles-right:before {
    content: '\f101';
}
.fa-angles-left:before {
    content: '\f100';
}
.fa-instagram:before {
    content: '\f16d';
}
.fa-whatsapp:before {
    content: '\f232';
}
.fa-envelope:before {
    content: '\f0e0';
}
.fa-video:before {
    content: '\f03d';
}
.fa-xmark:before {
    content: '\f00d';
}
.fa-check:before {
    content: '\f00c';
}
.fa-map-location-dot:before {
    content: '\f5a0';
}
.fa-angle-down:before {
    content: '\f107';
}
.fa-angle-up:before {
    content: '\f106';
}
.fa-quote-left:before {
    content: '\f10d';
}
.fa-star:before {
    content: '\f005';
}
.fa-circle-check:before {
    content: '\f058';
}
.fa-high-definition:before {
    content: '\e1ae';
}
.fa-pen-to-square:before {
    content: '\f044';
}
.fa-laptop-mobile:before {
    content: '\f87a';
}
.fa-file-pdf:before {
    content: '\f1c1';
}