:root {
    --main-theme-color: #3185ff;
    --theme-light: #d0fdff;
    --para-color: #666;
    --max-width: 1250px;
}

body {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

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

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--main-theme-color) !important;
}

.text-white {
    color: white !important;
}

.font-42 {
    font-size: 42px !important;
}

.max-width {
    max-width: var(--max-width);
    width: 90%;
}

.m-x-auto {
    margin-inline: auto;
}

.heading-2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--headings-color);
}

.p-y-40 {
    padding-block: 40px;
}

.py-0 {
    padding-block: 0 !important;
}
.mt-25 {
    margin-top: 25px;
}
.mb-25 {
    margin-bottom: 25px;
}

.w-full {
    width: 100%;
}

.text-18 {
    font-size: 18px;
}

@media (max-width: 768px) {
    .py-sm-0 {
        padding-block: 0 !important;
    }
}

#main-search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: fixed;
    top: -500px;
    background: #050a26;
    padding: 20px;
    transition: all 0.6s ease;
}

.show-fixed-search {
    transition: all 0.6s ease;
    top: 0px !important;
    z-index: 999999 !important;
}

.top-banner {
    width: 100%;
    height: 410px;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.top-banner > img {
    width: 100%;
}

@media (max-width: 768px) {
    .top-banner > img {
        scale: 4;
    }
}

.top-banner header {
    position: absolute;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.breadcrum {
    display: flex;
    gap: 15px;
    font-weight: 700;
}

.breadcrum a {
    color: white;
}

.breadcrum a:hover {
    color: white;
}

.parent-section {
    padding-block: 40px;
}

.second-level-parent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    flex-direction: column;
    max-width: var(--max-width);
    margin-inline: auto;
}

.second-level-parent header {
    text-align: center;
}

.second-level-parent .video-section {
    padding-block: 40px;
    padding-inline: 0;
}

.second-level-parent .video-section .container {
    width: 100%;
}

.video-section ul {
    padding-inline-start: 15px;
    padding-block-start: 10px;
}

.video-section ul li {
    list-style-type: initial;
    padding-inline-start: 15px;
    padding-block-end: 5px;
}

#logo {
    width: 210px !important;
    padding-inline-start: 10px;
}

header.main-header {
    position: absolute;
    background: transparent;
    width: 100%;
    top: 10px;
    z-index: 9999;
    padding-inline: 0 20px;
}

header.main-header > div {
    display: flex;
    margin-inline: auto;
    width: max-content;
    justify-content: space-between;
    max-width: var(--max-width);
    width: 100%;
    align-items: center;
}

.login-btn {
    min-width: 80px;
    height: 36px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    box-shadow: inset 0 0 0 1px white;
    display: flex;
    transition: background 300ms ease;
}

.login-btn:hover,
.login-btn:focus {
    background: white;
    color: black !important;
    text-decoration: none;
}

.theme-btn {
    background: var(--main-theme-color);
    border: none !important;
    box-shadow: none;
    padding-inline: 15px;
}

.theme-btn:hover {
    color: white !important;
    background: var(--main-theme-color) !important;
    filter: brightness(1.1);
}

/* benfits section */

.benfits-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding-block: 40px;
}

.benfits-section .container {
    max-width: var(--max-width);
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    width: 90%;
    flex-wrap: wrap;
}

.benfits-card {
    flex: 1;
    min-width: 400px;
    width: 100%;
    padding: 40px 30px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-blend-mode: multiply;
    color: white;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    /*! justify-content: center; */
    align-items: center;
    gap: 20px;
}

.benefits-title {
    color: white;
}

.benefits-list li {
    color: #eee;
}

.benefits-list {
    padding-inline-start: 15px;
    font-size: 20px;
    line-height: 1.5;
}

@media screen and (max-width: 924px) {
    .benfits-card {
        max-width: 90%;
    }

    #logo {
        width: 180px !important;
    }
}

/* benfits section */

.home-banner {
    height: 500px !important;
    position: relative;
    background: url("/public/frontend/landing/images/Home-Page-Banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.home-banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.nav-lg ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.nav-lg ul li {
    cursor: pointer;
}

.nav-lg ul li a {
    font-weight: 600;
    color: #fff;
}

.feature-strip {
    background-color: black;
    border-block: 1px solid white;
}

.feature-strip > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 14px 16px;
    gap: 74px;
}

.how-it-works {
    padding-block: 40px;
    position: relative;
    background: url("/public/frontend/landing/images/transport-Pattern-1.jpg");
    background-size: cover;
}

.how-it-works > header {
    max-width: var(--max-width);
    width: 90%;
    text-align: center;
    margin-inline: auto;
}

.how-it-works main {
    padding-block: 80px 40px;
    width: 95%;
    max-width: var(--max-width);
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-inline: auto;
    align-items: stretch;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .how-it-works main {
        gap: 60px;
    }
    .video-section .container .image-container {
        min-width: 100%;
    }
    .sm-font-30 {
        font-size: 30px !important;
    }
}

.how-it-works header h1 {
    color: white;
}

.card {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(56, 56, 56, 0.21);
    padding: 40px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 250px;
    flex: 1;
    gap: 20px;
    transition: box-shadow background 1000ms ease;
    border: 1px solid #efefefd6;
}

/* .card:hover {
    background: var(--main-theme-color);
} */

.card header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-strip .content {
    max-width: var(--max-width);
    width: 90%;
    display: flex;
    justify-content: space-evenly;
    margin-inline: auto;
}

.feature-strip .content .text-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.feature-strip .content .text-section span {
    color: white;
    font-weight: 700;
    font-size: 18px;
    font-family: Manrope;
    line-height: 1;
}

.feature-strip .content .text-section svg {
    width: 20px;
    fill: var(--main-theme-color);
}

.d-sm-none {
    display: block;
}

@media (max-width: 768px) {
    .feature-strip .content .text-section svg {
        width: 30px;
    }

    .d-sm-none {
        display: none !important;
    }
}

/* .card:hover .header h4 {
    color: white;
}

.card:hover p {
    color: white;
} */

.card header .paws {
    font-size: 25px;
    transform: rotate(20deg);
    margin-left: 10px;
    display: none;
}

.card:hover .paws {
    display: inline;
}

.card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card h4 {
    font-size: 24px;
    color: #333;
}

.count {
    font-size: 40px;
    color: white;
    margin-right: 10px;
    background: var(--main-theme-color);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: inline-block;
    display: grid;
    place-items: center;
    font-weight: 900;
    position: absolute;
    top: -40px;
    left: 40%;
    border: 2px solid white;
    transition: scale 300ms ease;
}

.card:hover .count {
    scale: 1.15;
}

.card p {
    font-size: 18px;
    color: #666;
}

/* Styles for the Slider Parent Section */
.slider-parent {
    padding-block: 40px;
    max-width: var(--max-width);
    margin: auto;
    width: 90%;
}

.bg-main-image {
    position: absolute;
    scale: -4 4;
    opacity: 0.2;
    z-index: -1;
}

.bg-1 {
    top: 10px;
    left: 50px;
    rotate: 20deg;
    scale: -4 4;
}

.bg-2 {
    bottom: -300px;
    right: 125px;
    rotate: 30deg;
    scale: 5;
}

@media (max-width: 768px) {
    .bg-2 {
        scale: 2;
        bottom: -477px;
        right: 132px;
    }
    .bg-1 {
        scale: -2 2;
        top: -100px;
    }
}

.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 40px;
}

.video-section .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: var(--max-width);
    gap: 40px;
    width: 90%;
}

.video-section .container > div {
    flex: 1;
    /* height: 464px; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.video-section .container .image-container {
    min-width: 280px;
}

.video-section .container .image-container {
    min-width: 430px;
}

.video-section .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.heading {
    font-size: 30px;
    font-weight: 700;
    color: var(--headings-color);
}

.para {
    font-size: 18px;
    color: var(--para-color);
}

.video-section .content .para {
    margin-bottom: 20px;
}

.video-section .image-container {
    border-radius: 10px;
    overflow: hidden;
}

.video-section .image-container img {
    height: 100%;

    object-fit: cover;
}

/* Styles for the Slider Header */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-header h1 {
    font-size: 30px;
    color: var(--headings-color);
}

.slider-header .button-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-button {
    border-radius: 50%;
    padding: 10px;
    background: var(--main-theme-color);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.slider-button svg {
    fill: white;
    stroke: white;
}

.slider-button.disabled {
    filter: brightness(1.13);
}

/* Styles for the Slider Container */
.slider-container {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    padding-block: 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

/* Styles for the Slider Child Items */
.slider-child {
    flex: 0 0 auto;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    width: 270px;
    height: 220px;
    position: relative;
}

.slider-child img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.location-title {
    position: absolute;
    bottom: 0px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-block: 20px 10px;
    padding-inline-start: 20px;
    font-size: 22px;
    color: white;
    width: 100%;
    transition: all 200ms ease;
    /* background: linear-gradient(180deg,#0003, #000000d4); */
}

.text-20 {
    font-size: 18px !important;
}

.slider-child:hover .location-title {
    font-size: 24px;
}

.slider-child:hover .overlay {
    background: linear-gradient(#ffffff1f, #030303a3);
}

.slider-bottom-text {
    color: rgb(48, 48, 48) !important;
}

/* Styles for the Transport Section */
.transport-section {
    /* background-color: #f8f8f8;    */
    padding-block: 40px;
    display: flex;
    margin-inline: auto;
    justify-content: center;
    position: relative;
}

/* Styles for the Background Container */
.transport-section .background {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    flex-wrap: wrap;
    max-width: var(--max-width);
    background: url("/public/frontend/landing/images/interactive-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
}

.transport-section .text-container {
    text-align: center;
    padding-block-start: 30px;
    color: white;
    width: 90%;
    max-width: var(--max-width);
}

.transport-section .text-container h2 {
    padding-bottom: 20px;
}

.transport-section .background .card-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding-block: 30px;
    flex-wrap: wrap;
    padding-inline: 5%;
}

/* Styles for the Individual Transport Cards */
.it-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    display: grid;
    place-items: center;
    width: 30%;
}

.it-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.it-card .hover-element {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.41);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 400ms ease;
    opacity: 0;
}

.it-card .hover-element .text {
    font-size: 29px;
    color: white;
    padding-top: 12px;
}

.it-card .hover-element a {
    background: transparent;
    padding: 20px;
    border: none;
    outline: none;
}

.it-card .hover-element a:hover {
    background: white !important;
}

.it-card:hover .hover-element {
    opacity: 1;
}

.it-text {
    font-family: Amithen;
    font-style: normal;
}

/* Hover effect for the Transport Cards */
.it-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .home-banner {
        height: 400px !important;
    }

    .nav-lg {
        display: none;
    }

    .card header .paws {
        display: inline;
    }

    .slider-header h1 {
        font-size: 23px;
    }

    .video-section .container .content {
        height: auto;
        justify-content: flex-start;
    }
    #main-search-bar .text-container {
        display: none;
    }

    #main-search-bar .search-bar {
        width: 90%;
    }
}

.partner-section {
    background: black;
    border-bottom: 1px solid #a8a8a8;
    padding: 30px;
}
.partner-section .section-title {
    text-align: center;
    color: white;
    padding-block-end: 30px;
}
.partner-section .section-title h3 {
    font-size: 30px;
}

.testimonial-section {
    padding-block: 40px;
}

.logo-slider {
    overflow-x: hidden;
}

.partner-section .overflow {
    display: flex;
    overflow: hidden;
    padding: 0.5rem 1rem;
    justify-content: center;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: var(--max-width);
    gap: 40px;
    /* animation: logoloop 30s linear infinite; */
}

