/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free
 * Icons: CC BY 4.0
 * Fonts: SIL OFL 1.1
 * Code: MIT License
 */

/* =========================
   Base Font Awesome Styles
========================= */

.fa,
.fab,
.fad,
.fal,
.far,
.fas {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================
   Size Utilities
========================= */

.fa-xs {
    font-size: 0.75em;
}

.fa-sm {
    font-size: 0.875em;
}

.fa-lg {
    font-size: 1.33333em;
    line-height: 0.75em;
    vertical-align: -0.0667em;
}

.fa-1x {
    font-size: 1em;
}

.fa-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;
}

/* =========================
   Fixed Width
========================= */

.fa-fw {
    width: 1.25em;
    text-align: center;
}

/* =========================
   List Icons
========================= */

.fa-ul {
    margin-left: 2.5em;
    padding-left: 0;
    list-style-type: none;
}

.fa-ul > li {
    position: relative;
}

.fa-li {
    position: absolute;
    left: -2em;
    width: 2em;
    line-height: inherit;
    text-align: center;
}

/* =========================
   Border
========================= */

.fa-border {
    padding: 0.2em 0.25em 0.15em;
    border: 0.08em solid #eee;
    border-radius: 0.1em;
}

/* =========================
   Pull Utilities
========================= */

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
    margin-right: 0.3em;
}

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
    margin-left: 0.3em;
}

/* =========================
   Animations
========================= */

.fa-spin {
    animation: fa-spin 2s linear infinite;
}

.fa-pulse {
    animation: fa-spin 1s steps(8) infinite;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================
   Rotate & Flip
========================= */

.fa-rotate-90 {
    transform: rotate(90deg);
}

.fa-rotate-180 {
    transform: rotate(180deg);
}

.fa-rotate-270 {
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    transform: scaleX(-1);
}

.fa-flip-vertical {
    transform: scaleY(-1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
    transform: scale(-1);
}

/* =========================
   Stack
========================= */

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2.5em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

/* =========================
   Example Icons
========================= */

.fa-home::before {
    content: "\f015";
}

.fa-user::before {
    content: "\f007";
}

.fa-search::before {
    content: "\f002";
}

.fa-envelope::before {
    content: "\f0e0";
}

.fa-phone::before {
    content: "\f095";
}

.fa-instagram::before {
    content: "\f16d";
}

.fa-facebook::before {
    content: "\f09a";
}

.fa-twitter::before {
    content: "\f099";
}

.fa-youtube::before {
    content: "\f167";
}

.fa-whatsapp::before {
    content: "\f232";
}

/* =========================
   Accessibility
========================= */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}