.logo-item {
    margin-left: 1rem;
    padding: 0.8rem 1.7rem;
    aspect-ratio: 30/9;
    background: black;
    border-radius: 10px;
    border: 0.5px solid var(--para-color);
}

.logo-item img {
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(#ffffff1f, #0000008f);
}

.partner {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

.partner-logo-container {
    display: flex;
    animation: marquee-animation 10s linear infinite;
}

.partner-logo-container img {
    margin-right: 20px; /* Adjust the spacing between logos */
}

@keyframes logoloop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
    .transport-steps .steps-container {
        justify-content: center !important;
    }

    .video-section .container .image-container {
        min-width: 100% !important;
    }

    .transport-section .background {
        border-radius: 0;
    }

    .it-card {
        width: 300px;
        height: 300px;
    }

    .it-card .hover-element {
        opacity: 1;
    }

    .vendor-cta {
        font-size: 25px;
    }

    .vendor-cta img,
    .bg-paws {
        scale: 4;
        translate: 0 40px;
    }
}

.vendor-cta {
    position: relative;
    overflow: hidden;
    height: 240px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("/public/frontend/landing/images/transport-Pattern-2.jpg");
    background-size: contain;
}

.vendor-cta img,
.bg-paws {
    transform: rotate(var(--rotate));
    position: absolute;
    top: var(--top);
    opacity: 0.2;
    z-index: -1;
    scale: 2;
}

.vendor-cta .hold-content-inner {
    width: 80%;
    text-align: center;
}

div.sp-signup-cta div.cta a {
    display: inline-block;
    width: 140px;
    height: 33px;
    margin: 10px 90px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    background: transparent url(/v2/images/layout/global-nav-icons-sprite.png) -170px -340px
        no-repeat;
    padding-top: 9px;
    font-weight: 700;
}

div.sp-signup-cta div.cta {
    width: 100%;
}

div.sp-signup-cta p {
    font-size: 30px;
    color: white;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

div.sp-signup-cta div.cta {
    margin: 15px 0 20px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    position: relative;
    -pie-poll: true;
    behavior: url(/v2/behaviour/PIE.htc);
    background-color: #323232;
    width: 315px;
    display: inline-block;
}

div.sp-signup-cta div.cta a {
    display: inline-block;
    width: 140px;
    height: 33px;
    margin: 10px 90px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    background-color: #228ac3;
    border-radius: 10px;
    padding-top: 9px;
    font-weight: 700;
}

.veho-c-lesPJm.veho-c-lesPJm-icwECDb-css {
    overflow: unset !important;
}

.swiper-wrapper {
    height: 230px;
}

/* Styles for the Category Parent Container */
.category-parent {
    background-color: #f8f8f8;
    padding-block: 40px;
    text-align: center;
}

/* Styles for the Category Container */
.category-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin-inline: auto;
    gap: 30px;
    width: 90%;
}

/* Styles for the Category Panel */
.category-panel {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px 30px;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

/* Styles for the Category Panel Title */
.category-panel h3.title {
    font-size: 24px;
    color: #333;
}

/* Styles for the Category Panel Copy */
.category-panel p.copy {
    font-size: 16px;
    color: #666;
}

/* Styles for the Get Quotes Button */
.category-panel button.btn {
    margin-top: auto;
}

.category-panel .pet-bg {
    position: absolute;
    bottom: 0px;
    right: 0px;
    transition: all 300ms ease;
    opacity: 0.7;
}

.category-panel:hover .pet-bg {
    transform: scale(1.2) rotate(20deg);
}

/* Hover effect for the Category Panel */
.category-panel:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Hover effect for the Get Quotes Button */
.category-panel button.btn:hover {
}

.brand-logo {
    width: auto;
    height: 50px;
    padding-top: 5px;
}

.home-search-button::before {
    background: linear-gradient(
        var(--main-theme-color),
        var(--main-theme-color)
    ) !important;
}

.PJLV-igZdLXO-css,
.veho-c-lesPJm-ieQLpBI-css svg {
    fill: var(--main-theme-color) !important;
}

.sales-pitch .fa-circle,
.threecol-banner .fa-circle {
    color: var(--main-theme-color);
}

.btn.it {
    background: var(--main-theme-color);
    color: white;

    padding: 20px 40px;
    font-size: 19px;
    border-radius: 10px;
    outline: none;
    border: none;
    bottom: 15%;
}

button#main-theme {
    background: var(--main-theme-color);
    color: white;
    position: absolute;
    z-index: 9;
    padding: 20px 40px;
    font-size: 19px;
    border-radius: 10px;
    outline: none;
    border: none;
    bottom: 15%;
}

nav a:focus,
nav a:hover {
    color: #fff !important;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex;
}

.btn {
    background: var(--main-theme-color);
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    transition: all linear 0.3s;
    font-weight: bold;
    border: none;
}

.btn:hover {
    color: white;
    filter: brightness(1.3);
}

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded="true"] {
    border-bottom: 1px solid #03b5d2;
}

.accordion button {
    position: relative;
    display: flex;
    text-align: left;
    width: 100%;
    padding: 0.5em 1em;
    color: #7288a2;
    font-size: 14px;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    align-items: center;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: var(--main-theme-color);
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #03b5d2;
    border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
    margin-top: 5px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}
.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded="true"] {
    color: #03b5d2;
}
.accordion button[aria-expanded="true"] .icon::after {
    width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content {
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: display;
}

.accordion .accordion-content p {
    /* font-size: 1.1em; */
    /* color: #515d6b; */
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-title {
    font-weight: bold;
    cursor: pointer;
}

/* Style for the active accordion button */
.accordion-item.active .accordion-title {
    color: #007bff;
}

/* Style for the accordion content */
.accordion-content {
    display: none;
    padding: 10px;
    background-color: #f9f9f9;
}

/* Style to show the accordion content when active */
.accordion-item.active .accordion-content {
    display: block;
}

/* Style for the tab buttons */
.tab {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.tab button {
    background-color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    border-radius: 5px;
    margin-right: 10px;
}

.tab button:hover {
    background-color: #cee2ff;
}

/* Style for the active tab */
.tab button.active {
    background: var(--main-theme-color);
    color: white;
}

/* Style for the contact form */
.contact-form {
    flex: 1;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 10px;
}

.contact-form h3 {
    /*! text-align: center; */
    margin-bottom: 40px;
    margin-top: 10px;
    font-weight: 700;
    font-size: 30px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .faq-and-contact .content {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form {
        margin-right: 0;
        margin-top: 20px;
    }

    .grp {
        flex-direction: column;
        gap: 30px !important;
    }
}

.input-group {
    width: 100%;
    border: 1.8px solid #e0e0e0;
    position: relative;
    border-radius: 5px;
}

.why-choose-us {
    padding-block: 40px;
}

.why-choose-us .cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 90%;
    margin-inline: auto;
    max-width: var(--max-width);
}

.why-choose-us .cont .head-row {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-us .cont .head-row h1 {
    margin-bottom: 20px;
}

.why-choose-us .cont .head-row p,
.why-choose-us .cont .content-row p {
    text-align: center;
    line-height: 1.3;
    color: var(--para-color);
}

.why-choose-us .cont .content-row h3 {
    font-size: 24px;
    text-align: center;
}

.why-choose-us .cont .content-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

.why-choose-us .cont .content-row .inside-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 352px;
    border: 1px solid #cdcdcd;
    border-radius: 10px;
    padding: 20px 30px;
    flex: 1;
    gap: 20px;
    box-shadow: 0px 5px 10px #ccccccb5;
}

.sidebar {
    position: fixed;
    background: white;
    display: none;
    flex-direction: column;
    top: 0;
    width: 70%;
    right: -300px;
    height: 100vh;
    padding-inline: 10px;
    transition: right 3000s ease;
}

.sidebar * {
    font-family: Arial, Helvetica, sans-serif !important;
}

.sidebar.show-sidebar {
    display: flex;
    right: 0;
}

.sidebar header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #c1c1c1;
    padding-block: 10px;
    padding-inline: 10px 10px;
    color: #3d3d3d;
}

.sidebar header h4 {
    letter-spacing: 0.6px;
}

.sidebar header .close-sidebar {
    font-size: 15px;
    cursor: pointer;
}

.nav-sm-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.nav-sm-top button {
    background: transparent;
    border: 0;
}

@media (min-width: 768px) {
    .nav-sm-top {
        display: none;
    }
}

.sidebar ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    margin-top: 30px;
    padding-inline: 10px;
    gap: 24px;
    border-radius: 6px;
    list-style: none;
}

.sidebar ul li a {
    color: #646464;
    text-decoration: none;
}

.privacy-section {
    font-size: 17px;
    color: #585858;
    margin-block: 40px;
}

.privacy-banner {
    height: 200px;
    display: grid;
    place-items: center;
}

.privacy-banner span {
    position: absolute;
    color: white;
    top: 100px;
}

.fa,
.fab,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-facebook:before {
    content: "\f09a";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-linkedin:before {
    content: "\f08c";
}

.fa-map-marker-alt:before {
    content: "\f3c5";
}

.fa-phone-alt:before {
    content: "\f879";
}

.fa-twitter:before {
    content: "\f099";
}

.fab {
    font-family: "Font Awesome 5 Brands";
}

.fab {
    font-weight: 400;
}

.fa,
.fas {
    font-family: "Font Awesome 5 Free";
}

.fa,
.fas {
    font-weight: 900;
}

footer h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

footer h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    footer h2 {
        font-size: 2rem;
    }
}

footer p {
    margin-top: 0;
    margin-bottom: 1rem;
}

footer ul {
    /*! padding-left: 2rem; */
}

footer ul {
    margin-top: 0;
    /*! margin-bottom: 1rem; */
}

footer a {
    color: #0d6efd;
    text-decoration: underline;
}

footer a:hover {
    color: #0a58ca;
}

footer img {
    vertical-align: middle;
}

footer .img-fluid {
    max-width: 100%;
    height: auto;
}

footer .container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    footer .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    footer .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    footer .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    footer .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    footer .container {
        max-width: 1320px;
    }
}

footer .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

footer .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

footer .col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    footer .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    footer .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    footer .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 992px) {
    footer .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    footer .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    footer .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

footer .d-flex {
    display: flex !important;
}

footer .border-0 {
    border: 0 !important;
}

footer .w-100 {
    width: 100% !important;
}

footer .flex-wrap {
    flex-wrap: wrap !important;
}

footer .justify-content-between {
    justify-content: space-between !important;
}

footer .justify-content-center {
    justify-content: center !important;
}

footer .align-items-center {
    align-items: center !important;
}

footer .m-0 {
    margin: 0 !important;
}

footer .p-0 {
    padding: 0 !important;
}

footer .mt_100 {
    margin-top: 100px !important;
}

footer .pt_100 {
    padding-top: 100px !important;
}

@media only screen and (max-width: 767px) {
    footer .xs_mt_70 {
        margin-top: 70px !important;
    }

    footer .xs_pt_70 {
        padding-top: 70px !important;
    }
}

footer {
    background: black;
    padding-block: 40px 0;
}

.wsus__footer_content .footer_logo {
    display: block;
    width: 220px;
    padding-block-end: 30px;
}

.wsus__footer_content span {
    display: block;
    color: #c7c7c7;
}

.social_link li a {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 37px;
    background: var(--colorWhite);
    color: var(--colorPrimary);
    border-radius: 5px;
    margin-right: 10px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    color: white;
    border: 1px solid white;
    position: unset !important;
    padding: 0 !important;
    display: grid;
    place-items: center;
}

.social_link li a i {
    position: unset !important;
}

.wsus__footer_content .social_link li a:hover {
    /* transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg); */
    background: white;
    color: black;
}

.wsus__footer_content h2 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.wsus__footer_content .footer_link li a {
    font-size: 16px;
    font-weight: 400;
    color: #c7c7c7;
    margin-top: 15px;
    display: block;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.wsus__footer_content .footer_link li a:hover {
    color: white;
}

.wsus__footer_content .footer_contact li a,
.wsus__footer_content .footer_contact li p {
    color: #c7c7c7;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    padding-left: 35px;
}

.wsus__footer_content .footer_contact li a i,
.wsus__footer_content .footer_contact li p i {
    color: var(--colorPrimary);
    position: absolute;
    top: 4px;
    left: 0;
    font-size: 20px;
}

.wsus__footer_bottom {
    background: var(--colorPrimary);
    padding-block: 20px 0px;
    margin-top: 30px;
    border-top: 1px solid #727272;
}

.wsus__footer_bottom p {
    font-size: 16px;
    font-weight: 400;
    color: white;
}

.wsus__footer_bottom img {
    max-width: 350px;
}

.home_2 .wsus__footer_content .social_link li a {
    color: var(--colorPrimary);
}

.home_2 .wsus__footer_content .social_link li a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.home_2 .wsus__footer_content .footer_contact li a i,
.home_2 .wsus__footer_content .footer_contact li p i {
    color: var(--colorPrimary);
}

.home_2 .wsus__footer_bottom {
    background: var(--colorPrimary);
}

@media (min-width: 992px) and (max-width: 1199.99px) {
    .wsus__footer_content h2 {
        font-size: 22px;
    }
}

@media (min-width: 768px) and (max-width: 991.99px) {
    .wsus__footer_content {
        margin-bottom: 50px;
    }

    .wsus__footer_bottom_content {
        flex-direction: column;
    }

    .wsus__footer_bottom p {
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (min-width: 576px) and (max-width: 767.99px) {
    .wsus__footer_content {
        margin-bottom: 25px;
        border-bottom: 1px solid #2f2f2f;
        padding-bottom: 25px;
    }

    .wsus__footer_bottom_content {
        flex-direction: column;
    }

    .wsus__footer_bottom p {
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 575.99px) {
    .wsus__footer_content {
        margin-bottom: 25px;
        border-bottom: 1px solid #2f2f2f;
        padding-bottom: 25px;
    }

    .wsus__footer_bottom_content {
        flex-direction: column;
    }

    .wsus__footer_bottom p {
        text-align: center;
        margin-bottom: 10px;
    }
}

.wsus__footer_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.social_link li {
}
.social_link {
}
.footer_contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/*! CSS Used from: https://kit-pro.fontawesome.com/releases/latest/css/pro-v4-shims.min.css ; media=all */
@media all {
    .fa.fa-facebook {
        font-family: "Font Awesome 5 Brands";
        font-weight: 400;
    }

    .fa.fa-facebook:before {
        content: "\f39e";
    }

    .fa.fa-linkedin {
        font-family: "Font Awesome 5 Brands";
        font-weight: 400;
    }

    .fa.fa-linkedin:before {
        content: "\f0e1";
    }
}

/*! CSS Used from: https://kit-pro.fontawesome.com/releases/latest/css/pro.min.css ; media=all */
@media all {
    .fa,
    .fab,
    .fas {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
    }

    .fa-envelope:before {
        content: "\f0e0";
    }

    .fa-facebook:before {
        content: "\f09a";
    }

    .fa-instagram:before {
        content: "\f16d";
    }

    .fa-linkedin:before {
        content: "\f08c";
    }

    .fa-map-marker-alt:before {
        content: "\f3c5";
    }

    .fa-phone-alt:before {
        content: "\f879";
    }

    .fa-twitter:before {
        content: "\f099";
    }

    .fab {
        font-family: "Font Awesome 5 Brands";
        font-weight: 400;
    }

    .fa,
    .fas {
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
    }
}

@media (max-width: 768px) {
    .feature-strip > div {
        gap: 40px;
    }

    .slider-parent {
        padding-block-end: 0px;
    }

    /* .video-section .container > div {
      height: 300px;
    } */
}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: grid;
    place-items: center;
    max-width: 180px !important;
}

.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@media (max-width: 768px) {
    #main-search-bar {
        padding: 0;
    }

    .heading {
        font-size: 25px;
    }

    .video-section {
        padding-block-start: 0;
    }

    .video-section .container {
        padding-block-start: 20px;
    }
}

/*! CSS Used fontfaces */
@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(/public/frontend/webfonts/fa-brands-400.eot);
    src: url(/public/frontend/webfonts/fa-brands-400.eot?#iefix)
            format("embedded-opentype"),
        url(/public/frontend/webfonts/fa-brands-400.woff2) format("woff2"),
        url(/public/frontend/webfonts/fa-brands-400.woff) format("woff"),
        url(/public/frontend/webfonts/fa-brands-400.ttf) format("truetype"),
        url(/public/frontend/webfonts/fa-brands-400.svg#fontawesome)
            format("svg");
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f081, U+f08c, U+f092, U+f099, U+f09b, U+f0d2-f0d5, U+f113,
        U+f136, U+f13b-f13c, U+f15a, U+f167-f169, U+f16c-f16e, U+f170,
        U+f173-f174, U+f17a, U+f17c-f17e, U+f180, U+f184, U+f189-f18c, U+f194,
        U+f19a-f19b, U+f1a0-f1a4, U+f1a6-f1a7, U+f1a9-f1aa, U+f1b4, U+f1b6-f1b7,
        U+f1bc-f1be, U+f1ca-f1cc, U+f1d0-f1d1, U+f1d4-f1d6, U+f1e7, U+f1ed-f1ee,
        U+f1f0-f1f2, U+f1f4-f1f5, U+f202, U+f208-f209, U+f20d-f20e, U+f211-f213,
        U+f215, U+f231-f232, U+f237, U+f23a-f23b, U+f23d-f23e, U+f24b-f24c,
        U+f260-f261, U+f263-f266, U+f268, U+f26a-f26b, U+f26d-f26e, U+f270,
        U+f27d-f27e, U+f280-f281, U+f284-f285, U+f287-f28a, U+f293-f294,
        U+f297-f299, U+f2a5-f2a6, U+f2a9, U+f2ab-f2ad, U+f2b0, U+f2b2, U+f2b8,
        U+f2c4, U+f2c6, U+f2d6-f2d8, U+f2da, U+f2dd-f2de, U+f2e0, U+f368-f374,
        U+f378-f37d, U+f37f-f380, U+f383-f385, U+f388, U+f38b-f38f, U+f394-f397,
        U+f399-f39a, U+f3a1-f3a4, U+f3a6-f3b2, U+f3b4-f3b8, U+f3ba-f3bc, U+f3c0,
        U+f3c3-f3c4, U+f3c6-f3c8, U+f3ca, U+f3cc, U+f3d0, U+f3d2, U+f3d4,
        U+f3d6-f3d7, U+f3da-f3db, U+f3df, U+f3e1-f3e3, U+f3e6-f3e7, U+f3e9-f3ec,
        U+f3ee-f3ef, U+f3f5-f3f6, U+f3f8-f3f9, U+f3fe, U+f402-f405, U+f407-f408,
        U+f40a-f40d, U+f411-f417, U+f419, U+f41b-f41d, U+f41f, U+f421, U+f426;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f16b;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f42d-f42f;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.3.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.3.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.3.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.3.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.3.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.3.svg#fontawesome)
            format("svg");
    unicode-range: U+f18d, U+f1b5, U+f1d7, U+f210, U+f216, U+f286, U+f2b1,
        U+f393, U+f3b9, U+f3cb, U+f3d3, U+f3d8-f3d9, U+f3dc, U+f409, U+f423,
        U+f429, U+f430-f431;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.5.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.5.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.5.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.5.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.5.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.5.svg#fontawesome)
            format("svg");
    unicode-range: U+f452, U+f457;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.9.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.9.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.9.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.9.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.9.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.9.svg#fontawesome)
            format("svg");
    unicode-range: U+f44d;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.10.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.10.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.10.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.10.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.10.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.10.svg#fontawesome)
            format("svg");
    unicode-range: U+f4d5, U+f4e5;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.11.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.11.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.11.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.11.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.11.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.11.svg#fontawesome)
            format("svg");
    unicode-range: U+f203, U+f4e7-f4f2, U+f4f8;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.12.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.12.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.12.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.12.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.12.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.0.12.svg#fontawesome)
            format("svg");
    unicode-range: U+f4f7, U+f50a, U+f50c-f50d, U+f510, U+f512-f513;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.1.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.1.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.1.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.1.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.1.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.1.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f25e, U+f375, U+f5a3, U+f5be, U+f5cc, U+f5cf;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.2.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.2.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.2.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.2.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.2.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.2.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f5f1, U+f63f;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.3.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.3.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.3.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.3.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.3.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.3.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f642;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.4.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.4.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.4.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.4.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.4.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.4.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f4f3, U+f6ca, U+f6cc, U+f6dc, U+f704, U+f730;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.4.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.4.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.4.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.4.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.4.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.4.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f3e4;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.6.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.6.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.6.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.6.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.6.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.6.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f181, U+f77b, U+f78d, U+f790, U+f797, U+f7af-f7b1, U+f7b3,
        U+f7bb, U+f7df, U+f7e3;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.7.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.7.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.7.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.7.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.7.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.7.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f198, U+f1a5, U+f1a8, U+f1f3, U+f214, U+f23c, U+f296,
        U+f2aa, U+f391, U+f39d, U+f3f7, U+f427, U+f4f4, U+f50e, U+f60f;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f171, U+f179, U+f1e9, U+f27c, U+f3f3, U+f41a, U+f41e,
        U+f420, U+f428, U+f42a-f42c, U+f459, U+f4e4, U+f4f6, U+f4f9, U+f50b,
        U+f50f, U+f511, U+f514, U+f592, U+f5a8, U+f5b2, U+f5b5, U+f5c6, U+f5f7,
        U+f5fa, U+f612, U+f69d, U+f6af, U+f6c9, U+f731, U+f75d, U+f77a, U+f785,
        U+f789, U+f791, U+f798, U+f7c6, U+f7d3, U+f7d6, U+f7e0-f7e1, U+f834-f835,
        U+f837-f83d, U+f83f-f840;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f0e1;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.8.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f082, U+f09a, U+f1d2-f1d3, U+f39e, U+f59e, U+f7bc,
        U+f841-f842;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.9.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.9.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.9.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.9.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.9.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.9.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f39f;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.10.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.10.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.10.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.10.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.10.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.10.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f89e;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.11.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.11.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.11.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.11.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.11.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.11.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f4f5, U+f8a6, U+f8ca, U+f8d2, U+f8e1, U+f8e8;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.11.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.11.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.11.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.11.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.11.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.11.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f3bd;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.12.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.12.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.12.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.12.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.12.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.12.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f17b, U+f1e8, U+f267, U+f269, U+f2ae, U+f2c5;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.12.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.12.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.12.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.12.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.12.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.12.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f282;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.13.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.13.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.13.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.13.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.13.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.13.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f19e, U+f2b3, U+f2d5;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.14.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.14.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.14.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.14.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.14.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.14.0.svg#fontawesome)
            format("svg");
    unicode-range: U+e007, U+e013, U+e01a, U+e01e, U+e049, U+e052, U+e055-e057,
        U+e077-e07c;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.0.svg#fontawesome)
            format("svg");
    unicode-range: U+e07d-e084, U+e087-e088, U+f3d5, U+f3e8;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f2d9;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.4.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.4.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.4.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.4.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.4.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-brands-400-5.15.4.svg#fontawesome)
            format("svg");
    unicode-range: U+f2b4, U+f35c, U+f392, U+f425, U+f4e6, U+f799, U+f836;
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(/public/frontend/webfonts/fa-regular-400.eot);
    src: url(/public/frontend/webfonts/fa-regular-400.eot?#iefix)
            format("embedded-opentype"),
        url(/public/frontend/webfonts/fa-regular-400.woff2) format("woff2"),
        url(/public/frontend/webfonts/fa-regular-400.woff) format("woff"),
        url(/public/frontend/webfonts/fa-regular-400.ttf) format("truetype"),
        url(/public/frontend/webfonts/fa-regular-400.svg#fontawesome)
            format("svg");
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(/public/frontend/webfonts/fa-solid-900.eot);
    src: url(/public/frontend/webfonts/fa-solid-900.eot?#iefix)
            format("embedded-opentype"),
        url(/public/frontend/webfonts/fa-solid-900.woff2) format("woff2"),
        url(/public/frontend/webfonts/fa-solid-900.woff) format("woff"),
        url(/public/frontend/webfonts/fa-solid-900.ttf) format("truetype"),
        url(/public/frontend/webfonts/fa-solid-900.svg#fontawesome)
            format("svg");
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f002, U+f008-f009, U+f00b-f00c, U+f00e, U+f011, U+f013,
        U+f019, U+f01c, U+f022-f025, U+f02a-f02b, U+f02d, U+f030, U+f040-f041,
        U+f044, U+f047, U+f049-f04a, U+f04e, U+f050, U+f052-f055, U+f057-f05b,
        U+f05e, U+f060-f066, U+f068-f06a, U+f074, U+f077-f07a, U+f07c-f07e,
        U+f085, U+f089, U+f08b, U+f090, U+f093-f094, U+f098, U+f09c-f09e,
        U+f0a4-f0ab, U+f0b2, U+f0c1, U+f0c3, U+f0c6, U+f0c9, U+f0ce, U+f0d7-f0db,
        U+f0e2-f0e3, U+f0e9-f0ea, U+f0ec, U+f0f4, U+f0f8, U+f0fa-f0fe,
        U+f100-f103, U+f106-f108, U+f10a-f10b, U+f11c, U+f120-f122, U+f124,
        U+f126-f128, U+f12e, U+f134, U+f137-f13a, U+f13e, U+f141-f143, U+f146,
        U+f14a-f14d, U+f150-f154, U+f156-f159, U+f175-f178, U+f182-f183,
        U+f191-f192, U+f195, U+f199, U+f1ad-f1ae, U+f1b0, U+f1b2-f1b3, U+f1b8,
        U+f1bb, U+f1c0, U+f1cd, U+f1d8, U+f1da, U+f1e0-f1e2, U+f1ea, U+f1fa,
        U+f1fd-f1fe, U+f204-f206, U+f20b, U+f217-f218, U+f21c, U+f222, U+f224,
        U+f226-f229, U+f233, U+f238-f239, U+f240-f244, U+f246, U+f255-f258,
        U+f25a-f25c, U+f28b, U+f28d, U+f290-f292, U+f295, U+f2a1-f2a4, U+f2a8,
        U+f2c7-f2cb, U+f2ce, U+f2d0, U+f2d2-f2d3, U+f2db, U+f2e6-f2e7, U+f2ea,
        U+f2f0-f2f1, U+f2f5-f2f7, U+f2f9, U+f2fd, U+f301, U+f303, U+f308-f30f,
        U+f31d, U+f320-f322, U+f325-f326, U+f328-f32e, U+f330-f332, U+f336-f337,
        U+f339-f33c, U+f33e, U+f340-f34c, U+f350-f353, U+f355, U+f358-f35b,
        U+f360-f367, U+f376, U+f37e, U+f387, U+f389-f38a, U+f390, U+f39b-f39c,
        U+f3a0, U+f3b3, U+f3be-f3bf, U+f3c2, U+f3c5, U+f3cd-f3cf, U+f3de, U+f3e5,
        U+f3ed, U+f3f0, U+f3f2, U+f3fa-f3fc, U+f400-f401, U+f40e-f410;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f3c1;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.3.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.3.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.3.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.3.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.3.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.3.svg#fontawesome)
            format("svg");
    unicode-range: U+f245, U+f2b9, U+f2bb, U+f2c1, U+f3e0;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.5.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.5.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.5.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.5.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.5.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.5.svg#fontawesome)
            format("svg");
    unicode-range: U+f1e3, U+f432, U+f437-f438, U+f449-f44c, U+f44f-f451, U+f453,
        U+f455, U+f458, U+f45a-f45b, U+f45d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.7.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.7.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.7.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.7.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.7.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.7.svg#fontawesome)
            format("svg");
    unicode-range: U+f0d1, U+f0f1, U+f0f9, U+f21e, U+f461, U+f463-f46f,
        U+f472-f475, U+f479-f47a, U+f47d-f47e, U+f481-f487, U+f489, U+f48b-f496;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.9.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.9.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.9.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.9.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.9.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.9.svg#fontawesome)
            format("svg");
    unicode-range: U+f03d, U+f06c, U+f086, U+f0f2, U+f10d-f10e, U+f187, U+f2b5,
        U+f2e9, U+f2fe, U+f3dd, U+f47b-f47c, U+f498, U+f49a-f49b, U+f49d,
        U+f49f-f4b9, U+f4bb-f4bf, U+f4c2-f4c6, U+f4c8, U+f4cb-f4d2, U+f4d4,
        U+f4d6, U+f4d8-f4d9, U+f4db-f4e2;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.10.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.10.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.10.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.10.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.10.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.10.svg#fontawesome)
            format("svg");
    unicode-range: U+f471, U+f4ca;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.11.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.11.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.11.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.11.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.11.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.11.svg#fontawesome)
            format("svg");
    unicode-range: U+f007, U+f0c0, U+f0c2, U+f0ed-f0ee, U+f0f0, U+f1de, U+f21b,
        U+f234-f235, U+f381-f382, U+f3f1, U+f406, U+f4fa-f501, U+f503-f509;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.13.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.13.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.13.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.13.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.13.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.0.13.svg#fontawesome)
            format("svg");
    unicode-range: U+f010, U+f067, U+f072, U+f0ad, U+f0d6, U+f0e8, U+f130-f131,
        U+f24e, U+f3c9, U+f3d1, U+f517, U+f519-f51e, U+f520-f52c, U+f52e,
        U+f530-f533, U+f535-f543, U+f545-f54b, U+f54d, U+f54f-f552, U+f554-f555;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.1.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.1.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.1.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.1.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.1.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.1.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f043, U+f0c4, U+f0d0, U+f125, U+f1ba, U+f1fb-f1fc, U+f207,
        U+f236, U+f279, U+f304-f305, U+f52d, U+f557-f558, U+f55a-f55f,
        U+f562-f566, U+f568, U+f56a-f56b, U+f575-f577, U+f57b, U+f586, U+f588,
        U+f58d-f590, U+f593-f595, U+f59d, U+f59f-f5a2, U+f5a6-f5a7, U+f5a9-f5af,
        U+f5b1, U+f5b6, U+f5b9-f5bd, U+f5c4-f5c5, U+f5c7, U+f5c9-f5cb, U+f5cd;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.1.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.1.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.1.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.1.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.1.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.1.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f386;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.2.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.2.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.2.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.2.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.2.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.2.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f018, U+f0e4, U+f109, U+f1b9, U+f1e5, U+f1f6, U+f21d,
        U+f276-f277, U+f3fd, U+f4d7, U+f518, U+f5d1, U+f5d4-f5da, U+f5dd,
        U+f5df-f5e5, U+f5e8-f5ea, U+f5ed-f5f0, U+f5f2, U+f5f4-f5f5, U+f5f8-f5f9,
        U+f5fb-f600, U+f603-f60e, U+f610, U+f614, U+f617-f619, U+f61c-f61e,
        U+f620-f621, U+f623-f62f, U+f633, U+f635-f63d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.3.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.3.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.3.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.3.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.3.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.3.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f027-f028, U+f080, U+f0a1, U+f0b1, U+f0eb, U+f200-f201,
        U+f2e2, U+f61a, U+f640, U+f643-f647, U+f64a-f64b, U+f64d-f653,
        U+f655-f656, U+f65d, U+f65f-f663, U+f665, U+f667-f669, U+f66b-f671,
        U+f673-f675, U+f678-f67b, U+f67d-f680, U+f683-f689, U+f68b, U+f694-f695,
        U+f697-f699, U+f69b-f69c, U+f69e-f69f, U+f6a1-f6a9, U+f6ac;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.4.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.4.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.4.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.4.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.4.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.4.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f499, U+f676, U+f6ae, U+f6b0-f6b3, U+f6b5-f6bc, U+f6bf,
        U+f6c2, U+f6c5, U+f6c7-f6c8, U+f6cb, U+f6cd-f6d2, U+f6d5, U+f6d8-f6d9,
        U+f6db, U+f6de, U+f6e2-f6e3, U+f6e5-f6e7, U+f6e9-f6ec, U+f6ee,
        U+f6f1-f6f3, U+f6f5-f6f8, U+f6fc-f6fd, U+f6ff-f703, U+f707, U+f70a-f70b,
        U+f711-f713, U+f715-f71d, U+f720-f724, U+f726-f729, U+f72b, U+f72d,
        U+f72f;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.4.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.4.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.4.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.4.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.4.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.4.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f72a;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.5.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.5.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.5.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.5.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.5.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.5.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f0e7, U+f185, U+f2dc, U+f6c3-f6c4, U+f72e, U+f732-f735,
        U+f737-f750, U+f752, U+f754-f758, U+f75a, U+f75c, U+f75e-f761,
        U+f763-f76e, U+f771-f776;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f06b, U+f5b7, U+f77d, U+f77f, U+f781-f782, U+f788,
        U+f78a-f78c, U+f78e-f78f, U+f792-f796, U+f79a-f7a1, U+f7a3-f7a4,
        U+f7a7-f7a8, U+f7aa, U+f7ac-f7ae, U+f7b4-f7b6, U+f7b8, U+f7bd-f7be,
        U+f7c1-f7c3, U+f7c5, U+f7c7-f7d2, U+f7d4, U+f7d7-f7d8, U+f7da-f7dc,
        U+f7de, U+f7e2;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f071;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.3.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.3.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.3.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.3.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.3.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.6.3.svg#fontawesome)
            format("svg");
    unicode-range: U+f7e4;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.7.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.7.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.7.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.7.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.7.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.7.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f00a, U+f015, U+f06e, U+f070, U+f1e4, U+f2a0, U+f377,
        U+f470, U+f49c, U+f49e, U+f4c9, U+f6d6-f6d7, U+f705, U+f725, U+f77e,
        U+f780, U+f7e5-f7e7, U+f7e9-f7f0, U+f7f2-f7fc, U+f7fe, U+f800-f802,
        U+f804-f805, U+f807-f80c, U+f80e-f80f, U+f811-f812, U+f814-f818, U+f81b,
        U+f81e-f823, U+f825-f827, U+f82c-f82e, U+f830-f833;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.7.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.7.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.7.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.7.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.7.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.7.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f7f1;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.8.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.8.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.8.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.8.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.8.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.8.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f01e, U+f021, U+f026, U+f076, U+f12d, U+f31e, U+f356,
        U+f45f, U+f5b0, U+f83e;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.8.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.8.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.8.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.8.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.8.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.8.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f560;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.9.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.9.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.9.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.9.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.9.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.9.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f036-f03c, U+f0ae, U+f0ca-f0cd, U+f15d-f15e, U+f160-f163,
        U+f1dd, U+f313-f315, U+f34e, U+f439-f448, U+f502, U+f677, U+f843-f855,
        U+f858-f85e, U+f860-f862, U+f864, U+f866-f878, U+f87a, U+f87c-f87d,
        U+f880-f892, U+f897-f89b;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.10.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.10.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.10.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.10.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.10.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.10.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f000, U+f012, U+f029, U+f03e, U+f06d, U+f075, U+f07b,
        U+f083-f084, U+f0a0, U+f11e, U+f19d, U+f20a, U+f247-f248, U+f251-f254,
        U+f25d, U+f275, U+f27a, U+f2c2, U+f2d1, U+f302, U+f310-f311, U+f34d,
        U+f3a5, U+f435, U+f454, U+f456, U+f476, U+f47f-f480, U+f52f, U+f534,
        U+f561, U+f578, U+f591, U+f5db, U+f5e7, U+f5f6, U+f611, U+f613, U+f654,
        U+f681-f682, U+f68c-f693, U+f6be, U+f6da, U+f6e4, U+f6ed, U+f6ef-f6f0,
        U+f6f4, U+f6fa-f6fb, U+f6fe, U+f72c, U+f751, U+f759, U+f75b, U+f779,
        U+f77c, U+f786-f787, U+f7ab, U+f7b2, U+f7b7, U+f7e8, U+f813, U+f863,
        U+f87b, U+f89c-f89d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.10.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.10.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.10.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.10.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.10.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.10.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f004-f005, U+f02c, U+f02e, U+f031-f035, U+f04b-f04d, U+f056,
        U+f073, U+f08d, U+f095, U+f0a3, U+f0c5, U+f0c7-f0c8, U+f0dc-f0de, U+f0e0,
        U+f110-f111, U+f129-f12c, U+f132-f133, U+f144-f145, U+f15b-f15c,
        U+f164-f165, U+f193, U+f197, U+f1ab, U+f1c1-f1c9, U+f1ce, U+f1dc,
        U+f1f8-f1f9, U+f219, U+f249, U+f271-f274, U+f29a, U+f29e, U+f2a7, U+f2b6,
        U+f2e1, U+f2e3-f2e5, U+f2ec-f2ed, U+f2f2, U+f2f4, U+f2fa-f2fc, U+f306,
        U+f312, U+f316, U+f31a, U+f31c, U+f327, U+f333-f335, U+f3f4, U+f3ff,
        U+f45c, U+f460, U+f462, U+f477-f478, U+f497, U+f4ba, U+f4d3, U+f54c,
        U+f553, U+f559, U+f56c-f574, U+f5bf, U+f5c1, U+f5f3, U+f630-f632, U+f634,
        U+f63e, U+f641, U+f659-f65c, U+f696, U+f6a0, U+f6b4, U+f6bd, U+f6dd,
        U+f706, U+f708-f709, U+f70d-f710, U+f714, U+f71e-f71f, U+f736,
        U+f76f-f770, U+f777, U+f783-f784, U+f7a9, U+f7c4, U+f7d5, U+f7d9, U+f7dd,
        U+f7fd, U+f81c-f81d, U+f824, U+f828-f82a, U+f856-f857, U+f865, U+f879,
        U+f87e, U+f893-f896;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f001, U+f02f, U+f042, U+f08e, U+f091, U+f0f3, U+f104-f105,
        U+f11b, U+f13d, U+f149, U+f1ac, U+f1ec, U+f223, U+f225, U+f22a-f22c,
        U+f24d, U+f26c, U+f29d, U+f2eb, U+f2ee, U+f2f3, U+f300, U+f307,
        U+f323-f324, U+f338, U+f33d, U+f35d, U+f48a, U+f4c0, U+f569, U+f5dc,
        U+f5eb, U+f601, U+f61b, U+f64c, U+f664, U+f66a, U+f68a, U+f6c0-f6c1,
        U+f6df-f6e1, U+f6e8, U+f6f9, U+f70c, U+f7a6, U+f81a, U+f89f-f8a5,
        U+f8a7-f8b6, U+f8b8-f8b9, U+f8bb-f8c9, U+f8cb-f8d1, U+f8d3, U+f8d5-f8dd,
        U+f8df-f8e0, U+f8e2-f8e7, U+f8e9-f8ed, U+f8ef-f8f2;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f00d, U+f048, U+f051, U+f0ac, U+f0b0, U+f118-f11a, U+f148,
        U+f14e, U+f155, U+f186, U+f19c, U+f1eb, U+f21a, U+f221, U+f22d, U+f2bd,
        U+f2e8, U+f2f8, U+f354, U+f357, U+f433-f434, U+f436, U+f44e, U+f45e,
        U+f4c7, U+f4da, U+f4e3, U+f51f, U+f54e, U+f556, U+f567, U+f579-f57a,
        U+f57c-f585, U+f587, U+f589-f58a, U+f58c, U+f596-f59c, U+f5a4-f5a5,
        U+f5b3-f5b4, U+f5b8, U+f5c0, U+f5c2-f5c3, U+f5c8, U+f5ce, U+f5de, U+f5e6,
        U+f5ec, U+f602, U+f615-f616, U+f622, U+f648-f649, U+f67c, U+f69a,
        U+f6aa-f6ab, U+f6ad, U+f7a2, U+f7a5, U+f7b9-f7ba, U+f7ff, U+f803, U+f806,
        U+f810, U+f819, U+f82b, U+f87f, U+f8de, U+f8ee;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.11.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f488, U+f8b7, U+f8f3;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.12.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.12.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.12.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.12.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.12.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.12.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f135, U+f1e6, U+f259, U+f2cc-f2cd, U+f422, U+f424,
        U+f515-f516, U+f544, U+f58b, U+f5d2-f5d3, U+f61f, U+f657-f658, U+f666,
        U+f672, U+f6d3-f6d4, U+f753, U+f762, U+f7bf-f7c0, U+f82f, U+f8ba, U+f8d4,
        U+f8f4-f8ff;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.12.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.12.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.12.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.12.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.12.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.12.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f017, U+f317-f319, U+f65e, U+f6c6;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.13.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.13.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.13.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.13.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.13.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.13.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f4c1, U+f80d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.14.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.14.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.14.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.14.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.14.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.14.0.svg#fontawesome)
            format("svg");
    unicode-range: U+e000-e006, U+e008-e012, U+e014-e019, U+e01b-e01d,
        U+e01f-e048, U+e04a-e051, U+e053-e054, U+e058-e076;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.1.svg#fontawesome)
            format("svg");
    unicode-range: U+e085-e086;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.3.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.3.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.3.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.3.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.3.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.3.svg#fontawesome)
            format("svg");
    unicode-range: U+f5d0;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.4.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.4.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.4.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.4.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.4.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-light-300-5.15.4.svg#fontawesome)
            format("svg");
    unicode-range: U+f140, U+f188, U+f4e6, U+f85f;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f022, U+f024, U+f044, U+f057-f059, U+f07c, U+f089, U+f094,
        U+f09d, U+f0a4-f0a7, U+f0f8, U+f0fe, U+f11c, U+f146, U+f14a, U+f14d,
        U+f150-f152, U+f191-f192, U+f1ad, U+f1cd, U+f1d8, U+f1ea, U+f255-f258,
        U+f25a-f25b, U+f28b, U+f28d, U+f2d0, U+f2d2, U+f328, U+f358-f35b, U+f410;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f002, U+f008-f009, U+f00b-f00c, U+f00e, U+f011, U+f013,
        U+f019, U+f01c, U+f023, U+f025, U+f02a-f02b, U+f02d, U+f030, U+f040-f041,
        U+f047, U+f049-f04a, U+f04e, U+f050, U+f052-f055, U+f05a-f05b, U+f05e,
        U+f060-f066, U+f068-f06a, U+f074, U+f077-f07a, U+f07d-f07e, U+f085,
        U+f08b, U+f090, U+f093, U+f098, U+f09c, U+f09e, U+f0a8-f0ab, U+f0b2,
        U+f0c1, U+f0c3, U+f0c6, U+f0c9, U+f0ce, U+f0d7-f0db, U+f0e2-f0e3,
        U+f0e9-f0ea, U+f0ec, U+f0f4, U+f0fa-f0fd, U+f100-f103, U+f106-f108,
        U+f10a-f10b, U+f120-f122, U+f124, U+f126-f128, U+f12e, U+f134,
        U+f137-f13a, U+f13e, U+f141-f143, U+f14b-f14c, U+f153-f154, U+f156-f159,
        U+f175-f178, U+f182-f183, U+f195, U+f199, U+f1ae, U+f1b0, U+f1b2-f1b3,
        U+f1b8, U+f1bb, U+f1c0, U+f1da, U+f1e0-f1e2, U+f1fa, U+f1fd-f1fe,
        U+f204-f206, U+f20b, U+f217-f218, U+f21c, U+f222, U+f224, U+f226-f229,
        U+f233, U+f238-f239, U+f240-f244, U+f246, U+f25c, U+f290-f292, U+f295,
        U+f2a1-f2a4, U+f2a8, U+f2c7-f2cb, U+f2ce, U+f2d3, U+f2db, U+f2e6-f2e7,
        U+f2ea, U+f2f0-f2f1, U+f2f5-f2f7, U+f2f9, U+f2fd, U+f301, U+f303,
        U+f308-f30f, U+f31d, U+f320-f322, U+f325-f326, U+f329-f32e, U+f330-f332,
        U+f336-f337, U+f339-f33c, U+f33e, U+f340-f34c, U+f350-f353, U+f355,
        U+f360-f367, U+f376, U+f37e, U+f387, U+f389-f38a, U+f390, U+f39b-f39c,
        U+f3a0, U+f3b3, U+f3be-f3bf, U+f3c2, U+f3c5, U+f3cd-f3cf, U+f3de, U+f3e5,
        U+f3ed, U+f3f0, U+f3f2, U+f3fa-f3fc, U+f400-f401, U+f40e-f40f;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f3c1;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.3.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.3.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.3.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.3.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.3.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.3.svg#fontawesome)
            format("svg");
    unicode-range: U+f2b9, U+f2bb, U+f2c1;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.3.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.3.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.3.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.3.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.3.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.3.svg#fontawesome)
            format("svg");
    unicode-range: U+f245, U+f3e0;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.5.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.5.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.5.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.5.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.5.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.5.svg#fontawesome)
            format("svg");
    unicode-range: U+f1e3;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.5.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.5.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.5.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.5.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.5.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.5.svg#fontawesome)
            format("svg");
    unicode-range: U+f432, U+f437-f438, U+f449-f44c, U+f44f-f451, U+f453, U+f455,
        U+f458, U+f45a-f45b, U+f45d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.7.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.7.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.7.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.7.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.7.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.7.svg#fontawesome)
            format("svg");
    unicode-range: U+f0d1, U+f0f1, U+f0f9, U+f21e, U+f461, U+f463-f46f,
        U+f472-f475, U+f479-f47a, U+f47d-f47e, U+f481-f487, U+f489, U+f48b-f496;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.9.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.9.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.9.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.9.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.9.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.9.svg#fontawesome)
            format("svg");
    unicode-range: U+f086, U+f2b5, U+f4ad;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.9.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.9.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.9.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.9.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.9.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.9.svg#fontawesome)
            format("svg");
    unicode-range: U+f03d, U+f06c, U+f0f2, U+f10d-f10e, U+f187, U+f2e9, U+f2fe,
        U+f3dd, U+f47b-f47c, U+f498, U+f49a-f49b, U+f49d, U+f49f-f4ac,
        U+f4ae-f4b9, U+f4bb-f4bf, U+f4c2-f4c6, U+f4c8, U+f4cb-f4d2, U+f4d4,
        U+f4d6, U+f4d8-f4d9, U+f4db-f4e2;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.10.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.10.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.10.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.10.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.10.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.10.svg#fontawesome)
            format("svg");
    unicode-range: U+f471, U+f4ca;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.11.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.11.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.11.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.11.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.11.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.11.svg#fontawesome)
            format("svg");
    unicode-range: U+f007;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.11.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.11.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.11.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.11.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.11.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.11.svg#fontawesome)
            format("svg");
    unicode-range: U+f0c0, U+f0c2, U+f0ed-f0ee, U+f0f0, U+f1de, U+f21b,
        U+f234-f235, U+f381-f382, U+f3f1, U+f406, U+f4fa-f501, U+f503-f509;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.13.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.13.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.13.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.13.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.13.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.13.svg#fontawesome)
            format("svg");
    unicode-range: U+f3d1;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.13.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.13.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.13.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.13.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.13.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.0.13.svg#fontawesome)
            format("svg");
    unicode-range: U+f010, U+f067, U+f072, U+f0ad, U+f0d6, U+f0e8, U+f130-f131,
        U+f24e, U+f3c9, U+f517, U+f519-f51e, U+f520-f52c, U+f52e, U+f530-f533,
        U+f535-f543, U+f545-f54b, U+f54d, U+f54f-f552, U+f554-f555;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f279, U+f586, U+f588;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f043, U+f0c4, U+f0d0, U+f125, U+f1ba, U+f1fb-f1fc, U+f207,
        U+f236, U+f304-f305, U+f52d, U+f557-f558, U+f55a-f55f, U+f562-f566,
        U+f568, U+f56a-f56b, U+f575-f577, U+f57b, U+f58d-f590, U+f593-f595,
        U+f59d, U+f59f-f5a2, U+f5a6-f5a7, U+f5a9-f5af, U+f5b1, U+f5b6,
        U+f5b9-f5bd, U+f5c4-f5c5, U+f5c7, U+f5c9-f5cb, U+f5cd;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.1.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f386;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.2.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.2.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.2.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.2.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.2.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.2.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f1f6;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.2.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.2.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.2.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.2.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.2.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.2.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f018, U+f0e4, U+f109, U+f1b9, U+f1e5, U+f21d, U+f276-f277,
        U+f3fd, U+f4d7, U+f518, U+f5d1, U+f5d4-f5da, U+f5dd, U+f5df-f5e5,
        U+f5e8-f5ea, U+f5ed-f5f0, U+f5f2, U+f5f4-f5f5, U+f5f8-f5f9, U+f5fb-f600,
        U+f603-f60e, U+f610, U+f614, U+f617-f619, U+f61c-f61e, U+f620-f621,
        U+f623-f62f, U+f633, U+f635-f63d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.3.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.3.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.3.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.3.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.3.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.3.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f080, U+f0eb;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.3.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.3.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.3.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.3.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.3.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.3.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f027-f028, U+f0a1, U+f0b1, U+f200-f201, U+f2e2, U+f61a,
        U+f640, U+f643-f647, U+f64a-f64b, U+f64d-f653, U+f655-f656, U+f65d,
        U+f65f-f663, U+f665, U+f667-f669, U+f66b-f671, U+f673-f675, U+f678-f67b,
        U+f67d-f680, U+f683-f689, U+f68b, U+f694-f695, U+f697-f699, U+f69b-f69c,
        U+f69e-f69f, U+f6a1-f6a9, U+f6ac;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.4.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.4.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.4.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.4.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.4.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.4.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f499, U+f676, U+f6ae, U+f6b0-f6b3, U+f6b5-f6bc, U+f6bf,
        U+f6c2, U+f6c5, U+f6c7-f6c8, U+f6cb, U+f6cd-f6d2, U+f6d5, U+f6d8-f6d9,
        U+f6db, U+f6de, U+f6e2-f6e3, U+f6e5-f6e7, U+f6e9-f6ec, U+f6ee,
        U+f6f1-f6f3, U+f6f5-f6f8, U+f6fc-f6fd, U+f6ff-f703, U+f707, U+f70a-f70b,
        U+f711-f713, U+f715-f71d, U+f720-f724, U+f726-f729, U+f72b, U+f72d,
        U+f72f;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.4.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.4.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.4.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.4.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.4.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.4.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f72a;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.5.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.5.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.5.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.5.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.5.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.5.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f185, U+f2dc;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.5.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.5.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.5.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.5.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.5.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.5.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f0e7, U+f6c3-f6c4, U+f72e, U+f732-f735, U+f737-f750, U+f752,
        U+f754-f758, U+f75a, U+f75c, U+f75e-f761, U+f763-f76e, U+f771-f776;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f06b, U+f5b7, U+f77d, U+f77f, U+f781-f782, U+f788,
        U+f78a-f78c, U+f78e-f78f, U+f792-f796, U+f79a-f7a1, U+f7a3-f7a4,
        U+f7a7-f7a8, U+f7aa, U+f7ac-f7ae, U+f7b4-f7b6, U+f7b8, U+f7bd-f7be,
        U+f7c1-f7c3, U+f7c5, U+f7c7-f7d2, U+f7d4, U+f7d7-f7d8, U+f7da-f7dc,
        U+f7de, U+f7e2;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f071;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.3.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.3.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.3.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.3.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.3.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.6.3.svg#fontawesome)
            format("svg");
    unicode-range: U+f7e4;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f06e, U+f070;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f00a, U+f015, U+f1e4, U+f2a0, U+f377, U+f470, U+f49c,
        U+f49e, U+f4c9, U+f6d6-f6d7, U+f705, U+f725, U+f77e, U+f780, U+f7e5-f7e7,
        U+f7e9-f7f0, U+f7f2-f7fc, U+f7fe, U+f800-f802, U+f804-f805, U+f807-f80c,
        U+f80e-f80f, U+f811-f812, U+f814-f818, U+f81b, U+f81e-f823, U+f825-f827,
        U+f82c-f82e, U+f830-f833;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.7.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f7f1;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.8.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.8.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.8.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.8.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.8.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.8.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f01e, U+f021, U+f026, U+f076, U+f12d, U+f31e, U+f356,
        U+f45f, U+f5b0, U+f83e;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.8.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.8.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.8.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.8.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.8.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.8.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f560;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.9.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.9.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.9.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.9.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.9.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.9.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f036-f03c, U+f0ae, U+f0ca-f0cd, U+f15d-f15e, U+f160-f163,
        U+f1dd, U+f313-f315, U+f34e, U+f439-f448, U+f502, U+f677, U+f843-f855,
        U+f858-f85e, U+f860-f862, U+f864, U+f866-f878, U+f87a, U+f87c-f87d,
        U+f880-f892, U+f897-f89b;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f03e, U+f075, U+f07b, U+f0a0, U+f20a, U+f247-f248, U+f254,
        U+f25d, U+f27a, U+f2c2, U+f2d1, U+f302, U+f3a5;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f000, U+f012, U+f029, U+f06d, U+f083-f084, U+f11e, U+f19d,
        U+f251-f253, U+f275, U+f310-f311, U+f34d, U+f435, U+f454, U+f456, U+f476,
        U+f47f-f480, U+f52f, U+f534, U+f561, U+f578, U+f591, U+f5db, U+f5e7,
        U+f5f6, U+f611, U+f613, U+f654, U+f681-f682, U+f68c-f693, U+f6be, U+f6da,
        U+f6e4, U+f6ed, U+f6ef-f6f0, U+f6f4, U+f6fa-f6fb, U+f6fe, U+f72c, U+f751,
        U+f759, U+f75b, U+f779, U+f77c, U+f786-f787, U+f7ab, U+f7b2, U+f7b7,
        U+f7e8, U+f813, U+f863, U+f87b, U+f89c-f89d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f004-f005, U+f02e, U+f073, U+f0c5, U+f0c7-f0c8, U+f0e0,
        U+f111, U+f133, U+f144, U+f15b-f15c, U+f164-f165, U+f1c1-f1c9, U+f1f9,
        U+f249, U+f271-f274, U+f2b6, U+f2ed;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.10.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f02c, U+f031-f035, U+f04b-f04d, U+f056, U+f08d, U+f095,
        U+f0a3, U+f0dc-f0de, U+f110, U+f129-f12c, U+f132, U+f145, U+f193, U+f197,
        U+f1ab, U+f1ce, U+f1dc, U+f1f8, U+f219, U+f29a, U+f29e, U+f2a7, U+f2e1,
        U+f2e3-f2e5, U+f2ec, U+f2f2, U+f2f4, U+f2fa-f2fc, U+f306, U+f312, U+f316,
        U+f31a, U+f31c, U+f327, U+f333-f335, U+f3f4, U+f3ff, U+f45c, U+f460,
        U+f462, U+f477-f478, U+f497, U+f4ba, U+f4d3, U+f54c, U+f553, U+f559,
        U+f56c-f574, U+f5bf, U+f5c1, U+f5f3, U+f630-f632, U+f634, U+f63e, U+f641,
        U+f659-f65c, U+f696, U+f6a0, U+f6b4, U+f6bd, U+f6dd, U+f706, U+f708-f709,
        U+f70d-f710, U+f714, U+f71e-f71f, U+f736, U+f76f-f770, U+f777,
        U+f783-f784, U+f7a9, U+f7c4, U+f7d5, U+f7d9, U+f7dd, U+f7fd, U+f81c-f81d,
        U+f824, U+f828-f82a, U+f856-f857, U+f865, U+f879, U+f87e, U+f893-f896;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f0f3, U+f24d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f001, U+f02f, U+f042, U+f08e, U+f091, U+f104-f105, U+f11b,
        U+f13d, U+f149, U+f1ac, U+f1ec, U+f223, U+f225, U+f22a-f22c, U+f26c,
        U+f29d, U+f2eb, U+f2ee, U+f2f3, U+f300, U+f307, U+f323-f324, U+f338,
        U+f33d, U+f35d, U+f48a, U+f4c0, U+f569, U+f5dc, U+f5eb, U+f601, U+f61b,
        U+f64c, U+f664, U+f66a, U+f68a, U+f6c0-f6c1, U+f6df-f6e1, U+f6e8, U+f6f9,
        U+f70c, U+f7a6, U+f81a, U+f89f-f8a5, U+f8a7-f8b6, U+f8b8-f8b9,
        U+f8bb-f8c9, U+f8cb-f8d1, U+f8d3, U+f8d5-f8dd, U+f8df-f8e0, U+f8e2-f8e7,
        U+f8e9-f8ed, U+f8ef-f8f2;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f118-f11a, U+f14e, U+f186, U+f2bd, U+f4da, U+f556, U+f567,
        U+f579-f57a, U+f57f-f585, U+f587, U+f589-f58a, U+f58c, U+f596-f59c,
        U+f5a4-f5a5, U+f5b3-f5b4, U+f5b8, U+f5c2, U+f5c8;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f00d, U+f048, U+f051, U+f0ac, U+f0b0, U+f148, U+f155,
        U+f19c, U+f1eb, U+f21a, U+f221, U+f22d, U+f2e8, U+f2f8, U+f354, U+f357,
        U+f433-f434, U+f436, U+f44e, U+f45e, U+f4c7, U+f4e3, U+f51f, U+f54e,
        U+f57c-f57e, U+f5c0, U+f5c3, U+f5ce, U+f5de, U+f5e6, U+f5ec, U+f602,
        U+f615-f616, U+f622, U+f648-f649, U+f67c, U+f69a, U+f6aa-f6ab, U+f6ad,
        U+f7a2, U+f7a5, U+f7b9-f7ba, U+f7ff, U+f803, U+f806, U+f810, U+f819,
        U+f82b, U+f87f, U+f8de, U+f8ee;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.11.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f488, U+f8b7, U+f8f3;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f259, U+f58b;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f135, U+f1e6, U+f2cc-f2cd, U+f422, U+f424, U+f515-f516,
        U+f544, U+f5d2-f5d3, U+f61f, U+f657-f658, U+f666, U+f672, U+f6d3-f6d4,
        U+f753, U+f762, U+f7bf-f7c0, U+f82f, U+f8ba, U+f8d4, U+f8f4-f8ff;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f017;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.12.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f317-f319, U+f65e, U+f6c6;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.13.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.13.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.13.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.13.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.13.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.13.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f4c1, U+f80d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.14.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.14.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.14.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.14.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.14.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.14.0.svg#fontawesome)
            format("svg");
    unicode-range: U+e000-e006, U+e008-e012, U+e014-e019, U+e01b-e01d,
        U+e01f-e048, U+e04a-e051, U+e053-e054, U+e058-e076;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.1.svg#fontawesome)
            format("svg");
    unicode-range: U+e085-e086;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.3.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.3.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.3.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.3.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.3.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.3.svg#fontawesome)
            format("svg");
    unicode-range: U+f5d0;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.4.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.4.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.4.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.4.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.4.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.4.svg#fontawesome)
            format("svg");
    unicode-range: U+f4e6;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.4.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.4.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.4.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.4.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.4.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-regular-400-5.15.4.svg#fontawesome)
            format("svg");
    unicode-range: U+f140, U+f188, U+f85f;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f002, U+f008-f009, U+f00b-f00c, U+f00e, U+f011, U+f013,
        U+f019, U+f01c, U+f022-f025, U+f02a-f02b, U+f02d, U+f030, U+f041, U+f044,
        U+f049-f04a, U+f04e, U+f050, U+f052-f055, U+f057-f05b, U+f05e,
        U+f060-f066, U+f068-f06a, U+f074, U+f077-f07a, U+f07c, U+f085, U+f089,
        U+f093-f094, U+f098, U+f09c-f09e, U+f0a4-f0ab, U+f0b2, U+f0c1, U+f0c3,
        U+f0c6, U+f0c9, U+f0ce, U+f0d7-f0db, U+f0e2-f0e3, U+f0e9-f0ea, U+f0f4,
        U+f0f8, U+f0fa-f0fe, U+f100-f103, U+f106-f108, U+f10a-f10b, U+f11c,
        U+f120-f122, U+f124, U+f126-f128, U+f12e, U+f134, U+f137-f13a, U+f13e,
        U+f141-f143, U+f146, U+f14a-f14b, U+f14d, U+f150-f154, U+f156-f159,
        U+f182-f183, U+f191-f192, U+f195, U+f199, U+f1ad-f1ae, U+f1b0,
        U+f1b2-f1b3, U+f1b8, U+f1bb, U+f1c0, U+f1cd, U+f1d8, U+f1da, U+f1e0-f1e2,
        U+f1ea, U+f1fa, U+f1fd-f1fe, U+f204-f206, U+f20b, U+f217-f218, U+f21c,
        U+f222, U+f224, U+f226-f229, U+f233, U+f238-f239, U+f240-f244, U+f246,
        U+f255-f258, U+f25a-f25c, U+f28b, U+f28d, U+f290-f292, U+f295,
        U+f2a1-f2a4, U+f2a8, U+f2c7-f2cb, U+f2ce, U+f2d0, U+f2d2, U+f2db, U+f2e7,
        U+f2ea, U+f2f1, U+f2f5-f2f6, U+f2f9, U+f303, U+f309-f30c, U+f328, U+f337,
        U+f358-f35b, U+f360, U+f362, U+f3be-f3bf, U+f3c5, U+f3cd, U+f3e5, U+f3ed,
        U+f3fa, U+f410;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f040, U+f047, U+f07d-f07e, U+f08b, U+f090, U+f0ec, U+f14c,
        U+f175-f178, U+f2d3, U+f2e6, U+f2f0, U+f2f7, U+f2fd, U+f301, U+f308,
        U+f30d-f30f, U+f31d, U+f320-f322, U+f325-f326, U+f329-f32e, U+f330-f332,
        U+f336, U+f339-f33c, U+f33e, U+f340-f34c, U+f350-f353, U+f355, U+f361,
        U+f363-f367, U+f376, U+f37e, U+f387, U+f389-f38a, U+f390, U+f39b-f39c,
        U+f3a0, U+f3b3, U+f3c2, U+f3ce-f3cf, U+f3de, U+f3f0, U+f3f2, U+f3fb-f3fc,
        U+f400-f401, U+f40e-f40f;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f3c1;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.3.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.3.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.3.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.3.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.3.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.3.svg#fontawesome)
            format("svg");
    unicode-range: U+f245, U+f2b9, U+f2bb, U+f2c1, U+f3e0;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.5.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.5.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.5.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.5.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.5.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.5.svg#fontawesome)
            format("svg");
    unicode-range: U+f1e3, U+f44b, U+f450, U+f453, U+f458, U+f45d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.5.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.5.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.5.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.5.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.5.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.5.svg#fontawesome)
            format("svg");
    unicode-range: U+f432, U+f437-f438, U+f449-f44a, U+f44c, U+f44f, U+f451,
        U+f455, U+f45a-f45b;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.7.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.7.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.7.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.7.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.7.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.7.svg#fontawesome)
            format("svg");
    unicode-range: U+f0d1, U+f0f1, U+f0f9, U+f21e, U+f461, U+f466, U+f468-f46d,
        U+f472, U+f474, U+f479, U+f47d-f47e, U+f481-f482, U+f484-f487, U+f48b,
        U+f48d-f48e, U+f490-f494, U+f496;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.7.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.7.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.7.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.7.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.7.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.7.svg#fontawesome)
            format("svg");
    unicode-range: U+f463-f465, U+f467, U+f46e-f46f, U+f473, U+f475, U+f47a,
        U+f483, U+f489, U+f48c, U+f48f, U+f495;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.9.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.9.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.9.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.9.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.9.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.9.svg#fontawesome)
            format("svg");
    unicode-range: U+f03d, U+f06c, U+f086, U+f0f2, U+f10d-f10e, U+f187, U+f2b5,
        U+f2fe, U+f3dd, U+f4ad, U+f4b3, U+f4b8-f4b9, U+f4bd-f4be, U+f4c2, U+f4c4,
        U+f4cd-f4ce, U+f4d6, U+f4d8-f4d9, U+f4db, U+f4de-f4df, U+f4e2;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.9.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.9.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.9.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.9.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.9.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.9.svg#fontawesome)
            format("svg");
    unicode-range: U+f2e9, U+f47b-f47c, U+f498, U+f49a-f49b, U+f49d, U+f49f-f4ac,
        U+f4ae-f4b2, U+f4b4-f4b7, U+f4bb-f4bc, U+f4bf, U+f4c3, U+f4c5-f4c6,
        U+f4c8, U+f4cb-f4cc, U+f4cf-f4d2, U+f4d4, U+f4dc-f4dd, U+f4e0-f4e1;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.10.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.10.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.10.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.10.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.10.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.10.svg#fontawesome)
            format("svg");
    unicode-range: U+f471;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.10.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.10.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.10.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.10.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.10.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.10.svg#fontawesome)
            format("svg");
    unicode-range: U+f4ca;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.11.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.11.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.11.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.11.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.11.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.11.svg#fontawesome)
            format("svg");
    unicode-range: U+f007, U+f0c0, U+f0c2, U+f0f0, U+f1de, U+f21b, U+f234-f235,
        U+f381-f382, U+f406, U+f4fa-f501, U+f503-f509;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.11.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.11.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.11.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.11.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.11.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.11.svg#fontawesome)
            format("svg");
    unicode-range: U+f0ed-f0ee, U+f3f1;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.13.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.13.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.13.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.13.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.13.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.0.13.svg#fontawesome)
            format("svg");
    unicode-range: U+f010, U+f067, U+f072, U+f0ad, U+f0d6, U+f0e8, U+f130-f131,
        U+f24e, U+f3c9, U+f3d1, U+f517, U+f519-f51e, U+f520-f52c, U+f52e,
        U+f530-f533, U+f535-f543, U+f545-f54b, U+f54d, U+f54f-f552, U+f554-f555;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f043, U+f0c4, U+f0d0, U+f125, U+f1ba, U+f1fb-f1fc, U+f207,
        U+f236, U+f279, U+f304-f305, U+f52d, U+f557-f558, U+f55a-f55f,
        U+f562-f566, U+f568, U+f56a-f56b, U+f575-f577, U+f57b, U+f586, U+f588,
        U+f58d-f590, U+f593-f595, U+f59d, U+f59f-f5a2, U+f5a6-f5a7, U+f5aa-f5af,
        U+f5b1, U+f5b6, U+f5ba-f5bd, U+f5c4-f5c5, U+f5c7, U+f5c9-f5cb, U+f5cd;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f5a9, U+f5b9;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.1.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f386;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.2.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.2.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.2.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.2.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.2.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.2.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f018, U+f109, U+f1b9, U+f1e5, U+f1f6, U+f21d, U+f276-f277,
        U+f3fd, U+f4d7, U+f518, U+f5d1, U+f5d7, U+f5da, U+f5df, U+f5e1, U+f5e4,
        U+f5ee, U+f5fc-f5fd, U+f604, U+f610, U+f619, U+f621, U+f62e-f62f, U+f637,
        U+f63b-f63c;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.2.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.2.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.2.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.2.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.2.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.2.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f0e4, U+f5d4-f5d6, U+f5d8-f5d9, U+f5dd, U+f5e0, U+f5e2-f5e3,
        U+f5e5, U+f5e8-f5ea, U+f5ed, U+f5ef-f5f0, U+f5f2, U+f5f4-f5f5,
        U+f5f8-f5f9, U+f5fb, U+f5fe-f600, U+f603, U+f605-f60e, U+f614,
        U+f617-f618, U+f61c-f61e, U+f620, U+f623-f62d, U+f633, U+f635-f636,
        U+f638-f63a, U+f63d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.3.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.3.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.3.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.3.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.3.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.3.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f027-f028, U+f080, U+f0a1, U+f0b1, U+f0eb, U+f200-f201,
        U+f644, U+f647, U+f64a, U+f64f, U+f651, U+f653, U+f655, U+f65d, U+f662,
        U+f665, U+f669, U+f66b, U+f66d, U+f66f, U+f674, U+f678-f679, U+f67b,
        U+f67f, U+f683-f684, U+f687-f689, U+f698-f699, U+f69b, U+f6a1, U+f6a7,
        U+f6a9;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.3.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.3.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.3.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.3.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.3.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.3.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f2e2, U+f61a, U+f640, U+f643, U+f645-f646, U+f64b,
        U+f64d-f64e, U+f650, U+f652, U+f656, U+f65f-f661, U+f663, U+f667-f668,
        U+f66c, U+f66e, U+f670-f671, U+f673, U+f675, U+f67a, U+f67d-f67e, U+f680,
        U+f685-f686, U+f68b, U+f694-f695, U+f697, U+f69c, U+f69e-f69f,
        U+f6a2-f6a6, U+f6a8, U+f6ac;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f676, U+f6b6-f6b7, U+f6bb, U+f6cf, U+f6d1, U+f6d5, U+f6d9,
        U+f6de, U+f6e2-f6e3, U+f6e6, U+f6ec, U+f6f1-f6f2, U+f6fc, U+f6ff-f700,
        U+f70b, U+f715, U+f717, U+f722, U+f728-f729, U+f72f;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f499, U+f6ae, U+f6b0-f6b3, U+f6b5, U+f6b8-f6ba, U+f6bc,
        U+f6bf, U+f6c2, U+f6c5, U+f6c7-f6c8, U+f6cb, U+f6cd-f6ce, U+f6d0, U+f6d2,
        U+f6d8, U+f6db, U+f6e5, U+f6e7, U+f6e9-f6eb, U+f6ee, U+f6f3, U+f6f5-f6f8,
        U+f6fd, U+f701-f703, U+f707, U+f70a, U+f711-f713, U+f716, U+f718-f71d,
        U+f720-f721, U+f723-f724, U+f726-f727, U+f72b, U+f72d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.4.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f72a;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.5.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.5.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.5.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.5.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.5.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.5.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f0e7, U+f185, U+f2dc, U+f6c3-f6c4, U+f72e, U+f73b-f73d,
        U+f740, U+f743, U+f747, U+f74d, U+f756, U+f75a, U+f75e-f75f, U+f769,
        U+f76b, U+f772-f773;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.5.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.5.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.5.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.5.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.5.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.5.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f732-f735, U+f737-f73a, U+f73e-f73f, U+f741-f742,
        U+f744-f746, U+f748-f74c, U+f74e-f750, U+f752, U+f754-f755, U+f757-f758,
        U+f75c, U+f760-f761, U+f763-f768, U+f76a, U+f76c-f76e, U+f771,
        U+f774-f776;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f06b, U+f5b7, U+f77d, U+f781, U+f788, U+f78c, U+f793-f794,
        U+f796, U+f79c, U+f79f-f7a0, U+f7a4, U+f7aa, U+f7ad-f7ae, U+f7b5-f7b6,
        U+f7bd, U+f7c2, U+f7c5, U+f7c9-f7ca, U+f7cc-f7ce, U+f7d0, U+f7d2,
        U+f7d7-f7d8, U+f7da;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f77f, U+f782, U+f78a-f78b, U+f78e-f78f, U+f792, U+f795,
        U+f79a-f79b, U+f79d-f79e, U+f7a1, U+f7a3, U+f7a7-f7a8, U+f7ac, U+f7b4,
        U+f7b8, U+f7be, U+f7c1, U+f7c3, U+f7c7-f7c8, U+f7cb, U+f7cf, U+f7d1,
        U+f7d4, U+f7db-f7dc, U+f7de, U+f7e2;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f071;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.3.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.3.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.3.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.3.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.3.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.6.3.svg#fontawesome)
            format("svg");
    unicode-range: U+f7e4;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f00a, U+f015, U+f06e, U+f070, U+f1e4, U+f2a0, U+f470,
        U+f49e, U+f6d7, U+f780, U+f7e5-f7e6, U+f7ec, U+f7ef, U+f7f2, U+f7f5,
        U+f7f7, U+f7fa-f7fb, U+f805, U+f807, U+f80f, U+f812, U+f815-f816, U+f818;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f377, U+f49c, U+f4c9, U+f6d6, U+f705, U+f725, U+f77e,
        U+f7e7, U+f7e9-f7eb, U+f7ed-f7ee, U+f7f0, U+f7f3-f7f4, U+f7f6,
        U+f7f8-f7f9, U+f7fc, U+f7fe, U+f800-f802, U+f804, U+f808-f80c, U+f80e,
        U+f811, U+f814, U+f817, U+f81b, U+f81e-f823, U+f825-f827, U+f82c-f82e,
        U+f830-f833;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.7.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f7f1;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f01e, U+f021, U+f026, U+f076, U+f12d, U+f31e, U+f45f,
        U+f5b0, U+f83e;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f356;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.8.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f560;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.9.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.9.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.9.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.9.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.9.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.9.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f036-f03c, U+f0ae, U+f0ca-f0cd, U+f15d-f15e, U+f160-f163,
        U+f1dd, U+f439-f43a, U+f43c, U+f43f, U+f441, U+f443, U+f445, U+f447,
        U+f502, U+f84a, U+f84c, U+f850, U+f853, U+f86d, U+f87c-f87d, U+f881-f882,
        U+f884-f887, U+f891, U+f897;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.9.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.9.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.9.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.9.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.9.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.9.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f313-f315, U+f34e, U+f43b, U+f43d-f43e, U+f440, U+f442,
        U+f444, U+f446, U+f448, U+f677, U+f843-f849, U+f84b, U+f84d-f84f,
        U+f851-f852, U+f854-f855, U+f858-f85e, U+f860-f862, U+f864, U+f866-f86c,
        U+f86e-f878, U+f87a, U+f880, U+f883, U+f888-f890, U+f892, U+f898-f89b;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f000, U+f012, U+f029, U+f03e, U+f06d, U+f075, U+f07b,
        U+f083-f084, U+f0a0, U+f11e, U+f19d, U+f20a, U+f247-f248, U+f251-f254,
        U+f25d, U+f275, U+f27a, U+f2c2, U+f2d1, U+f302, U+f3a5, U+f47f, U+f52f,
        U+f534, U+f561, U+f578, U+f591, U+f5e7, U+f613, U+f654, U+f681-f682,
        U+f6be, U+f6ed, U+f6f0, U+f6fa, U+f75b, U+f77c, U+f786-f787, U+f7ab,
        U+f863, U+f87b;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f310-f311, U+f34d, U+f435, U+f454, U+f456, U+f476, U+f480,
        U+f5db, U+f5f6, U+f611, U+f68c-f693, U+f6da, U+f6e4, U+f6ef, U+f6f4,
        U+f6fb, U+f6fe, U+f72c, U+f751, U+f759, U+f779, U+f7b2, U+f7b7, U+f7e8,
        U+f813, U+f89c-f89d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f004-f005, U+f02c, U+f02e, U+f031-f035, U+f04b-f04d, U+f056,
        U+f073, U+f08d, U+f095, U+f0a3, U+f0c5, U+f0c7-f0c8, U+f0dc-f0de, U+f0e0,
        U+f110-f111, U+f129-f12c, U+f133, U+f144, U+f15b-f15c, U+f164-f165,
        U+f193, U+f197, U+f1ab, U+f1c1-f1c9, U+f1ce, U+f1dc, U+f1f8-f1f9, U+f249,
        U+f271-f274, U+f29a, U+f29e, U+f2a7, U+f2b6, U+f2e5, U+f2ed, U+f2f2,
        U+f3ff, U+f45c, U+f462, U+f477-f478, U+f497, U+f4ba, U+f4d3, U+f54c,
        U+f553, U+f559, U+f56c-f574, U+f5bf, U+f5c1, U+f630, U+f641, U+f696,
        U+f6a0, U+f6dd, U+f70e, U+f714, U+f71e, U+f783-f784, U+f7a9, U+f7c4,
        U+f7d9, U+f829-f82a, U+f879;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.10.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f132, U+f145, U+f219, U+f2e1, U+f2e3-f2e4, U+f2ec, U+f2f4,
        U+f2fa-f2fc, U+f306, U+f312, U+f316, U+f31a, U+f31c, U+f327, U+f333-f335,
        U+f3f4, U+f460, U+f5f3, U+f631-f632, U+f634, U+f63e, U+f659-f65c, U+f6b4,
        U+f6bd, U+f706, U+f708-f709, U+f70d, U+f70f-f710, U+f71f, U+f736,
        U+f76f-f770, U+f777, U+f7d5, U+f7dd, U+f7fd, U+f81c-f81d, U+f824, U+f828,
        U+f856-f857, U+f865, U+f87e, U+f893-f896;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f001, U+f02f, U+f042, U+f091, U+f0f3, U+f104-f105, U+f11b,
        U+f13d, U+f1ac, U+f1ec, U+f223, U+f225, U+f22a-f22c, U+f24d, U+f26c,
        U+f29d, U+f338, U+f35d, U+f4c0, U+f569, U+f5dc, U+f5eb, U+f664, U+f66a,
        U+f6c0, U+f6e8, U+f70c, U+f7a6, U+f8c0-f8c1, U+f8cc, U+f8d9;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f08e, U+f149, U+f2eb, U+f2ee, U+f2f3, U+f300, U+f307,
        U+f323-f324, U+f33d, U+f48a, U+f601, U+f61b, U+f64c, U+f68a, U+f6c1,
        U+f6df-f6e1, U+f6f9, U+f81a, U+f89f-f8a5, U+f8a7-f8b6, U+f8b8-f8b9,
        U+f8bb-f8bf, U+f8c2-f8c9, U+f8cb, U+f8cd-f8d1, U+f8d3, U+f8d5-f8d8,
        U+f8da-f8dd, U+f8df-f8e0, U+f8e2-f8e7, U+f8e9-f8ed, U+f8ef-f8f2;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f00d, U+f048, U+f051, U+f0ac, U+f0b0, U+f118-f11a, U+f14e,
        U+f155, U+f186, U+f19c, U+f1eb, U+f21a, U+f221, U+f22d, U+f2bd,
        U+f433-f434, U+f436, U+f44e, U+f4da, U+f4e3, U+f51f, U+f54e, U+f556,
        U+f567, U+f579-f57a, U+f57c-f585, U+f587, U+f589-f58a, U+f58c,
        U+f596-f59c, U+f5a4-f5a5, U+f5b3-f5b4, U+f5b8, U+f5c0, U+f5c2-f5c3,
        U+f5c8, U+f5ce, U+f5de, U+f67c, U+f69a, U+f6ad, U+f7a2, U+f7a5,
        U+f7b9-f7ba, U+f806, U+f810;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f148, U+f2e8, U+f2f8, U+f354, U+f357, U+f45e, U+f4c7,
        U+f5e6, U+f5ec, U+f602, U+f615-f616, U+f622, U+f648-f649, U+f6aa-f6ab,
        U+f7ff, U+f803, U+f819, U+f82b, U+f87f, U+f8de, U+f8ee;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.2.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.2.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.2.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.2.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.2.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.11.2.svg#fontawesome)
            format("svg");
    unicode-range: U+f488, U+f8b7, U+f8f3;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f135, U+f1e6, U+f259, U+f2cc-f2cd, U+f422, U+f424,
        U+f515-f516, U+f544, U+f58b, U+f5d2, U+f61f, U+f658, U+f666, U+f6d3,
        U+f753, U+f7bf-f7c0, U+f82f, U+f8ff;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f5d3, U+f657, U+f672, U+f6d4, U+f762, U+f8ba, U+f8d4,
        U+f8f4-f8fe;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f017, U+f65e;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.12.1.svg#fontawesome)
            format("svg");
    unicode-range: U+f317-f319, U+f6c6;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.13.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.13.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.13.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.13.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.13.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.13.0.svg#fontawesome)
            format("svg");
    unicode-range: U+f4c1, U+f80d;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.14.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.14.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.14.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.14.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.14.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.14.0.svg#fontawesome)
            format("svg");
    unicode-range: U+e005, U+e041, U+e059-e076;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.14.0.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.14.0.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.14.0.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.14.0.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.14.0.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.14.0.svg#fontawesome)
            format("svg");
    unicode-range: U+e000-e004, U+e006, U+e008-e012, U+e014-e019, U+e01b-e01d,
        U+e01f-e040, U+e042-e048, U+e04a-e051, U+e053-e054, U+e058;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.1.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.1.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.1.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.1.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.1.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.1.svg#fontawesome)
            format("svg");
    unicode-range: U+e085-e086;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.3.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.3.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.3.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.3.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.3.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.3.svg#fontawesome)
            format("svg");
    unicode-range: U+f5d0;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.4.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.4.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.4.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.4.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.4.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.4.svg#fontawesome)
            format("svg");
    unicode-range: U+f140, U+f188, U+f4e6;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.4.eot);
    src: url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.4.eot?#iefix)
            format("embedded-opentype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.4.woff2)
            format("woff2"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.4.woff)
            format("woff"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.4.ttf)
            format("truetype"),
        url(https://kit-pro.fontawesome.com/releases/latest/webfonts/pro-fa-solid-900-5.15.4.svg#fontawesome)
            format("svg");
    unicode-range: U+f85f;
}
