@charset "UTF-8";

 .animated {
animation-duration: 1s;
animation-fill-mode: both;
}
.animated.infinite {
animation-iteration-count: infinite;
}
.animated.hinge {
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
animation-duration: .75s;
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transform: translate3d(0,0,0);
}
40%, 43% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -30px, 0);
}
70% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -15px, 0);
}
90% {
transform: translate3d(0,-4px,0);
}
}
.bounce {
animation-name: bounce;
transform-origin: center bottom;
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
animation-name: flash;
} @keyframes pulse {
from {
transform: scale3d(1, 1, 1);
}
50% {
transform: scale3d(1.05, 1.05, 1.05);
}
to {
transform: scale3d(1, 1, 1);
}
}
.pulse {
animation-name: pulse;
}
@keyframes rubberBand {
from {
transform: scale3d(1, 1, 1);
}
30% {
transform: scale3d(1.25, 0.75, 1);
}
40% {
transform: scale3d(0.75, 1.25, 1);
}
50% {
transform: scale3d(1.15, 0.85, 1);
}
65% {
transform: scale3d(.95, 1.05, 1);
}
75% {
transform: scale3d(1.05, .95, 1);
}
to {
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
animation-name: rubberBand;
}
@keyframes shake {
from, to {
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
transform: translate3d(10px, 0, 0);
}
}
.shake {
animation-name: shake;
}
@keyframes headShake {
0% {
transform: translateX(0);
}
6.5% {
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
transform: translateX(5px) rotateY(7deg);
}
31.5% {
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
transform: translateX(2px) rotateY(3deg);
}
50% {
transform: translateX(0);
}
}
.headShake {
animation-timing-function: ease-in-out;
animation-name: headShake;
}
@keyframes swing {
20% {
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
transform: rotate3d(0, 0, 1, -5deg);
}
to {
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
transform-origin: top center;
animation-name: swing;
}
@keyframes tada {
from {
transform: scale3d(1, 1, 1);
}
10%, 20% {
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
transform: scale3d(1, 1, 1);
}
}
.tada {
animation-name: tada;
} @keyframes wobble {
from {
transform: none;
}
15% {
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
transform: none;
}
}
.wobble {
animation-name: wobble;
}
@keyframes jello {
from, 11.1%, to {
transform: none;
}
22.2% {
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
animation-name: jello;
transform-origin: center;
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
20% {
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
animation-name: bounceIn;
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, 25px, 0);
}
75% {
transform: translate3d(0, -10px, 0);
}
90% {
transform: translate3d(0, 5px, 0);
}
to {
transform: none;
}
}
.bounceInDown {
animation-name: bounceInDown;
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(25px, 0, 0);
}
75% {
transform: translate3d(-10px, 0, 0);
}
90% {
transform: translate3d(5px, 0, 0);
}
to {
transform: none;
}
}
.bounceInLeft {
animation-name: bounceInLeft;
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(-25px, 0, 0);
}
75% {
transform: translate3d(10px, 0, 0);
}
90% {
transform: translate3d(-5px, 0, 0);
}
to {
transform: none;
}
}
.bounceInRight {
animation-name: bounceInRight;
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
75% {
transform: translate3d(0, 10px, 0);
}
90% {
transform: translate3d(0, -5px, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
animation-name: bounceInUp;
}
@keyframes bounceOut {
20% {
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
animation-name: bounceOut;
}
@keyframes bounceOutDown {
20% {
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
20% {
opacity: 1;
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
20% {
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
animation-name: bounceOutUp;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
animation-name: fadeIn;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDown {
animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
from {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDownBig {
animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeft {
animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeftBig {
animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRight {
animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
from {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRightBig {
animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUp {
animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
from {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUpBig {
animation-name: fadeInUpBig;
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
animation-name: fadeOut;
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
animation-name: fadeOutUpBig;
}
@keyframes flip {
from {
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
animation-timing-function: ease-out;
}
40% {
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
animation-timing-function: ease-out;
}
50% {
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
animation-timing-function: ease-in;
}
80% {
transform: perspective(400px) scale3d(.95, .95, .95);
animation-timing-function: ease-in;
}
to {
transform: perspective(400px);
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
animation-name: flip;
}
@keyframes flipInX {
from {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInX;
}
@keyframes flipInY {
from {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInY;
}
@keyframes flipOutX {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@keyframes flipOutY {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipOutY;
}
@keyframes lightSpeedIn {
from {
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
transform: skewX(20deg);
opacity: 1;
}
80% {
transform: skewX(-5deg);
opacity: 1;
}
to {
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
animation-name: lightSpeedIn;
animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
animation-name: lightSpeedOut;
animation-timing-function: ease-in;
}
@keyframes rotateIn {
from {
transform-origin: center;
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
transform-origin: center;
transform: none;
opacity: 1;
}
}
.rotateIn {
animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
animation-name: rotateInUpRight;
}
@keyframes rotateOut {
from {
transform-origin: center;
opacity: 1;
}
to {
transform-origin: center;
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
animation-name: rotateOutUpRight;
}
@keyframes hinge {
0% {
transform-origin: top left;
animation-timing-function: ease-in-out;
}
20%, 60% {
transform: rotate3d(0, 0, 1, 80deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
}
40%, 80% {
transform: rotate3d(0, 0, 1, 60deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
animation-name: hinge;
}
@keyframes jackInTheBox {
from {
opacity: 0;
transform: scale(0.1) rotate(30deg);
transform-origin: center bottom;
}
50% {
transform: rotate(-10deg);
}
70% {
transform: rotate(3deg);
}
to {
opacity: 1;
transform: scale(1);
}
}
.jackInTheBox {
animation-name: jackInTheBox;
} @keyframes rollIn {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
transform: none;
}
}
.rollIn {
animation-name: rollIn;
} @keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
animation-name: rollOut;
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
animation-name: zoomIn;
}
@keyframes zoomInDown {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
animation-name: zoomInDown;
}
@keyframes zoomInLeft {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
animation-name: zoomInLeft;
}
@keyframes zoomInRight {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
animation-name: zoomInRight;
}
@keyframes zoomInUp {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
animation-name: zoomInUp;
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
animation-name: zoomOut;
}
@keyframes zoomOutDown {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
transform: scale(.1) translate3d(-2000px, 0, 0);
transform-origin: left center;
}
}
.zoomOutLeft {
animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
transform: scale(.1) translate3d(2000px, 0, 0);
transform-origin: right center;
}
}
.zoomOutRight {
animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
animation-name: zoomOutUp;
}
@keyframes slideInDown {
from {
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
animation-name: slideInDown;
}
@keyframes slideInLeft {
from {
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
animation-name: slideInLeft;
}
@keyframes slideInRight {
from {
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
animation-name: slideInRight;
}
@keyframes slideInUp {
from {
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
animation-name: slideInUp;
}
@keyframes slideOutDown {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
animation-name: slideOutDown;
}
@keyframes slideOutLeft {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
animation-name: slideOutLeft;
}
@keyframes slideOutRight {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
animation-name: slideOutRight;
}
@keyframes slideOutUp {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
animation-name: slideOutUp;
}
.fa-spin{
-webkit-animation:fa-spin 1s infinite linear;
animation:fa-spin 1s infinite linear
}
@-webkit-keyframes fa-spin{
0%{
-webkit-transform:rotate(0deg);
transform:rotate(0deg)
}
100%{
-webkit-transform:rotate(359deg);
transform:rotate(359deg)
}
}
@keyframes fa-spin{
0%{
-webkit-transform:rotate(0deg);
transform:rotate(0deg)
}
100%{
-webkit-transform:rotate(359deg);
transform:rotate(359deg)
}
} .topBottom{animation: topBottom 5s infinite;}
@-webkit-keyframes topBottom {
0% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); }
50% {
-webkit-transform: translate(0, 20px);
transform: translate(0, 20px); }
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); } }
@keyframes topBottom {
0% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); }
50% {
-webkit-transform: translate(0, 20px);
transform: translate(0, 20px); }
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); } }
.leftRight{animation: leftRight 1.2s infinite; animation-duration: 5s;}
@-webkit-keyframes leftRight {
0% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); }
50% {
-webkit-transform: translate(30px, 0);
transform: translate(30px, 0); }
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); } }
@keyframes leftRight {
0% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); }
50% {
-webkit-transform: translate(30px, 0);
transform: translate(30px, 0); }
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); } }
.animatedBackground{background-repeat: repeat !important; background-size: auto !important; animation: animatedBackground 20s linear infinite;
-ms-animation: animatedBackground 20s linear infinite;
-moz-animation: animatedBackground 20s linear infinite;
-webkit-animation: animatedBackground 20s linear infinite;}
@keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}
@-webkit-keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}
@-ms-keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}
@-moz-keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}
@keyframes bounceY {
0% { transform: translateY(-205px);}
40% { transform: translateY(-100px);}
65% { transform: translateY(-52px);}
82% { transform: translateY(-25px);}
92% { transform: translateY(-12px);}
55%, 75%, 87%, 97%, 100% { transform: translateY(0px);}
}
@-moz-keyframes bounceY {
0% { -moz-transform: translateY(-205px);}
40% { -moz-transform: translateY(-100px);}
65% { -moz-transform: translateY(-52px);}
82% { -moz-transform: translateY(-25px);}
92% { -moz-transform: translateY(-12px);}
55%, 75%, 87%, 97%, 100% { -moz-transform: translateY(0px);}
}
@-webkit-keyframes bounceY {
0% { -webkit-transform: translateY(-205px);}
40% { -webkit-transform: translateY(-100px);}
65% { -webkit-transform: translateY(-52px);}
82% { -webkit-transform: translateY(-25px);}
92% { -webkit-transform: translateY(-12px);}
55%, 75%, 87%, 97%, 100% { -webkit-transform: translateY(0px);}
}
@-webkit-keyframes toTopFromBottom {
49% {-webkit-transform: translateY(-100%);}
50% {opacity: 0; -webkit-transform: translateY(100%);}
51% {opacity: 1;}
}
@-moz-keyframes toTopFromBottom {
49% {-moz-transform: translateY(-100%);}
50% {opacity: 0; -moz-transform: translateY(100%);}
51% {opacity: 1;}
}
@keyframes toTopFromBottom {
49% {transform: translateY(-100%);}
50% {opacity: 0; transform: translateY(100%);}
51% {opacity: 1;}
}
@keyframes blinkblink {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-moz-keyframes blinkblink {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes blinkblink {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.pulse{animation: pulse 1.2s infinite;}
@-webkit-keyframes pulse {
0% {
-webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
}
70% {
-webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}
@keyframes pulse {
0% {
-moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
}
70% {
-moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
box-shadow: 0 0 0 10px rgba(204,169,44, 0);
}
100% {
-moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}
@-webkit-keyframes videomodule-anim {
0% {
-webkit-transform: scale(0.68);
transform: scale(0.68); }
100% {
-webkit-transform: scale(1.2);
transform: scale(1.2);
opacity: 0; } }
@keyframes videomodule-anim {
0% {
-webkit-transform: scale(0.68);
transform: scale(0.68); }
100% {
-webkit-transform: scale(1.2);
transform: scale(1.2);
opacity: 0; } }
@-webkit-keyframes rotate {
from {
background-position: -3000px;
}
to { 
background-position: 0px;
}
}
@keyframes rotate {
from {
background-position: -3000px;
}
to { 
background-position: 0px;
}
}
.rotateme{
animation-name: rotateme; 
animation-duration: 40s; 
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: rotateme; 
-webkit-animation-duration: 40s; 
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: rotateme; 
-moz-animation-duration: 40s; 
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: rotateme; 
-ms-animation-duration: 40s; 
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: rotateme; 
-o-animation-duration: 40s; 
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
@keyframes rotateme {
from {
transform: rotate(0deg);
}
to { 
transform: rotate(360deg);
}
}
@-webkit-keyframes rotateme {
from {
-webkit-transform: rotate(0deg);
}
to { 
-webkit-transform: rotate(360deg);
}
}
@-moz-keyframes rotateme {
from {
-moz-transform: rotate(0deg);
}
to { 
-moz-transform: rotate(360deg);
}
}
@-o-keyframes rotateme {
from {
-o-transform: rotate(0deg);
}
to { 
-o-transform: rotate(360deg);
}
}
@keyframes dots {
0% {
left: -10px;
}
20%, 100% {
left: 10px;
}
}
@keyframes show-dot {
0%, 20% {
width: 0px;
height: 0px;
margin: 5px;
margin-right: 15px;
}
30%, 100% {
width: 10px;
height: 10px;
margin: 0px;
margin-right: 10px;
}
}
@keyframes dot-fall-left {
0%, 5% {
left: 0px;
}
100% {
left: 200px;
}
}
@keyframes dot-fall-top {
0%, 5% {
top: 0px;
}
30%, 100% {
top: 50vh;
}
}
@-webkit-keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes morph{
0%,100%{
border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
transform: translate3d(0,0,0) rotateZ(0.01deg);
}
34%{
border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
transform:  translate3d(0,5px,0) rotateZ(0.01deg);
}
50%{
opacity: .89;
transform: translate3d(0,0,0) rotateZ(0.01deg);
}
67%{
border-radius: 100% 60% 60% 100% / 100% 100% 60% 60% ;
transform: translate3d(0,-3px,0) rotateZ(0.01deg);
}
}
@keyframes fadeIn{
100%{
transform: scale(1.03);
opacity: 0;
}
} .delay-1 {
-webkit-animation-delay: .1s !important;
animation-delay: .1s !important;
}
.delay-2 {
-webkit-animation-delay: .2s !important;
animation-delay: .2s !important;
}
.delay-3 {
-webkit-animation-delay: .3s !important;
animation-delay: .3s !important;
}
.delay-4 {
-webkit-animation-delay: .4s !important;
animation-delay: .4s !important;
}
.delay-5 {
-webkit-animation-delay: .5s !important;
animation-delay: .5s !important;
}
.delay-6 {
-webkit-animation-delay: .6s !important;
animation-delay: .6s !important;
} .duration-1 {
-webkit-animation-duration: 1s !important;
animation-duration: 1s !important;
}
.duration-2 {
-webkit-animation-duration: 2s !important;
animation-duration: 2s !important;
}
.duration-3 {
-webkit-animation-duration: 3s !important;
animation-duration: 3s !important;
}
.duration-4 {
-webkit-animation-duration: 4s !important;
animation-duration: 4s !important;
}
.duration-5 {
-webkit-animation-duration: 5s !important;
animation-duration: 5s !important;
}
.duration-6 {
-webkit-animation-duration: 6s !important;
animation-duration: 6s !important;
}
.owl-item.active .animated1 {
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-name: zoomIn;
animation-delay: 1s;
}
.owl-item.active .animated2 {
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-name: bounce;
animation-delay: 1s;
}
.owl-item.active .animated3 {
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-name: fadeInUp;
animation-delay: 1s;
}
.owl-item.active .animated4 {
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-name: fadeInLeft;
animation-delay: 1s;
}.carouselTicker__list {
margin: 10px 0;
padding: 0;
list-style-type: none;
overflow: hidden;
}
.carouselTicker__item {
margin: 0 0 0 5px;
float: left;
border: 4px solid red;
width: 100px;
height: 60px;
line-height: 60px;
text-align: center;
}
.carouselTicker__loader {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: #fff url(//phdprojects.org/wp-content/themes/projects/assets/images/loader.html) center center no-repeat;
} .carouselTicker_vertical .carouselTicker__list {
margin: 0;
}
.carouselTicker_vertical .carouselTicker__item {
margin: 0 0 5px 0;
border: 4px solid red;
width: 100px;
height: 60px;
line-height: 60px;
text-align: center;
}
#carouselTicker .carouselTicker__item,
#carouselTicker-destructor-example .carouselTicker__item,
#carouselTicker-buttons-controls-example .carouselTicker__item {
width: auto;
height: auto;
line-height: normal;
}
.carouselTicker__item img {
vertical-align: top;
}@font-face {
font-family: "uicons-bold-rounded";
src: url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-bold-rounded.woff2) format("woff2"),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-bold-rounded.woff) format("woff"),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-bold-rounded.eot#iefix) format("embedded-opentype");
font-display: swap;
}
i[class^="fi-br-"]:before, i[class*=" fi-br-"]:before, span[class^="fi-br-"]:before, span[class*="fi-br-"]:before {
font-family: uicons-bold-rounded !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.variable-selector-00:before {
content: "\fe00";
}
.variable-selector-01:before {
content: "\fe01";
}
.variable-selector-02:before {
content: "\fe02";
}
.variable-selector-03:before {
content: "\fe03";
}
.variable-selector-04:before {
content: "\fe04";
}
.variable-selector-05:before {
content: "\fe05";
}
.variable-selector-06:before {
content: "\fe06";
}
.variable-selector-07:before {
content: "\fe07";
}
.variable-selector-08:before {
content: "\fe08";
}
.variable-selector-09:before {
content: "\fe09";
}
.variable-selector-0a:before {
content: "\fe0a";
}
.variable-selector-0b:before {
content: "\fe0b";
}
.variable-selector-0c:before {
content: "\fe0c";
}
.variable-selector-0d:before {
content: "\fe0d";
}
.variable-selector-0e:before {
content: "\fe0e";
}
.variable-selector-0f:before {
content: "\fe0f";
}
.combining-half-marks-00:before {
content: "\fe20";
}
.combining-half-marks-01:before {
content: "\fe21";
}
.combining-half-marks-02:before {
content: "\fe22";
}
.combining-half-marks-03:before {
content: "\fe23";
}
.combining-half-marks-04:before {
content: "\fe24";
}
.combining-half-marks-05:before {
content: "\fe25";
}
.combining-half-marks-06:before {
content: "\fe26";
}
.combining-half-marks-07:before {
content: "\fe27";
}
.combining-half-marks-08:before {
content: "\fe28";
}
.combining-half-marks-09:before {
content: "\fe29";
}
.combining-half-marks-0a:before {
content: "\fe2a";
}
.combining-half-marks-0b:before {
content: "\fe2b";
}
.combining-half-marks-0c:before {
content: "\fe2c";
}
.combining-half-marks-0d:before {
content: "\fe2d";
}
.combining-half-marks-0e:before {
content: "\fe2e";
}
.combining-half-marks-0f:before {
content: "\fe2f";
}
.zero-width-no-break-space-0f:before {
content: "\feff";
}
.fi-br-0:before {
content: "\f101";
}
.fi-br-00s-music-disc:before {
content: "\f102";
}
.fi-br-1:before {
content: "\f103";
}
.fi-br-2:before {
content: "\f104";
}
.fi-br-3:before {
content: "\f105";
}
.fi-br-360-degrees:before {
content: "\f106";
}
.fi-br-4:before {
content: "\f107";
}
.fi-br-404:before {
content: "\f108";
}
.fi-br-5:before {
content: "\f109";
}
.fi-br-6:before {
content: "\f10a";
}
.fi-br-60s-music-disc:before {
content: "\f10b";
}
.fi-br-7:before {
content: "\f10c";
}
.fi-br-70s-music-disc:before {
content: "\f10d";
}
.fi-br-8:before {
content: "\f10e";
}
.fi-br-80s-music-disc:before {
content: "\f10f";
}
.fi-br-9:before {
content: "\f110";
}
.fi-br-90s-music-disc:before {
content: "\f111";
}
.fi-br-a:before {
content: "\f112";
}
.fi-br-accident:before {
content: "\f113";
}
.fi-br-acorn:before {
content: "\f114";
}
.fi-br-ad-paid:before {
content: "\f115";
}
.fi-br-ad:before {
content: "\f116";
}
.fi-br-add-document:before {
content: "\f117";
}
.fi-br-add-folder:before {
content: "\f118";
}
.fi-br-add-image:before {
content: "\f119";
}
.fi-br-add:before {
content: "\f11a";
}
.fi-br-address-book:before {
content: "\f11b";
}
.fi-br-address-card:before {
content: "\f11c";
}
.fi-br-admin-alt:before {
content: "\f11d";
}
.fi-br-admin:before {
content: "\f11e";
}
.fi-br-age-alt:before {
content: "\f11f";
}
.fi-br-age-restriction-eighteen:before {
content: "\f120";
}
.fi-br-age-restriction-seven:before {
content: "\f121";
}
.fi-br-age-restriction-six:before {
content: "\f122";
}
.fi-br-age-restriction-sixteen:before {
content: "\f123";
}
.fi-br-age-restriction-thirteen:before {
content: "\f124";
}
.fi-br-age-restriction-three:before {
content: "\f125";
}
.fi-br-age-restriction-twelve:before {
content: "\f126";
}
.fi-br-age-restriction-twenty-one:before {
content: "\f127";
}
.fi-br-age-restriction-zero:before {
content: "\f128";
}
.fi-br-age:before {
content: "\f129";
}
.fi-br-air-conditioner:before {
content: "\f12a";
}
.fi-br-air-freshener:before {
content: "\f12b";
}
.fi-br-air-pollution:before {
content: "\f12c";
}
.fi-br-airplane-journey:before {
content: "\f12d";
}
.fi-br-airplane-window-open:before {
content: "\f12e";
}
.fi-br-airplay:before {
content: "\f12f";
}
.fi-br-alarm-clock:before {
content: "\f130";
}
.fi-br-alarm-exclamation:before {
content: "\f131";
}
.fi-br-alarm-plus:before {
content: "\f132";
}
.fi-br-alarm-snooze:before {
content: "\f133";
}
.fi-br-album-circle-plus:before {
content: "\f134";
}
.fi-br-album-circle-user:before {
content: "\f135";
}
.fi-br-album-collection:before {
content: "\f136";
}
.fi-br-album:before {
content: "\f137";
}
.fi-br-algorithm:before {
content: "\f138";
}
.fi-br-alicorn:before {
content: "\f139";
}
.fi-br-alien:before {
content: "\f13a";
}
.fi-br-align-center:before {
content: "\f13b";
}
.fi-br-align-justify:before {
content: "\f13c";
}
.fi-br-align-left:before {
content: "\f13d";
}
.fi-br-align-slash:before {
content: "\f13e";
}
.fi-br-ambulance:before {
content: "\f13f";
}
.fi-br-analyse-alt:before {
content: "\f140";
}
.fi-br-analyse:before {
content: "\f141";
}
.fi-br-anatomical-heart:before {
content: "\f142";
}
.fi-br-anchor:before {
content: "\f143";
}
.fi-br-angel:before {
content: "\f144";
}
.fi-br-angle-90:before {
content: "\f145";
}
.fi-br-angle-circle-down:before {
content: "\f146";
}
.fi-br-angle-circle-left:before {
content: "\f147";
}
.fi-br-angle-circle-right:before {
content: "\f148";
}
.fi-br-angle-circle-up:before {
content: "\f149";
}
.fi-br-angle-double-left:before {
content: "\f14a";
}
.fi-br-angle-double-right:before {
content: "\f14b";
}
.fi-br-angle-double-small-down:before {
content: "\f14c";
}
.fi-br-angle-double-small-left:before {
content: "\f14d";
}
.fi-br-angle-double-small-right:before {
content: "\f14e";
}
.fi-br-angle-double-small-up:before {
content: "\f14f";
}
.fi-br-angle-down:before {
content: "\f150";
}
.fi-br-angle-left:before {
content: "\f151";
}
.fi-br-angle-right:before {
content: "\f152";
}
.fi-br-angle-small-down:before {
content: "\f153";
}
.fi-br-angle-small-left:before {
content: "\f154";
}
.fi-br-angle-small-right:before {
content: "\f155";
}
.fi-br-angle-small-up:before {
content: "\f156";
}
.fi-br-angle-square-down:before {
content: "\f157";
}
.fi-br-angle-square-left:before {
content: "\f158";
}
.fi-br-angle-square-right:before {
content: "\f159";
}
.fi-br-angle-square-up:before {
content: "\f15a";
}
.fi-br-angle-up:before {
content: "\f15b";
}
.fi-br-angle:before {
content: "\f15c";
}
.fi-br-angles-up-down:before {
content: "\f15d";
}
.fi-br-angry:before {
content: "\f15e";
}
.fi-br-animated-icon:before {
content: "\f15f";
}
.fi-br-ankh:before {
content: "\f160";
}
.fi-br-answer-alt:before {
content: "\f161";
}
.fi-br-answer:before {
content: "\f162";
}
.fi-br-apartment:before {
content: "\f163";
}
.fi-br-aperture:before {
content: "\f164";
}
.fi-br-api:before {
content: "\f165";
}
.fi-br-apple-core:before {
content: "\f166";
}
.fi-br-apple-crate:before {
content: "\f167";
}
.fi-br-apple-whole:before {
content: "\f168";
}
.fi-br-apps-add:before {
content: "\f169";
}
.fi-br-apps-delete:before {
content: "\f16a";
}
.fi-br-apps-sort:before {
content: "\f16b";
}
.fi-br-apps:before {
content: "\f16c";
}
.fi-br-archive:before {
content: "\f16d";
}
.fi-br-archway:before {
content: "\f16e";
}
.fi-br-arrow-alt-circle-down:before {
content: "\f16f";
}
.fi-br-arrow-alt-circle-left:before {
content: "\f170";
}
.fi-br-arrow-alt-circle-right:before {
content: "\f171";
}
.fi-br-arrow-alt-circle-up:before {
content: "\f172";
}
.fi-br-arrow-alt-down:before {
content: "\f173";
}
.fi-br-arrow-alt-from-bottom:before {
content: "\f174";
}
.fi-br-arrow-alt-from-left:before {
content: "\f175";
}
.fi-br-arrow-alt-from-right:before {
content: "\f176";
}
.fi-br-arrow-alt-from-top:before {
content: "\f177";
}
.fi-br-arrow-alt-left:before {
content: "\f178";
}
.fi-br-arrow-alt-right:before {
content: "\f179";
}
.fi-br-arrow-alt-square-down:before {
content: "\f17a";
}
.fi-br-arrow-alt-square-left:before {
content: "\f17b";
}
.fi-br-arrow-alt-square-right:before {
content: "\f17c";
}
.fi-br-arrow-alt-square-up:before {
content: "\f17d";
}
.fi-br-arrow-alt-to-bottom:before {
content: "\f17e";
}
.fi-br-arrow-alt-to-left:before {
content: "\f17f";
}
.fi-br-arrow-alt-to-right:before {
content: "\f180";
}
.fi-br-arrow-alt-to-top:before {
content: "\f181";
}
.fi-br-arrow-alt-up:before {
content: "\f182";
}
.fi-br-arrow-circle-down:before {
content: "\f183";
}
.fi-br-arrow-circle-left:before {
content: "\f184";
}
.fi-br-arrow-circle-right:before {
content: "\f185";
}
.fi-br-arrow-circle-up:before {
content: "\f186";
}
.fi-br-arrow-comparison:before {
content: "\f187";
}
.fi-br-arrow-down-from-arc:before {
content: "\f188";
}
.fi-br-arrow-down-from-dotted-line:before {
content: "\f189";
}
.fi-br-arrow-down-left:before {
content: "\f18a";
}
.fi-br-arrow-down-small-big:before {
content: "\f18b";
}
.fi-br-arrow-down-to-dotted-line:before {
content: "\f18c";
}
.fi-br-arrow-down-to-square:before {
content: "\f18d";
}
.fi-br-arrow-down-triangle-square:before {
content: "\f18e";
}
.fi-br-arrow-down:before {
content: "\f18f";
}
.fi-br-arrow-from-bottom:before {
content: "\f190";
}
.fi-br-arrow-from-left:before {
content: "\f191";
}
.fi-br-arrow-from-right:before {
content: "\f192";
}
.fi-br-arrow-from-top:before {
content: "\f193";
}
.fi-br-arrow-left-from-arc:before {
content: "\f194";
}
.fi-br-arrow-left-from-line:before {
content: "\f195";
}
.fi-br-arrow-left-to-arc:before {
content: "\f196";
}
.fi-br-arrow-left:before {
content: "\f197";
}
.fi-br-arrow-progress-alt:before {
content: "\f198";
}
.fi-br-arrow-progress:before {
content: "\f199";
}
.fi-br-arrow-right-to-bracket:before {
content: "\f19a";
}
.fi-br-arrow-right:before {
content: "\f19b";
}
.fi-br-arrow-small-down:before {
content: "\f19c";
}
.fi-br-arrow-small-left:before {
content: "\f19d";
}
.fi-br-arrow-small-right:before {
content: "\f19e";
}
.fi-br-arrow-small-up:before {
content: "\f19f";
}
.fi-br-arrow-square-down:before {
content: "\f1a0";
}
.fi-br-arrow-square-left:before {
content: "\f1a1";
}
.fi-br-arrow-square-right:before {
content: "\f1a2";
}
.fi-br-arrow-square-up:before {
content: "\f1a3";
}
.fi-br-arrow-to-bottom:before {
content: "\f1a4";
}
.fi-br-arrow-to-left:before {
content: "\f1a5";
}
.fi-br-arrow-to-right:before {
content: "\f1a6";
}
.fi-br-arrow-to-top:before {
content: "\f1a7";
}
.fi-br-arrow-trend-down:before {
content: "\f1a8";
}
.fi-br-arrow-trend-up:before {
content: "\f1a9";
}
.fi-br-arrow-turn-down-left:before {
content: "\f1aa";
}
.fi-br-arrow-turn-down-right:before {
content: "\f1ab";
}
.fi-br-arrow-turn-left-up:before {
content: "\f1ac";
}
.fi-br-arrow-up-from-dotted-line:before {
content: "\f1ad";
}
.fi-br-arrow-up-from-ground-water:before {
content: "\f1ae";
}
.fi-br-arrow-up-from-square:before {
content: "\f1af";
}
.fi-br-arrow-up-left-from-circle:before {
content: "\f1b0";
}
.fi-br-arrow-up-left:before {
content: "\f1b1";
}
.fi-br-arrow-up-right-and-arrow-down-left-from-center:before {
content: "\f1b2";
}
.fi-br-arrow-up-right-from-square:before {
content: "\f1b3";
}
.fi-br-arrow-up-right:before {
content: "\f1b4";
}
.fi-br-arrow-up-small-big:before {
content: "\f1b5";
}
.fi-br-arrow-up-square-triangle:before {
content: "\f1b6";
}
.fi-br-arrow-up-to-arc:before {
content: "\f1b7";
}
.fi-br-arrow-up-to-dotted-line:before {
content: "\f1b8";
}
.fi-br-arrow-up:before {
content: "\f1b9";
}
.fi-br-arrow-upward-growth-crypto:before {
content: "\f1ba";
}
.fi-br-arrows-alt-h:before {
content: "\f1bb";
}
.fi-br-arrows-alt-v:before {
content: "\f1bc";
}
.fi-br-arrows-alt:before {
content: "\f1bd";
}
.fi-br-arrows-cross:before {
content: "\f1be";
}
.fi-br-arrows-from-dotted-line:before {
content: "\f1bf";
}
.fi-br-arrows-from-line:before {
content: "\f1c0";
}
.fi-br-arrows-h-copy:before {
content: "\f1c1";
}
.fi-br-arrows-h:before {
content: "\f1c2";
}
.fi-br-arrows-repeat-1:before {
content: "\f1c3";
}
.fi-br-arrows-repeat:before {
content: "\f1c4";
}
.fi-br-arrows-retweet:before {
content: "\f1c5";
}
.fi-br-arrows-split-right-and-left:before {
content: "\f1c6";
}
.fi-br-arrows-split-up-and-left:before {
content: "\f1c7";
}
.fi-br-arrows-to-circle:before {
content: "\f1c8";
}
.fi-br-arrows-to-dotted-line:before {
content: "\f1c9";
}
.fi-br-arrows-to-eye:before {
content: "\f1ca";
}
.fi-br-arrows-to-line:before {
content: "\f1cb";
}
.fi-br-arrows:before {
content: "\f1cc";
}
.fi-br-artificial-intelligence:before {
content: "\f1cd";
}
.fi-br-assept-document:before {
content: "\f1ce";
}
.fi-br-assessment-alt:before {
content: "\f1cf";
}
.fi-br-assessment:before {
content: "\f1d0";
}
.fi-br-assign:before {
content: "\f1d1";
}
.fi-br-assistive-listening-systems:before {
content: "\f1d2";
}
.fi-br-asterik:before {
content: "\f1d3";
}
.fi-br-astonished-face:before {
content: "\f1d4";
}
.fi-br-at:before {
content: "\f1d5";
}
.fi-br-attribution-pen:before {
content: "\f1d6";
}
.fi-br-attribution-pencil:before {
content: "\f1d7";
}
.fi-br-aubergine:before {
content: "\f1d8";
}
.fi-br-auction:before {
content: "\f1d9";
}
.fi-br-audience-megaphone:before {
content: "\f1da";
}
.fi-br-audio-description-slash:before {
content: "\f1db";
}
.fi-br-audit-alt:before {
content: "\f1dc";
}
.fi-br-audit:before {
content: "\f1dd";
}
.fi-br-austral-sign:before {
content: "\f1de";
}
.fi-br-avocado:before {
content: "\f1df";
}
.fi-br-award:before {
content: "\f1e0";
}
.fi-br-axe-battle:before {
content: "\f1e1";
}
.fi-br-axe:before {
content: "\f1e2";
}
.fi-br-b:before {
content: "\f1e3";
}
.fi-br-baby-carriage:before {
content: "\f1e4";
}
.fi-br-baby:before {
content: "\f1e5";
}
.fi-br-back-up:before {
content: "\f1e6";
}
.fi-br-background:before {
content: "\f1e7";
}
.fi-br-backpack:before {
content: "\f1e8";
}
.fi-br-bacon:before {
content: "\f1e9";
}
.fi-br-bacteria:before {
content: "\f1ea";
}
.fi-br-bacterium:before {
content: "\f1eb";
}
.fi-br-badge-check:before {
content: "\f1ec";
}
.fi-br-badge-dollar:before {
content: "\f1ed";
}
.fi-br-badge-leaf:before {
content: "\f1ee";
}
.fi-br-badge-percent:before {
content: "\f1ef";
}
.fi-br-badge-sheriff:before {
content: "\f1f0";
}
.fi-br-badge:before {
content: "\f1f1";
}
.fi-br-badger-honey:before {
content: "\f1f2";
}
.fi-br-badget-check-alt:before {
content: "\f1f3";
}
.fi-br-badminton:before {
content: "\f1f4";
}
.fi-br-bag-map-pin:before {
content: "\f1f5";
}
.fi-br-bag-seedling:before {
content: "\f1f6";
}
.fi-br-bag-shopping-minus:before {
content: "\f1f7";
}
.fi-br-bags-shopping:before {
content: "\f1f8";
}
.fi-br-baguette:before {
content: "\f1f9";
}
.fi-br-bahai:before {
content: "\f1fa";
}
.fi-br-baht-sign:before {
content: "\f1fb";
}
.fi-br-balance-scale-left:before {
content: "\f1fc";
}
.fi-br-balance-scale-right:before {
content: "\f1fd";
}
.fi-br-ball-pile:before {
content: "\f1fe";
}
.fi-br-ballet-dance:before {
content: "\f1ff";
}
.fi-br-balloon:before {
content: "\f200";
}
.fi-br-balloons:before {
content: "\f201";
}
.fi-br-ballot-check:before {
content: "\f202";
}
.fi-br-ballot:before {
content: "\f203";
}
.fi-br-ban-bug:before {
content: "\f204";
}
.fi-br-ban:before {
content: "\f205";
}
.fi-br-banana:before {
content: "\f206";
}
.fi-br-band-aid:before {
content: "\f207";
}
.fi-br-bangladeshi-taka-sign:before {
content: "\f208";
}
.fi-br-banjo:before {
content: "\f209";
}
.fi-br-bank:before {
content: "\f20a";
}
.fi-br-banner-2:before {
content: "\f20b";
}
.fi-br-banner-3:before {
content: "\f20c";
}
.fi-br-banner-4:before {
content: "\f20d";
}
.fi-br-banner-5:before {
content: "\f20e";
}
.fi-br-banner:before {
content: "\f20f";
}
.fi-br-barber-pole:before {
content: "\f210";
}
.fi-br-barber-shop:before {
content: "\f211";
}
.fi-br-barcode-read:before {
content: "\f212";
}
.fi-br-barcode-scan:before {
content: "\f213";
}
.fi-br-barcode:before {
content: "\f214";
}
.fi-br-bars-filter:before {
content: "\f215";
}
.fi-br-bars-progress:before {
content: "\f216";
}
.fi-br-bars-sort:before {
content: "\f217";
}
.fi-br-bars-staggered:before {
content: "\f218";
}
.fi-br-baseball-alt:before {
content: "\f219";
}
.fi-br-baseball:before {
content: "\f21a";
}
.fi-br-basket-shopping-minus:before {
content: "\f21b";
}
.fi-br-basket-shopping-plus:before {
content: "\f21c";
}
.fi-br-basket-shopping-simple:before {
content: "\f21d";
}
.fi-br-basketball-hoop:before {
content: "\f21e";
}
.fi-br-basketball:before {
content: "\f21f";
}
.fi-br-bat:before {
content: "\f220";
}
.fi-br-bath:before {
content: "\f221";
}
.fi-br-battery-bolt:before {
content: "\f222";
}
.fi-br-battery-empty:before {
content: "\f223";
}
.fi-br-battery-exclamation:before {
content: "\f224";
}
.fi-br-battery-full:before {
content: "\f225";
}
.fi-br-battery-half:before {
content: "\f226";
}
.fi-br-battery-quarter:before {
content: "\f227";
}
.fi-br-battery-slash:before {
content: "\f228";
}
.fi-br-battery-three-quarters:before {
content: "\f229";
}
.fi-br-beacon:before {
content: "\f22a";
}
.fi-br-bed-alt:before {
content: "\f22b";
}
.fi-br-bed-bunk:before {
content: "\f22c";
}
.fi-br-bed-empty:before {
content: "\f22d";
}
.fi-br-bed:before {
content: "\f22e";
}
.fi-br-bee:before {
content: "\f22f";
}
.fi-br-beer-mug-empty:before {
content: "\f230";
}
.fi-br-beer:before {
content: "\f231";
}
.fi-br-bell-concierge:before {
content: "\f232";
}
.fi-br-bell-notification-call:before {
content: "\f233";
}
.fi-br-bell-notification-social-media:before {
content: "\f234";
}
.fi-br-bell-ring:before {
content: "\f235";
}
.fi-br-bell-school-slash:before {
content: "\f236";
}
.fi-br-bell-school:before {
content: "\f237";
}
.fi-br-bell-slash:before {
content: "\f238";
}
.fi-br-bell:before {
content: "\f239";
}
.fi-br-bells:before {
content: "\f23a";
}
.fi-br-bench-tree:before {
content: "\f23b";
}
.fi-br-benefit-diamond-alt:before {
content: "\f23c";
}
.fi-br-benefit-diamond:before {
content: "\f23d";
}
.fi-br-benefit-hand:before {
content: "\f23e";
}
.fi-br-benefit-increase:before {
content: "\f23f";
}
.fi-br-benefit-porcent:before {
content: "\f240";
}
.fi-br-benefit:before {
content: "\f241";
}
.fi-br-betamax:before {
content: "\f242";
}
.fi-br-bible:before {
content: "\f243";
}
.fi-br-bicycle-journey:before {
content: "\f244";
}
.fi-br-bike:before {
content: "\f245";
}
.fi-br-biking-mountain:before {
content: "\f246";
}
.fi-br-biking:before {
content: "\f247";
}
.fi-br-bill-arrow:before {
content: "\f248";
}
.fi-br-billiard:before {
content: "\f249";
}
.fi-br-bin-bottles:before {
content: "\f24a";
}
.fi-br-binary-circle-check:before {
content: "\f24b";
}
.fi-br-binary-lock:before {
content: "\f24c";
}
.fi-br-binary-slash:before {
content: "\f24d";
}
.fi-br-binary:before {
content: "\f24e";
}
.fi-br-binoculars:before {
content: "\f24f";
}
.fi-br-bio-leaves:before {
content: "\f250";
}
.fi-br-bio:before {
content: "\f251";
}
.fi-br-biohazard:before {
content: "\f252";
}
.fi-br-bird:before {
content: "\f253";
}
.fi-br-bitcoin-sign:before {
content: "\f254";
}
.fi-br-blanket:before {
content: "\f255";
}
.fi-br-blender-phone:before {
content: "\f256";
}
.fi-br-blender:before {
content: "\f257";
}
.fi-br-blinds-open:before {
content: "\f258";
}
.fi-br-blinds-raised:before {
content: "\f259";
}
.fi-br-blinds:before {
content: "\f25a";
}
.fi-br-block-brick:before {
content: "\f25b";
}
.fi-br-block-microphone:before {
content: "\f25c";
}
.fi-br-block-question:before {
content: "\f25d";
}
.fi-br-block-quote:before {
content: "\f25e";
}
.fi-br-block:before {
content: "\f25f";
}
.fi-br-blockchain-3:before {
content: "\f260";
}
.fi-br-blog-pencil:before {
content: "\f261";
}
.fi-br-blog-text:before {
content: "\f262";
}
.fi-br-blood-dropper:before {
content: "\f263";
}
.fi-br-blood-test-tube-alt:before {
content: "\f264";
}
.fi-br-blood-test-tube:before {
content: "\f265";
}
.fi-br-blood:before {
content: "\f266";
}
.fi-br-blueberries:before {
content: "\f267";
}
.fi-br-blueprint:before {
content: "\f268";
}
.fi-br-bold:before {
content: "\f269";
}
.fi-br-bolt-auto:before {
content: "\f26a";
}
.fi-br-bolt-slash:before {
content: "\f26b";
}
.fi-br-bolt:before {
content: "\f26c";
}
.fi-br-bomb:before {
content: "\f26d";
}
.fi-br-bone-break:before {
content: "\f26e";
}
.fi-br-bone:before {
content: "\f26f";
}
.fi-br-bong:before {
content: "\f270";
}
.fi-br-bonus-alt:before {
content: "\f271";
}
.fi-br-bonus-star:before {
content: "\f272";
}
.fi-br-bonus:before {
content: "\f273";
}
.fi-br-book-alt:before {
content: "\f274";
}
.fi-br-book-arrow-right:before {
content: "\f275";
}
.fi-br-book-arrow-up:before {
content: "\f276";
}
.fi-br-book-atlas:before {
content: "\f277";
}
.fi-br-book-bookmark:before {
content: "\f278";
}
.fi-br-book-circle-arrow-right:before {
content: "\f279";
}
.fi-br-book-circle-arrow-up:before {
content: "\f27a";
}
.fi-br-book-copy:before {
content: "\f27b";
}
.fi-br-book-dead:before {
content: "\f27c";
}
.fi-br-book-font:before {
content: "\f27d";
}
.fi-br-book-heart:before {
content: "\f27e";
}
.fi-br-book-medical:before {
content: "\f27f";
}
.fi-br-book-open-cover:before {
content: "\f280";
}
.fi-br-book-open-reader:before {
content: "\f281";
}
.fi-br-book-plus:before {
content: "\f282";
}
.fi-br-book-quran:before {
content: "\f283";
}
.fi-br-book-section:before {
content: "\f284";
}
.fi-br-book-spells:before {
content: "\f285";
}
.fi-br-book-tanakh:before {
content: "\f286";
}
.fi-br-book-user:before {
content: "\f287";
}
.fi-br-book:before {
content: "\f288";
}
.fi-br-Booking:before {
content: "\f289";
}
.fi-br-bookmark-slash:before {
content: "\f28a";
}
.fi-br-bookmark:before {
content: "\f28b";
}
.fi-br-books-medical:before {
content: "\f28c";
}
.fi-br-books:before {
content: "\f28d";
}
.fi-br-boot-heeled:before {
content: "\f28e";
}
.fi-br-boot:before {
content: "\f28f";
}
.fi-br-booth-curtain:before {
content: "\f290";
}
.fi-br-border-all:before {
content: "\f291";
}
.fi-br-border-bottom:before {
content: "\f292";
}
.fi-br-border-center-h:before {
content: "\f293";
}
.fi-br-border-center-v:before {
content: "\f294";
}
.fi-br-border-inner:before {
content: "\f295";
}
.fi-br-border-left:before {
content: "\f296";
}
.fi-br-border-none:before {
content: "\f297";
}
.fi-br-border-outer:before {
content: "\f298";
}
.fi-br-border-right:before {
content: "\f299";
}
.fi-br-border-style-alt:before {
content: "\f29a";
}
.fi-br-border-style:before {
content: "\f29b";
}
.fi-br-border-top:before {
content: "\f29c";
}
.fi-br-boss:before {
content: "\f29d";
}
.fi-br-bottle-droplet:before {
content: "\f29e";
}
.fi-br-bottle:before {
content: "\f29f";
}
.fi-br-bow-arrow:before {
content: "\f2a0";
}
.fi-br-bowl-chopsticks-noodles:before {
content: "\f2a1";
}
.fi-br-bowl-chopsticks:before {
content: "\f2a2";
}
.fi-br-bowl-rice:before {
content: "\f2a3";
}
.fi-br-bowl-scoop:before {
content: "\f2a4";
}
.fi-br-bowl-scoops:before {
content: "\f2a5";
}
.fi-br-bowl-soft-serve:before {
content: "\f2a6";
}
.fi-br-bowl-spoon:before {
content: "\f2a7";
}
.fi-br-bowling-ball:before {
content: "\f2a8";
}
.fi-br-bowling-pins:before {
content: "\f2a9";
}
.fi-br-bowling:before {
content: "\f2aa";
}
.fi-br-box-alt:before {
content: "\f2ab";
}
.fi-br-box-ballot:before {
content: "\f2ac";
}
.fi-br-box-check:before {
content: "\f2ad";
}
.fi-br-box-circle-check:before {
content: "\f2ae";
}
.fi-br-box-dollar:before {
content: "\f2af";
}
.fi-br-box-fragile:before {
content: "\f2b0";
}
.fi-br-box-heart:before {
content: "\f2b1";
}
.fi-br-box-open-full:before {
content: "\f2b2";
}
.fi-br-box-open:before {
content: "\f2b3";
}
.fi-br-box-tissue:before {
content: "\f2b4";
}
.fi-br-box-up:before {
content: "\f2b5";
}
.fi-br-box:before {
content: "\f2b6";
}
.fi-br-boxes:before {
content: "\f2b7";
}
.fi-br-boxing-glove:before {
content: "\f2b8";
}
.fi-br-bracket-curly-right:before {
content: "\f2b9";
}
.fi-br-bracket-curly:before {
content: "\f2ba";
}
.fi-br-bracket-round-right:before {
content: "\f2bb";
}
.fi-br-bracket-round:before {
content: "\f2bc";
}
.fi-br-bracket-square-right:before {
content: "\f2bd";
}
.fi-br-bracket-square:before {
content: "\f2be";
}
.fi-br-brackets-curly:before {
content: "\f2bf";
}
.fi-br-brackets-round:before {
content: "\f2c0";
}
.fi-br-brackets-square:before {
content: "\f2c1";
}
.fi-br-braille-a:before {
content: "\f2c2";
}
.fi-br-braille-b:before {
content: "\f2c3";
}
.fi-br-braille-c:before {
content: "\f2c4";
}
.fi-br-braille-d:before {
content: "\f2c5";
}
.fi-br-braille-e:before {
content: "\f2c6";
}
.fi-br-braille-g:before {
content: "\f2c7";
}
.fi-br-braille-h:before {
content: "\f2c8";
}
.fi-br-braille-i:before {
content: "\f2c9";
}
.fi-br-braille-j:before {
content: "\f2ca";
}
.fi-br-braille-k:before {
content: "\f2cb";
}
.fi-br-braille-l:before {
content: "\f2cc";
}
.fi-br-braille-m:before {
content: "\f2cd";
}
.fi-br-braille-n-alt:before {
content: "\f2ce";
}
.fi-br-braille-n:before {
content: "\f2cf";
}
.fi-br-braille-o:before {
content: "\f2d0";
}
.fi-br-braille-p:before {
content: "\f2d1";
}
.fi-br-braille-q:before {
content: "\f2d2";
}
.fi-br-braille-r:before {
content: "\f2d3";
}
.fi-br-braille-s:before {
content: "\f2d4";
}
.fi-br-braille-t:before {
content: "\f2d5";
}
.fi-br-braille-u:before {
content: "\f2d6";
}
.fi-br-braille-v:before {
content: "\f2d7";
}
.fi-br-braille-w:before {
content: "\f2d8";
}
.fi-br-braille-x:before {
content: "\f2d9";
}
.fi-br-braille-y:before {
content: "\f2da";
}
.fi-br-braille-z:before {
content: "\f2db";
}
.fi-br-braille:before {
content: "\f2dc";
}
.fi-br-brain-circuit:before {
content: "\f2dd";
}
.fi-br-brain:before {
content: "\f2de";
}
.fi-br-brake-warning:before {
content: "\f2df";
}
.fi-br-branching:before {
content: "\f2e0";
}
.fi-br-brand:before {
content: "\f2e1";
}
.fi-br-branding:before {
content: "\f2e2";
}
.fi-br-bread-loaf:before {
content: "\f2e3";
}
.fi-br-bread-slice-butter:before {
content: "\f2e4";
}
.fi-br-bread-slice:before {
content: "\f2e5";
}
.fi-br-bread:before {
content: "\f2e6";
}
.fi-br-briefcase-arrow-right:before {
content: "\f2e7";
}
.fi-br-briefcase-blank:before {
content: "\f2e8";
}
.fi-br-briefcase:before {
content: "\f2e9";
}
.fi-br-brightness-low:before {
content: "\f2ea";
}
.fi-br-brightness:before {
content: "\f2eb";
}
.fi-br-bring-forward:before {
content: "\f2ec";
}
.fi-br-bring-front:before {
content: "\f2ed";
}
.fi-br-broadcast-tower:before {
content: "\f2ee";
}
.fi-br-broccoli:before {
content: "\f2ef";
}
.fi-br-broken-chain-link-wrong:before {
content: "\f2f0";
}
.fi-br-broken-image:before {
content: "\f2f1";
}
.fi-br-broom-ball:before {
content: "\f2f2";
}
.fi-br-broom:before {
content: "\f2f3";
}
.fi-br-browser-ui:before {
content: "\f2f4";
}
.fi-br-browser:before {
content: "\f2f5";
}
.fi-br-browsers:before {
content: "\f2f6";
}
.fi-br-brush:before {
content: "\f2f7";
}
.fi-br-bucket:before {
content: "\f2f8";
}
.fi-br-budget-alt:before {
content: "\f2f9";
}
.fi-br-budget:before {
content: "\f2fa";
}
.fi-br-bug-slash:before {
content: "\f2fb";
}
.fi-br-bug:before {
content: "\f2fc";
}
.fi-br-bugs:before {
content: "\f2fd";
}
.fi-br-build-alt:before {
content: "\f2fe";
}
.fi-br-build:before {
content: "\f2ff";
}
.fi-br-builder:before {
content: "\f300";
}
.fi-br-building-circle-arrow-right:before {
content: "\f301";
}
.fi-br-building-ngo:before {
content: "\f302";
}
.fi-br-building:before {
content: "\f303";
}
.fi-br-bulb:before {
content: "\f304";
}
.fi-br-bullet:before {
content: "\f305";
}
.fi-br-bullhorn:before {
content: "\f306";
}
.fi-br-bullseye-arrow:before {
content: "\f307";
}
.fi-br-bullseye-pointer:before {
content: "\f308";
}
.fi-br-bullseye:before {
content: "\f309";
}
.fi-br-burger-alt:before {
content: "\f30a";
}
.fi-br-burger-fries:before {
content: "\f30b";
}
.fi-br-burger-glass:before {
content: "\f30c";
}
.fi-br-burrito:before {
content: "\f30d";
}
.fi-br-burst:before {
content: "\f30e";
}
.fi-br-bus-alt:before {
content: "\f30f";
}
.fi-br-bus:before {
content: "\f310";
}
.fi-br-business-time:before {
content: "\f311";
}
.fi-br-Butter:before {
content: "\f312";
}
.fi-br-butterfly:before {
content: "\f313";
}
.fi-br-c:before {
content: "\f314";
}
.fi-br-cabin:before {
content: "\f315";
}
.fi-br-cactus:before {
content: "\f316";
}
.fi-br-cage-empty:before {
content: "\f317";
}
.fi-br-cake-birthday:before {
content: "\f318";
}
.fi-br-cake-slice:before {
content: "\f319";
}
.fi-br-cake-wedding:before {
content: "\f31a";
}
.fi-br-calculator-bill:before {
content: "\f31b";
}
.fi-br-calculator-math-tax:before {
content: "\f31c";
}
.fi-br-calculator-money:before {
content: "\f31d";
}
.fi-br-calculator-simple:before {
content: "\f31e";
}
.fi-br-calculator:before {
content: "\f31f";
}
.fi-br-calendar-arrow-down:before {
content: "\f320";
}
.fi-br-calendar-arrow-up:before {
content: "\f321";
}
.fi-br-calendar-birhtday-cake:before {
content: "\f322";
}
.fi-br-calendar-call:before {
content: "\f323";
}
.fi-br-calendar-check:before {
content: "\f324";
}
.fi-br-calendar-clock:before {
content: "\f325";
}
.fi-br-calendar-day:before {
content: "\f326";
}
.fi-br-calendar-days:before {
content: "\f327";
}
.fi-br-calendar-event-tax:before {
content: "\f328";
}
.fi-br-calendar-exclamation:before {
content: "\f329";
}
.fi-br-calendar-gavel-legal:before {
content: "\f32a";
}
.fi-br-calendar-heart:before {
content: "\f32b";
}
.fi-br-calendar-image:before {
content: "\f32c";
}
.fi-br-calendar-lines-pen:before {
content: "\f32d";
}
.fi-br-calendar-lines:before {
content: "\f32e";
}
.fi-br-calendar-minus:before {
content: "\f32f";
}
.fi-br-calendar-payment-loan:before {
content: "\f330";
}
.fi-br-calendar-pen:before {
content: "\f331";
}
.fi-br-calendar-plus:before {
content: "\f332";
}
.fi-br-calendar-salary:before {
content: "\f333";
}
.fi-br-calendar-shift-swap:before {
content: "\f334";
}
.fi-br-calendar-star:before {
content: "\f335";
}
.fi-br-calendar-swap:before {
content: "\f336";
}
.fi-br-calendar-week:before {
content: "\f337";
}
.fi-br-calendar-xmark:before {
content: "\f338";
}
.fi-br-calendar:before {
content: "\f339";
}
.fi-br-calendars:before {
content: "\f33a";
}
.fi-br-call-duration:before {
content: "\f33b";
}
.fi-br-call-history:before {
content: "\f33c";
}
.fi-br-call-incoming:before {
content: "\f33d";
}
.fi-br-call-missed:before {
content: "\f33e";
}
.fi-br-call-outgoing:before {
content: "\f33f";
}
.fi-br-camcorder:before {
content: "\f340";
}
.fi-br-camera-cctv:before {
content: "\f341";
}
.fi-br-camera-movie:before {
content: "\f342";
}
.fi-br-camera-retro:before {
content: "\f343";
}
.fi-br-camera-rotate:before {
content: "\f344";
}
.fi-br-camera-security:before {
content: "\f345";
}
.fi-br-camera-slash:before {
content: "\f346";
}
.fi-br-camera-viewfinder:before {
content: "\f347";
}
.fi-br-camera:before {
content: "\f348";
}
.fi-br-campfire:before {
content: "\f349";
}
.fi-br-camping:before {
content: "\f34a";
}
.fi-br-can-food:before {
content: "\f34b";
}
.fi-br-candle-holder:before {
content: "\f34c";
}
.fi-br-candle-lotus-yoga:before {
content: "\f34d";
}
.fi-br-candle-pose-yoga:before {
content: "\f34e";
}
.fi-br-candy-alt:before {
content: "\f34f";
}
.fi-br-candy-bar:before {
content: "\f350";
}
.fi-br-candy-cane:before {
content: "\f351";
}
.fi-br-candy-corn:before {
content: "\f352";
}
.fi-br-candy-sweet:before {
content: "\f353";
}
.fi-br-candy:before {
content: "\f354";
}
.fi-br-Cannabis:before {
content: "\f355";
}
.fi-br-canned-food:before {
content: "\f356";
}
.fi-br-capsules:before {
content: "\f357";
}
.fi-br-car-alt:before {
content: "\f358";
}
.fi-br-car-battery:before {
content: "\f359";
}
.fi-br-car-bolt:before {
content: "\f35a";
}
.fi-br-car-building:before {
content: "\f35b";
}
.fi-br-car-bump:before {
content: "\f35c";
}
.fi-br-car-bus:before {
content: "\f35d";
}
.fi-br-car-circle-bolt:before {
content: "\f35e";
}
.fi-br-car-crash:before {
content: "\f35f";
}
.fi-br-car-garage:before {
content: "\f360";
}
.fi-br-car-journey:before {
content: "\f361";
}
.fi-br-car-mechanic:before {
content: "\f362";
}
.fi-br-car-rear:before {
content: "\f363";
}
.fi-br-car-side-bolt:before {
content: "\f364";
}
.fi-br-car-side:before {
content: "\f365";
}
.fi-br-car-tilt:before {
content: "\f366";
}
.fi-br-car-tunnel:before {
content: "\f367";
}
.fi-br-car-wash:before {
content: "\f368";
}
.fi-br-car:before {
content: "\f369";
}
.fi-br-caravan-alt:before {
content: "\f36a";
}
.fi-br-caravan:before {
content: "\f36b";
}
.fi-br-card-club:before {
content: "\f36c";
}
.fi-br-card-diamond:before {
content: "\f36d";
}
.fi-br-card-heart:before {
content: "\f36e";
}
.fi-br-card-spade:before {
content: "\f36f";
}
.fi-br-cardinal-compass:before {
content: "\f370";
}
.fi-br-care:before {
content: "\f371";
}
.fi-br-career-growth:before {
content: "\f372";
}
.fi-br-career-path:before {
content: "\f373";
}
.fi-br-caret-circle-down:before {
content: "\f374";
}
.fi-br-caret-circle-right:before {
content: "\f375";
}
.fi-br-caret-circle-up:before {
content: "\f376";
}
.fi-br-caret-down:before {
content: "\f377";
}
.fi-br-caret-left:before {
content: "\f378";
}
.fi-br-caret-quare-up:before {
content: "\f379";
}
.fi-br-caret-right:before {
content: "\f37a";
}
.fi-br-caret-square-down:before {
content: "\f37b";
}
.fi-br-caret-square-left_1:before {
content: "\f37c";
}
.fi-br-caret-square-left:before {
content: "\f37d";
}
.fi-br-caret-square-right:before {
content: "\f37e";
}
.fi-br-caret-up:before {
content: "\f37f";
}
.fi-br-carrot:before {
content: "\f380";
}
.fi-br-cars-crash:before {
content: "\f381";
}
.fi-br-cars:before {
content: "\f382";
}
.fi-br-cart-arrow-down:before {
content: "\f383";
}
.fi-br-cart-minus:before {
content: "\f384";
}
.fi-br-cart-shopping-fast:before {
content: "\f385";
}
.fi-br-cash-register:before {
content: "\f386";
}
.fi-br-cassette-tape:before {
content: "\f387";
}
.fi-br-cassette-vhs:before {
content: "\f388";
}
.fi-br-castle:before {
content: "\f389";
}
.fi-br-cat-head:before {
content: "\f38a";
}
.fi-br-cat-space:before {
content: "\f38b";
}
.fi-br-cat:before {
content: "\f38c";
}
.fi-br-catalog-alt:before {
content: "\f38d";
}
.fi-br-catalog-magazine:before {
content: "\f38e";
}
.fi-br-catalog:before {
content: "\f38f";
}
.fi-br-category-alt:before {
content: "\f390";
}
.fi-br-category:before {
content: "\f391";
}
.fi-br-cauldron:before {
content: "\f392";
}
.fi-br-cedi-sign:before {
content: "\f393";
}
.fi-br-cello:before {
content: "\f394";
}
.fi-br-cent-sign:before {
content: "\f395";
}
.fi-br-chair-office:before {
content: "\f396";
}
.fi-br-chair:before {
content: "\f397";
}
.fi-br-chalkboard-user:before {
content: "\f398";
}
.fi-br-chalkboard:before {
content: "\f399";
}
.fi-br-challenge-alt:before {
content: "\f39a";
}
.fi-br-challenge:before {
content: "\f39b";
}
.fi-br-channel:before {
content: "\f39c";
}
.fi-br-charging-station:before {
content: "\f39d";
}
.fi-br-chart-area:before {
content: "\f39e";
}
.fi-br-chart-bullet:before {
content: "\f39f";
}
.fi-br-chart-candlestick:before {
content: "\f3a0";
}
.fi-br-chart-connected:before {
content: "\f3a1";
}
.fi-br-chart-gantt:before {
content: "\f3a2";
}
.fi-br-chart-histogram:before {
content: "\f3a3";
}
.fi-br-chart-kanban:before {
content: "\f3a4";
}
.fi-br-chart-line-up-down:before {
content: "\f3a5";
}
.fi-br-chart-line-up:before {
content: "\f3a6";
}
.fi-br-chart-mixed-up-circle-currency:before {
content: "\f3a7";
}
.fi-br-chart-mixed-up-circle-dollar:before {
content: "\f3a8";
}
.fi-br-chart-mixed:before {
content: "\f3a9";
}
.fi-br-chart-network:before {
content: "\f3aa";
}
.fi-br-chart-pie-alt:before {
content: "\f3ab";
}
.fi-br-chart-pie-simple-circle-currency:before {
content: "\f3ac";
}
.fi-br-chart-pie-simple-circle-dollar:before {
content: "\f3ad";
}
.fi-br-chart-pie:before {
content: "\f3ae";
}
.fi-br-chart-pyramid:before {
content: "\f3af";
}
.fi-br-chart-radar:before {
content: "\f3b0";
}
.fi-br-chart-scatter-3d:before {
content: "\f3b1";
}
.fi-br-chart-scatter-bubble:before {
content: "\f3b2";
}
.fi-br-chart-scatter:before {
content: "\f3b3";
}
.fi-br-chart-set-theory:before {
content: "\f3b4";
}
.fi-br-chart-simple-horizontal:before {
content: "\f3b5";
}
.fi-br-chart-simple:before {
content: "\f3b6";
}
.fi-br-chart-tree-map:before {
content: "\f3b7";
}
.fi-br-chart-tree:before {
content: "\f3b8";
}
.fi-br-chart-user:before {
content: "\f3b9";
}
.fi-br-chart-waterfall:before {
content: "\f3ba";
}
.fi-br-chat-arrow-down:before {
content: "\f3bb";
}
.fi-br-chat-arrow-grow:before {
content: "\f3bc";
}
.fi-br-chat-bubble-call:before {
content: "\f3bd";
}
.fi-br-chatbot-speech-bubble:before {
content: "\f3be";
}
.fi-br-chatbot:before {
content: "\f3bf";
}
.fi-br-cheap-bill:before {
content: "\f3c0";
}
.fi-br-cheap-dollar:before {
content: "\f3c1";
}
.fi-br-cheap-stack-dollar:before {
content: "\f3c2";
}
.fi-br-cheap-stack:before {
content: "\f3c3";
}
.fi-br-cheap:before {
content: "\f3c4";
}
.fi-br-check-circle:before {
content: "\f3c5";
}
.fi-br-check-double:before {
content: "\f3c6";
}
.fi-br-check-in-calendar:before {
content: "\f3c7";
}
.fi-br-check-out-calendar:before {
content: "\f3c8";
}
.fi-br-check:before {
content: "\f3c9";
}
.fi-br-checkbox:before {
content: "\f3ca";
}
.fi-br-checklist-task-budget:before {
content: "\f3cb";
}
.fi-br-cheese-alt:before {
content: "\f3cc";
}
.fi-br-cheese:before {
content: "\f3cd";
}
.fi-br-cheeseburger:before {
content: "\f3ce";
}
.fi-br-cherry:before {
content: "\f3cf";
}
.fi-br-chess-bishop:before {
content: "\f3d0";
}
.fi-br-chess-board:before {
content: "\f3d1";
}
.fi-br-chess-clock-alt:before {
content: "\f3d2";
}
.fi-br-chess-clock:before {
content: "\f3d3";
}
.fi-br-chess-king-alt:before {
content: "\f3d4";
}
.fi-br-chess-king:before {
content: "\f3d5";
}
.fi-br-chess-knight-alt:before {
content: "\f3d6";
}
.fi-br-chess-knight:before {
content: "\f3d7";
}
.fi-br-chess-pawn-alt:before {
content: "\f3d8";
}
.fi-br-chess-pawn:before {
content: "\f3d9";
}
.fi-br-chess-piece:before {
content: "\f3da";
}
.fi-br-chess-queen-alt:before {
content: "\f3db";
}
.fi-br-chess-queen:before {
content: "\f3dc";
}
.fi-br-chess-rook-alt:before {
content: "\f3dd";
}
.fi-br-chess-rook:before {
content: "\f3de";
}
.fi-br-chess:before {
content: "\f3df";
}
.fi-br-chevron-double-down:before {
content: "\f3e0";
}
.fi-br-chevron-double-up:before {
content: "\f3e1";
}
.fi-br-child-head:before {
content: "\f3e2";
}
.fi-br-child:before {
content: "\f3e3";
}
.fi-br-chimney:before {
content: "\f3e4";
}
.fi-br-chip:before {
content: "\f3e5";
}
.fi-br-chocolate:before {
content: "\f3e6";
}
.fi-br-choir-singing:before {
content: "\f3e7";
}
.fi-br-choose-alt:before {
content: "\f3e8";
}
.fi-br-choose:before {
content: "\f3e9";
}
.fi-br-church:before {
content: "\f3ea";
}
.fi-br-circle-0:before {
content: "\f3eb";
}
.fi-br-circle-1:before {
content: "\f3ec";
}
.fi-br-circle-2:before {
content: "\f3ed";
}
.fi-br-circle-3:before {
content: "\f3ee";
}
.fi-br-circle-4:before {
content: "\f3ef";
}
.fi-br-circle-5:before {
content: "\f3f0";
}
.fi-br-circle-6:before {
content: "\f3f1";
}
.fi-br-circle-7:before {
content: "\f3f2";
}
.fi-br-circle-8:before {
content: "\f3f3";
}
.fi-br-circle-9:before {
content: "\f3f4";
}
.fi-br-circle-a:before {
content: "\f3f5";
}
.fi-br-circle-b:before {
content: "\f3f6";
}
.fi-br-circle-bolt:before {
content: "\f3f7";
}
.fi-br-circle-book-open:before {
content: "\f3f8";
}
.fi-br-circle-bookmark:before {
content: "\f3f9";
}
.fi-br-circle-c:before {
content: "\f3fa";
}
.fi-br-circle-calendar:before {
content: "\f3fb";
}
.fi-br-circle-camera:before {
content: "\f3fc";
}
.fi-br-circle-d:before {
content: "\f3fd";
}
.fi-br-circle-dashed:before {
content: "\f3fe";
}
.fi-br-circle-divide:before {
content: "\f3ff";
}
.fi-br-circle-e:before {
content: "\f400";
}
.fi-br-circle-ellipsis-vertical:before {
content: "\f401";
}
.fi-br-circle-ellipsis:before {
content: "\f402";
}
.fi-br-circle-envelope:before {
content: "\f403";
}
.fi-br-circle-exclamation-check:before {
content: "\f404";
}
.fi-br-circle-f:before {
content: "\f405";
}
.fi-br-circle-g:before {
content: "\f406";
}
.fi-br-circle-h:before {
content: "\f407";
}
.fi-br-circle-half-stroke:before {
content: "\f408";
}
.fi-br-circle-half:before {
content: "\f409";
}
.fi-br-circle-heart:before {
content: "\f40a";
}
.fi-br-circle-i:before {
content: "\f40b";
}
.fi-br-circle-j:before {
content: "\f40c";
}
.fi-br-circle-k:before {
content: "\f40d";
}
.fi-br-circle-l:before {
content: "\f40e";
}
.fi-br-circle-m:before {
content: "\f40f";
}
.fi-br-circle-microphone-lines:before {
content: "\f410";
}
.fi-br-circle-microphone:before {
content: "\f411";
}
.fi-br-circle-n:before {
content: "\f412";
}
.fi-br-circle-nodes:before {
content: "\f413";
}
.fi-br-circle-o:before {
content: "\f414";
}
.fi-br-circle-overlap:before {
content: "\f415";
}
.fi-br-circle-p:before {
content: "\f416";
}
.fi-br-circle-phone-flip:before {
content: "\f417";
}
.fi-br-circle-phone-hangup:before {
content: "\f418";
}
.fi-br-circle-phone:before {
content: "\f419";
}
.fi-br-circle-q:before {
content: "\f41a";
}
.fi-br-circle-quarter:before {
content: "\f41b";
}
.fi-br-circle-quarters-alt:before {
content: "\f41c";
}
.fi-br-circle-r:before {
content: "\f41d";
}
.fi-br-circle-s:before {
content: "\f41e";
}
.fi-br-circle-small:before {
content: "\f41f";
}
.fi-br-circle-star:before {
content: "\f420";
}
.fi-br-circle-t:before {
content: "\f421";
}
.fi-br-circle-three-quarters:before {
content: "\f422";
}
.fi-br-circle-trash:before {
content: "\f423";
}
.fi-br-circle-u:before {
content: "\f424";
}
.fi-br-circle-user:before {
content: "\f425";
}
.fi-br-circle-v:before {
content: "\f426";
}
.fi-br-circle-video:before {
content: "\f427";
}
.fi-br-circle-w:before {
content: "\f428";
}
.fi-br-circle-waveform-lines:before {
content: "\f429";
}
.fi-br-circle-x:before {
content: "\f42a";
}
.fi-br-circle-xmark:before {
content: "\f42b";
}
.fi-br-circle-y:before {
content: "\f42c";
}
.fi-br-circle-z:before {
content: "\f42d";
}
.fi-br-circle:before {
content: "\f42e";
}
.fi-br-citrus-slice:before {
content: "\f42f";
}
.fi-br-citrus:before {
content: "\f430";
}
.fi-br-city:before {
content: "\f431";
}
.fi-br-clapperboard-play:before {
content: "\f432";
}
.fi-br-clapperboard:before {
content: "\f433";
}
.fi-br-clarinet:before {
content: "\f434";
}
.fi-br-claw-marks:before {
content: "\f435";
}
.fi-br-clear-alt:before {
content: "\f436";
}
.fi-br-clip-file:before {
content: "\f437";
}
.fi-br-clip-mail:before {
content: "\f438";
}
.fi-br-clip:before {
content: "\f439";
}
.fi-br-clipboard-check:before {
content: "\f43a";
}
.fi-br-clipboard-exclamation:before {
content: "\f43b";
}
.fi-br-clipboard-list-check:before {
content: "\f43c";
}
.fi-br-clipboard-list:before {
content: "\f43d";
}
.fi-br-clipboard-prescription:before {
content: "\f43e";
}
.fi-br-clipboard-question:before {
content: "\f43f";
}
.fi-br-clipboard-user:before {
content: "\f440";
}
.fi-br-clipboard:before {
content: "\f441";
}
.fi-br-clipoard-wrong:before {
content: "\f442";
}
.fi-br-clock-desk:before {
content: "\f443";
}
.fi-br-clock-eight-thirty:before {
content: "\f444";
}
.fi-br-clock-eleven-thirty:before {
content: "\f445";
}
.fi-br-clock-eleven:before {
content: "\f446";
}
.fi-br-clock-five-thirty:before {
content: "\f447";
}
.fi-br-clock-five:before {
content: "\f448";
}
.fi-br-clock-four-thirty:before {
content: "\f449";
}
.fi-br-clock-nine-thirty:before {
content: "\f44a";
}
.fi-br-clock-nine:before {
content: "\f44b";
}
.fi-br-clock-one-thirty:before {
content: "\f44c";
}
.fi-br-clock-one:before {
content: "\f44d";
}
.fi-br-clock-seven-thirty:before {
content: "\f44e";
}
.fi-br-clock-seven:before {
content: "\f44f";
}
.fi-br-clock-six-thirty:before {
content: "\f450";
}
.fi-br-clock-six:before {
content: "\f451";
}
.fi-br-clock-ten-thirty:before {
content: "\f452";
}
.fi-br-clock-ten:before {
content: "\f453";
}
.fi-br-clock-three-thirty:before {
content: "\f454";
}
.fi-br-clock-three:before {
content: "\f455";
}
.fi-br-clock-time-tracking:before {
content: "\f456";
}
.fi-br-clock-twelve-thirty:before {
content: "\f457";
}
.fi-br-clock-twelve:before {
content: "\f458";
}
.fi-br-clock-two-thirty:before {
content: "\f459";
}
.fi-br-clock-two:before {
content: "\f45a";
}
.fi-br-clock-up-arrow:before {
content: "\f45b";
}
.fi-br-clock:before {
content: "\f45c";
}
.fi-br-clone:before {
content: "\f45d";
}
.fi-br-closed-captioning-slash:before {
content: "\f45e";
}
.fi-br-clothes-hanger:before {
content: "\f45f";
}
.fi-br-cloud-back-up-alt:before {
content: "\f460";
}
.fi-br-cloud-back-up:before {
content: "\f461";
}
.fi-br-cloud-check:before {
content: "\f462";
}
.fi-br-cloud-code:before {
content: "\f463";
}
.fi-br-cloud-disabled:before {
content: "\f464";
}
.fi-br-cloud-download-alt:before {
content: "\f465";
}
.fi-br-cloud-download:before {
content: "\f466";
}
.fi-br-cloud-drizzle:before {
content: "\f467";
}
.fi-br-cloud-exclamation:before {
content: "\f468";
}
.fi-br-cloud-gear-automation:before {
content: "\f469";
}
.fi-br-cloud-hail-mixed:before {
content: "\f46a";
}
.fi-br-cloud-hail:before {
content: "\f46b";
}
.fi-br-cloud-meatball:before {
content: "\f46c";
}
.fi-br-cloud-moon-rain:before {
content: "\f46d";
}
.fi-br-cloud-moon:before {
content: "\f46e";
}
.fi-br-cloud-question:before {
content: "\f46f";
}
.fi-br-cloud-rain:before {
content: "\f470";
}
.fi-br-cloud-rainbow:before {
content: "\f471";
}
.fi-br-cloud-share:before {
content: "\f472";
}
.fi-br-cloud-showers-heavy:before {
content: "\f473";
}
.fi-br-cloud-showers:before {
content: "\f474";
}
.fi-br-cloud-sleet:before {
content: "\f475";
}
.fi-br-cloud-snow:before {
content: "\f476";
}
.fi-br-cloud-sun-rain:before {
content: "\f477";
}
.fi-br-cloud-sun:before {
content: "\f478";
}
.fi-br-cloud-upload-alt:before {
content: "\f479";
}
.fi-br-cloud-upload:before {
content: "\f47a";
}
.fi-br-cloud:before {
content: "\f47b";
}
.fi-br-clouds-moon:before {
content: "\f47c";
}
.fi-br-clouds-sun:before {
content: "\f47d";
}
.fi-br-clouds:before {
content: "\f47e";
}
.fi-br-clover-alt:before {
content: "\f47f";
}
.fi-br-club:before {
content: "\f480";
}
.fi-br-cocktail-alt:before {
content: "\f481";
}
.fi-br-cocktail:before {
content: "\f482";
}
.fi-br-coconut:before {
content: "\f483";
}
.fi-br-code-branch:before {
content: "\f484";
}
.fi-br-code-commit:before {
content: "\f485";
}
.fi-br-code-compare:before {
content: "\f486";
}
.fi-br-code-fork:before {
content: "\f487";
}
.fi-br-code-merge:before {
content: "\f488";
}
.fi-br-code-pull-request-closed:before {
content: "\f489";
}
.fi-br-code-pull-request-draft:before {
content: "\f48a";
}
.fi-br-code-pull-request:before {
content: "\f48b";
}
.fi-br-code-simple:before {
content: "\f48c";
}
.fi-br-coffee-bean:before {
content: "\f48d";
}
.fi-br-coffee-beans:before {
content: "\f48e";
}
.fi-br-coffee-heart:before {
content: "\f48f";
}
.fi-br-coffee-pot:before {
content: "\f490";
}
.fi-br-coffee:before {
content: "\f491";
}
.fi-br-coffin-cross:before {
content: "\f492";
}
.fi-br-coffin:before {
content: "\f493";
}
.fi-br-coin-up-arrow:before {
content: "\f494";
}
.fi-br-coin:before {
content: "\f495";
}
.fi-br-coins:before {
content: "\f496";
}
.fi-br-colon-sign:before {
content: "\f497";
}
.fi-br-columns-3:before {
content: "\f498";
}
.fi-br-comet:before {
content: "\f499";
}
.fi-br-command:before {
content: "\f49a";
}
.fi-br-comment-alt-check:before {
content: "\f49b";
}
.fi-br-comment-alt-dots:before {
content: "\f49c";
}
.fi-br-comment-alt-edit:before {
content: "\f49d";
}
.fi-br-comment-alt-medical:before {
content: "\f49e";
}
.fi-br-comment-alt-middle-top:before {
content: "\f49f";
}
.fi-br-comment-alt-middle:before {
content: "\f4a0";
}
.fi-br-comment-alt-minus:before {
content: "\f4a1";
}
.fi-br-comment-alt-music:before {
content: "\f4a2";
}
.fi-br-comment-alt:before {
content: "\f4a3";
}
.fi-br-comment-arrow-down:before {
content: "\f4a4";
}
.fi-br-comment-arrow-up-right:before {
content: "\f4a5";
}
.fi-br-comment-arrow-up:before {
content: "\f4a6";
}
.fi-br-comment-check:before {
content: "\f4a7";
}
.fi-br-comment-code:before {
content: "\f4a8";
}
.fi-br-comment-dollar:before {
content: "\f4a9";
}
.fi-br-comment-dots:before {
content: "\f4aa";
}
.fi-br-comment-exclamation:before {
content: "\f4ab";
}
.fi-br-comment-heart:before {
content: "\f4ac";
}
.fi-br-comment-image:before {
content: "\f4ad";
}
.fi-br-comment-info:before {
content: "\f4ae";
}
.fi-br-comment-medical:before {
content: "\f4af";
}
.fi-br-comment-minus:before {
content: "\f4b0";
}
.fi-br-comment-pen:before {
content: "\f4b1";
}
.fi-br-comment-question:before {
content: "\f4b2";
}
.fi-br-comment-quote:before {
content: "\f4b3";
}
.fi-br-comment-slash:before {
content: "\f4b4";
}
.fi-br-comment-smile:before {
content: "\f4b5";
}
.fi-br-comment-sms:before {
content: "\f4b6";
}
.fi-br-comment-text:before {
content: "\f4b7";
}
.fi-br-comment-user:before {
content: "\f4b8";
}
.fi-br-comment-xmark:before {
content: "\f4b9";
}
.fi-br-comment:before {
content: "\f4ba";
}
.fi-br-comments-dollar:before {
content: "\f4bb";
}
.fi-br-comments-question-check:before {
content: "\f4bc";
}
.fi-br-comments-question:before {
content: "\f4bd";
}
.fi-br-comments:before {
content: "\f4be";
}
.fi-br-compass-alt:before {
content: "\f4bf";
}
.fi-br-compass-east:before {
content: "\f4c0";
}
.fi-br-compass-north:before {
content: "\f4c1";
}
.fi-br-compass-slash:before {
content: "\f4c2";
}
.fi-br-compass-south:before {
content: "\f4c3";
}
.fi-br-compass-west:before {
content: "\f4c4";
}
.fi-br-completed:before {
content: "\f4c5";
}
.fi-br-compliance-clipboard:before {
content: "\f4c6";
}
.fi-br-compliance-document:before {
content: "\f4c7";
}
.fi-br-compliance:before {
content: "\f4c8";
}
.fi-br-compress-alt:before {
content: "\f4c9";
}
.fi-br-compress:before {
content: "\f4ca";
}
.fi-br-computer-classic:before {
content: "\f4cb";
}
.fi-br-computer-mouse:before {
content: "\f4cc";
}
.fi-br-computer-speaker:before {
content: "\f4cd";
}
.fi-br-computer:before {
content: "\f4ce";
}
.fi-br-concierge-bell:before {
content: "\f4cf";
}
.fi-br-condition-alt:before {
content: "\f4d0";
}
.fi-br-condition:before {
content: "\f4d1";
}
.fi-br-confetti:before {
content: "\f4d2";
}
.fi-br-constellation:before {
content: "\f4d3";
}
.fi-br-container-storage:before {
content: "\f4d4";
}
.fi-br-convert-document:before {
content: "\f4d5";
}
.fi-br-convert-shapes:before {
content: "\f4d6";
}
.fi-br-conveyor-belt-alt:before {
content: "\f4d7";
}
.fi-br-conveyor-belt-arm:before {
content: "\f4d8";
}
.fi-br-conveyor-belt-empty:before {
content: "\f4d9";
}
.fi-br-conveyor-belt:before {
content: "\f4da";
}
.fi-br-cookie-alt:before {
content: "\f4db";
}
.fi-br-cookie:before {
content: "\f4dc";
}
.fi-br-copy-alt:before {
content: "\f4dd";
}
.fi-br-copy-image:before {
content: "\f4de";
}
.fi-br-copy:before {
content: "\f4df";
}
.fi-br-copyright:before {
content: "\f4e0";
}
.fi-br-corn:before {
content: "\f4e1";
}
.fi-br-corporate-alt:before {
content: "\f4e2";
}
.fi-br-corporate:before {
content: "\f4e3";
}
.fi-br-couch:before {
content: "\f4e4";
}
.fi-br-couple:before {
content: "\f4e5";
}
.fi-br-court-sport:before {
content: "\f4e6";
}
.fi-br-cow-alt:before {
content: "\f4e7";
}
.fi-br-cow:before {
content: "\f4e8";
}
.fi-br-cowbell-circle-plus:before {
content: "\f4e9";
}
.fi-br-cowbell-more:before {
content: "\f4ea";
}
.fi-br-cowbell:before {
content: "\f4eb";
}
.fi-br-crab:before {
content: "\f4ec";
}
.fi-br-crate-empty:before {
content: "\f4ed";
}
.fi-br-cream:before {
content: "\f4ee";
}
.fi-br-credit-card-buyer:before {
content: "\f4ef";
}
.fi-br-credit-card-eye:before {
content: "\f4f0";
}
.fi-br-credit-card:before {
content: "\f4f1";
}
.fi-br-cricket:before {
content: "\f4f2";
}
.fi-br-crm-alt:before {
content: "\f4f3";
}
.fi-br-crm-computer:before {
content: "\f4f4";
}
.fi-br-CRM:before {
content: "\f4f5";
}
.fi-br-croissant:before {
content: "\f4f6";
}
.fi-br-cross-circle:before {
content: "\f4f7";
}
.fi-br-cross-religion:before {
content: "\f4f8";
}
.fi-br-cross-small:before {
content: "\f4f9";
}
.fi-br-cross:before {
content: "\f4fa";
}
.fi-br-crow:before {
content: "\f4fb";
}
.fi-br-crown:before {
content: "\f4fc";
}
.fi-br-crutch:before {
content: "\f4fd";
}
.fi-br-crutches:before {
content: "\f4fe";
}
.fi-br-cruzeiro-sign:before {
content: "\f4ff";
}
.fi-br-crypto-calendar:before {
content: "\f500";
}
.fi-br-cryptocurrency:before {
content: "\f501";
}
.fi-br-crystal-ball:before {
content: "\f502";
}
.fi-br-cube:before {
content: "\f503";
}
.fi-br-cubes-stacked:before {
content: "\f504";
}
.fi-br-cubes:before {
content: "\f505";
}
.fi-br-cucumber:before {
content: "\f506";
}
.fi-br-cup-straw-swoosh:before {
content: "\f507";
}
.fi-br-cup-straw:before {
content: "\f508";
}
.fi-br-cup-togo:before {
content: "\f509";
}
.fi-br-cupcake-alt:before {
content: "\f50a";
}
.fi-br-cupcake:before {
content: "\f50b";
}
.fi-br-curling:before {
content: "\f50c";
}
.fi-br-cursor-finger:before {
content: "\f50d";
}
.fi-br-cursor-plus:before {
content: "\f50e";
}
.fi-br-cursor-text-alt:before {
content: "\f50f";
}
.fi-br-cursor-text:before {
content: "\f510";
}
.fi-br-cursor:before {
content: "\f511";
}
.fi-br-curve-alt:before {
content: "\f512";
}
.fi-br-curve-arrow:before {
content: "\f513";
}
.fi-br-curve:before {
content: "\f514";
}
.fi-br-custard:before {
content: "\f515";
}
.fi-br-customer-care:before {
content: "\f516";
}
.fi-br-customer-service:before {
content: "\f517";
}
.fi-br-customization-cogwheel:before {
content: "\f518";
}
.fi-br-customization:before {
content: "\f519";
}
.fi-br-customize-computer:before {
content: "\f51a";
}
.fi-br-customize-edit:before {
content: "\f51b";
}
.fi-br-customize:before {
content: "\f51c";
}
.fi-br-CV:before {
content: "\f51d";
}
.fi-br-cvv-card:before {
content: "\f51e";
}
.fi-br-d:before {
content: "\f51f";
}
.fi-br-dagger:before {
content: "\f520";
}
.fi-br-daily-calendar:before {
content: "\f521";
}
.fi-br-damage:before {
content: "\f522";
}
.fi-br-dart:before {
content: "\f523";
}
.fi-br-dashboard-monitor:before {
content: "\f524";
}
.fi-br-dashboard-panel:before {
content: "\f525";
}
.fi-br-dashboard:before {
content: "\f526";
}
.fi-br-data-transfer:before {
content: "\f527";
}
.fi-br-database:before {
content: "\f528";
}
.fi-br-debt:before {
content: "\f529";
}
.fi-br-deer-rudolph:before {
content: "\f52a";
}
.fi-br-deer:before {
content: "\f52b";
}
.fi-br-delete-document:before {
content: "\f52c";
}
.fi-br-delete-right:before {
content: "\f52d";
}
.fi-br-delete-user:before {
content: "\f52e";
}
.fi-br-delete:before {
content: "\f52f";
}
.fi-br-democrat:before {
content: "\f530";
}
.fi-br-department-structure:before {
content: "\f531";
}
.fi-br-department:before {
content: "\f532";
}
.fi-br-deposit-alt:before {
content: "\f533";
}
.fi-br-deposit:before {
content: "\f534";
}
.fi-br-description-alt:before {
content: "\f535";
}
.fi-br-description:before {
content: "\f536";
}
.fi-br-desk:before {
content: "\f537";
}
.fi-br-desktop-arrow-down:before {
content: "\f538";
}
.fi-br-desktop-wallpaper:before {
content: "\f539";
}
.fi-br-devices:before {
content: "\f53a";
}
.fi-br-dewpoint:before {
content: "\f53b";
}
.fi-br-dharmachakra:before {
content: "\f53c";
}
.fi-br-diagram-cells:before {
content: "\f53d";
}
.fi-br-diagram-lean-canvas:before {
content: "\f53e";
}
.fi-br-diagram-nested:before {
content: "\f53f";
}
.fi-br-diagram-next:before {
content: "\f540";
}
.fi-br-diagram-predecessor:before {
content: "\f541";
}
.fi-br-diagram-previous:before {
content: "\f542";
}
.fi-br-diagram-project:before {
content: "\f543";
}
.fi-br-diagram-sankey:before {
content: "\f544";
}
.fi-br-diagram-subtask:before {
content: "\f545";
}
.fi-br-diagram-successor:before {
content: "\f546";
}
.fi-br-diagram-venn:before {
content: "\f547";
}
.fi-br-dial-high:before {
content: "\f548";
}
.fi-br-dial-low:before {
content: "\f549";
}
.fi-br-dial-max:before {
content: "\f54a";
}
.fi-br-dial-med-low:before {
content: "\f54b";
}
.fi-br-dial-med:before {
content: "\f54c";
}
.fi-br-dial-min:before {
content: "\f54d";
}
.fi-br-dial-off:before {
content: "\f54e";
}
.fi-br-dial:before {
content: "\f54f";
}
.fi-br-diamond-exclamation:before {
content: "\f550";
}
.fi-br-diamond-turn-right:before {
content: "\f551";
}
.fi-br-diamond:before {
content: "\f552";
}
.fi-br-diary-bookmark-down:before {
content: "\f553";
}
.fi-br-diary-bookmarks:before {
content: "\f554";
}
.fi-br-diary-clasp:before {
content: "\f555";
}
.fi-br-dice-alt:before {
content: "\f556";
}
.fi-br-dice-d10:before {
content: "\f557";
}
.fi-br-dice-d12:before {
content: "\f558";
}
.fi-br-dice-d20:before {
content: "\f559";
}
.fi-br-dice-d4:before {
content: "\f55a";
}
.fi-br-dice-d6:before {
content: "\f55b";
}
.fi-br-dice-d8:before {
content: "\f55c";
}
.fi-br-dice-four:before {
content: "\f55d";
}
.fi-br-dice-one:before {
content: "\f55e";
}
.fi-br-dice-six:before {
content: "\f55f";
}
.fi-br-dice-three:before {
content: "\f560";
}
.fi-br-dice-two:before {
content: "\f561";
}
.fi-br-dice:before {
content: "\f562";
}
.fi-br-digging:before {
content: "\f563";
}
.fi-br-digital-tachograph:before {
content: "\f564";
}
.fi-br-dinner:before {
content: "\f565";
}
.fi-br-diploma:before {
content: "\f566";
}
.fi-br-direction-signal-arrow:before {
content: "\f567";
}
.fi-br-direction-signal:before {
content: "\f568";
}
.fi-br-disc-drive:before {
content: "\f569";
}
.fi-br-disco-ball:before {
content: "\f56a";
}
.fi-br-discover:before {
content: "\f56b";
}
.fi-br-disease:before {
content: "\f56c";
}
.fi-br-disk:before {
content: "\f56d";
}
.fi-br-display-arrow-down:before {
content: "\f56e";
}
.fi-br-display-chart-up:before {
content: "\f56f";
}
.fi-br-display-code:before {
content: "\f570";
}
.fi-br-display-medical:before {
content: "\f571";
}
.fi-br-display-slash:before {
content: "\f572";
}
.fi-br-distribute-spacing-horizontal:before {
content: "\f573";
}
.fi-br-distribute-spacing-vertical:before {
content: "\f574";
}
.fi-br-divide:before {
content: "\f575";
}
.fi-br-dizzy:before {
content: "\f576";
}
.fi-br-dna:before {
content: "\f577";
}
.fi-br-do-not-enter:before {
content: "\f578";
}
.fi-br-doctor:before {
content: "\f579";
}
.fi-br-document-circle-wrong:before {
content: "\f57a";
}
.fi-br-document-paid:before {
content: "\f57b";
}
.fi-br-document-signed:before {
content: "\f57c";
}
.fi-br-document:before {
content: "\f57d";
}
.fi-br-dog-leashed:before {
content: "\f57e";
}
.fi-br-dog:before {
content: "\f57f";
}
.fi-br-dollar:before {
content: "\f580";
}
.fi-br-dolly-flatbed-alt:before {
content: "\f581";
}
.fi-br-dolly-flatbed-empty:before {
content: "\f582";
}
.fi-br-dolly-flatbed:before {
content: "\f583";
}
.fi-br-dolphin:before {
content: "\f584";
}
.fi-br-domino-effect:before {
content: "\f585";
}
.fi-br-donate:before {
content: "\f586";
}
.fi-br-dong-sign:before {
content: "\f587";
}
.fi-br-donut:before {
content: "\f588";
}
.fi-br-door-closed:before {
content: "\f589";
}
.fi-br-door-open:before {
content: "\f58a";
}
.fi-br-dot-circle:before {
content: "\f58b";
}
.fi-br-dot-pending:before {
content: "\f58c";
}
.fi-br-dove:before {
content: "\f58d";
}
.fi-br-down-from-bracket:before {
content: "\f58e";
}
.fi-br-down-left-and-up-right-to-center:before {
content: "\f58f";
}
.fi-br-down-left:before {
content: "\f590";
}
.fi-br-down-right:before {
content: "\f591";
}
.fi-br-down-to-line:before {
content: "\f592";
}
.fi-br-down:before {
content: "\f593";
}
.fi-br-download:before {
content: "\f594";
}
.fi-br-drafting-compass:before {
content: "\f595";
}
.fi-br-dragon:before {
content: "\f596";
}
.fi-br-draw-polygon:before {
content: "\f597";
}
.fi-br-draw-square:before {
content: "\f598";
}
.fi-br-drawer-alt:before {
content: "\f599";
}
.fi-br-drawer-empty:before {
content: "\f59a";
}
.fi-br-drawer:before {
content: "\f59b";
}
.fi-br-dreidel:before {
content: "\f59c";
}
.fi-br-drink-alt:before {
content: "\f59d";
}
.fi-br-driver-man:before {
content: "\f59e";
}
.fi-br-driver-woman:before {
content: "\f59f";
}
.fi-br-drone-alt:before {
content: "\f5a0";
}
.fi-br-drone-front:before {
content: "\f5a1";
}
.fi-br-drone:before {
content: "\f5a2";
}
.fi-br-drop-down:before {
content: "\f5a3";
}
.fi-br-dropdown-select:before {
content: "\f5a4";
}
.fi-br-dropdown:before {
content: "\f5a5";
}
.fi-br-drum-steelpan:before {
content: "\f5a6";
}
.fi-br-drum:before {
content: "\f5a7";
}
.fi-br-drumstick-bite:before {
content: "\f5a8";
}
.fi-br-drumstick:before {
content: "\f5a9";
}
.fi-br-dryer-alt:before {
content: "\f5aa";
}
.fi-br-dryer:before {
content: "\f5ab";
}
.fi-br-duck:before {
content: "\f5ac";
}
.fi-br-dumbbell-fitness:before {
content: "\f5ad";
}
.fi-br-dumbbell-horizontal:before {
content: "\f5ae";
}
.fi-br-dumbbell-ray:before {
content: "\f5af";
}
.fi-br-dumbbell-weightlifting:before {
content: "\f5b0";
}
.fi-br-dumpster-fire:before {
content: "\f5b1";
}
.fi-br-dumpster:before {
content: "\f5b2";
}
.fi-br-dungeon:before {
content: "\f5b3";
}
.fi-br-duplicate:before {
content: "\f5b4";
}
.fi-br-duration-alt:before {
content: "\f5b5";
}
.fi-br-duration:before {
content: "\f5b6";
}
.fi-br-e-learning:before {
content: "\f5b7";
}
.fi-br-e:before {
content: "\f5b8";
}
.fi-br-ear-deaf:before {
content: "\f5b9";
}
.fi-br-ear-muffs:before {
content: "\f5ba";
}
.fi-br-ear:before {
content: "\f5bb";
}
.fi-br-earnings:before {
content: "\f5bc";
}
.fi-br-earth-africa:before {
content: "\f5bd";
}
.fi-br-earth-americas:before {
content: "\f5be";
}
.fi-br-earth-asia:before {
content: "\f5bf";
}
.fi-br-earth-europa:before {
content: "\f5c0";
}
.fi-br-eclipse-alt:before {
content: "\f5c1";
}
.fi-br-eclipse:before {
content: "\f5c2";
}
.fi-br-edit-alt:before {
content: "\f5c3";
}
.fi-br-edit:before {
content: "\f5c4";
}
.fi-br-effect:before {
content: "\f5c5";
}
.fi-br-egg-fried:before {
content: "\f5c6";
}
.fi-br-egg:before {
content: "\f5c7";
}
.fi-br-eject:before {
content: "\f5c8";
}
.fi-br-elephant:before {
content: "\f5c9";
}
.fi-br-elevator:before {
content: "\f5ca";
}
.fi-br-email-pending:before {
content: "\f5cb";
}
.fi-br-employee-alt:before {
content: "\f5cc";
}
.fi-br-employee-handbook:before {
content: "\f5cd";
}
.fi-br-employee-man-alt:before {
content: "\f5ce";
}
.fi-br-employee-man:before {
content: "\f5cf";
}
.fi-br-employees-woman-man:before {
content: "\f5d0";
}
.fi-br-employees:before {
content: "\f5d1";
}
.fi-br-empty-set:before {
content: "\f5d2";
}
.fi-br-endless-loop:before {
content: "\f5d3";
}
.fi-br-engine-warning:before {
content: "\f5d4";
}
.fi-br-engine:before {
content: "\f5d5";
}
.fi-br-enter:before {
content: "\f5d6";
}
.fi-br-envelope-ban:before {
content: "\f5d7";
}
.fi-br-envelope-bulk:before {
content: "\f5d8";
}
.fi-br-envelope-dot:before {
content: "\f5d9";
}
.fi-br-envelope-download:before {
content: "\f5da";
}
.fi-br-envelope-heart:before {
content: "\f5db";
}
.fi-br-envelope-marker:before {
content: "\f5dc";
}
.fi-br-envelope-open-dollar:before {
content: "\f5dd";
}
.fi-br-envelope-open-text:before {
content: "\f5de";
}
.fi-br-envelope-open:before {
content: "\f5df";
}
.fi-br-envelope-plus:before {
content: "\f5e0";
}
.fi-br-envelope:before {
content: "\f5e1";
}
.fi-br-envelopes:before {
content: "\f5e2";
}
.fi-br-equality:before {
content: "\f5e3";
}
.fi-br-equals:before {
content: "\f5e4";
}
.fi-br-eraser:before {
content: "\f5e5";
}
.fi-br-error-camera:before {
content: "\f5e6";
}
.fi-br-escalator:before {
content: "\f5e7";
}
.fi-br-ethernet:before {
content: "\f5e8";
}
.fi-br-euro:before {
content: "\f5e9";
}
.fi-br-excavator:before {
content: "\f5ea";
}
.fi-br-exchange-alt:before {
content: "\f5eb";
}
.fi-br-exchange-cryptocurrency:before {
content: "\f5ec";
}
.fi-br-exchange:before {
content: "\f5ed";
}
.fi-br-exclamation:before {
content: "\f5ee";
}
.fi-br-exit-alt:before {
content: "\f5ef";
}
.fi-br-exit:before {
content: "\f5f0";
}
.fi-br-expand-arrows-alt:before {
content: "\f5f1";
}
.fi-br-expand-arrows:before {
content: "\f5f2";
}
.fi-br-expand:before {
content: "\f5f3";
}
.fi-br-expense-bill:before {
content: "\f5f4";
}
.fi-br-expense:before {
content: "\f5f5";
}
.fi-br-external-hard-drive:before {
content: "\f5f6";
}
.fi-br-external-world:before {
content: "\f5f7";
}
.fi-br-eye-crossed:before {
content: "\f5f8";
}
.fi-br-eye-dropper-half:before {
content: "\f5f9";
}
.fi-br-eye-dropper:before {
content: "\f5fa";
}
.fi-br-eye:before {
content: "\f5fb";
}
.fi-br-eyes:before {
content: "\f5fc";
}
.fi-br-f:before {
content: "\f5fd";
}
.fi-br-fabric:before {
content: "\f5fe";
}
.fi-br-face-angry-horns:before {
content: "\f5ff";
}
.fi-br-face-anguished:before {
content: "\f600";
}
.fi-br-face-anxious-sweat:before {
content: "\f601";
}
.fi-br-face-astonished:before {
content: "\f602";
}
.fi-br-face-awesome:before {
content: "\f603";
}
.fi-br-face-beam-hand-over-mouth:before {
content: "\f604";
}
.fi-br-face-confounded:before {
content: "\f605";
}
.fi-br-face-confused:before {
content: "\f606";
}
.fi-br-face-cowboy-hat:before {
content: "\f607";
}
.fi-br-face-disappointed:before {
content: "\f608";
}
.fi-br-face-disguise:before {
content: "\f609";
}
.fi-br-face-downcast-sweat:before {
content: "\f60a";
}
.fi-br-face-drooling:before {
content: "\f60b";
}
.fi-br-face-explode:before {
content: "\f60c";
}
.fi-br-face-expressionless:before {
content: "\f60d";
}
.fi-br-face-eyes-xmarks:before {
content: "\f60e";
}
.fi-br-face-fearful:before {
content: "\f60f";
}
.fi-br-face-glasses:before {
content: "\f610";
}
.fi-br-face-grin-tongue-wink:before {
content: "\f611";
}
.fi-br-face-hand-yawn:before {
content: "\f612";
}
.fi-br-face-head-bandage:before {
content: "\f613";
}
.fi-br-face-hushed:before {
content: "\f614";
}
.fi-br-face-icicles:before {
content: "\f615";
}
.fi-br-face-lying:before {
content: "\f616";
}
.fi-br-face-mask:before {
content: "\f617";
}
.fi-br-face-monocle:before {
content: "\f618";
}
.fi-br-face-nauseated:before {
content: "\f619";
}
.fi-br-face-nose-steam:before {
content: "\f61a";
}
.fi-br-face-party:before {
content: "\f61b";
}
.fi-br-face-pensive:before {
content: "\f61c";
}
.fi-br-face-persevering:before {
content: "\f61d";
}
.fi-br-face-pleading:before {
content: "\f61e";
}
.fi-br-face-raised-eyebrow:before {
content: "\f61f";
}
.fi-br-face-relieved:before {
content: "\f620";
}
.fi-br-face-sad-sweat:before {
content: "\f621";
}
.fi-br-face-scream:before {
content: "\f622";
}
.fi-br-face-shush:before {
content: "\f623";
}
.fi-br-face-sleeping:before {
content: "\f624";
}
.fi-br-face-sleepy:before {
content: "\f625";
}
.fi-br-face-smile-halo:before {
content: "\f626";
}
.fi-br-face-smile-hearts:before {
content: "\f627";
}
.fi-br-face-smile-horns:before {
content: "\f628";
}
.fi-br-face-smile-tear:before {
content: "\f629";
}
.fi-br-face-smile-tongue:before {
content: "\f62a";
}
.fi-br-face-smile-upside-down:before {
content: "\f62b";
}
.fi-br-face-smiling-hands:before {
content: "\f62c";
}
.fi-br-face-smirking:before {
content: "\f62d";
}
.fi-br-face-sunglasses-alt:before {
content: "\f62e";
}
.fi-br-face-sunglasses:before {
content: "\f62f";
}
.fi-br-face-swear:before {
content: "\f630";
}
.fi-br-face-thermometer:before {
content: "\f631";
}
.fi-br-face-thinking:before {
content: "\f632";
}
.fi-br-face-tissue:before {
content: "\f633";
}
.fi-br-face-tongue-money:before {
content: "\f634";
}
.fi-br-face-tongue-sweat:before {
content: "\f635";
}
.fi-br-face-unamused:before {
content: "\f636";
}
.fi-br-face-viewfinder:before {
content: "\f637";
}
.fi-br-face-vomit:before {
content: "\f638";
}
.fi-br-face-weary:before {
content: "\f639";
}
.fi-br-face-woozy:before {
content: "\f63a";
}
.fi-br-face-worried:before {
content: "\f63b";
}
.fi-br-face-zany:before {
content: "\f63c";
}
.fi-br-face-zipper:before {
content: "\f63d";
}
.fi-br-fail:before {
content: "\f63e";
}
.fi-br-falafel:before {
content: "\f63f";
}
.fi-br-family-dress:before {
content: "\f640";
}
.fi-br-family-pants:before {
content: "\f641";
}
.fi-br-family:before {
content: "\f642";
}
.fi-br-fan-table:before {
content: "\f643";
}
.fi-br-fan:before {
content: "\f644";
}
.fi-br-farm:before {
content: "\f645";
}
.fi-br-faucet-drip:before {
content: "\f646";
}
.fi-br-faucet:before {
content: "\f647";
}
.fi-br-fax:before {
content: "\f648";
}
.fi-br-feather-pointed:before {
content: "\f649";
}
.fi-br-feather:before {
content: "\f64a";
}
.fi-br-features-alt:before {
content: "\f64b";
}
.fi-br-features:before {
content: "\f64c";
}
.fi-br-fee-receipt:before {
content: "\f64d";
}
.fi-br-fee:before {
content: "\f64e";
}
.fi-br-feedback-alt:before {
content: "\f64f";
}
.fi-br-feedback-cycle-loop:before {
content: "\f650";
}
.fi-br-feedback-hand:before {
content: "\f651";
}
.fi-br-feedback-review:before {
content: "\f652";
}
.fi-br-feedback:before {
content: "\f653";
}
.fi-br-female-couple:before {
content: "\f654";
}
.fi-br-female:before {
content: "\f655";
}
.fi-br-fence:before {
content: "\f656";
}
.fi-br-ferris-wheel:before {
content: "\f657";
}
.fi-br-field-hockey:before {
content: "\f658";
}
.fi-br-fighter-jet:before {
content: "\f659";
}
.fi-br-file-ai:before {
content: "\f65a";
}
.fi-br-file-audio:before {
content: "\f65b";
}
.fi-br-file-binary:before {
content: "\f65c";
}
.fi-br-file-chart-line:before {
content: "\f65d";
}
.fi-br-file-chart-pie:before {
content: "\f65e";
}
.fi-br-file-circle-info:before {
content: "\f65f";
}
.fi-br-file-cloud:before {
content: "\f660";
}
.fi-br-file-code:before {
content: "\f661";
}
.fi-br-file-csv:before {
content: "\f662";
}
.fi-br-file-download:before {
content: "\f663";
}
.fi-br-file-edit:before {
content: "\f664";
}
.fi-br-file-eps:before {
content: "\f665";
}
.fi-br-file-excel:before {
content: "\f666";
}
.fi-br-file-exclamation:before {
content: "\f667";
}
.fi-br-file-export:before {
content: "\f668";
}
.fi-br-file-image:before {
content: "\f669";
}
.fi-br-file-import:before {
content: "\f66a";
}
.fi-br-file-invoice-dollar:before {
content: "\f66b";
}
.fi-br-file-invoice:before {
content: "\f66c";
}
.fi-br-file-medical-alt:before {
content: "\f66d";
}
.fi-br-file-medical:before {
content: "\f66e";
}
.fi-br-file-minus:before {
content: "\f66f";
}
.fi-br-file-pdf:before {
content: "\f670";
}
.fi-br-file-powerpoint:before {
content: "\f671";
}
.fi-br-file-prescription:before {
content: "\f672";
}
.fi-br-file-psd:before {
content: "\f673";
}
.fi-br-file-signature:before {
content: "\f674";
}
.fi-br-file-spreadsheet:before {
content: "\f675";
}
.fi-br-file-upload:before {
content: "\f676";
}
.fi-br-file-user:before {
content: "\f677";
}
.fi-br-file-video:before {
content: "\f678";
}
.fi-br-file-word:before {
content: "\f679";
}
.fi-br-file-zipper:before {
content: "\f67a";
}
.fi-br-file:before {
content: "\f67b";
}
.fi-br-files-medical:before {
content: "\f67c";
}
.fi-br-fill:before {
content: "\f67d";
}
.fi-br-film-canister:before {
content: "\f67e";
}
.fi-br-film-slash:before {
content: "\f67f";
}
.fi-br-film:before {
content: "\f680";
}
.fi-br-films:before {
content: "\f681";
}
.fi-br-filter-list:before {
content: "\f682";
}
.fi-br-filter-slash:before {
content: "\f683";
}
.fi-br-filter:before {
content: "\f684";
}
.fi-br-filters:before {
content: "\f685";
}
.fi-br-fingerprint-security-risk:before {
content: "\f686";
}
.fi-br-fingerprint:before {
content: "\f687";
}
.fi-br-fire-burner:before {
content: "\f688";
}
.fi-br-fire-extinguisher:before {
content: "\f689";
}
.fi-br-fire-flame-curved:before {
content: "\f68a";
}
.fi-br-fire-flame-simple:before {
content: "\f68b";
}
.fi-br-fire-hydrant:before {
content: "\f68c";
}
.fi-br-fire-smoke:before {
content: "\f68d";
}
.fi-br-fireplace:before {
content: "\f68e";
}
.fi-br-first-award:before {
content: "\f68f";
}
.fi-br-first-laurel:before {
content: "\f690";
}
.fi-br-first-medal:before {
content: "\f691";
}
.fi-br-first:before {
content: "\f692";
}
.fi-br-fish-bones:before {
content: "\f693";
}
.fi-br-fish-cooked:before {
content: "\f694";
}
.fi-br-fish:before {
content: "\f695";
}
.fi-br-fishing-rod:before {
content: "\f696";
}
.fi-br-fist-move:before {
content: "\f697";
}
.fi-br-flag-alt:before {
content: "\f698";
}
.fi-br-flag-checkered:before {
content: "\f699";
}
.fi-br-flag-usa:before {
content: "\f69a";
}
.fi-br-flag:before {
content: "\f69b";
}
.fi-br-flame:before {
content: "\f69c";
}
.fi-br-flashlight:before {
content: "\f69d";
}
.fi-br-flask-gear:before {
content: "\f69e";
}
.fi-br-flask-poison:before {
content: "\f69f";
}
.fi-br-flask-potion:before {
content: "\f6a0";
}
.fi-br-flask:before {
content: "\f6a1";
}
.fi-br-flatbread-stuffed:before {
content: "\f6a2";
}
.fi-br-flatbread:before {
content: "\f6a3";
}
.fi-br-flip-horizontal:before {
content: "\f6a4";
}
.fi-br-floor-alt:before {
content: "\f6a5";
}
.fi-br-floor-layer:before {
content: "\f6a6";
}
.fi-br-floor:before {
content: "\f6a7";
}
.fi-br-floppy-disk-circle-arrow-right:before {
content: "\f6a8";
}
.fi-br-floppy-disk-circle-xmark:before {
content: "\f6a9";
}
.fi-br-floppy-disk-pen:before {
content: "\f6aa";
}
.fi-br-floppy-disks:before {
content: "\f6ab";
}
.fi-br-florin-sign:before {
content: "\f6ac";
}
.fi-br-flower-bouquet:before {
content: "\f6ad";
}
.fi-br-flower-butterfly:before {
content: "\f6ae";
}
.fi-br-flower-daffodil:before {
content: "\f6af";
}
.fi-br-flower-tulip:before {
content: "\f6b0";
}
.fi-br-flower:before {
content: "\f6b1";
}
.fi-br-flushed-face:before {
content: "\f6b2";
}
.fi-br-flushed:before {
content: "\f6b3";
}
.fi-br-flute:before {
content: "\f6b4";
}
.fi-br-flux-capacitor:before {
content: "\f6b5";
}
.fi-br-fly-insect:before {
content: "\f6b6";
}
.fi-br-flying-disc:before {
content: "\f6b7";
}
.fi-br-fog:before {
content: "\f6b8";
}
.fi-br-folder-download:before {
content: "\f6b9";
}
.fi-br-folder-fire:before {
content: "\f6ba";
}
.fi-br-folder-minus:before {
content: "\f6bb";
}
.fi-br-folder-open:before {
content: "\f6bc";
}
.fi-br-folder-times:before {
content: "\f6bd";
}
.fi-br-folder-tree:before {
content: "\f6be";
}
.fi-br-folder-upload:before {
content: "\f6bf";
}
.fi-br-folder-xmark:before {
content: "\f6c0";
}
.fi-br-folder:before {
content: "\f6c1";
}
.fi-br-folders:before {
content: "\f6c2";
}
.fi-br-follow-folder:before {
content: "\f6c3";
}
.fi-br-followcollection:before {
content: "\f6c4";
}
.fi-br-following:before {
content: "\f6c5";
}
.fi-br-fondue-pot:before {
content: "\f6c6";
}
.fi-br-football:before {
content: "\f6c7";
}
.fi-br-foreign-language-audio:before {
content: "\f6c8";
}
.fi-br-fork:before {
content: "\f6c9";
}
.fi-br-forklift:before {
content: "\f6ca";
}
.fi-br-form:before {
content: "\f6cb";
}
.fi-br-fort:before {
content: "\f6cc";
}
.fi-br-forward-fast:before {
content: "\f6cd";
}
.fi-br-forward:before {
content: "\f6ce";
}
.fi-br-fox:before {
content: "\f6cf";
}
.fi-br-frame:before {
content: "\f6d0";
}
.fi-br-franc-sign:before {
content: "\f6d1";
}
.fi-br-free-delivery:before {
content: "\f6d2";
}
.fi-br-free:before {
content: "\f6d3";
}
.fi-br-french-fries:before {
content: "\f6d4";
}
.fi-br-friday:before {
content: "\f6d5";
}
.fi-br-frog:before {
content: "\f6d6";
}
.fi-br-ftp:before {
content: "\f6d7";
}
.fi-br-fuel-gauge:before {
content: "\f6d8";
}
.fi-br-function-process:before {
content: "\f6d9";
}
.fi-br-function-square:before {
content: "\f6da";
}
.fi-br-function:before {
content: "\f6db";
}
.fi-br-funnel-dollar:before {
content: "\f6dc";
}
.fi-br-g:before {
content: "\f6dd";
}
.fi-br-galaxy-alt:before {
content: "\f6de";
}
.fi-br-galaxy-planet:before {
content: "\f6df";
}
.fi-br-galaxy-star:before {
content: "\f6e0";
}
.fi-br-galaxy:before {
content: "\f6e1";
}
.fi-br-gallery-thumbnails:before {
content: "\f6e2";
}
.fi-br-gallery:before {
content: "\f6e3";
}
.fi-br-game-board-alt:before {
content: "\f6e4";
}
.fi-br-gamepad:before {
content: "\f6e5";
}
.fi-br-garage-car:before {
content: "\f6e6";
}
.fi-br-garage-open:before {
content: "\f6e7";
}
.fi-br-garage:before {
content: "\f6e8";
}
.fi-br-garlic-alt:before {
content: "\f6e9";
}
.fi-br-garlic:before {
content: "\f6ea";
}
.fi-br-gas-pump-alt:before {
content: "\f6eb";
}
.fi-br-gas-pump-slash:before {
content: "\f6ec";
}
.fi-br-gas-pump:before {
content: "\f6ed";
}
.fi-br-gauge-circle-bolt:before {
content: "\f6ee";
}
.fi-br-gauge-circle-minus:before {
content: "\f6ef";
}
.fi-br-gauge-circle-plus:before {
content: "\f6f0";
}
.fi-br-gavel:before {
content: "\f6f1";
}
.fi-br-gay-couple:before {
content: "\f6f2";
}
.fi-br-gears:before {
content: "\f6f3";
}
.fi-br-gem:before {
content: "\f6f4";
}
.fi-br-general:before {
content: "\f6f5";
}
.fi-br-ghost:before {
content: "\f6f6";
}
.fi-br-gif-square:before {
content: "\f6f7";
}
.fi-br-gif:before {
content: "\f6f8";
}
.fi-br-gift-box-benefits:before {
content: "\f6f9";
}
.fi-br-gift-card:before {
content: "\f6fa";
}
.fi-br-gift:before {
content: "\f6fb";
}
.fi-br-gifts:before {
content: "\f6fc";
}
.fi-br-gingerbread-man:before {
content: "\f6fd";
}
.fi-br-glass-champagne:before {
content: "\f6fe";
}
.fi-br-glass-cheers:before {
content: "\f6ff";
}
.fi-br-glass-citrus:before {
content: "\f700";
}
.fi-br-glass-empty:before {
content: "\f701";
}
.fi-br-glass-half:before {
content: "\f702";
}
.fi-br-glass-water-droplet:before {
content: "\f703";
}
.fi-br-glass-whiskey-rocks:before {
content: "\f704";
}
.fi-br-glass-whiskey:before {
content: "\f705";
}
.fi-br-glass:before {
content: "\f706";
}
.fi-br-glasses:before {
content: "\f707";
}
.fi-br-globe-alt:before {
content: "\f708";
}
.fi-br-globe-pointer:before {
content: "\f709";
}
.fi-br-globe-snow:before {
content: "\f70a";
}
.fi-br-globe:before {
content: "\f70b";
}
.fi-br-goal-net:before {
content: "\f70c";
}
.fi-br-golf-ball:before {
content: "\f70d";
}
.fi-br-golf-club:before {
content: "\f70e";
}
.fi-br-golf-hole:before {
content: "\f70f";
}
.fi-br-golf:before {
content: "\f710";
}
.fi-br-gopuram:before {
content: "\f711";
}
.fi-br-government-budget:before {
content: "\f712";
}
.fi-br-government-flag:before {
content: "\f713";
}
.fi-br-government-user:before {
content: "\f714";
}
.fi-br-gps-navigation:before {
content: "\f715";
}
.fi-br-graduation-cap:before {
content: "\f716";
}
.fi-br-gramophone:before {
content: "\f717";
}
.fi-br-grape:before {
content: "\f718";
}
.fi-br-graph-curve:before {
content: "\f719";
}
.fi-br-graphic-style:before {
content: "\f71a";
}
.fi-br-graphic-tablet:before {
content: "\f71b";
}
.fi-br-grate-droplet:before {
content: "\f71c";
}
.fi-br-grate:before {
content: "\f71d";
}
.fi-br-greater-than-equal:before {
content: "\f71e";
}
.fi-br-greater-than:before {
content: "\f71f";
}
.fi-br-greek-helmet:before {
content: "\f720";
}
.fi-br-grid-alt:before {
content: "\f721";
}
.fi-br-grid-dividers:before {
content: "\f722";
}
.fi-br-grid:before {
content: "\f723";
}
.fi-br-grill-hot-alt:before {
content: "\f724";
}
.fi-br-grill:before {
content: "\f725";
}
.fi-br-grimace:before {
content: "\f726";
}
.fi-br-grin-alt:before {
content: "\f727";
}
.fi-br-grin-beam-sweat:before {
content: "\f728";
}
.fi-br-grin-beam:before {
content: "\f729";
}
.fi-br-grin-hearts:before {
content: "\f72a";
}
.fi-br-grin-squint-tears:before {
content: "\f72b";
}
.fi-br-grin-squint:before {
content: "\f72c";
}
.fi-br-grin-stars:before {
content: "\f72d";
}
.fi-br-grin-tears:before {
content: "\f72e";
}
.fi-br-grin-tongue-squint:before {
content: "\f72f";
}
.fi-br-grin-tongue-wink:before {
content: "\f730";
}
.fi-br-grin-tongue:before {
content: "\f731";
}
.fi-br-grin-wink:before {
content: "\f732";
}
.fi-br-grin:before {
content: "\f733";
}
.fi-br-grip-dots-vertical:before {
content: "\f734";
}
.fi-br-grip-dots:before {
content: "\f735";
}
.fi-br-grip-horizontal:before {
content: "\f736";
}
.fi-br-grip-lines-vertical:before {
content: "\f737";
}
.fi-br-grip-lines:before {
content: "\f738";
}
.fi-br-grip-vertical:before {
content: "\f739";
}
.fi-br-grocery-bag:before {
content: "\f73a";
}
.fi-br-grocery-basket:before {
content: "\f73b";
}
.fi-br-group-arrows-rotate:before {
content: "\f73c";
}
.fi-br-group-call:before {
content: "\f73d";
}
.fi-br-group-community-social-media:before {
content: "\f73e";
}
.fi-br-growth-chart-invest:before {
content: "\f73f";
}
.fi-br-guarani-sign:before {
content: "\f740";
}
.fi-br-guide-alt:before {
content: "\f741";
}
.fi-br-guide:before {
content: "\f742";
}
.fi-br-guitar-electric:before {
content: "\f743";
}
.fi-br-guitar:before {
content: "\f744";
}
.fi-br-guitars:before {
content: "\f745";
}
.fi-br-gun-squirt:before {
content: "\f746";
}
.fi-br-gym:before {
content: "\f747";
}
.fi-br-h-square:before {
content: "\f748";
}
.fi-br-h:before {
content: "\f749";
}
.fi-br-h1:before {
content: "\f74a";
}
.fi-br-h2:before {
content: "\f74b";
}
.fi-br-h3:before {
content: "\f74c";
}
.fi-br-h4:before {
content: "\f74d";
}
.fi-br-hair-clipper:before {
content: "\f74e";
}
.fi-br-hamburger-soda:before {
content: "\f74f";
}
.fi-br-hamburger:before {
content: "\f750";
}
.fi-br-hammer-crash:before {
content: "\f751";
}
.fi-br-hammer-war:before {
content: "\f752";
}
.fi-br-hammer:before {
content: "\f753";
}
.fi-br-hamsa:before {
content: "\f754";
}
.fi-br-hand-back-fist:before {
content: "\f755";
}
.fi-br-hand-back-point-down:before {
content: "\f756";
}
.fi-br-hand-back-point-left:before {
content: "\f757";
}
.fi-br-hand-back-point-ribbon:before {
content: "\f758";
}
.fi-br-hand-back-point-right:before {
content: "\f759";
}
.fi-br-hand-bill:before {
content: "\f75a";
}
.fi-br-hand-dots:before {
content: "\f75b";
}
.fi-br-hand-fingers-crossed:before {
content: "\f75c";
}
.fi-br-hand-fist:before {
content: "\f75d";
}
.fi-br-hand-heart:before {
content: "\f75e";
}
.fi-br-hand-holding-box:before {
content: "\f75f";
}
.fi-br-hand-holding-droplet:before {
content: "\f760";
}
.fi-br-hand-holding-magic:before {
content: "\f761";
}
.fi-br-hand-holding-medical:before {
content: "\f762";
}
.fi-br-hand-holding-seeding:before {
content: "\f763";
}
.fi-br-hand-holding-skull:before {
content: "\f764";
}
.fi-br-hand-holding-usd:before {
content: "\f765";
}
.fi-br-hand-holding-water:before {
content: "\f766";
}
.fi-br-hand-horns:before {
content: "\f767";
}
.fi-br-hand-lizard:before {
content: "\f768";
}
.fi-br-hand-love:before {
content: "\f769";
}
.fi-br-hand-middle-finger:before {
content: "\f76a";
}
.fi-br-hand-paper:before {
content: "\f76b";
}
.fi-br-hand-peace:before {
content: "\f76c";
}
.fi-br-hand-point-ribbon:before {
content: "\f76d";
}
.fi-br-hand-scissors:before {
content: "\f76e";
}
.fi-br-hand-sparkles:before {
content: "\f76f";
}
.fi-br-hand-spock:before {
content: "\f770";
}
.fi-br-hand-wave:before {
content: "\f771";
}
.fi-br-hand:before {
content: "\f772";
}
.fi-br-handmade:before {
content: "\f773";
}
.fi-br-hands-bubbles:before {
content: "\f774";
}
.fi-br-hands-clapping:before {
content: "\f775";
}
.fi-br-hands-heart:before {
content: "\f776";
}
.fi-br-hands-holding-diamond:before {
content: "\f777";
}
.fi-br-hands-holding:before {
content: "\f778";
}
.fi-br-hands-usd:before {
content: "\f779";
}
.fi-br-handshake-angle:before {
content: "\f77a";
}
.fi-br-handshake-deal-loan:before {
content: "\f77b";
}
.fi-br-handshake-house:before {
content: "\f77c";
}
.fi-br-handshake-simple-slash:before {
content: "\f77d";
}
.fi-br-handshake-trust:before {
content: "\f77e";
}
.fi-br-handshake:before {
content: "\f77f";
}
.fi-br-happy:before {
content: "\f780";
}
.fi-br-hard-hat:before {
content: "\f781";
}
.fi-br-hashtag-lock:before {
content: "\f782";
}
.fi-br-hastag:before {
content: "\f783";
}
.fi-br-hat-beach:before {
content: "\f784";
}
.fi-br-hat-birthday:before {
content: "\f785";
}
.fi-br-hat-chef:before {
content: "\f786";
}
.fi-br-hat-cowboy-side:before {
content: "\f787";
}
.fi-br-hat-cowboy:before {
content: "\f788";
}
.fi-br-hat-santa:before {
content: "\f789";
}
.fi-br-hat-winter:before {
content: "\f78a";
}
.fi-br-hat-witch:before {
content: "\f78b";
}
.fi-br-hat-wizard:before {
content: "\f78c";
}
.fi-br-hdd:before {
content: "\f78d";
}
.fi-br-head-side-brain:before {
content: "\f78e";
}
.fi-br-head-side-cough-slash:before {
content: "\f78f";
}
.fi-br-head-side-cough:before {
content: "\f790";
}
.fi-br-head-side-headphones:before {
content: "\f791";
}
.fi-br-head-side-heart:before {
content: "\f792";
}
.fi-br-head-side-mask:before {
content: "\f793";
}
.fi-br-head-side-medical:before {
content: "\f794";
}
.fi-br-head-side-thinking:before {
content: "\f795";
}
.fi-br-head-side-virus:before {
content: "\f796";
}
.fi-br-head-side:before {
content: "\f797";
}
.fi-br-head-vr:before {
content: "\f798";
}
.fi-br-heading:before {
content: "\f799";
}
.fi-br-headphones:before {
content: "\f79a";
}
.fi-br-headset:before {
content: "\f79b";
}
.fi-br-heart-arrow:before {
content: "\f79c";
}
.fi-br-heart-brain:before {
content: "\f79d";
}
.fi-br-heart-crack:before {
content: "\f79e";
}
.fi-br-heart-half-stroke:before {
content: "\f79f";
}
.fi-br-heart-half:before {
content: "\f7a0";
}
.fi-br-heart-health-muscle:before {
content: "\f7a1";
}
.fi-br-heart-lock:before {
content: "\f7a2";
}
.fi-br-heart-partner-handshake:before {
content: "\f7a3";
}
.fi-br-heart-rate:before {
content: "\f7a4";
}
.fi-br-heart-slash:before {
content: "\f7a5";
}
.fi-br-heart-upside-down:before {
content: "\f7a6";
}
.fi-br-heart:before {
content: "\f7a7";
}
.fi-br-heat:before {
content: "\f7a8";
}
.fi-br-helicopter-side:before {
content: "\f7a9";
}
.fi-br-helmet-battle:before {
content: "\f7aa";
}
.fi-br-hexagon-check:before {
content: "\f7ab";
}
.fi-br-hexagon-divide:before {
content: "\f7ac";
}
.fi-br-hexagon-exclamation:before {
content: "\f7ad";
}
.fi-br-hexagon:before {
content: "\f7ae";
}
.fi-br-high-definition:before {
content: "\f7af";
}
.fi-br-high-five-celebration-yes:before {
content: "\f7b0";
}
.fi-br-high-five:before {
content: "\f7b1";
}
.fi-br-highlighter-line:before {
content: "\f7b2";
}
.fi-br-highlighter:before {
content: "\f7b3";
}
.fi-br-hiking:before {
content: "\f7b4";
}
.fi-br-hippo:before {
content: "\f7b5";
}
.fi-br-hockey-mask:before {
content: "\f7b6";
}
.fi-br-hockey-puck:before {
content: "\f7b7";
}
.fi-br-hockey-stick-puck:before {
content: "\f7b8";
}
.fi-br-hockey-sticks:before {
content: "\f7b9";
}
.fi-br-holding-hand-gear:before {
content: "\f7ba";
}
.fi-br-holding-hand-revenue:before {
content: "\f7bb";
}
.fi-br-holly-berry:before {
content: "\f7bc";
}
.fi-br-home-heart:before {
content: "\f7bd";
}
.fi-br-home-location-alt:before {
content: "\f7be";
}
.fi-br-home-location:before {
content: "\f7bf";
}
.fi-br-home:before {
content: "\f7c0";
}
.fi-br-honey-pot:before {
content: "\f7c1";
}
.fi-br-hood-cloak:before {
content: "\f7c2";
}
.fi-br-horizontal-rule:before {
content: "\f7c3";
}
.fi-br-horse-head:before {
content: "\f7c4";
}
.fi-br-horse-saddle:before {
content: "\f7c5";
}
.fi-br-horse:before {
content: "\f7c6";
}
.fi-br-horseshoe-broken:before {
content: "\f7c7";
}
.fi-br-horseshoe:before {
content: "\f7c8";
}
.fi-br-hose-reel:before {
content: "\f7c9";
}
.fi-br-hose:before {
content: "\f7ca";
}
.fi-br-hospital-symbol:before {
content: "\f7cb";
}
.fi-br-hospital-user:before {
content: "\f7cc";
}
.fi-br-hospital:before {
content: "\f7cd";
}
.fi-br-hospitals:before {
content: "\f7ce";
}
.fi-br-hot-tub:before {
content: "\f7cf";
}
.fi-br-hotdog:before {
content: "\f7d0";
}
.fi-br-hotel:before {
content: "\f7d1";
}
.fi-br-hourglass-end:before {
content: "\f7d2";
}
.fi-br-hourglass-start:before {
content: "\f7d3";
}
.fi-br-hourglass:before {
content: "\f7d4";
}
.fi-br-house-blank:before {
content: "\f7d5";
}
.fi-br-house-building:before {
content: "\f7d6";
}
.fi-br-house-chimney-blank:before {
content: "\f7d7";
}
.fi-br-house-chimney-crack:before {
content: "\f7d8";
}
.fi-br-house-chimney-heart:before {
content: "\f7d9";
}
.fi-br-house-chimney-medical:before {
content: "\f7da";
}
.fi-br-house-chimney-user:before {
content: "\f7db";
}
.fi-br-house-chimney-window:before {
content: "\f7dc";
}
.fi-br-house-chimney:before {
content: "\f7dd";
}
.fi-br-house-circle-check:before {
content: "\f7de";
}
.fi-br-house-circle-exclamation:before {
content: "\f7df";
}
.fi-br-house-circle-xmark:before {
content: "\f7e0";
}
.fi-br-house-crack-alt:before {
content: "\f7e1";
}
.fi-br-house-crack:before {
content: "\f7e2";
}
.fi-br-house-day:before {
content: "\f7e3";
}
.fi-br-house-fire:before {
content: "\f7e4";
}
.fi-br-house-flag:before {
content: "\f7e5";
}
.fi-br-house-flood:before {
content: "\f7e6";
}
.fi-br-house-laptop:before {
content: "\f7e7";
}
.fi-br-house-leave:before {
content: "\f7e8";
}
.fi-br-house-lock:before {
content: "\f7e9";
}
.fi-br-house-medical:before {
content: "\f7ea";
}
.fi-br-house-night:before {
content: "\f7eb";
}
.fi-br-house-return:before {
content: "\f7ec";
}
.fi-br-house-signal:before {
content: "\f7ed";
}
.fi-br-house-tree:before {
content: "\f7ee";
}
.fi-br-house-tsunami:before {
content: "\f7ef";
}
.fi-br-house-turret:before {
content: "\f7f0";
}
.fi-br-house-user:before {
content: "\f7f1";
}
.fi-br-house-window:before {
content: "\f7f2";
}
.fi-br-hr-group:before {
content: "\f7f3";
}
.fi-br-hr-person:before {
content: "\f7f4";
}
.fi-br-hr:before {
content: "\f7f5";
}
.fi-br-hryvnia:before {
content: "\f7f6";
}
.fi-br-humidity:before {
content: "\f7f7";
}
.fi-br-hundred-points:before {
content: "\f7f8";
}
.fi-br-hurricane:before {
content: "\f7f9";
}
.fi-br-i:before {
content: "\f7fa";
}
.fi-br-ice-cream:before {
content: "\f7fb";
}
.fi-br-ice-skate:before {
content: "\f7fc";
}
.fi-br-icicles:before {
content: "\f7fd";
}
.fi-br-icon-star:before {
content: "\f7fe";
}
.fi-br-id-badge:before {
content: "\f7ff";
}
.fi-br-id-card-clip-alt:before {
content: "\f800";
}
.fi-br-igloo:before {
content: "\f801";
}
.fi-br-image-slash:before {
content: "\f802";
}
.fi-br-images-user:before {
content: "\f803";
}
.fi-br-images:before {
content: "\f804";
}
.fi-br-improve-user:before {
content: "\f805";
}
.fi-br-inbox-full:before {
content: "\f806";
}
.fi-br-inbox-in:before {
content: "\f807";
}
.fi-br-inbox-out:before {
content: "\f808";
}
.fi-br-inbox:before {
content: "\f809";
}
.fi-br-inboxes:before {
content: "\f80a";
}
.fi-br-incense-sticks-yoga:before {
content: "\f80b";
}
.fi-br-incognito:before {
content: "\f80c";
}
.fi-br-indent:before {
content: "\f80d";
}
.fi-br-indian-rupee-sign:before {
content: "\f80e";
}
.fi-br-industry-alt:before {
content: "\f80f";
}
.fi-br-industry-windows:before {
content: "\f810";
}
.fi-br-infinity:before {
content: "\f811";
}
.fi-br-info-guide:before {
content: "\f812";
}
.fi-br-info:before {
content: "\f813";
}
.fi-br-information:before {
content: "\f814";
}
.fi-br-inhaler:before {
content: "\f815";
}
.fi-br-input-numeric:before {
content: "\f816";
}
.fi-br-input-pipe:before {
content: "\f817";
}
.fi-br-input-text:before {
content: "\f818";
}
.fi-br-insert-alt:before {
content: "\f819";
}
.fi-br-insert-arrows:before {
content: "\f81a";
}
.fi-br-insert-button-circle:before {
content: "\f81b";
}
.fi-br-insert-credit-card:before {
content: "\f81c";
}
.fi-br-insert-square:before {
content: "\f81d";
}
.fi-br-insert:before {
content: "\f81e";
}
.fi-br-insight-alt:before {
content: "\f81f";
}
.fi-br-insight-head:before {
content: "\f820";
}
.fi-br-insight:before {
content: "\f821";
}
.fi-br-integral:before {
content: "\f822";
}
.fi-br-interactive:before {
content: "\f823";
}
.fi-br-interlining:before {
content: "\f824";
}
.fi-br-internet-speed-wifi:before {
content: "\f825";
}
.fi-br-interrogation:before {
content: "\f826";
}
.fi-br-intersection:before {
content: "\f827";
}
.fi-br-introduction-handshake:before {
content: "\f828";
}
.fi-br-introduction:before {
content: "\f829";
}
.fi-br-inventory-alt:before {
content: "\f82a";
}
.fi-br-invest:before {
content: "\f82b";
}
.fi-br-investment:before {
content: "\f82c";
}
.fi-br-invite-alt:before {
content: "\f82d";
}
.fi-br-invite:before {
content: "\f82e";
}
.fi-br-iot-alt:before {
content: "\f82f";
}
.fi-br-iot:before {
content: "\f830";
}
.fi-br-ip-address:before {
content: "\f831";
}
.fi-br-island-tropical:before {
content: "\f832";
}
.fi-br-issue-loupe:before {
content: "\f833";
}
.fi-br-it-alt:before {
content: "\f834";
}
.fi-br-it-computer:before {
content: "\f835";
}
.fi-br-it:before {
content: "\f836";
}
.fi-br-italian-lira-sign:before {
content: "\f837";
}
.fi-br-italic:before {
content: "\f838";
}
.fi-br-j:before {
content: "\f839";
}
.fi-br-jam:before {
content: "\f83a";
}
.fi-br-jar-alt:before {
content: "\f83b";
}
.fi-br-jar-wheat:before {
content: "\f83c";
}
.fi-br-javascript:before {
content: "\f83d";
}
.fi-br-joint:before {
content: "\f83e";
}
.fi-br-joker:before {
content: "\f83f";
}
.fi-br-journal-alt:before {
content: "\f840";
}
.fi-br-journal:before {
content: "\f841";
}
.fi-br-journey:before {
content: "\f842";
}
.fi-br-joystick:before {
content: "\f843";
}
.fi-br-jpg:before {
content: "\f844";
}
.fi-br-jug-alt:before {
content: "\f845";
}
.fi-br-jug-bottle:before {
content: "\f846";
}
.fi-br-jug:before {
content: "\f847";
}
.fi-br-jumping-rope:before {
content: "\f848";
}
.fi-br-k:before {
content: "\f849";
}
.fi-br-kaaba:before {
content: "\f84a";
}
.fi-br-kazoo:before {
content: "\f84b";
}
.fi-br-kerning:before {
content: "\f84c";
}
.fi-br-key-lock-crypto:before {
content: "\f84d";
}
.fi-br-key-skeleton-left-right:before {
content: "\f84e";
}
.fi-br-key:before {
content: "\f84f";
}
.fi-br-keyboard-brightness-low:before {
content: "\f850";
}
.fi-br-keyboard-brightness:before {
content: "\f851";
}
.fi-br-keyboard-down:before {
content: "\f852";
}
.fi-br-keyboard-left:before {
content: "\f853";
}
.fi-br-keyboard:before {
content: "\f854";
}
.fi-br-keynote:before {
content: "\f855";
}
.fi-br-kidneys:before {
content: "\f856";
}
.fi-br-kip-sign:before {
content: "\f857";
}
.fi-br-kiss-beam:before {
content: "\f858";
}
.fi-br-kiss-wink-heart:before {
content: "\f859";
}
.fi-br-kiss:before {
content: "\f85a";
}
.fi-br-kite:before {
content: "\f85b";
}
.fi-br-kiwi-bird:before {
content: "\f85c";
}
.fi-br-kiwi-fruit:before {
content: "\f85d";
}
.fi-br-knife-kitchen:before {
content: "\f85e";
}
.fi-br-knife:before {
content: "\f85f";
}
.fi-br-knitting:before {
content: "\f860";
}
.fi-br-kpi-evaluation:before {
content: "\f861";
}
.fi-br-kpi:before {
content: "\f862";
}
.fi-br-l:before {
content: "\f863";
}
.fi-br-label:before {
content: "\f864";
}
.fi-br-lacrosse-stick-ball:before {
content: "\f865";
}
.fi-br-lacrosse-stick:before {
content: "\f866";
}
.fi-br-lambda:before {
content: "\f867";
}
.fi-br-lamp-desk:before {
content: "\f868";
}
.fi-br-lamp-floor:before {
content: "\f869";
}
.fi-br-lamp-street:before {
content: "\f86a";
}
.fi-br-lamp:before {
content: "\f86b";
}
.fi-br-land-layer-location:before {
content: "\f86c";
}
.fi-br-land-layers:before {
content: "\f86d";
}
.fi-br-land-location:before {
content: "\f86e";
}
.fi-br-landmark-alt:before {
content: "\f86f";
}
.fi-br-language:before {
content: "\f870";
}
.fi-br-laptop-arrow-down:before {
content: "\f871";
}
.fi-br-laptop-binary:before {
content: "\f872";
}
.fi-br-laptop-code:before {
content: "\f873";
}
.fi-br-laptop-medical:before {
content: "\f874";
}
.fi-br-laptop-mobile:before {
content: "\f875";
}
.fi-br-laptop-slash:before {
content: "\f876";
}
.fi-br-laptop:before {
content: "\f877";
}
.fi-br-lari-sign:before {
content: "\f878";
}
.fi-br-lasso-sparkles:before {
content: "\f879";
}
.fi-br-lasso:before {
content: "\f87a";
}
.fi-br-last-square:before {
content: "\f87b";
}
.fi-br-laugh-beam:before {
content: "\f87c";
}
.fi-br-laugh-squint:before {
content: "\f87d";
}
.fi-br-laugh-wink:before {
content: "\f87e";
}
.fi-br-laugh:before {
content: "\f87f";
}
.fi-br-lawyer-man:before {
content: "\f880";
}
.fi-br-lawyer-woman:before {
content: "\f881";
}
.fi-br-layer-minus:before {
content: "\f882";
}
.fi-br-layer-plus:before {
content: "\f883";
}
.fi-br-layers:before {
content: "\f884";
}
.fi-br-layout-fluid:before {
content: "\f885";
}
.fi-br-lead-funnel:before {
content: "\f886";
}
.fi-br-lead-management:before {
content: "\f887";
}
.fi-br-lead:before {
content: "\f888";
}
.fi-br-leader-alt:before {
content: "\f889";
}
.fi-br-leader-speech:before {
content: "\f88a";
}
.fi-br-leader:before {
content: "\f88b";
}
.fi-br-leaderboard-alt:before {
content: "\f88c";
}
.fi-br-leaderboard-trophy:before {
content: "\f88d";
}
.fi-br-leaderboard:before {
content: "\f88e";
}
.fi-br-leadership-alt:before {
content: "\f88f";
}
.fi-br-leadership:before {
content: "\f890";
}
.fi-br-leaf-heart:before {
content: "\f891";
}
.fi-br-leaf-maple:before {
content: "\f892";
}
.fi-br-leaf-oak:before {
content: "\f893";
}
.fi-br-leaf:before {
content: "\f894";
}
.fi-br-leafy-green:before {
content: "\f895";
}
.fi-br-leave:before {
content: "\f896";
}
.fi-br-left-from-bracket:before {
content: "\f897";
}
.fi-br-left:before {
content: "\f898";
}
.fi-br-legal:before {
content: "\f899";
}
.fi-br-lemon:before {
content: "\f89a";
}
.fi-br-lesbian-couple:before {
content: "\f89b";
}
.fi-br-less-than-equal:before {
content: "\f89c";
}
.fi-br-less-than:before {
content: "\f89d";
}
.fi-br-lesson-class:before {
content: "\f89e";
}
.fi-br-lesson:before {
content: "\f89f";
}
.fi-br-letter-case:before {
content: "\f8a0";
}
.fi-br-lettuce:before {
content: "\f8a1";
}
.fi-br-level-down-alt:before {
content: "\f8a2";
}
.fi-br-level-down:before {
content: "\f8a3";
}
.fi-br-level-up-alt:before {
content: "\f8a4";
}
.fi-br-level-up:before {
content: "\f8a5";
}
.fi-br-license:before {
content: "\f8a6";
}
.fi-br-life-ring:before {
content: "\f8a7";
}
.fi-br-life:before {
content: "\f8a8";
}
.fi-br-light-ceiling:before {
content: "\f8a9";
}
.fi-br-light-emergency-on:before {
content: "\f8aa";
}
.fi-br-light-emergency:before {
content: "\f8ab";
}
.fi-br-light-switch-off:before {
content: "\f8ac";
}
.fi-br-light-switch-on:before {
content: "\f8ad";
}
.fi-br-light-switch:before {
content: "\f8ae";
}
.fi-br-lightbulb-cfl-on:before {
content: "\f8af";
}
.fi-br-lightbulb-cfl:before {
content: "\f8b0";
}
.fi-br-lightbulb-dollar:before {
content: "\f8b1";
}
.fi-br-lightbulb-exclamation:before {
content: "\f8b2";
}
.fi-br-lightbulb-head:before {
content: "\f8b3";
}
.fi-br-lightbulb-on:before {
content: "\f8b4";
}
.fi-br-lightbulb-question:before {
content: "\f8b5";
}
.fi-br-lightbulb-setting:before {
content: "\f8b6";
}
.fi-br-lightbulb-slash:before {
content: "\f8b7";
}
.fi-br-lighthouse:before {
content: "\f8b8";
}
.fi-br-lights-holiday:before {
content: "\f8b9";
}
.fi-br-limit-hand:before {
content: "\f8ba";
}
.fi-br-limit-speedometer:before {
content: "\f8bb";
}
.fi-br-line-width:before {
content: "\f8bc";
}
.fi-br-link-alt:before {
content: "\f8bd";
}
.fi-br-link-horizontal-slash:before {
content: "\f8be";
}
.fi-br-link-horizontal:before {
content: "\f8bf";
}
.fi-br-link-slash-alt:before {
content: "\f8c0";
}
.fi-br-link-slash:before {
content: "\f8c1";
}
.fi-br-link:before {
content: "\f8c2";
}
.fi-br-lion-head:before {
content: "\f8c3";
}
.fi-br-lion:before {
content: "\f8c4";
}
.fi-br-lips:before {
content: "\f8c5";
}
.fi-br-lipstick:before {
content: "\f8c6";
}
.fi-br-lira-sign:before {
content: "\f8c7";
}
.fi-br-list-check:before {
content: "\f8c8";
}
.fi-br-list-dropdown:before {
content: "\f8c9";
}
.fi-br-list-music:before {
content: "\f8ca";
}
.fi-br-list-timeline:before {
content: "\f8cb";
}
.fi-br-list:before {
content: "\f8cc";
}
.fi-br-litecoin-sign:before {
content: "\f8cd";
}
.fi-br-live-alt:before {
content: "\f8ce";
}
.fi-br-live:before {
content: "\f8cf";
}
.fi-br-loading:before {
content: "\f8d0";
}
.fi-br-loan:before {
content: "\f8d1";
}
.fi-br-lobster:before {
content: "\f8d2";
}
.fi-br-location-alt:before {
content: "\f8d3";
}
.fi-br-location-arrow:before {
content: "\f8d4";
}
.fi-br-location-crosshairs-slash:before {
content: "\f8d5";
}
.fi-br-location-crosshairs:before {
content: "\f8d6";
}
.fi-br-location-dot-slash:before {
content: "\f8d7";
}
.fi-br-location-exclamation:before {
content: "\f8d8";
}
.fi-br-location-pin-call:before {
content: "\f8d9";
}
.fi-br-lock-alt:before {
content: "\f8da";
}
.fi-br-lock-hashtag:before {
content: "\f8db";
}
.fi-br-lock-open-alt:before {
content: "\f8dc";
}
.fi-br-lock:before {
content: "\f8dd";
}
.fi-br-locust:before {
content: "\f8de";
}
.fi-br-loop-square:before {
content: "\f8df";
}
.fi-br-loveseat:before {
content: "\f8e0";
}
.fi-br-low-vision:before {
content: "\f8e1";
}
.fi-br-luchador:before {
content: "\f8e2";
}
.fi-br-luggage-cart:before {
content: "\f8e3";
}
.fi-br-luggage-rolling:before {
content: "\f8e4";
}
.fi-br-lungs-virus:before {
content: "\f8e5";
}
.fi-br-lungs:before {
content: "\f8e6";
}
.fi-br-m:before {
content: "\f8e7";
}
.fi-br-mace:before {
content: "\f8e8";
}
.fi-br-magic-wand:before {
content: "\f8e9";
}
.fi-br-magnet-user:before {
content: "\f8ea";
}
.fi-br-magnet:before {
content: "\f8eb";
}
.fi-br-mailbox-envelope:before {
content: "\f8ec";
}
.fi-br-mailbox-flag-up:before {
content: "\f8ed";
}
.fi-br-mailbox:before {
content: "\f8ee";
}
.fi-br-makeup-brush:before {
content: "\f8ef";
}
.fi-br-male-couple:before {
content: "\f8f0";
}
.fi-br-male:before {
content: "\f8f1";
}
.fi-br-man-head:before {
content: "\f8f2";
}
.fi-br-man-scientist:before {
content: "\f8f3";
}
.fi-br-manat-sign:before {
content: "\f8f4";
}
.fi-br-mandolin:before {
content: "\f8f5";
}
.fi-br-mango:before {
content: "\f8f6";
}
.fi-br-manhole:before {
content: "\f8f7";
}
.fi-br-map-location-track:before {
content: "\f8f8";
}
.fi-br-map-marker-check:before {
content: "\f8f9";
}
.fi-br-map-marker-cross:before {
content: "\f8fa";
}
.fi-br-map-marker-edit:before {
content: "\f8fb";
}
.fi-br-map-marker-home:before {
content: "\f8fc";
}
.fi-br-map-marker-minus:before {
content: "\f8fd";
}
.fi-br-map-marker-plus:before {
content: "\f8fe";
}
.fi-br-map-marker-question:before {
content: "\f8ff";
}
.fi-br-map-marker-slash:before {
content: "\f900";
}
.fi-br-map-marker-smile:before {
content: "\f901";
}
.fi-br-map-marker:before {
content: "\f902";
}
.fi-br-map-pin:before {
content: "\f903";
}
.fi-br-map-point:before {
content: "\f904";
}
.fi-br-map:before {
content: "\f905";
}
.fi-br-marker-time:before {
content: "\f906";
}
.fi-br-marker:before {
content: "\f907";
}
.fi-br-marketplace-alt:before {
content: "\f908";
}
.fi-br-marketplace-store:before {
content: "\f909";
}
.fi-br-marketplace:before {
content: "\f90a";
}
.fi-br-mars-stroke-right:before {
content: "\f90b";
}
.fi-br-mars-stroke-up:before {
content: "\f90c";
}
.fi-br-martini-glass-citrus:before {
content: "\f90d";
}
.fi-br-martini-glass-empty:before {
content: "\f90e";
}
.fi-br-mask-carnival:before {
content: "\f90f";
}
.fi-br-mask-face:before {
content: "\f910";
}
.fi-br-mask-snorkel:before {
content: "\f911";
}
.fi-br-massage:before {
content: "\f912";
}
.fi-br-match-fire:before {
content: "\f913";
}
.fi-br-mattress-pillow:before {
content: "\f914";
}
.fi-br-measuring-tape:before {
content: "\f915";
}
.fi-br-meat:before {
content: "\f916";
}
.fi-br-medal:before {
content: "\f917";
}
.fi-br-medical-star:before {
content: "\f918";
}
.fi-br-medicine:before {
content: "\f919";
}
.fi-br-meditation:before {
content: "\f91a";
}
.fi-br-meeting-alt:before {
content: "\f91b";
}
.fi-br-meeting:before {
content: "\f91c";
}
.fi-br-megaphone-announcement-leader:before {
content: "\f91d";
}
.fi-br-megaphone:before {
content: "\f91e";
}
.fi-br-meh-blank:before {
content: "\f91f";
}
.fi-br-meh-rolling-eyes:before {
content: "\f920";
}
.fi-br-melon-alt:before {
content: "\f921";
}
.fi-br-melon:before {
content: "\f922";
}
.fi-br-member-list:before {
content: "\f923";
}
.fi-br-member-search:before {
content: "\f924";
}
.fi-br-membership-vip:before {
content: "\f925";
}
.fi-br-membership:before {
content: "\f926";
}
.fi-br-memo-circle-check:before {
content: "\f927";
}
.fi-br-memo-pad:before {
content: "\f928";
}
.fi-br-memo:before {
content: "\f929";
}
.fi-br-memory:before {
content: "\f92a";
}
.fi-br-menu-burger:before {
content: "\f92b";
}
.fi-br-menu-dots-vertical:before {
content: "\f92c";
}
.fi-br-menu-dots:before {
content: "\f92d";
}
.fi-br-mercury:before {
content: "\f92e";
}
.fi-br-message-arrow-down:before {
content: "\f92f";
}
.fi-br-message-arrow-up-right:before {
content: "\f930";
}
.fi-br-message-arrow-up:before {
content: "\f931";
}
.fi-br-message-bot:before {
content: "\f932";
}
.fi-br-message-code:before {
content: "\f933";
}
.fi-br-message-dollar:before {
content: "\f934";
}
.fi-br-message-heart:before {
content: "\f935";
}
.fi-br-message-image:before {
content: "\f936";
}
.fi-br-message-question:before {
content: "\f937";
}
.fi-br-message-quote:before {
content: "\f938";
}
.fi-br-message-slash:before {
content: "\f939";
}
.fi-br-message-sms:before {
content: "\f93a";
}
.fi-br-message-text:before {
content: "\f93b";
}
.fi-br-message-xmark:before {
content: "\f93c";
}
.fi-br-messages-dollar:before {
content: "\f93d";
}
.fi-br-messages-question:before {
content: "\f93e";
}
.fi-br-messages:before {
content: "\f93f";
}
.fi-br-meteor:before {
content: "\f940";
}
.fi-br-meter-bolt:before {
content: "\f941";
}
.fi-br-meter-droplet:before {
content: "\f942";
}
.fi-br-meter-fire:before {
content: "\f943";
}
.fi-br-meter:before {
content: "\f944";
}
.fi-br-method:before {
content: "\f945";
}
.fi-br-microchip-ai:before {
content: "\f946";
}
.fi-br-microchip:before {
content: "\f947";
}
.fi-br-microphone-alt:before {
content: "\f948";
}
.fi-br-microphone-slash:before {
content: "\f949";
}
.fi-br-microphone:before {
content: "\f94a";
}
.fi-br-microscope:before {
content: "\f94b";
}
.fi-br-microwave:before {
content: "\f94c";
}
.fi-br-milk-alt:before {
content: "\f94d";
}
.fi-br-milk:before {
content: "\f94e";
}
.fi-br-mill-sign:before {
content: "\f94f";
}
.fi-br-mind-share:before {
content: "\f950";
}
.fi-br-minus-circle:before {
content: "\f951";
}
.fi-br-minus-hexagon:before {
content: "\f952";
}
.fi-br-minus-small:before {
content: "\f953";
}
.fi-br-minus:before {
content: "\f954";
}
.fi-br-mistletoe:before {
content: "\f955";
}
.fi-br-mix:before {
content: "\f956";
}
.fi-br-mobile-button:before {
content: "\f957";
}
.fi-br-mobile-notch:before {
content: "\f958";
}
.fi-br-mobile:before {
content: "\f959";
}
.fi-br-mockup:before {
content: "\f95a";
}
.fi-br-mode-alt:before {
content: "\f95b";
}
.fi-br-mode-landscape:before {
content: "\f95c";
}
.fi-br-mode-portrait:before {
content: "\f95d";
}
.fi-br-mode:before {
content: "\f95e";
}
.fi-br-model-cube-arrows:before {
content: "\f95f";
}
.fi-br-model-cube-space:before {
content: "\f960";
}
.fi-br-model-cube:before {
content: "\f961";
}
.fi-br-module:before {
content: "\f962";
}
.fi-br-monday:before {
content: "\f963";
}
.fi-br-money-bill-simple:before {
content: "\f964";
}
.fi-br-money-bill-transfer:before {
content: "\f965";
}
.fi-br-money-bill-wave-alt:before {
content: "\f966";
}
.fi-br-money-bill-wave:before {
content: "\f967";
}
.fi-br-money-bills-simple:before {
content: "\f968";
}
.fi-br-money-bills:before {
content: "\f969";
}
.fi-br-money-check-edit-alt:before {
content: "\f96a";
}
.fi-br-money-check-edit:before {
content: "\f96b";
}
.fi-br-money-check:before {
content: "\f96c";
}
.fi-br-money-coin-transfer:before {
content: "\f96d";
}
.fi-br-money-from-bracket:before {
content: "\f96e";
}
.fi-br-money-simple-from-bracket:before {
content: "\f96f";
}
.fi-br-money-transfer-alt:before {
content: "\f970";
}
.fi-br-money-transfer-coin-arrow:before {
content: "\f971";
}
.fi-br-money-transfer-smartphone:before {
content: "\f972";
}
.fi-br-money-wings:before {
content: "\f973";
}
.fi-br-money:before {
content: "\f974";
}
.fi-br-monkey:before {
content: "\f975";
}
.fi-br-monument:before {
content: "\f976";
}
.fi-br-moon-stars:before {
content: "\f977";
}
.fi-br-moon:before {
content: "\f978";
}
.fi-br-moped:before {
content: "\f979";
}
.fi-br-mortar-pestle:before {
content: "\f97a";
}
.fi-br-mortgage:before {
content: "\f97b";
}
.fi-br-mosque-alt:before {
content: "\f97c";
}
.fi-br-mosque-moon:before {
content: "\f97d";
}
.fi-br-mosque:before {
content: "\f97e";
}
.fi-br-mosquito-net:before {
content: "\f97f";
}
.fi-br-mosquito:before {
content: "\f980";
}
.fi-br-motorcycle:before {
content: "\f981";
}
.fi-br-mound:before {
content: "\f982";
}
.fi-br-mountain-city:before {
content: "\f983";
}
.fi-br-mountain:before {
content: "\f984";
}
.fi-br-mountains:before {
content: "\f985";
}
.fi-br-mouse-field:before {
content: "\f986";
}
.fi-br-mouse:before {
content: "\f987";
}
.fi-br-mov-file:before {
content: "\f988";
}
.fi-br-move-to-folder-2:before {
content: "\f989";
}
.fi-br-move-to-folder:before {
content: "\f98a";
}
.fi-br-mp3-file:before {
content: "\f98b";
}
.fi-br-mp3-player:before {
content: "\f98c";
}
.fi-br-mp4-file:before {
content: "\f98d";
}
.fi-br-mug-alt:before {
content: "\f98e";
}
.fi-br-mug-hot-alt:before {
content: "\f98f";
}
.fi-br-mug-hot:before {
content: "\f990";
}
.fi-br-mug-marshmallows:before {
content: "\f991";
}
.fi-br-mug-tea-saucer:before {
content: "\f992";
}
.fi-br-mug-tea:before {
content: "\f993";
}
.fi-br-mug:before {
content: "\f994";
}
.fi-br-multiple-alt:before {
content: "\f995";
}
.fi-br-multiple:before {
content: "\f996";
}
.fi-br-muscle:before {
content: "\f997";
}
.fi-br-mushroom-alt:before {
content: "\f998";
}
.fi-br-mushroom:before {
content: "\f999";
}
.fi-br-music-alt:before {
content: "\f99a";
}
.fi-br-music-file:before {
content: "\f99b";
}
.fi-br-music-note-slash:before {
content: "\f99c";
}
.fi-br-music-note:before {
content: "\f99d";
}
.fi-br-music-slash:before {
content: "\f99e";
}
.fi-br-music:before {
content: "\f99f";
}
.fi-br-n:before {
content: "\f9a0";
}
.fi-br-naira-sign:before {
content: "\f9a1";
}
.fi-br-narwhal:before {
content: "\f9a2";
}
.fi-br-navigation:before {
content: "\f9a3";
}
.fi-br-nesting-dolls:before {
content: "\f9a4";
}
.fi-br-network-analytic:before {
content: "\f9a5";
}
.fi-br-network-cloud:before {
content: "\f9a6";
}
.fi-br-network:before {
content: "\f9a7";
}
.fi-br-neuter:before {
content: "\f9a8";
}
.fi-br-newsletter-subscribe:before {
content: "\f9a9";
}
.fi-br-newspaper-open:before {
content: "\f9aa";
}
.fi-br-newspaper:before {
content: "\f9ab";
}
.fi-br-nfc-lock:before {
content: "\f9ac";
}
.fi-br-nfc-magnifying-glass:before {
content: "\f9ad";
}
.fi-br-nfc-pen:before {
content: "\f9ae";
}
.fi-br-nfc-slash:before {
content: "\f9af";
}
.fi-br-nfc-trash:before {
content: "\f9b0";
}
.fi-br-nfc:before {
content: "\f9b1";
}
.fi-br-night-day:before {
content: "\f9b2";
}
.fi-br-no-fee:before {
content: "\f9b3";
}
.fi-br-no-people:before {
content: "\f9b4";
}
.fi-br-noodles:before {
content: "\f9b5";
}
.fi-br-nose:before {
content: "\f9b6";
}
.fi-br-not-equal:before {
content: "\f9b7";
}
.fi-br-not-found-alt:before {
content: "\f9b8";
}
.fi-br-not-found-magnifying-glass:before {
content: "\f9b9";
}
.fi-br-not-found:before {
content: "\f9ba";
}
.fi-br-notdef:before {
content: "\f9bb";
}
.fi-br-note-medical:before {
content: "\f9bc";
}
.fi-br-note-sticky:before {
content: "\f9bd";
}
.fi-br-note:before {
content: "\f9be";
}
.fi-br-notebook-alt:before {
content: "\f9bf";
}
.fi-br-notebook:before {
content: "\f9c0";
}
.fi-br-notes-medical:before {
content: "\f9c1";
}
.fi-br-notes:before {
content: "\f9c2";
}
.fi-br-o:before {
content: "\f9c3";
}
.fi-br-object-exclude:before {
content: "\f9c4";
}
.fi-br-object-group:before {
content: "\f9c5";
}
.fi-br-object-intersect:before {
content: "\f9c6";
}
.fi-br-object-subtract:before {
content: "\f9c7";
}
.fi-br-object-ungroup:before {
content: "\f9c8";
}
.fi-br-object-union:before {
content: "\f9c9";
}
.fi-br-objects-column:before {
content: "\f9ca";
}
.fi-br-octagon-check:before {
content: "\f9cb";
}
.fi-br-octagon-divide:before {
content: "\f9cc";
}
.fi-br-octagon-exclamation:before {
content: "\f9cd";
}
.fi-br-octagon-minus:before {
content: "\f9ce";
}
.fi-br-octagon-plus:before {
content: "\f9cf";
}
.fi-br-octagon-xmark:before {
content: "\f9d0";
}
.fi-br-octagon:before {
content: "\f9d1";
}
.fi-br-oil-can:before {
content: "\f9d2";
}
.fi-br-oil-temp:before {
content: "\f9d3";
}
.fi-br-olive-oil:before {
content: "\f9d4";
}
.fi-br-olive:before {
content: "\f9d5";
}
.fi-br-olives:before {
content: "\f9d6";
}
.fi-br-om:before {
content: "\f9d7";
}
.fi-br-omega:before {
content: "\f9d8";
}
.fi-br-onboarding:before {
content: "\f9d9";
}
.fi-br-onion:before {
content: "\f9da";
}
.fi-br-opacity:before {
content: "\f9db";
}
.fi-br-open-mail-clip:before {
content: "\f9dc";
}
.fi-br-operating-system-upgrade:before {
content: "\f9dd";
}
.fi-br-operation:before {
content: "\f9de";
}
.fi-br-order-history:before {
content: "\f9df";
}
.fi-br-organization-chart:before {
content: "\f9e0";
}
.fi-br-ornament:before {
content: "\f9e1";
}
.fi-br-otp:before {
content: "\f9e2";
}
.fi-br-otter:before {
content: "\f9e3";
}
.fi-br-outdent:before {
content: "\f9e4";
}
.fi-br-oval-alt:before {
content: "\f9e5";
}
.fi-br-oval:before {
content: "\f9e6";
}
.fi-br-oven:before {
content: "\f9e7";
}
.fi-br-overline:before {
content: "\f9e8";
}
.fi-br-overview:before {
content: "\f9e9";
}
.fi-br-p:before {
content: "\f9ea";
}
.fi-br-package:before {
content: "\f9eb";
}
.fi-br-padlock-check:before {
content: "\f9ec";
}
.fi-br-page-break:before {
content: "\f9ed";
}
.fi-br-pager:before {
content: "\f9ee";
}
.fi-br-paid:before {
content: "\f9ef";
}
.fi-br-paint-brush:before {
content: "\f9f0";
}
.fi-br-paint-roller:before {
content: "\f9f1";
}
.fi-br-paintbrush-pencil:before {
content: "\f9f2";
}
.fi-br-palette:before {
content: "\f9f3";
}
.fi-br-pallet-alt:before {
content: "\f9f4";
}
.fi-br-pallet:before {
content: "\f9f5";
}
.fi-br-pan-food:before {
content: "\f9f6";
}
.fi-br-pan-frying:before {
content: "\f9f7";
}
.fi-br-pan:before {
content: "\f9f8";
}
.fi-br-pancakes:before {
content: "\f9f9";
}
.fi-br-panorama:before {
content: "\f9fa";
}
.fi-br-paper-plane-launch:before {
content: "\f9fb";
}
.fi-br-paper-plane-top:before {
content: "\f9fc";
}
.fi-br-paper-plane:before {
content: "\f9fd";
}
.fi-br-paperclip-vertical:before {
content: "\f9fe";
}
.fi-br-parachute-box:before {
content: "\f9ff";
}
.fi-br-paragraph-left:before {
content: "\fa00";
}
.fi-br-paragraph:before {
content: "\fa01";
}
.fi-br-parking-circle-slash:before {
content: "\fa02";
}
.fi-br-parking-circle:before {
content: "\fa03";
}
.fi-br-parking-slash:before {
content: "\fa04";
}
.fi-br-parking:before {
content: "\fa05";
}
.fi-br-party-bell:before {
content: "\fa06";
}
.fi-br-party-horn:before {
content: "\fa07";
}
.fi-br-passport:before {
content: "\fa08";
}
.fi-br-password-alt:before {
content: "\fa09";
}
.fi-br-password-computer:before {
content: "\fa0a";
}
.fi-br-password-email:before {
content: "\fa0b";
}
.fi-br-password-smartphone:before {
content: "\fa0c";
}
.fi-br-password:before {
content: "\fa0d";
}
.fi-br-paste:before {
content: "\fa0e";
}
.fi-br-pattern:before {
content: "\fa0f";
}
.fi-br-pause-circle:before {
content: "\fa10";
}
.fi-br-pause-square:before {
content: "\fa11";
}
.fi-br-pause:before {
content: "\fa12";
}
.fi-br-paw-claws:before {
content: "\fa13";
}
.fi-br-paw-heart:before {
content: "\fa14";
}
.fi-br-paw:before {
content: "\fa15";
}
.fi-br-payment-pos:before {
content: "\fa16";
}
.fi-br-payroll-calendar:before {
content: "\fa17";
}
.fi-br-payroll-check:before {
content: "\fa18";
}
.fi-br-payroll:before {
content: "\fa19";
}
.fi-br-peace:before {
content: "\fa1a";
}
.fi-br-peach:before {
content: "\fa1b";
}
.fi-br-peanut:before {
content: "\fa1c";
}
.fi-br-peanuts:before {
content: "\fa1d";
}
.fi-br-peapod:before {
content: "\fa1e";
}
.fi-br-pear:before {
content: "\fa1f";
}
.fi-br-pedestal:before {
content: "\fa20";
}
.fi-br-pen-circle:before {
content: "\fa21";
}
.fi-br-pen-clip-slash:before {
content: "\fa22";
}
.fi-br-pen-clip:before {
content: "\fa23";
}
.fi-br-pen-fancy-slash:before {
content: "\fa24";
}
.fi-br-pen-fancy:before {
content: "\fa25";
}
.fi-br-pen-field:before {
content: "\fa26";
}
.fi-br-pen-nib-slash:before {
content: "\fa27";
}
.fi-br-pen-nib:before {
content: "\fa28";
}
.fi-br-pen-slash:before {
content: "\fa29";
}
.fi-br-pen-square:before {
content: "\fa2a";
}
.fi-br-pen-swirl:before {
content: "\fa2b";
}
.fi-br-pencil-paintbrush:before {
content: "\fa2c";
}
.fi-br-pencil-ruler:before {
content: "\fa2d";
}
.fi-br-pencil-slash:before {
content: "\fa2e";
}
.fi-br-pencil:before {
content: "\fa2f";
}
.fi-br-pending:before {
content: "\fa30";
}
.fi-br-pennant:before {
content: "\fa31";
}
.fi-br-people-arrows-left-right:before {
content: "\fa32";
}
.fi-br-people-carry-box:before {
content: "\fa33";
}
.fi-br-people-dress:before {
content: "\fa34";
}
.fi-br-people-network-partner:before {
content: "\fa35";
}
.fi-br-people-pants:before {
content: "\fa36";
}
.fi-br-people-poll:before {
content: "\fa37";
}
.fi-br-people-pulling:before {
content: "\fa38";
}
.fi-br-people-roof:before {
content: "\fa39";
}
.fi-br-people:before {
content: "\fa3a";
}
.fi-br-pepper-alt:before {
content: "\fa3b";
}
.fi-br-pepper-hot:before {
content: "\fa3c";
}
.fi-br-pepper:before {
content: "\fa3d";
}
.fi-br-percent-10:before {
content: "\fa3e";
}
.fi-br-percent-100:before {
content: "\fa3f";
}
.fi-br-percent-20:before {
content: "\fa40";
}
.fi-br-percent-25:before {
content: "\fa41";
}
.fi-br-percent-30:before {
content: "\fa42";
}
.fi-br-percent-40:before {
content: "\fa43";
}
.fi-br-percent-50:before {
content: "\fa44";
}
.fi-br-percent-60:before {
content: "\fa45";
}
.fi-br-percent-70:before {
content: "\fa46";
}
.fi-br-percent-75:before {
content: "\fa47";
}
.fi-br-percent-80:before {
content: "\fa48";
}
.fi-br-percent-90:before {
content: "\fa49";
}
.fi-br-percentage:before {
content: "\fa4a";
}
.fi-br-person-burst:before {
content: "\fa4b";
}
.fi-br-person-carry-box:before {
content: "\fa4c";
}
.fi-br-person-circle-check:before {
content: "\fa4d";
}
.fi-br-person-circle-exclamation:before {
content: "\fa4e";
}
.fi-br-person-circle-minus:before {
content: "\fa4f";
}
.fi-br-person-circle-plus:before {
content: "\fa50";
}
.fi-br-person-circle-question:before {
content: "\fa51";
}
.fi-br-person-circle-xmark:before {
content: "\fa52";
}
.fi-br-person-cv:before {
content: "\fa53";
}
.fi-br-person-dolly-empty:before {
content: "\fa54";
}
.fi-br-person-dolly:before {
content: "\fa55";
}
.fi-br-person-dress-simple:before {
content: "\fa56";
}
.fi-br-person-dress:before {
content: "\fa57";
}
.fi-br-person-luggage:before {
content: "\fa58";
}
.fi-br-person-lunge:before {
content: "\fa59";
}
.fi-br-person-pilates:before {
content: "\fa5a";
}
.fi-br-person-praying:before {
content: "\fa5b";
}
.fi-br-person-pregnant:before {
content: "\fa5c";
}
.fi-br-person-seat-reclined:before {
content: "\fa5d";
}
.fi-br-person-seat:before {
content: "\fa5e";
}
.fi-br-person-shelter:before {
content: "\fa5f";
}
.fi-br-person-sign:before {
content: "\fa60";
}
.fi-br-person-simple:before {
content: "\fa61";
}
.fi-br-person-walking-with-cane:before {
content: "\fa62";
}
.fi-br-peseta-sign:before {
content: "\fa63";
}
.fi-br-peso-sign:before {
content: "\fa64";
}
.fi-br-pets:before {
content: "\fa65";
}
.fi-br-pharmacy:before {
content: "\fa66";
}
.fi-br-phone-call:before {
content: "\fa67";
}
.fi-br-phone-cross:before {
content: "\fa68";
}
.fi-br-phone-flip:before {
content: "\fa69";
}
.fi-br-phone-guide:before {
content: "\fa6a";
}
.fi-br-phone-heart-message:before {
content: "\fa6b";
}
.fi-br-phone-office:before {
content: "\fa6c";
}
.fi-br-phone-pause:before {
content: "\fa6d";
}
.fi-br-phone-plus:before {
content: "\fa6e";
}
.fi-br-phone-rotary:before {
content: "\fa6f";
}
.fi-br-phone-slash:before {
content: "\fa70";
}
.fi-br-photo-capture:before {
content: "\fa71";
}
.fi-br-photo-film-music:before {
content: "\fa72";
}
.fi-br-photo-video:before {
content: "\fa73";
}
.fi-br-physics:before {
content: "\fa74";
}
.fi-br-Pi:before {
content: "\fa75";
}
.fi-br-piano-keyboard:before {
content: "\fa76";
}
.fi-br-piano:before {
content: "\fa77";
}
.fi-br-pickaxe:before {
content: "\fa78";
}
.fi-br-picking-box:before {
content: "\fa79";
}
.fi-br-picking:before {
content: "\fa7a";
}
.fi-br-picnic:before {
content: "\fa7b";
}
.fi-br-picpeople-filled:before {
content: "\fa7c";
}
.fi-br-picpeople:before {
content: "\fa7d";
}
.fi-br-picture:before {
content: "\fa7e";
}
.fi-br-pie:before {
content: "\fa7f";
}
.fi-br-pig-bank-bulb:before {
content: "\fa80";
}
.fi-br-pig-face:before {
content: "\fa81";
}
.fi-br-pig:before {
content: "\fa82";
}
.fi-br-piggy-bank-budget:before {
content: "\fa83";
}
.fi-br-piggy-bank:before {
content: "\fa84";
}
.fi-br-pills:before {
content: "\fa85";
}
.fi-br-pinata:before {
content: "\fa86";
}
.fi-br-pineapple-alt:before {
content: "\fa87";
}
.fi-br-pineapple:before {
content: "\fa88";
}
.fi-br-ping-pong:before {
content: "\fa89";
}
.fi-br-pipe-smoking:before {
content: "\fa8a";
}
.fi-br-pizza-slice:before {
content: "\fa8b";
}
.fi-br-place-of-worship:before {
content: "\fa8c";
}
.fi-br-plan-strategy:before {
content: "\fa8d";
}
.fi-br-plan:before {
content: "\fa8e";
}
.fi-br-plane-alt:before {
content: "\fa8f";
}
.fi-br-plane-arrival:before {
content: "\fa90";
}
.fi-br-plane-departure:before {
content: "\fa91";
}
.fi-br-plane-prop:before {
content: "\fa92";
}
.fi-br-plane-slash:before {
content: "\fa93";
}
.fi-br-plane-tail:before {
content: "\fa94";
}
.fi-br-plane:before {
content: "\fa95";
}
.fi-br-planet-moon:before {
content: "\fa96";
}
.fi-br-planet-ringed:before {
content: "\fa97";
}
.fi-br-plant-care:before {
content: "\fa98";
}
.fi-br-plant-growth:before {
content: "\fa99";
}
.fi-br-plant-seed-invest:before {
content: "\fa9a";
}
.fi-br-plant-wilt:before {
content: "\fa9b";
}
.fi-br-plate-utensils:before {
content: "\fa9c";
}
.fi-br-plate-wheat:before {
content: "\fa9d";
}
.fi-br-plate:before {
content: "\fa9e";
}
.fi-br-play-alt:before {
content: "\fa9f";
}
.fi-br-play-circle:before {
content: "\faa0";
}
.fi-br-play-microphone:before {
content: "\faa1";
}
.fi-br-play-pause:before {
content: "\faa2";
}
.fi-br-play:before {
content: "\faa3";
}
.fi-br-playing-cards:before {
content: "\faa4";
}
.fi-br-plug-alt:before {
content: "\faa5";
}
.fi-br-plug-cable:before {
content: "\faa6";
}
.fi-br-plug-circle-bolt:before {
content: "\faa7";
}
.fi-br-plug-circle-check:before {
content: "\faa8";
}
.fi-br-plug-circle-exclamation:before {
content: "\faa9";
}
.fi-br-plug-circle-minus:before {
content: "\faaa";
}
.fi-br-plug-circle-plus:before {
content: "\faab";
}
.fi-br-plug-connection:before {
content: "\faac";
}
.fi-br-plug:before {
content: "\faad";
}
.fi-br-plus-hexagon:before {
content: "\faae";
}
.fi-br-plus-minus:before {
content: "\faaf";
}
.fi-br-plus-small:before {
content: "\fab0";
}
.fi-br-plus:before {
content: "\fab1";
}
.fi-br-png-file:before {
content: "\fab2";
}
.fi-br-podcast:before {
content: "\fab3";
}
.fi-br-podium-star:before {
content: "\fab4";
}
.fi-br-podium-victory-leader:before {
content: "\fab5";
}
.fi-br-podium:before {
content: "\fab6";
}
.fi-br-point-of-sale-bill:before {
content: "\fab7";
}
.fi-br-point-of-sale-signal:before {
content: "\fab8";
}
.fi-br-point-of-sale:before {
content: "\fab9";
}
.fi-br-pointer-loading:before {
content: "\faba";
}
.fi-br-pointer-text:before {
content: "\fabb";
}
.fi-br-poker-chip:before {
content: "\fabc";
}
.fi-br-police-box:before {
content: "\fabd";
}
.fi-br-poll-h:before {
content: "\fabe";
}
.fi-br-pollution:before {
content: "\fabf";
}
.fi-br-pompebled:before {
content: "\fac0";
}
.fi-br-poo-bolt:before {
content: "\fac1";
}
.fi-br-poo:before {
content: "\fac2";
}
.fi-br-pool-8-ball:before {
content: "\fac3";
}
.fi-br-poop:before {
content: "\fac4";
}
.fi-br-popcorn:before {
content: "\fac5";
}
.fi-br-popsicle:before {
content: "\fac6";
}
.fi-br-portal-enter:before {
content: "\fac7";
}
.fi-br-portal-exit:before {
content: "\fac8";
}
.fi-br-portrait:before {
content: "\fac9";
}
.fi-br-postal-address:before {
content: "\faca";
}
.fi-br-pot:before {
content: "\facb";
}
.fi-br-potato:before {
content: "\facc";
}
.fi-br-pound:before {
content: "\facd";
}
.fi-br-power:before {
content: "\face";
}
.fi-br-ppt-file:before {
content: "\facf";
}
.fi-br-practice:before {
content: "\fad0";
}
.fi-br-praying-hands:before {
content: "\fad1";
}
.fi-br-prescription-bottle-alt:before {
content: "\fad2";
}
.fi-br-prescription-bottle-pill:before {
content: "\fad3";
}
.fi-br-prescription-bottle:before {
content: "\fad4";
}
.fi-br-prescription:before {
content: "\fad5";
}
.fi-br-presentation:before {
content: "\fad6";
}
.fi-br-preview:before {
content: "\fad7";
}
.fi-br-previous-square:before {
content: "\fad8";
}
.fi-br-print-magnifying-glass:before {
content: "\fad9";
}
.fi-br-print-slash:before {
content: "\fada";
}
.fi-br-print:before {
content: "\fadb";
}
.fi-br-priority-arrow:before {
content: "\fadc";
}
.fi-br-priority-arrows:before {
content: "\fadd";
}
.fi-br-priority-importance:before {
content: "\fade";
}
.fi-br-problem-solving:before {
content: "\fadf";
}
.fi-br-procedures:before {
content: "\fae0";
}
.fi-br-process:before {
content: "\fae1";
}
.fi-br-productivity:before {
content: "\fae2";
}
.fi-br-progress-complete:before {
content: "\fae3";
}
.fi-br-progress-download:before {
content: "\fae4";
}
.fi-br-progress-upload:before {
content: "\fae5";
}
.fi-br-projector:before {
content: "\fae6";
}
.fi-br-protractor:before {
content: "\fae7";
}
.fi-br-pulse:before {
content: "\fae8";
}
.fi-br-pump-medical:before {
content: "\fae9";
}
.fi-br-pump:before {
content: "\faea";
}
.fi-br-pumpkin-alt-2:before {
content: "\faeb";
}
.fi-br-pumpkin-alt:before {
content: "\faec";
}
.fi-br-pumpkin:before {
content: "\faed";
}
.fi-br-puzzle-alt:before {
content: "\faee";
}
.fi-br-puzzle-piece-integration:before {
content: "\faef";
}
.fi-br-puzzle-piece:before {
content: "\faf0";
}
.fi-br-puzzle-pieces:before {
content: "\faf1";
}
.fi-br-pyramid:before {
content: "\faf2";
}
.fi-br-q:before {
content: "\faf3";
}
.fi-br-qr-scan:before {
content: "\faf4";
}
.fi-br-QR:before {
content: "\faf5";
}
.fi-br-qrcode:before {
content: "\faf6";
}
.fi-br-question-square:before {
content: "\faf7";
}
.fi-br-question:before {
content: "\faf8";
}
.fi-br-queue-alt:before {
content: "\faf9";
}
.fi-br-queue-line:before {
content: "\fafa";
}
.fi-br-queue-signal:before {
content: "\fafb";
}
.fi-br-queue:before {
content: "\fafc";
}
.fi-br-quill-pen-story:before {
content: "\fafd";
}
.fi-br-quiz-alt:before {
content: "\fafe";
}
.fi-br-quiz:before {
content: "\faff";
}
.fi-br-quote-right:before {
content: "\fb00";
}
.fi-br-r:before {
content: "\fb01";
}
.fi-br-rabbit-fast:before {
content: "\fb02";
}
.fi-br-rabbit:before {
content: "\fb03";
}
.fi-br-raccoon:before {
content: "\fb04";
}
.fi-br-racquet:before {
content: "\fb05";
}
.fi-br-radar-monitoring-track:before {
content: "\fb06";
}
.fi-br-radar:before {
content: "\fb07";
}
.fi-br-radiation-alt:before {
content: "\fb08";
}
.fi-br-radiation:before {
content: "\fb09";
}
.fi-br-radio-alt:before {
content: "\fb0a";
}
.fi-br-radio-button:before {
content: "\fb0b";
}
.fi-br-radio:before {
content: "\fb0c";
}
.fi-br-radish:before {
content: "\fb0d";
}
.fi-br-rainbow:before {
content: "\fb0e";
}
.fi-br-raindrops:before {
content: "\fb0f";
}
.fi-br-ram:before {
content: "\fb10";
}
.fi-br-ramp-loading:before {
content: "\fb11";
}
.fi-br-rank:before {
content: "\fb12";
}
.fi-br-ranking-podium-empty:before {
content: "\fb13";
}
.fi-br-ranking-podium:before {
content: "\fb14";
}
.fi-br-ranking-star:before {
content: "\fb15";
}
.fi-br-ranking-stars:before {
content: "\fb16";
}
.fi-br-raygun:before {
content: "\fb17";
}
.fi-br-razor-barber:before {
content: "\fb18";
}
.fi-br-react:before {
content: "\fb19";
}
.fi-br-rec:before {
content: "\fb1a";
}
.fi-br-receipt:before {
content: "\fb1b";
}
.fi-br-recipe-book:before {
content: "\fb1c";
}
.fi-br-recipe:before {
content: "\fb1d";
}
.fi-br-record-vinyl:before {
content: "\fb1e";
}
.fi-br-rectabgle-vertical:before {
content: "\fb1f";
}
.fi-br-rectangle-barcode:before {
content: "\fb20";
}
.fi-br-rectangle-code:before {
content: "\fb21";
}
.fi-br-rectangle-history-circle-plus:before {
content: "\fb22";
}
.fi-br-rectangle-horizontal:before {
content: "\fb23";
}
.fi-br-rectangle-list:before {
content: "\fb24";
}
.fi-br-rectangle-panoramic:before {
content: "\fb25";
}
.fi-br-rectangle-pro:before {
content: "\fb26";
}
.fi-br-rectangle-vertical-history:before {
content: "\fb27";
}
.fi-br-rectangle-vertical:before {
content: "\fb28";
}
.fi-br-rectangle-xmark:before {
content: "\fb29";
}
.fi-br-rectangles-mixed:before {
content: "\fb2a";
}
.fi-br-recycle-bin:before {
content: "\fb2b";
}
.fi-br-recycle:before {
content: "\fb2c";
}
.fi-br-redo-alt:before {
content: "\fb2d";
}
.fi-br-redo:before {
content: "\fb2e";
}
.fi-br-reel:before {
content: "\fb2f";
}
.fi-br-refer-arrow:before {
content: "\fb30";
}
.fi-br-refer:before {
content: "\fb31";
}
.fi-br-referral-alt:before {
content: "\fb32";
}
.fi-br-referral-user:before {
content: "\fb33";
}
.fi-br-referral:before {
content: "\fb34";
}
.fi-br-reflect-horizontal-alt:before {
content: "\fb35";
}
.fi-br-reflect-horizontal:before {
content: "\fb36";
}
.fi-br-reflect-vertical:before {
content: "\fb37";
}
.fi-br-reflect:before {
content: "\fb38";
}
.fi-br-refresh:before {
content: "\fb39";
}
.fi-br-refrigerator:before {
content: "\fb3a";
}
.fi-br-refund-alt:before {
content: "\fb3b";
}
.fi-br-refund:before {
content: "\fb3c";
}
.fi-br-region-pin-alt:before {
content: "\fb3d";
}
.fi-br-region-pin:before {
content: "\fb3e";
}
.fi-br-registered:before {
content: "\fb3f";
}
.fi-br-registration-paper:before {
content: "\fb40";
}
.fi-br-remove-folder:before {
content: "\fb41";
}
.fi-br-remove-user:before {
content: "\fb42";
}
.fi-br-rent-signal:before {
content: "\fb43";
}
.fi-br-rent:before {
content: "\fb44";
}
.fi-br-replace:before {
content: "\fb45";
}
.fi-br-replay-10:before {
content: "\fb46";
}
.fi-br-replay-30:before {
content: "\fb47";
}
.fi-br-replay-5:before {
content: "\fb48";
}
.fi-br-reply-all:before {
content: "\fb49";
}
.fi-br-republican:before {
content: "\fb4a";
}
.fi-br-reservation-smartphone:before {
content: "\fb4b";
}
.fi-br-reservation-table:before {
content: "\fb4c";
}
.fi-br-resistance-band:before {
content: "\fb4d";
}
.fi-br-resize:before {
content: "\fb4e";
}
.fi-br-resources:before {
content: "\fb4f";
}
.fi-br-restaurant:before {
content: "\fb50";
}
.fi-br-restock:before {
content: "\fb51";
}
.fi-br-restroom-simple:before {
content: "\fb52";
}
.fi-br-resume:before {
content: "\fb53";
}
.fi-br-revenue-alt:before {
content: "\fb54";
}
.fi-br-revenue-euro:before {
content: "\fb55";
}
.fi-br-Revenue:before {
content: "\fb56";
}
.fi-br-review:before {
content: "\fb57";
}
.fi-br-rewind-button-circle:before {
content: "\fb58";
}
.fi-br-rewind:before {
content: "\fb59";
}
.fi-br-rhombus:before {
content: "\fb5a";
}
.fi-br-ribbon:before {
content: "\fb5b";
}
.fi-br-right-from-bracket:before {
content: "\fb5c";
}
.fi-br-right:before {
content: "\fb5d";
}
.fi-br-ring-diamond:before {
content: "\fb5e";
}
.fi-br-ring:before {
content: "\fb5f";
}
.fi-br-rings-wedding:before {
content: "\fb60";
}
.fi-br-risk-alt:before {
content: "\fb61";
}
.fi-br-risk:before {
content: "\fb62";
}
.fi-br-road-barrier:before {
content: "\fb63";
}
.fi-br-road-sign-left:before {
content: "\fb64";
}
.fi-br-road:before {
content: "\fb65";
}
.fi-br-robot:before {
content: "\fb66";
}
.fi-br-robotic-arm:before {
content: "\fb67";
}
.fi-br-rocket-lunch:before {
content: "\fb68";
}
.fi-br-rocket:before {
content: "\fb69";
}
.fi-br-roller-coaster:before {
content: "\fb6a";
}
.fi-br-room-service:before {
content: "\fb6b";
}
.fi-br-rotate-exclamation:before {
content: "\fb6c";
}
.fi-br-rotate-left:before {
content: "\fb6d";
}
.fi-br-rotate-reverse:before {
content: "\fb6e";
}
.fi-br-rotate-right:before {
content: "\fb6f";
}
.fi-br-rotate-square:before {
content: "\fb70";
}
.fi-br-roulette:before {
content: "\fb71";
}
.fi-br-route-highway:before {
content: "\fb72";
}
.fi-br-route-interstate:before {
content: "\fb73";
}
.fi-br-route:before {
content: "\fb74";
}
.fi-br-router:before {
content: "\fb75";
}
.fi-br-rss-alt:before {
content: "\fb76";
}
.fi-br-rss:before {
content: "\fb77";
}
.fi-br-ruble-sign:before {
content: "\fb78";
}
.fi-br-rugby-helmet:before {
content: "\fb79";
}
.fi-br-rugby:before {
content: "\fb7a";
}
.fi-br-ruler-combined:before {
content: "\fb7b";
}
.fi-br-ruler-horizontal:before {
content: "\fb7c";
}
.fi-br-ruler-triangle:before {
content: "\fb7d";
}
.fi-br-ruler-vertical:before {
content: "\fb7e";
}
.fi-br-rules-alt:before {
content: "\fb7f";
}
.fi-br-rules:before {
content: "\fb80";
}
.fi-br-running-track:before {
content: "\fb81";
}
.fi-br-running:before {
content: "\fb82";
}
.fi-br-rupee-sign:before {
content: "\fb83";
}
.fi-br-rupiah-sign:before {
content: "\fb84";
}
.fi-br-rv:before {
content: "\fb85";
}
.fi-br-s:before {
content: "\fb86";
}
.fi-br-sack-dollar:before {
content: "\fb87";
}
.fi-br-sack:before {
content: "\fb88";
}
.fi-br-sad-cry:before {
content: "\fb89";
}
.fi-br-sad-tear:before {
content: "\fb8a";
}
.fi-br-sad:before {
content: "\fb8b";
}
.fi-br-safe-box:before {
content: "\fb8c";
}
.fi-br-sailboat:before {
content: "\fb8d";
}
.fi-br-salad:before {
content: "\fb8e";
}
.fi-br-salary-alt:before {
content: "\fb8f";
}
.fi-br-salt-pepper:before {
content: "\fb90";
}
.fi-br-salt-shaker:before {
content: "\fb91";
}
.fi-br-sandwich-alt:before {
content: "\fb92";
}
.fi-br-sandwich:before {
content: "\fb93";
}
.fi-br-satellite-dish:before {
content: "\fb94";
}
.fi-br-satellite:before {
content: "\fb95";
}
.fi-br-saturday:before {
content: "\fb96";
}
.fi-br-sauce:before {
content: "\fb97";
}
.fi-br-sausage:before {
content: "\fb98";
}
.fi-br-sax-hot:before {
content: "\fb99";
}
.fi-br-saxophone:before {
content: "\fb9a";
}
.fi-br-scale-comparison-alt:before {
content: "\fb9b";
}
.fi-br-scale-comparison:before {
content: "\fb9c";
}
.fi-br-scale:before {
content: "\fb9d";
}
.fi-br-scalpel-path:before {
content: "\fb9e";
}
.fi-br-scalpel:before {
content: "\fb9f";
}
.fi-br-scanner-gun:before {
content: "\fba0";
}
.fi-br-scanner-image:before {
content: "\fba1";
}
.fi-br-scanner-keyboard:before {
content: "\fba2";
}
.fi-br-scanner-touchscreen:before {
content: "\fba3";
}
.fi-br-scarecrow:before {
content: "\fba4";
}
.fi-br-scarf:before {
content: "\fba5";
}
.fi-br-school-bus:before {
content: "\fba6";
}
.fi-br-school:before {
content: "\fba7";
}
.fi-br-scissors:before {
content: "\fba8";
}
.fi-br-scooter:before {
content: "\fba9";
}
.fi-br-screen:before {
content: "\fbaa";
}
.fi-br-screencast:before {
content: "\fbab";
}
.fi-br-screw-alt:before {
content: "\fbac";
}
.fi-br-screw:before {
content: "\fbad";
}
.fi-br-screwdriver:before {
content: "\fbae";
}
.fi-br-scribble:before {
content: "\fbaf";
}
.fi-br-script:before {
content: "\fbb0";
}
.fi-br-scroll-document-story:before {
content: "\fbb1";
}
.fi-br-scroll-old:before {
content: "\fbb2";
}
.fi-br-scroll-torah:before {
content: "\fbb3";
}
.fi-br-scroll:before {
content: "\fbb4";
}
.fi-br-scrubber:before {
content: "\fbb5";
}
.fi-br-scythe:before {
content: "\fbb6";
}
.fi-br-sd-card:before {
content: "\fbb7";
}
.fi-br-sd-cards:before {
content: "\fbb8";
}
.fi-br-seal-exclamation:before {
content: "\fbb9";
}
.fi-br-seal-question:before {
content: "\fbba";
}
.fi-br-seal:before {
content: "\fbbb";
}
.fi-br-search-alt:before {
content: "\fbbc";
}
.fi-br-search-dollar:before {
content: "\fbbd";
}
.fi-br-search-heart:before {
content: "\fbbe";
}
.fi-br-search-location:before {
content: "\fbbf";
}
.fi-br-search:before {
content: "\fbc0";
}
.fi-br-seat-airline:before {
content: "\fbc1";
}
.fi-br-seatbelt-safety-driver:before {
content: "\fbc2";
}
.fi-br-second-award:before {
content: "\fbc3";
}
.fi-br-second-laurel:before {
content: "\fbc4";
}
.fi-br-second-medal:before {
content: "\fbc5";
}
.fi-br-second:before {
content: "\fbc6";
}
.fi-br-seedling:before {
content: "\fbc7";
}
.fi-br-selection:before {
content: "\fbc8";
}
.fi-br-sell:before {
content: "\fbc9";
}
.fi-br-seller-store:before {
content: "\fbca";
}
.fi-br-seller:before {
content: "\fbcb";
}
.fi-br-selling:before {
content: "\fbcc";
}
.fi-br-send-back:before {
content: "\fbcd";
}
.fi-br-send-backward:before {
content: "\fbce";
}
.fi-br-send-money-smartphone:before {
content: "\fbcf";
}
.fi-br-send-money:before {
content: "\fbd0";
}
.fi-br-sensor-alert:before {
content: "\fbd1";
}
.fi-br-sensor-fire:before {
content: "\fbd2";
}
.fi-br-sensor-on:before {
content: "\fbd3";
}
.fi-br-sensor-smoke:before {
content: "\fbd4";
}
.fi-br-sensor:before {
content: "\fbd5";
}
.fi-br-settings-sliders:before {
content: "\fbd6";
}
.fi-br-settings:before {
content: "\fbd7";
}
.fi-br-share-alt-square:before {
content: "\fbd8";
}
.fi-br-share-square:before {
content: "\fbd9";
}
.fi-br-share:before {
content: "\fbda";
}
.fi-br-sheep:before {
content: "\fbdb";
}
.fi-br-shekel-sign:before {
content: "\fbdc";
}
.fi-br-shelves:before {
content: "\fbdd";
}
.fi-br-shield-alt:before {
content: "\fbde";
}
.fi-br-shield-cat:before {
content: "\fbdf";
}
.fi-br-shield-check:before {
content: "\fbe0";
}
.fi-br-shield-cross:before {
content: "\fbe1";
}
.fi-br-shield-dog:before {
content: "\fbe2";
}
.fi-br-shield-exclamation:before {
content: "\fbe3";
}
.fi-br-shield-interrogation:before {
content: "\fbe4";
}
.fi-br-shield-keyhole:before {
content: "\fbe5";
}
.fi-br-shield-minus:before {
content: "\fbe6";
}
.fi-br-shield-plus:before {
content: "\fbe7";
}
.fi-br-shield-security-risk:before {
content: "\fbe8";
}
.fi-br-shield-slash:before {
content: "\fbe9";
}
.fi-br-shield-trust:before {
content: "\fbea";
}
.fi-br-shield-virus:before {
content: "\fbeb";
}
.fi-br-shield-xmark:before {
content: "\fbec";
}
.fi-br-shield:before {
content: "\fbed";
}
.fi-br-ship-side:before {
content: "\fbee";
}
.fi-br-ship:before {
content: "\fbef";
}
.fi-br-shipping-fast:before {
content: "\fbf0";
}
.fi-br-shipping-timed:before {
content: "\fbf1";
}
.fi-br-shirt-long-sleeve:before {
content: "\fbf2";
}
.fi-br-shirt-running:before {
content: "\fbf3";
}
.fi-br-shirt-tank-top:before {
content: "\fbf4";
}
.fi-br-shirt:before {
content: "\fbf5";
}
.fi-br-shish-kebab:before {
content: "\fbf6";
}
.fi-br-shoe-prints:before {
content: "\fbf7";
}
.fi-br-shop-lock:before {
content: "\fbf8";
}
.fi-br-shop-slash:before {
content: "\fbf9";
}
.fi-br-shop:before {
content: "\fbfa";
}
.fi-br-shopping-bag-add:before {
content: "\fbfb";
}
.fi-br-shopping-bag:before {
content: "\fbfc";
}
.fi-br-shopping-basket:before {
content: "\fbfd";
}
.fi-br-shopping-cart-add:before {
content: "\fbfe";
}
.fi-br-shopping-cart-buyer:before {
content: "\fbff";
}
.fi-br-shopping-cart-check:before {
content: "\fc00";
}
.fi-br-shopping-cart:before {
content: "\fc01";
}
.fi-br-shovel-snow:before {
content: "\fc02";
}
.fi-br-shovel:before {
content: "\fc03";
}
.fi-br-shower-down:before {
content: "\fc04";
}
.fi-br-shower:before {
content: "\fc05";
}
.fi-br-shredder:before {
content: "\fc06";
}
.fi-br-shrimp:before {
content: "\fc07";
}
.fi-br-shuffle:before {
content: "\fc08";
}
.fi-br-shuttle-van:before {
content: "\fc09";
}
.fi-br-shuttlecock:before {
content: "\fc0a";
}
.fi-br-Sickle:before {
content: "\fc0b";
}
.fi-br-sidebar-flip:before {
content: "\fc0c";
}
.fi-br-sidebar:before {
content: "\fc0d";
}
.fi-br-sigma:before {
content: "\fc0e";
}
.fi-br-sign-hanging:before {
content: "\fc0f";
}
.fi-br-sign-in-alt:before {
content: "\fc10";
}
.fi-br-sign-out-alt:before {
content: "\fc11";
}
.fi-br-sign-posts-wrench:before {
content: "\fc12";
}
.fi-br-sign-posts:before {
content: "\fc13";
}
.fi-br-sign-up:before {
content: "\fc14";
}
.fi-br-signal-alt-1:before {
content: "\fc15";
}
.fi-br-signal-alt-2:before {
content: "\fc16";
}
.fi-br-signal-alt-slash:before {
content: "\fc17";
}
.fi-br-signal-alt:before {
content: "\fc18";
}
.fi-br-signal-bars-fair:before {
content: "\fc19";
}
.fi-br-signal-bars-good:before {
content: "\fc1a";
}
.fi-br-signal-bars-weak:before {
content: "\fc1b";
}
.fi-br-signal-stream-slash:before {
content: "\fc1c";
}
.fi-br-signal-stream:before {
content: "\fc1d";
}
.fi-br-signature-lock:before {
content: "\fc1e";
}
.fi-br-signature-slash:before {
content: "\fc1f";
}
.fi-br-signature:before {
content: "\fc20";
}
.fi-br-sim-card:before {
content: "\fc21";
}
.fi-br-sim-cards:before {
content: "\fc22";
}
.fi-br-sink:before {
content: "\fc23";
}
.fi-br-siren-on:before {
content: "\fc24";
}
.fi-br-Siren:before {
content: "\fc25";
}
.fi-br-site-alt:before {
content: "\fc26";
}
.fi-br-site-browser:before {
content: "\fc27";
}
.fi-br-site:before {
content: "\fc28";
}
.fi-br-sitemap:before {
content: "\fc29";
}
.fi-br-skateboard:before {
content: "\fc2a";
}
.fi-br-skating:before {
content: "\fc2b";
}
.fi-br-skeleton-ribs:before {
content: "\fc2c";
}
.fi-br-skeleton:before {
content: "\fc2d";
}
.fi-br-skewer:before {
content: "\fc2e";
}
.fi-br-ski-boot-ski:before {
content: "\fc2f";
}
.fi-br-ski-jump:before {
content: "\fc30";
}
.fi-br-ski-lift:before {
content: "\fc31";
}
.fi-br-skiing-nordic:before {
content: "\fc32";
}
.fi-br-skiing:before {
content: "\fc33";
}
.fi-br-skill-alt:before {
content: "\fc34";
}
.fi-br-skill-user:before {
content: "\fc35";
}
.fi-br-skill:before {
content: "\fc36";
}
.fi-br-skin-arrow:before {
content: "\fc37";
}
.fi-br-skin-drop:before {
content: "\fc38";
}
.fi-br-skin-hair:before {
content: "\fc39";
}
.fi-br-skin:before {
content: "\fc3a";
}
.fi-br-skip-15-seconds:before {
content: "\fc3b";
}
.fi-br-skull-cow:before {
content: "\fc3c";
}
.fi-br-skull-crossbones:before {
content: "\fc3d";
}
.fi-br-skull:before {
content: "\fc3e";
}
.fi-br-slash:before {
content: "\fc3f";
}
.fi-br-sledding:before {
content: "\fc40";
}
.fi-br-sleeping-bag:before {
content: "\fc41";
}
.fi-br-sleigh:before {
content: "\fc42";
}
.fi-br-sliders-h-square:before {
content: "\fc43";
}
.fi-br-sliders-v-square:before {
content: "\fc44";
}
.fi-br-sliders-v:before {
content: "\fc45";
}
.fi-br-slot-machine:before {
content: "\fc46";
}
.fi-br-smart-home-alt:before {
content: "\fc47";
}
.fi-br-smart-home:before {
content: "\fc48";
}
.fi-br-smartphone:before {
content: "\fc49";
}
.fi-br-smile-beam:before {
content: "\fc4a";
}
.fi-br-smile-plus:before {
content: "\fc4b";
}
.fi-br-smiley-comment-alt:before {
content: "\fc4c";
}
.fi-br-smog:before {
content: "\fc4d";
}
.fi-br-smoke:before {
content: "\fc4e";
}
.fi-br-smoking-ban:before {
content: "\fc4f";
}
.fi-br-smoking:before {
content: "\fc50";
}
.fi-br-snake:before {
content: "\fc51";
}
.fi-br-snap:before {
content: "\fc52";
}
.fi-br-snooze:before {
content: "\fc53";
}
.fi-br-snow-blowing:before {
content: "\fc54";
}
.fi-br-snowboarding:before {
content: "\fc55";
}
.fi-br-snowflake-droplets:before {
content: "\fc56";
}
.fi-br-snowflake:before {
content: "\fc57";
}
.fi-br-snowflakes:before {
content: "\fc58";
}
.fi-br-snowman-alt:before {
content: "\fc59";
}
.fi-br-snowman-head:before {
content: "\fc5a";
}
.fi-br-snowmobile:before {
content: "\fc5b";
}
.fi-br-snowplow:before {
content: "\fc5c";
}
.fi-br-soap-alt:before {
content: "\fc5d";
}
.fi-br-soap:before {
content: "\fc5e";
}
.fi-br-social-network:before {
content: "\fc5f";
}
.fi-br-socks:before {
content: "\fc60";
}
.fi-br-sofa-size:before {
content: "\fc61";
}
.fi-br-sofa:before {
content: "\fc62";
}
.fi-br-solar-panel-sun:before {
content: "\fc63";
}
.fi-br-solar-panel:before {
content: "\fc64";
}
.fi-br-solar-system:before {
content: "\fc65";
}
.fi-br-sold-house:before {
content: "\fc66";
}
.fi-br-sold-signal:before {
content: "\fc67";
}
.fi-br-sort-alpha-down-alt:before {
content: "\fc68";
}
.fi-br-sort-alpha-down:before {
content: "\fc69";
}
.fi-br-sort-alpha-up-alt:before {
content: "\fc6a";
}
.fi-br-sort-alpha-up:before {
content: "\fc6b";
}
.fi-br-sort-alt:before {
content: "\fc6c";
}
.fi-br-sort-amount-down-alt:before {
content: "\fc6d";
}
.fi-br-sort-amount-down:before {
content: "\fc6e";
}
.fi-br-sort-amount-up-alt:before {
content: "\fc6f";
}
.fi-br-sort-amount-up:before {
content: "\fc70";
}
.fi-br-sort-circle-down:before {
content: "\fc71";
}
.fi-br-sort-circle-up:before {
content: "\fc72";
}
.fi-br-sort-circle:before {
content: "\fc73";
}
.fi-br-sort-down:before {
content: "\fc74";
}
.fi-br-sort-numeric-down-alt:before {
content: "\fc75";
}
.fi-br-sort-numeric-down:before {
content: "\fc76";
}
.fi-br-sort-shapes-down:before {
content: "\fc77";
}
.fi-br-sort-shapes-up:before {
content: "\fc78";
}
.fi-br-sort-size-down:before {
content: "\fc79";
}
.fi-br-sort-size-up:before {
content: "\fc7a";
}
.fi-br-sort:before {
content: "\fc7b";
}
.fi-br-soup:before {
content: "\fc7c";
}
.fi-br-source-data:before {
content: "\fc7d";
}
.fi-br-source-document-alt:before {
content: "\fc7e";
}
.fi-br-source-document:before {
content: "\fc7f";
}
.fi-br-spa:before {
content: "\fc80";
}
.fi-br-space-shuttle:before {
content: "\fc81";
}
.fi-br-space-station-moon-alt:before {
content: "\fc82";
}
.fi-br-space-station-moon:before {
content: "\fc83";
}
.fi-br-spade:before {
content: "\fc84";
}
.fi-br-spaghetti-monster-flying:before {
content: "\fc85";
}
.fi-br-spain-map:before {
content: "\fc86";
}
.fi-br-sparkles:before {
content: "\fc87";
}
.fi-br-spartan-helmet:before {
content: "\fc88";
}
.fi-br-speaker:before {
content: "\fc89";
}
.fi-br-speakers:before {
content: "\fc8a";
}
.fi-br-speech-bubble-story:before {
content: "\fc8b";
}
.fi-br-speedometer-arrow:before {
content: "\fc8c";
}
.fi-br-speedometer-kpi:before {
content: "\fc8d";
}
.fi-br-sphere:before {
content: "\fc8e";
}
.fi-br-spider-black-widow:before {
content: "\fc8f";
}
.fi-br-spider-web:before {
content: "\fc90";
}
.fi-br-spider:before {
content: "\fc91";
}
.fi-br-spinner:before {
content: "\fc92";
}
.fi-br-split-up-relation:before {
content: "\fc93";
}
.fi-br-split:before {
content: "\fc94";
}
.fi-br-splotch:before {
content: "\fc95";
}
.fi-br-spoon:before {
content: "\fc96";
}
.fi-br-spray-can-sparkles:before {
content: "\fc97";
}
.fi-br-spray-can:before {
content: "\fc98";
}
.fi-br-spring-calendar:before {
content: "\fc99";
}
.fi-br-sprinkler:before {
content: "\fc9a";
}
.fi-br-spy:before {
content: "\fc9b";
}
.fi-br-square-0:before {
content: "\fc9c";
}
.fi-br-square-1:before {
content: "\fc9d";
}
.fi-br-square-2:before {
content: "\fc9e";
}
.fi-br-square-3:before {
content: "\fc9f";
}
.fi-br-square-4:before {
content: "\fca0";
}
.fi-br-square-5:before {
content: "\fca1";
}
.fi-br-square-6:before {
content: "\fca2";
}
.fi-br-square-7:before {
content: "\fca3";
}
.fi-br-square-8:before {
content: "\fca4";
}
.fi-br-square-9:before {
content: "\fca5";
}
.fi-br-square-a:before {
content: "\fca6";
}
.fi-br-square-b:before {
content: "\fca7";
}
.fi-br-square-bolt:before {
content: "\fca8";
}
.fi-br-square-c:before {
content: "\fca9";
}
.fi-br-square-code:before {
content: "\fcaa";
}
.fi-br-square-d:before {
content: "\fcab";
}
.fi-br-square-dashed-circle-plus:before {
content: "\fcac";
}
.fi-br-square-dashed:before {
content: "\fcad";
}
.fi-br-square-divide:before {
content: "\fcae";
}
.fi-br-square-e:before {
content: "\fcaf";
}
.fi-br-square-ellipsis-vertical:before {
content: "\fcb0";
}
.fi-br-square-ellipsis:before {
content: "\fcb1";
}
.fi-br-square-exclamation:before {
content: "\fcb2";
}
.fi-br-square-f:before {
content: "\fcb3";
}
.fi-br-square-g:before {
content: "\fcb4";
}
.fi-br-square-h:before {
content: "\fcb5";
}
.fi-br-square-heart:before {
content: "\fcb6";
}
.fi-br-square-i:before {
content: "\fcb7";
}
.fi-br-square-info:before {
content: "\fcb8";
}
.fi-br-square-j:before {
content: "\fcb9";
}
.fi-br-square-k:before {
content: "\fcba";
}
.fi-br-square-kanban:before {
content: "\fcbb";
}
.fi-br-square-l:before {
content: "\fcbc";
}
.fi-br-square-m:before {
content: "\fcbd";
}
.fi-br-square-minus:before {
content: "\fcbe";
}
.fi-br-square-n:before {
content: "\fcbf";
}
.fi-br-square-o:before {
content: "\fcc0";
}
.fi-br-square-p:before {
content: "\fcc1";
}
.fi-br-square-phone-hangup:before {
content: "\fcc2";
}
.fi-br-square-plus:before {
content: "\fcc3";
}
.fi-br-square-poll-horizontal:before {
content: "\fcc4";
}
.fi-br-square-poll-vertical:before {
content: "\fcc5";
}
.fi-br-square-q:before {
content: "\fcc6";
}
.fi-br-square-quote:before {
content: "\fcc7";
}
.fi-br-square-r:before {
content: "\fcc8";
}
.fi-br-square-root:before {
content: "\fcc9";
}
.fi-br-square-s:before {
content: "\fcca";
}
.fi-br-square-small:before {
content: "\fccb";
}
.fi-br-square-star:before {
content: "\fccc";
}
.fi-br-square-t:before {
content: "\fccd";
}
.fi-br-square-terminal:before {
content: "\fcce";
}
.fi-br-square-u:before {
content: "\fccf";
}
.fi-br-square-up-right:before {
content: "\fcd0";
}
.fi-br-square-v:before {
content: "\fcd1";
}
.fi-br-square-w:before {
content: "\fcd2";
}
.fi-br-square-x:before {
content: "\fcd3";
}
.fi-br-square-y:before {
content: "\fcd4";
}
.fi-br-square-z:before {
content: "\fcd5";
}
.fi-br-square:before {
content: "\fcd6";
}
.fi-br-squid:before {
content: "\fcd7";
}
.fi-br-squircle:before {
content: "\fcd8";
}
.fi-br-squirrel:before {
content: "\fcd9";
}
.fi-br-staff:before {
content: "\fcda";
}
.fi-br-stage-concert:before {
content: "\fcdb";
}
.fi-br-stage-theatre:before {
content: "\fcdc";
}
.fi-br-stage:before {
content: "\fcdd";
}
.fi-br-stairs:before {
content: "\fcde";
}
.fi-br-stamp:before {
content: "\fcdf";
}
.fi-br-standard-definition:before {
content: "\fce0";
}
.fi-br-star-and-crescent:before {
content: "\fce1";
}
.fi-br-star-christmas:before {
content: "\fce2";
}
.fi-br-star-comment-alt:before {
content: "\fce3";
}
.fi-br-star-exclamation:before {
content: "\fce4";
}
.fi-br-star-octogram:before {
content: "\fce5";
}
.fi-br-star-of-david:before {
content: "\fce6";
}
.fi-br-star-rating-call:before {
content: "\fce7";
}
.fi-br-star-sharp-half-stroke:before {
content: "\fce8";
}
.fi-br-star-sharp-half:before {
content: "\fce9";
}
.fi-br-star-shooting:before {
content: "\fcea";
}
.fi-br-star:before {
content: "\fceb";
}
.fi-br-starfighter:before {
content: "\fcec";
}
.fi-br-stars:before {
content: "\fced";
}
.fi-br-state-country:before {
content: "\fcee";
}
.fi-br-stationary-bike:before {
content: "\fcef";
}
.fi-br-stats:before {
content: "\fcf0";
}
.fi-br-steak:before {
content: "\fcf1";
}
.fi-br-steering-wheel:before {
content: "\fcf2";
}
.fi-br-step-backward:before {
content: "\fcf3";
}
.fi-br-step-forward:before {
content: "\fcf4";
}
.fi-br-sterling-sign:before {
content: "\fcf5";
}
.fi-br-stethoscope:before {
content: "\fcf6";
}
.fi-br-sticker:before {
content: "\fcf7";
}
.fi-br-stocking:before {
content: "\fcf8";
}
.fi-br-stomach:before {
content: "\fcf9";
}
.fi-br-stop-circle:before {
content: "\fcfa";
}
.fi-br-stop-square:before {
content: "\fcfb";
}
.fi-br-stop:before {
content: "\fcfc";
}
.fi-br-stopwatch:before {
content: "\fcfd";
}
.fi-br-store-alt:before {
content: "\fcfe";
}
.fi-br-store-buyer:before {
content: "\fcff";
}
.fi-br-store-lock:before {
content: "\fd00";
}
.fi-br-store-slash:before {
content: "\fd01";
}
.fi-br-story-book:before {
content: "\fd02";
}
.fi-br-story-fairy-tale:before {
content: "\fd03";
}
.fi-br-story-fantasy:before {
content: "\fd04";
}
.fi-br-strategy-chess-risk:before {
content: "\fd05";
}
.fi-br-strawberry:before {
content: "\fd06";
}
.fi-br-street-view:before {
content: "\fd07";
}
.fi-br-stretcher:before {
content: "\fd08";
}
.fi-br-strikethrough:before {
content: "\fd09";
}
.fi-br-stroopwafel:before {
content: "\fd0a";
}
.fi-br-student-alt:before {
content: "\fd0b";
}
.fi-br-student:before {
content: "\fd0c";
}
.fi-br-subscript:before {
content: "\fd0d";
}
.fi-br-subscription-alt:before {
content: "\fd0e";
}
.fi-br-subscription:before {
content: "\fd0f";
}
.fi-br-subtitles-slash:before {
content: "\fd10";
}
.fi-br-subtitles:before {
content: "\fd11";
}
.fi-br-subway:before {
content: "\fd12";
}
.fi-br-suitcase-alt:before {
content: "\fd13";
}
.fi-br-summary-check:before {
content: "\fd14";
}
.fi-br-summer:before {
content: "\fd15";
}
.fi-br-sun-dust:before {
content: "\fd16";
}
.fi-br-sun-plant-wilt:before {
content: "\fd17";
}
.fi-br-sun-salutation-yoga:before {
content: "\fd18";
}
.fi-br-sun:before {
content: "\fd19";
}
.fi-br-sunday:before {
content: "\fd1a";
}
.fi-br-sunglasses-alt:before {
content: "\fd1b";
}
.fi-br-sunglasses:before {
content: "\fd1c";
}
.fi-br-sunrise-alt:before {
content: "\fd1d";
}
.fi-br-sunrise:before {
content: "\fd1e";
}
.fi-br-sunset:before {
content: "\fd1f";
}
.fi-br-superscript:before {
content: "\fd20";
}
.fi-br-supplier-alt:before {
content: "\fd21";
}
.fi-br-supplier:before {
content: "\fd22";
}
.fi-br-surfing:before {
content: "\fd23";
}
.fi-br-surprise:before {
content: "\fd24";
}
.fi-br-surveillance-camera:before {
content: "\fd25";
}
.fi-br-survey-xmark:before {
content: "\fd26";
}
.fi-br-sushi-alt:before {
content: "\fd27";
}
.fi-br-sushi-roll:before {
content: "\fd28";
}
.fi-br-sushi:before {
content: "\fd29";
}
.fi-br-svg:before {
content: "\fd2a";
}
.fi-br-swap:before {
content: "\fd2b";
}
.fi-br-swatchbook:before {
content: "\fd2c";
}
.fi-br-swimmer:before {
content: "\fd2d";
}
.fi-br-swimming-pool:before {
content: "\fd2e";
}
.fi-br-swing:before {
content: "\fd2f";
}
.fi-br-swipe-down:before {
content: "\fd30";
}
.fi-br-swipe-left:before {
content: "\fd31";
}
.fi-br-swipe-right:before {
content: "\fd32";
}
.fi-br-swipe-up:before {
content: "\fd33";
}
.fi-br-sword:before {
content: "\fd34";
}
.fi-br-symbol:before {
content: "\fd35";
}
.fi-br-symbols:before {
content: "\fd36";
}
.fi-br-synagogue:before {
content: "\fd37";
}
.fi-br-syringe:before {
content: "\fd38";
}
.fi-br-system-cloud:before {
content: "\fd39";
}
.fi-br-t:before {
content: "\fd3a";
}
.fi-br-tab-folder:before {
content: "\fd3b";
}
.fi-br-table-columns:before {
content: "\fd3c";
}
.fi-br-table-layout:before {
content: "\fd3d";
}
.fi-br-table-list:before {
content: "\fd3e";
}
.fi-br-table-picnic:before {
content: "\fd3f";
}
.fi-br-table-pivot:before {
content: "\fd40";
}
.fi-br-table-rows:before {
content: "\fd41";
}
.fi-br-table-tree:before {
content: "\fd42";
}
.fi-br-table:before {
content: "\fd43";
}
.fi-br-tablet-android-alt:before {
content: "\fd44";
}
.fi-br-tablet-android:before {
content: "\fd45";
}
.fi-br-tablet-rugged:before {
content: "\fd46";
}
.fi-br-tablet:before {
content: "\fd47";
}
.fi-br-tachometer-alt-average:before {
content: "\fd48";
}
.fi-br-tachometer-alt-fastest:before {
content: "\fd49";
}
.fi-br-tachometer-alt-slow:before {
content: "\fd4a";
}
.fi-br-tachometer-alt-slowest:before {
content: "\fd4b";
}
.fi-br-tachometer-average:before {
content: "\fd4c";
}
.fi-br-tachometer-fast:before {
content: "\fd4d";
}
.fi-br-tachometer-fastest:before {
content: "\fd4e";
}
.fi-br-tachometer-slow:before {
content: "\fd4f";
}
.fi-br-tachometer-slowest:before {
content: "\fd50";
}
.fi-br-tachometer:before {
content: "\fd51";
}
.fi-br-taco:before {
content: "\fd52";
}
.fi-br-tags:before {
content: "\fd53";
}
.fi-br-talent-alt:before {
content: "\fd54";
}
.fi-br-talent-hand:before {
content: "\fd55";
}
.fi-br-talent:before {
content: "\fd56";
}
.fi-br-tally-1:before {
content: "\fd57";
}
.fi-br-tally-2:before {
content: "\fd58";
}
.fi-br-tally-3:before {
content: "\fd59";
}
.fi-br-tally-4:before {
content: "\fd5a";
}
.fi-br-tally:before {
content: "\fd5b";
}
.fi-br-tamale:before {
content: "\fd5c";
}
.fi-br-tank-water:before {
content: "\fd5d";
}
.fi-br-tap:before {
content: "\fd5e";
}
.fi-br-tape:before {
content: "\fd5f";
}
.fi-br-target-audience:before {
content: "\fd60";
}
.fi-br-target:before {
content: "\fd61";
}
.fi-br-tax-alt:before {
content: "\fd62";
}
.fi-br-tax:before {
content: "\fd63";
}
.fi-br-taxi-bus:before {
content: "\fd64";
}
.fi-br-taxi:before {
content: "\fd65";
}
.fi-br-team-check-alt:before {
content: "\fd66";
}
.fi-br-team-check:before {
content: "\fd67";
}
.fi-br-teddy-bear:before {
content: "\fd68";
}
.fi-br-teeth-open:before {
content: "\fd69";
}
.fi-br-telescope:before {
content: "\fd6a";
}
.fi-br-temperature-down:before {
content: "\fd6b";
}
.fi-br-temperature-frigid:before {
content: "\fd6c";
}
.fi-br-temperature-high:before {
content: "\fd6d";
}
.fi-br-temperature-list:before {
content: "\fd6e";
}
.fi-br-temperature-low:before {
content: "\fd6f";
}
.fi-br-temperature-up:before {
content: "\fd70";
}
.fi-br-template-alt:before {
content: "\fd71";
}
.fi-br-template:before {
content: "\fd72";
}
.fi-br-tenge:before {
content: "\fd73";
}
.fi-br-tennis:before {
content: "\fd74";
}
.fi-br-tent-arrow-down-to-line:before {
content: "\fd75";
}
.fi-br-tent-arrow-left-right:before {
content: "\fd76";
}
.fi-br-tent-arrow-turn-left:before {
content: "\fd77";
}
.fi-br-tent-arrows-down:before {
content: "\fd78";
}
.fi-br-tents:before {
content: "\fd79";
}
.fi-br-terminal:before {
content: "\fd7a";
}
.fi-br-terrace:before {
content: "\fd7b";
}
.fi-br-test-tube:before {
content: "\fd7c";
}
.fi-br-test:before {
content: "\fd7d";
}
.fi-br-text-box-dots:before {
content: "\fd7e";
}
.fi-br-text-box-edit:before {
content: "\fd7f";
}
.fi-br-text-box:before {
content: "\fd80";
}
.fi-br-text-check:before {
content: "\fd81";
}
.fi-br-text-height:before {
content: "\fd82";
}
.fi-br-text-shadow:before {
content: "\fd83";
}
.fi-br-text-size:before {
content: "\fd84";
}
.fi-br-text-slash:before {
content: "\fd85";
}
.fi-br-text-width:before {
content: "\fd86";
}
.fi-br-text:before {
content: "\fd87";
}
.fi-br-theater-masks:before {
content: "\fd88";
}
.fi-br-thermometer-alt:before {
content: "\fd89";
}
.fi-br-thermometer-empty:before {
content: "\fd8a";
}
.fi-br-thermometer-full:before {
content: "\fd8b";
}
.fi-br-thermometer-half:before {
content: "\fd8c";
}
.fi-br-thermometer-quarter:before {
content: "\fd8d";
}
.fi-br-thermometer-three-quarters:before {
content: "\fd8e";
}
.fi-br-theta:before {
content: "\fd8f";
}
.fi-br-third-award:before {
content: "\fd90";
}
.fi-br-third-laurel:before {
content: "\fd91";
}
.fi-br-third-medal:before {
content: "\fd92";
}
.fi-br-third:before {
content: "\fd93";
}
.fi-br-thought-bubble:before {
content: "\fd94";
}
.fi-br-three-leaf-clover:before {
content: "\fd95";
}
.fi-br-thumbs-up-trust:before {
content: "\fd96";
}
.fi-br-thumbtack:before {
content: "\fd97";
}
.fi-br-thunderstorm-moon:before {
content: "\fd98";
}
.fi-br-thunderstorm-risk:before {
content: "\fd99";
}
.fi-br-thunderstorm-sun:before {
content: "\fd9a";
}
.fi-br-thunderstorm:before {
content: "\fd9b";
}
.fi-br-thursday:before {
content: "\fd9c";
}
.fi-br-ticket-airline:before {
content: "\fd9d";
}
.fi-br-ticket-alt:before {
content: "\fd9e";
}
.fi-br-ticket:before {
content: "\fd9f";
}
.fi-br-tickets-airline:before {
content: "\fda0";
}
.fi-br-tie:before {
content: "\fda1";
}
.fi-br-tilde:before {
content: "\fda2";
}
.fi-br-time-add:before {
content: "\fda3";
}
.fi-br-time-check:before {
content: "\fda4";
}
.fi-br-time-delete:before {
content: "\fda5";
}
.fi-br-time-fast:before {
content: "\fda6";
}
.fi-br-time-forward-sixty:before {
content: "\fda7";
}
.fi-br-time-forward-ten:before {
content: "\fda8";
}
.fi-br-time-forward:before {
content: "\fda9";
}
.fi-br-time-half-past:before {
content: "\fdaa";
}
.fi-br-time-oclock:before {
content: "\fdab";
}
.fi-br-time-past:before {
content: "\fdac";
}
.fi-br-time-quarter-past:before {
content: "\fdad";
}
.fi-br-time-quarter-to:before {
content: "\fdae";
}
.fi-br-time-twenty-four:before {
content: "\fdaf";
}
.fi-br-time-watch-calendar:before {
content: "\fdb0";
}
.fi-br-timer-clock-call:before {
content: "\fdb1";
}
.fi-br-times-hexagon:before {
content: "\fdb2";
}
.fi-br-tint-slash:before {
content: "\fdb3";
}
.fi-br-tip-coin:before {
content: "\fdb4";
}
.fi-br-tire-flat:before {
content: "\fdb5";
}
.fi-br-tire-pressure-warning:before {
content: "\fdb6";
}
.fi-br-tire-rugged:before {
content: "\fdb7";
}
.fi-br-tire:before {
content: "\fdb8";
}
.fi-br-tired:before {
content: "\fdb9";
}
.fi-br-to-do-alt:before {
content: "\fdba";
}
.fi-br-to-do:before {
content: "\fdbb";
}
.fi-br-together-people:before {
content: "\fdbc";
}
.fi-br-toggle-off:before {
content: "\fdbd";
}
.fi-br-toggle-on:before {
content: "\fdbe";
}
.fi-br-toilet-paper-blank-under:before {
content: "\fdbf";
}
.fi-br-toilet-paper-blank:before {
content: "\fdc0";
}
.fi-br-toilet-paper-slash:before {
content: "\fdc1";
}
.fi-br-toilet-paper-under-slash:before {
content: "\fdc2";
}
.fi-br-toilet-paper-under:before {
content: "\fdc3";
}
.fi-br-toilet:before {
content: "\fdc4";
}
.fi-br-toilets-portable:before {
content: "\fdc5";
}
.fi-br-token:before {
content: "\fdc6";
}
.fi-br-tomato:before {
content: "\fdc7";
}
.fi-br-tombstone-alt:before {
content: "\fdc8";
}
.fi-br-tombstone:before {
content: "\fdc9";
}
.fi-br-tool-box:before {
content: "\fdca";
}
.fi-br-tool-crop:before {
content: "\fdcb";
}
.fi-br-tool-marquee:before {
content: "\fdcc";
}
.fi-br-tools:before {
content: "\fdcd";
}
.fi-br-tooth:before {
content: "\fdce";
}
.fi-br-toothbrush:before {
content: "\fdcf";
}
.fi-br-torch-inspiration-leader:before {
content: "\fdd0";
}
.fi-br-torii-gate:before {
content: "\fdd1";
}
.fi-br-tornado:before {
content: "\fdd2";
}
.fi-br-total:before {
content: "\fdd3";
}
.fi-br-tour-guide-people:before {
content: "\fdd4";
}
.fi-br-tour-virtual:before {
content: "\fdd5";
}
.fi-br-tower-control:before {
content: "\fdd6";
}
.fi-br-track:before {
content: "\fdd7";
}
.fi-br-tractor:before {
content: "\fdd8";
}
.fi-br-trademark:before {
content: "\fdd9";
}
.fi-br-traffic-cone:before {
content: "\fdda";
}
.fi-br-traffic-light-go:before {
content: "\fddb";
}
.fi-br-traffic-light-slow:before {
content: "\fddc";
}
.fi-br-traffic-light-stop:before {
content: "\fddd";
}
.fi-br-traffic-light:before {
content: "\fdde";
}
.fi-br-trailer:before {
content: "\fddf";
}
.fi-br-train-journey:before {
content: "\fde0";
}
.fi-br-train-side:before {
content: "\fde1";
}
.fi-br-train-station-building:before {
content: "\fde2";
}
.fi-br-train-station:before {
content: "\fde3";
}
.fi-br-train-subway-tunnel:before {
content: "\fde4";
}
.fi-br-train-track:before {
content: "\fde5";
}
.fi-br-train-tram:before {
content: "\fde6";
}
.fi-br-train:before {
content: "\fde7";
}
.fi-br-tram:before {
content: "\fde8";
}
.fi-br-transform:before {
content: "\fde9";
}
.fi-br-transformation-block:before {
content: "\fdea";
}
.fi-br-transformation-circle:before {
content: "\fdeb";
}
.fi-br-transformation-design:before {
content: "\fdec";
}
.fi-br-transformation-shapes:before {
content: "\fded";
}
.fi-br-transformer-bolt:before {
content: "\fdee";
}
.fi-br-transgender:before {
content: "\fdef";
}
.fi-br-transporter-1:before {
content: "\fdf0";
}
.fi-br-transporter-2:before {
content: "\fdf1";
}
.fi-br-transporter-3:before {
content: "\fdf2";
}
.fi-br-transporter-4:before {
content: "\fdf3";
}
.fi-br-transporter-5:before {
content: "\fdf4";
}
.fi-br-transporter-6:before {
content: "\fdf5";
}
.fi-br-transporter-7:before {
content: "\fdf6";
}
.fi-br-transporter-empty:before {
content: "\fdf7";
}
.fi-br-transporter:before {
content: "\fdf8";
}
.fi-br-trash-can-check:before {
content: "\fdf9";
}
.fi-br-trash-can-clock:before {
content: "\fdfa";
}
.fi-br-trash-can-list:before {
content: "\fdfb";
}
.fi-br-trash-can-plus:before {
content: "\fdfc";
}
.fi-br-trash-can-slash:before {
content: "\fdfd";
}
.fi-br-trash-check:before {
content: "\fdfe";
}
.fi-br-trash-clock:before {
content: "\fdff";
}
.fi-br-trash-empty:before {
content: "\fe10";
}
.fi-br-trash-list:before {
content: "\fe11";
}
.fi-br-trash-plus:before {
content: "\fe12";
}
.fi-br-trash-restore-alt:before {
content: "\fe13";
}
.fi-br-trash-restore:before {
content: "\fe14";
}
.fi-br-trash-slash:before {
content: "\fe15";
}
.fi-br-trash-undo-alt:before {
content: "\fe16";
}
.fi-br-trash-undo:before {
content: "\fe17";
}
.fi-br-trash-xmark:before {
content: "\fe18";
}
.fi-br-trash:before {
content: "\fe19";
}
.fi-br-treadmill:before {
content: "\fe1a";
}
.fi-br-treasure-chest:before {
content: "\fe1b";
}
.fi-br-treatment:before {
content: "\fe1c";
}
.fi-br-tree-alt:before {
content: "\fe1d";
}
.fi-br-tree-christmas:before {
content: "\fe1e";
}
.fi-br-tree-deciduous:before {
content: "\fe1f";
}
.fi-br-tree:before {
content: "\fe30";
}
.fi-br-trees-alt:before {
content: "\fe31";
}
.fi-br-trees:before {
content: "\fe32";
}
.fi-br-triangle-music:before {
content: "\fe33";
}
.fi-br-triangle-person-digging:before {
content: "\fe34";
}
.fi-br-triangle-warning:before {
content: "\fe35";
}
.fi-br-triangle:before {
content: "\fe36";
}
.fi-br-tricycle:before {
content: "\fe37";
}
.fi-br-trillium:before {
content: "\fe38";
}
.fi-br-trophy-achievement-skill:before {
content: "\fe39";
}
.fi-br-trophy-star:before {
content: "\fe3a";
}
.fi-br-trophy:before {
content: "\fe3b";
}
.fi-br-truck-arrow-left:before {
content: "\fe3c";
}
.fi-br-truck-arrow-right:before {
content: "\fe3d";
}
.fi-br-truck-bolt:before {
content: "\fe3e";
}
.fi-br-truck-box:before {
content: "\fe3f";
}
.fi-br-truck-check:before {
content: "\fe40";
}
.fi-br-truck-container-empty:before {
content: "\fe41";
}
.fi-br-truck-container:before {
content: "\fe42";
}
.fi-br-truck-couch:before {
content: "\fe43";
}
.fi-br-truck-fire:before {
content: "\fe44";
}
.fi-br-truck-flatbed:before {
content: "\fe45";
}
.fi-br-truck-front:before {
content: "\fe46";
}
.fi-br-truck-ladder:before {
content: "\fe47";
}
.fi-br-truck-loading:before {
content: "\fe48";
}
.fi-br-truck-medical:before {
content: "\fe49";
}
.fi-br-truck-monster:before {
content: "\fe4a";
}
.fi-br-truck-moving:before {
content: "\fe4b";
}
.fi-br-truck-pickup:before {
content: "\fe4c";
}
.fi-br-truck-plow:before {
content: "\fe4d";
}
.fi-br-truck-ramp:before {
content: "\fe4e";
}
.fi-br-truck-side:before {
content: "\fe4f";
}
.fi-br-truck-tow:before {
content: "\fe50";
}
.fi-br-truck-utensils:before {
content: "\fe51";
}
.fi-br-trumpet:before {
content: "\fe52";
}
.fi-br-trust-alt:before {
content: "\fe53";
}
.fi-br-trust:before {
content: "\fe54";
}
.fi-br-tshirt:before {
content: "\fe55";
}
.fi-br-tty-answer:before {
content: "\fe56";
}
.fi-br-tty:before {
content: "\fe57";
}
.fi-br-tubes:before {
content: "\fe58";
}
.fi-br-tuesday:before {
content: "\fe59";
}
.fi-br-tugrik-sign:before {
content: "\fe5a";
}
.fi-br-turkey:before {
content: "\fe5b";
}
.fi-br-turn-left-down:before {
content: "\fe5c";
}
.fi-br-turn-left:before {
content: "\fe5d";
}
.fi-br-turn-right:before {
content: "\fe5e";
}
.fi-br-turntable:before {
content: "\fe5f";
}
.fi-br-turtle:before {
content: "\fe60";
}
.fi-br-tv-music:before {
content: "\fe61";
}
.fi-br-tv-retro:before {
content: "\fe62";
}
.fi-br-typewriter:before {
content: "\fe63";
}
.fi-br-u:before {
content: "\fe64";
}
.fi-br-ufo-beam:before {
content: "\fe65";
}
.fi-br-ufo:before {
content: "\fe66";
}
.fi-br-ui-ux:before {
content: "\fe67";
}
.fi-br-umbrella-beach:before {
content: "\fe68";
}
.fi-br-umbrella:before {
content: "\fe69";
}
.fi-br-under-construction:before {
content: "\fe6a";
}
.fi-br-underline:before {
content: "\fe6b";
}
.fi-br-undo-alt:before {
content: "\fe6c";
}
.fi-br-undo:before {
content: "\fe6d";
}
.fi-br-unicorn:before {
content: "\fe6e";
}
.fi-br-uniform-martial-arts:before {
content: "\fe6f";
}
.fi-br-universal-access:before {
content: "\fe70";
}
.fi-br-unlock:before {
content: "\fe71";
}
.fi-br-up-from-bracket:before {
content: "\fe72";
}
.fi-br-up-left:before {
content: "\fe73";
}
.fi-br-up-right-from-square:before {
content: "\fe74";
}
.fi-br-up-right:before {
content: "\fe75";
}
.fi-br-up:before {
content: "\fe76";
}
.fi-br-upload:before {
content: "\fe77";
}
.fi-br-url:before {
content: "\fe78";
}
.fi-br-usb-pendrive:before {
content: "\fe79";
}
.fi-br-usd-circle:before {
content: "\fe7a";
}
.fi-br-usd-square:before {
content: "\fe7b";
}
.fi-br-user-add:before {
content: "\fe7c";
}
.fi-br-user-alien:before {
content: "\fe7d";
}
.fi-br-user-astronaut:before {
content: "\fe7e";
}
.fi-br-user-check:before {
content: "\fe7f";
}
.fi-br-user-chef:before {
content: "\fe80";
}
.fi-br-user-coach:before {
content: "\fe81";
}
.fi-br-user-cowboy:before {
content: "\fe82";
}
.fi-br-user-crown:before {
content: "\fe83";
}
.fi-br-user-gear:before {
content: "\fe84";
}
.fi-br-user-graduate:before {
content: "\fe85";
}
.fi-br-user-headset:before {
content: "\fe86";
}
.fi-br-user-helmet-safety:before {
content: "\fe87";
}
.fi-br-user-injured:before {
content: "\fe88";
}
.fi-br-user-interface-ui:before {
content: "\fe89";
}
.fi-br-user-key:before {
content: "\fe8a";
}
.fi-br-user-lock:before {
content: "\fe8b";
}
.fi-br-user-md-chat:before {
content: "\fe8c";
}
.fi-br-user-md:before {
content: "\fe8d";
}
.fi-br-user-minus:before {
content: "\fe8e";
}
.fi-br-user-music:before {
content: "\fe8f";
}
.fi-br-user-ninja:before {
content: "\fe90";
}
.fi-br-user-nurse:before {
content: "\fe91";
}
.fi-br-user-pen:before {
content: "\fe92";
}
.fi-br-user-pilot-tie:before {
content: "\fe93";
}
.fi-br-user-pilot:before {
content: "\fe94";
}
.fi-br-user-police:before {
content: "\fe95";
}
.fi-br-user-robot-xmarks:before {
content: "\fe96";
}
.fi-br-user-robot:before {
content: "\fe97";
}
.fi-br-user-salary:before {
content: "\fe98";
}
.fi-br-user-shield:before {
content: "\fe99";
}
.fi-br-user-skill-gear:before {
content: "\fe9a";
}
.fi-br-user-slash:before {
content: "\fe9b";
}
.fi-br-user-tag:before {
content: "\fe9c";
}
.fi-br-user-time:before {
content: "\fe9d";
}
.fi-br-user-trust:before {
content: "\fe9e";
}
.fi-br-user-unlock:before {
content: "\fe9f";
}
.fi-br-user-visor:before {
content: "\fea0";
}
.fi-br-user-xmark:before {
content: "\fea1";
}
.fi-br-user:before {
content: "\fea2";
}
.fi-br-users-alt:before {
content: "\fea3";
}
.fi-br-users-class:before {
content: "\fea4";
}
.fi-br-users-gear:before {
content: "\fea5";
}
.fi-br-users-medical:before {
content: "\fea6";
}
.fi-br-users-slash:before {
content: "\fea7";
}
.fi-br-users:before {
content: "\fea8";
}
.fi-br-utensils-slash:before {
content: "\fea9";
}
.fi-br-utensils:before {
content: "\feaa";
}
.fi-br-utility-pole-double:before {
content: "\feab";
}
.fi-br-utility-pole:before {
content: "\feac";
}
.fi-br-ux-browser:before {
content: "\fead";
}
.fi-br-ux:before {
content: "\feae";
}
.fi-br-v:before {
content: "\feaf";
}
.fi-br-vacuum-robot:before {
content: "\feb0";
}
.fi-br-vacuum:before {
content: "\feb1";
}
.fi-br-value-absolute:before {
content: "\feb2";
}
.fi-br-vault:before {
content: "\feb3";
}
.fi-br-vector-alt:before {
content: "\feb4";
}
.fi-br-vector-circle:before {
content: "\feb5";
}
.fi-br-vector-polygon:before {
content: "\feb6";
}
.fi-br-vector:before {
content: "\feb7";
}
.fi-br-vest-patches:before {
content: "\feb8";
}
.fi-br-vest:before {
content: "\feb9";
}
.fi-br-video-arrow-down-left:before {
content: "\feba";
}
.fi-br-video-arrow-up-right:before {
content: "\febb";
}
.fi-br-video-camera-alt:before {
content: "\febc";
}
.fi-br-video-camera:before {
content: "\febd";
}
.fi-br-video-duration:before {
content: "\febe";
}
.fi-br-video-plus:before {
content: "\febf";
}
.fi-br-video-slash:before {
content: "\fec0";
}
.fi-br-videoconference:before {
content: "\fec1";
}
.fi-br-vihara:before {
content: "\fec2";
}
.fi-br-violin:before {
content: "\fec3";
}
.fi-br-virus-slash:before {
content: "\fec4";
}
.fi-br-virus:before {
content: "\fec5";
}
.fi-br-viruses:before {
content: "\fec6";
}
.fi-br-visit:before {
content: "\fec7";
}
.fi-br-voicemail:before {
content: "\fec8";
}
.fi-br-volcano:before {
content: "\fec9";
}
.fi-br-volleyball:before {
content: "\feca";
}
.fi-br-volume-down:before {
content: "\fecb";
}
.fi-br-volume-mute:before {
content: "\fecc";
}
.fi-br-volume-off:before {
content: "\fecd";
}
.fi-br-volume-slash:before {
content: "\fece";
}
.fi-br-volume:before {
content: "\fecf";
}
.fi-br-vote-nay:before {
content: "\fed0";
}
.fi-br-vote-yea:before {
content: "\fed1";
}
.fi-br-vr-cardboard:before {
content: "\fed2";
}
.fi-br-w:before {
content: "\fed3";
}
.fi-br-waffle:before {
content: "\fed4";
}
.fi-br-wagon-covered:before {
content: "\fed5";
}
.fi-br-walker:before {
content: "\fed6";
}
.fi-br-walkie-talkie:before {
content: "\fed7";
}
.fi-br-walking:before {
content: "\fed8";
}
.fi-br-wallet-arrow:before {
content: "\fed9";
}
.fi-br-wallet-buyer:before {
content: "\feda";
}
.fi-br-wallet:before {
content: "\fedb";
}
.fi-br-warehouse-alt:before {
content: "\fedc";
}
.fi-br-warranty:before {
content: "\fedd";
}
.fi-br-washer:before {
content: "\fede";
}
.fi-br-waste-pollution:before {
content: "\fedf";
}
.fi-br-waste:before {
content: "\fee0";
}
.fi-br-watch-calculator:before {
content: "\fee1";
}
.fi-br-watch-fitness:before {
content: "\fee2";
}
.fi-br-watch-smart:before {
content: "\fee3";
}
.fi-br-watch:before {
content: "\fee4";
}
.fi-br-water-bottle:before {
content: "\fee5";
}
.fi-br-water-ladder:before {
content: "\fee6";
}
.fi-br-water-lower:before {
content: "\fee7";
}
.fi-br-water-rise:before {
content: "\fee8";
}
.fi-br-water:before {
content: "\fee9";
}
.fi-br-watermelon:before {
content: "\feea";
}
.fi-br-wave-sine:before {
content: "\feeb";
}
.fi-br-wave-square:before {
content: "\feec";
}
.fi-br-wave-triangle:before {
content: "\feed";
}
.fi-br-wave:before {
content: "\feee";
}
.fi-br-waveform-path:before {
content: "\feef";
}
.fi-br-waveform:before {
content: "\fef0";
}
.fi-br-web-design:before {
content: "\fef1";
}
.fi-br-webcam-slash:before {
content: "\fef2";
}
.fi-br-webcam:before {
content: "\fef3";
}
.fi-br-webhook:before {
content: "\fef4";
}
.fi-br-wednesday:before {
content: "\fef5";
}
.fi-br-whale:before {
content: "\fef6";
}
.fi-br-wheat-awn-circle-exclamation:before {
content: "\fef7";
}
.fi-br-wheat-awn-slash:before {
content: "\fef8";
}
.fi-br-wheat-awn:before {
content: "\fef9";
}
.fi-br-wheat-slash:before {
content: "\fefa";
}
.fi-br-wheat:before {
content: "\fefb";
}
.fi-br-wheelchair-move:before {
content: "\fefc";
}
.fi-br-wheelchair-sleeping:before {
content: "\fefd";
}
.fi-br-wheelchair:before {
content: "\fefe";
}
.fi-br-whistle:before {
content: "\ff00";
}
.fi-br-white-space:before {
content: "\ff01";
}
.fi-br-wifi-1:before {
content: "\ff02";
}
.fi-br-wifi-2:before {
content: "\ff03";
}
.fi-br-wifi-alt:before {
content: "\ff04";
}
.fi-br-wifi-exclamation:before {
content: "\ff05";
}
.fi-br-wifi-slash:before {
content: "\ff06";
}
.fi-br-wifi:before {
content: "\ff07";
}
.fi-br-wind-turbine:before {
content: "\ff08";
}
.fi-br-wind-warning:before {
content: "\ff09";
}
.fi-br-wind:before {
content: "\ff0a";
}
.fi-br-window-alt:before {
content: "\ff0b";
}
.fi-br-window-frame-open:before {
content: "\ff0c";
}
.fi-br-window-frame:before {
content: "\ff0d";
}
.fi-br-window-maximize:before {
content: "\ff0e";
}
.fi-br-window-minimize:before {
content: "\ff0f";
}
.fi-br-window-restore:before {
content: "\ff10";
}
.fi-br-windsock:before {
content: "\ff11";
}
.fi-br-wine-bottle:before {
content: "\ff12";
}
.fi-br-wine-glass-crack:before {
content: "\ff13";
}
.fi-br-wine-glass-empty:before {
content: "\ff14";
}
.fi-br-wink:before {
content: "\ff15";
}
.fi-br-wishlist-heart:before {
content: "\ff16";
}
.fi-br-wishlist-star:before {
content: "\ff17";
}
.fi-br-woman-head:before {
content: "\ff18";
}
.fi-br-woman-scientist:before {
content: "\ff19";
}
.fi-br-won-sign:before {
content: "\ff1a";
}
.fi-br-work-in-progress:before {
content: "\ff1b";
}
.fi-br-workflow-alt:before {
content: "\ff1c";
}
.fi-br-workflow-setting-alt:before {
content: "\ff1d";
}
.fi-br-workflow-setting:before {
content: "\ff1e";
}
.fi-br-workflow:before {
content: "\ff1f";
}
.fi-br-workshop:before {
content: "\ff20";
}
.fi-br-world:before {
content: "\ff21";
}
.fi-br-worm:before {
content: "\ff22";
}
.fi-br-wreath:before {
content: "\ff23";
}
.fi-br-wrench-alt:before {
content: "\ff24";
}
.fi-br-wrench-simple:before {
content: "\ff25";
}
.fi-br-x-ray:before {
content: "\ff26";
}
.fi-br-x:before {
content: "\ff27";
}
.fi-br-y:before {
content: "\ff28";
}
.fi-br-yen:before {
content: "\ff29";
}
.fi-br-yin-yang:before {
content: "\ff2a";
}
.fi-br-z:before {
content: "\ff2b";
}
.fi-br-zip-file:before {
content: "\ff2c";
}
.fi-br-zoom-in:before {
content: "\ff2d";
}
.fi-br-zoom-out:before {
content: "\ff2e";
}@font-face {
font-family: "uicons-brands";
src: url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-brands.woff2) format("woff2"),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-brands.woff) format("woff"),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-brands.eot#iefix) format("embedded-opentype");
font-display: swap;
}
i[class^="fi-brands-"]:before, i[class*=" fi-brands-"]:before, span[class^="fi-brands-"]:before, span[class*="fi-brands-"]:before {
font-family: uicons-brands !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.variable-selector-00:before {
content: "\fe00";
}
.variable-selector-01:before {
content: "\fe01";
}
.variable-selector-02:before {
content: "\fe02";
}
.variable-selector-03:before {
content: "\fe03";
}
.variable-selector-04:before {
content: "\fe04";
}
.variable-selector-05:before {
content: "\fe05";
}
.variable-selector-06:before {
content: "\fe06";
}
.variable-selector-07:before {
content: "\fe07";
}
.variable-selector-08:before {
content: "\fe08";
}
.variable-selector-09:before {
content: "\fe09";
}
.variable-selector-0a:before {
content: "\fe0a";
}
.variable-selector-0b:before {
content: "\fe0b";
}
.variable-selector-0c:before {
content: "\fe0c";
}
.variable-selector-0d:before {
content: "\fe0d";
}
.variable-selector-0e:before {
content: "\fe0e";
}
.variable-selector-0f:before {
content: "\fe0f";
}
.combining-half-marks-00:before {
content: "\fe20";
}
.combining-half-marks-01:before {
content: "\fe21";
}
.combining-half-marks-02:before {
content: "\fe22";
}
.combining-half-marks-03:before {
content: "\fe23";
}
.combining-half-marks-04:before {
content: "\fe24";
}
.combining-half-marks-05:before {
content: "\fe25";
}
.combining-half-marks-06:before {
content: "\fe26";
}
.combining-half-marks-07:before {
content: "\fe27";
}
.combining-half-marks-08:before {
content: "\fe28";
}
.combining-half-marks-09:before {
content: "\fe29";
}
.combining-half-marks-0a:before {
content: "\fe2a";
}
.combining-half-marks-0b:before {
content: "\fe2b";
}
.combining-half-marks-0c:before {
content: "\fe2c";
}
.combining-half-marks-0d:before {
content: "\fe2d";
}
.combining-half-marks-0e:before {
content: "\fe2e";
}
.combining-half-marks-0f:before {
content: "\fe2f";
}
.zero-width-no-break-space-0f:before {
content: "\feff";
}
.fi-brands-3m:before {
content: "\f101";
}
.fi-brands-500px:before {
content: "\f102";
}
.fi-brands-abbot-laboratories:before {
content: "\f103";
}
.fi-brands-accusoft:before {
content: "\f104";
}
.fi-brands-acrobat:before {
content: "\f105";
}
.fi-brands-adobe:before {
content: "\f106";
}
.fi-brands-aecom:before {
content: "\f107";
}
.fi-brands-aero:before {
content: "\f108";
}
.fi-brands-after-effects:before {
content: "\f109";
}
.fi-brands-airbnb:before {
content: "\f10a";
}
.fi-brands-algolia:before {
content: "\f10b";
}
.fi-brands-amd:before {
content: "\f10c";
}
.fi-brands-american-express:before {
content: "\f10d";
}
.fi-brands-android:before {
content: "\f10e";
}
.fi-brands-animate:before {
content: "\f10f";
}
.fi-brands-app-store-ios:before {
content: "\f110";
}
.fi-brands-apple-pay:before {
content: "\f111";
}
.fi-brands-apple:before {
content: "\f112";
}
.fi-brands-artstation:before {
content: "\f113";
}
.fi-brands-astrazeneca:before {
content: "\f114";
}
.fi-brands-asus:before {
content: "\f115";
}
.fi-brands-atandt:before {
content: "\f116";
}
.fi-brands-atlassian:before {
content: "\f117";
}
.fi-brands-atom:before {
content: "\f118";
}
.fi-brands-audition:before {
content: "\f119";
}
.fi-brands-behance:before {
content: "\f11a";
}
.fi-brands-bitcoin:before {
content: "\f11b";
}
.fi-brands-blackberry:before {
content: "\f11c";
}
.fi-brands-blogger:before {
content: "\f11d";
}
.fi-brands-bluetooth:before {
content: "\f11e";
}
.fi-brands-bootstrap:before {
content: "\f11f";
}
.fi-brands-bridgestone:before {
content: "\f120";
}
.fi-brands-burger-king:before {
content: "\f121";
}
.fi-brands-c:before {
content: "\f122";
}
.fi-brands-capture:before {
content: "\f123";
}
.fi-brands-cc-amazon-pay:before {
content: "\f124";
}
.fi-brands-cc-apple-pay:before {
content: "\f125";
}
.fi-brands-cc-diners-club:before {
content: "\f126";
}
.fi-brands-cc-visa:before {
content: "\f127";
}
.fi-brands-centos:before {
content: "\f128";
}
.fi-brands-character:before {
content: "\f129";
}
.fi-brands-chromecast:before {
content: "\f12a";
}
.fi-brands-cloudflare:before {
content: "\f12b";
}
.fi-brands-confluence:before {
content: "\f12c";
}
.fi-brands-creative-commons-by:before {
content: "\f12d";
}
.fi-brands-creative-commons-nc-eu:before {
content: "\f12e";
}
.fi-brands-creative-commons-nc-jp:before {
content: "\f12f";
}
.fi-brands-creative-commons-nc:before {
content: "\f130";
}
.fi-brands-creative-commons-nd:before {
content: "\f131";
}
.fi-brands-creative-commons-pd-alt:before {
content: "\f132";
}
.fi-brands-creative-commons-pd:before {
content: "\f133";
}
.fi-brands-creative-commons-remix:before {
content: "\f134";
}
.fi-brands-creative-commons-sa:before {
content: "\f135";
}
.fi-brands-creative-commons-sampling-plus:before {
content: "\f136";
}
.fi-brands-creative-commons-sampling:before {
content: "\f137";
}
.fi-brands-creative-commons-share:before {
content: "\f138";
}
.fi-brands-creative-commons-zero:before {
content: "\f139";
}
.fi-brands-creative-commons:before {
content: "\f13a";
}
.fi-brands-css3-alt:before {
content: "\f13b";
}
.fi-brands-css3:before {
content: "\f13c";
}
.fi-brands-dailymotion:before {
content: "\f13d";
}
.fi-brands-deezer:before {
content: "\f13e";
}
.fi-brands-delphi:before {
content: "\f13f";
}
.fi-brands-dev:before {
content: "\f140";
}
.fi-brands-devianart:before {
content: "\f141";
}
.fi-brands-digg:before {
content: "\f142";
}
.fi-brands-dimension:before {
content: "\f143";
}
.fi-brands-discord:before {
content: "\f144";
}
.fi-brands-docker:before {
content: "\f145";
}
.fi-brands-dribbble:before {
content: "\f146";
}
.fi-brands-dropbox:before {
content: "\f147";
}
.fi-brands-drupal:before {
content: "\f148";
}
.fi-brands-ebay:before {
content: "\f149";
}
.fi-brands-elementor:before {
content: "\f14a";
}
.fi-brands-ethereum:before {
content: "\f14b";
}
.fi-brands-etsy:before {
content: "\f14c";
}
.fi-brands-evernote:before {
content: "\f14d";
}
.fi-brands-facebook-messenger:before {
content: "\f14e";
}
.fi-brands-facebook:before {
content: "\f14f";
}
.fi-brands-fedex:before {
content: "\f150";
}
.fi-brands-figma:before {
content: "\f151";
}
.fi-brands-firefox-browser:before {
content: "\f152";
}
.fi-brands-firefox:before {
content: "\f153";
}
.fi-brands-flaticon-1:before {
content: "\f154";
}
.fi-brands-flaticon:before {
content: "\f155";
}
.fi-brands-flickr:before {
content: "\f156";
}
.fi-brands-flipboard:before {
content: "\f157";
}
.fi-brands-fonts:before {
content: "\f158";
}
.fi-brands-foursquare:before {
content: "\f159";
}
.fi-brands-freepik-1:before {
content: "\f15a";
}
.fi-brands-freepik:before {
content: "\f15b";
}
.fi-brands-fresco:before {
content: "\f15c";
}
.fi-brands-github:before {
content: "\f15d";
}
.fi-brands-gitlab:before {
content: "\f15e";
}
.fi-brands-goodreads:before {
content: "\f15f";
}
.fi-brands-google:before {
content: "\f160";
}
.fi-brands-haskell:before {
content: "\f161";
}
.fi-brands-hbo:before {
content: "\f162";
}
.fi-brands-hotjar:before {
content: "\f163";
}
.fi-brands-html5:before {
content: "\f164";
}
.fi-brands-huawei:before {
content: "\f165";
}
.fi-brands-hubspot:before {
content: "\f166";
}
.fi-brands-ibm:before {
content: "\f167";
}
.fi-brands-iconfinder:before {
content: "\f168";
}
.fi-brands-illustrator-draw:before {
content: "\f169";
}
.fi-brands-illustrator:before {
content: "\f16a";
}
.fi-brands-imdb:before {
content: "\f16b";
}
.fi-brands-incopy:before {
content: "\f16c";
}
.fi-brands-indesign:before {
content: "\f16d";
}
.fi-brands-instagram:before {
content: "\f16e";
}
.fi-brands-intel:before {
content: "\f16f";
}
.fi-brands-invision:before {
content: "\f170";
}
.fi-brands-itunes:before {
content: "\f171";
}
.fi-brands-janseen:before {
content: "\f172";
}
.fi-brands-java:before {
content: "\f173";
}
.fi-brands-jcb:before {
content: "\f174";
}
.fi-brands-jira:before {
content: "\f175";
}
.fi-brands-johnson-and-johnson:before {
content: "\f176";
}
.fi-brands-joomla:before {
content: "\f177";
}
.fi-brands-js:before {
content: "\f178";
}
.fi-brands-kickstarter:before {
content: "\f179";
}
.fi-brands-line:before {
content: "\f17a";
}
.fi-brands-linkedin:before {
content: "\f17b";
}
.fi-brands-lisp:before {
content: "\f17c";
}
.fi-brands-mailchimp:before {
content: "\f17d";
}
.fi-brands-marriott-international:before {
content: "\f17e";
}
.fi-brands-mcdonalds:before {
content: "\f17f";
}
.fi-brands-media-encoder:before {
content: "\f180";
}
.fi-brands-medium:before {
content: "\f181";
}
.fi-brands-meta:before {
content: "\f182";
}
.fi-brands-microsoft-edge:before {
content: "\f183";
}
.fi-brands-microsoft-explorer:before {
content: "\f184";
}
.fi-brands-microsoft:before {
content: "\f185";
}
.fi-brands-mysql:before {
content: "\f186";
}
.fi-brands-napster:before {
content: "\f187";
}
.fi-brands-nestle:before {
content: "\f188";
}
.fi-brands-netflix:before {
content: "\f189";
}
.fi-brands-node-js:before {
content: "\f18a";
}
.fi-brands-nvidia:before {
content: "\f18b";
}
.fi-brands-oracle:before {
content: "\f18c";
}
.fi-brands-patreon:before {
content: "\f18d";
}
.fi-brands-paypal:before {
content: "\f18e";
}
.fi-brands-pfizer:before {
content: "\f18f";
}
.fi-brands-photoshop-camera:before {
content: "\f190";
}
.fi-brands-photoshop-express:before {
content: "\f191";
}
.fi-brands-photoshop-lightroom-classic:before {
content: "\f192";
}
.fi-brands-photoshop-lightroom:before {
content: "\f193";
}
.fi-brands-photoshop:before {
content: "\f194";
}
.fi-brands-php:before {
content: "\f195";
}
.fi-brands-pinterest:before {
content: "\f196";
}
.fi-brands-postgre:before {
content: "\f197";
}
.fi-brands-premiere-rush:before {
content: "\f198";
}
.fi-brands-premiere:before {
content: "\f199";
}
.fi-brands-product-hunt:before {
content: "\f19a";
}
.fi-brands-python:before {
content: "\f19b";
}
.fi-brands-raspberry-pi:before {
content: "\f19c";
}
.fi-brands-reddit:before {
content: "\f19d";
}
.fi-brands-samsung:before {
content: "\f19e";
}
.fi-brands-sap:before {
content: "\f19f";
}
.fi-brands-sass:before {
content: "\f1a0";
}
.fi-brands-shopify:before {
content: "\f1a1";
}
.fi-brands-siemens:before {
content: "\f1a2";
}
.fi-brands-sketch:before {
content: "\f1a3";
}
.fi-brands-skype:before {
content: "\f1a4";
}
.fi-brands-slack:before {
content: "\f1a5";
}
.fi-brands-slidesgo:before {
content: "\f1a6";
}
.fi-brands-snapchat:before {
content: "\f1a7";
}
.fi-brands-sony:before {
content: "\f1a8";
}
.fi-brands-soundcloud:before {
content: "\f1a9";
}
.fi-brands-spark:before {
content: "\f1aa";
}
.fi-brands-spotify:before {
content: "\f1ab";
}
.fi-brands-starbucks:before {
content: "\f1ac";
}
.fi-brands-stock:before {
content: "\f1ad";
}
.fi-brands-storyset:before {
content: "\f1ae";
}
.fi-brands-stripe:before {
content: "\f1af";
}
.fi-brands-substance-3d-designer:before {
content: "\f1b0";
}
.fi-brands-substance-3d-painter:before {
content: "\f1b1";
}
.fi-brands-substance-3d-sampler:before {
content: "\f1b2";
}
.fi-brands-substance-3d-stager:before {
content: "\f1b3";
}
.fi-brands-swift:before {
content: "\f1b4";
}
.fi-brands-t-mobile:before {
content: "\f1b5";
}
.fi-brands-telegram:before {
content: "\f1b6";
}
.fi-brands-tencent:before {
content: "\f1b7";
}
.fi-brands-the-home-depot:before {
content: "\f1b8";
}
.fi-brands-tik-tok:before {
content: "\f1b9";
}
.fi-brands-trello:before {
content: "\f1ba";
}
.fi-brands-tripadvisor:before {
content: "\f1bb";
}
.fi-brands-tumblr:before {
content: "\f1bc";
}
.fi-brands-twitch:before {
content: "\f1bd";
}
.fi-brands-twitter-alt-circle:before {
content: "\f1be";
}
.fi-brands-twitter-alt-square:before {
content: "\f1bf";
}
.fi-brands-twitter-alt:before {
content: "\f1c0";
}
.fi-brands-twitter:before {
content: "\f1c1";
}
.fi-brands-typescript:before {
content: "\f1c2";
}
.fi-brands-uber:before {
content: "\f1c3";
}
.fi-brands-ubuntu:before {
content: "\f1c4";
}
.fi-brands-unilever:before {
content: "\f1c5";
}
.fi-brands-unity:before {
content: "\f1c6";
}
.fi-brands-unsplash:before {
content: "\f1c7";
}
.fi-brands-ups:before {
content: "\f1c8";
}
.fi-brands-usaa:before {
content: "\f1c9";
}
.fi-brands-verizon:before {
content: "\f1ca";
}
.fi-brands-videvo:before {
content: "\f1cb";
}
.fi-brands-vimeo:before {
content: "\f1cc";
}
.fi-brands-visa:before {
content: "\f1cd";
}
.fi-brands-visual-basic:before {
content: "\f1ce";
}
.fi-brands-vk:before {
content: "\f1cf";
}
.fi-brands-walmart:before {
content: "\f1d0";
}
.fi-brands-wepik:before {
content: "\f1d1";
}
.fi-brands-whatsapp:before {
content: "\f1d2";
}
.fi-brands-wikipedia:before {
content: "\f1d3";
}
.fi-brands-windows:before {
content: "\f1d4";
}
.fi-brands-wix:before {
content: "\f1d5";
}
.fi-brands-wordpress:before {
content: "\f1d6";
}
.fi-brands-xd:before {
content: "\f1d7";
}
.fi-brands-xing:before {
content: "\f1d8";
}
.fi-brands-yahoo:before {
content: "\f1d9";
}
.fi-brands-yandex:before {
content: "\f1da";
}
.fi-brands-yelp:before {
content: "\f1db";
}
.fi-brands-youtube:before {
content: "\f1dc";
}
.fi-brands-zoom:before {
content: "\f1dd";
}@font-face {
font-family: "uicons-bold-straight";
src: url(//phdprojects.org/wp-content/themes/projects/assets/css/fonts/uicons-bold-straight.woff2) format("woff2"),
url(//phdprojects.org/wp-content/themes/projects/assets/css/fonts/uicons-bold-straight.woff) format("woff"),
url(//phdprojects.org/wp-content/themes/projects/assets/css/fonts/uicons-bold-straight.eot#iefix) format("embedded-opentype");
font-display: swap;
}
i[class^="fi-bs-"]:before, i[class*=" fi-bs-"]:before, span[class^="fi-bs-"]:before, span[class*="fi-bs-"]:before {
font-family: uicons-bold-straight !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.variable-selector-00:before {
content: "\fe00";
}
.variable-selector-01:before {
content: "\fe01";
}
.variable-selector-02:before {
content: "\fe02";
}
.variable-selector-03:before {
content: "\fe03";
}
.variable-selector-04:before {
content: "\fe04";
}
.variable-selector-05:before {
content: "\fe05";
}
.variable-selector-06:before {
content: "\fe06";
}
.variable-selector-07:before {
content: "\fe07";
}
.variable-selector-08:before {
content: "\fe08";
}
.variable-selector-09:before {
content: "\fe09";
}
.variable-selector-0a:before {
content: "\fe0a";
}
.variable-selector-0b:before {
content: "\fe0b";
}
.variable-selector-0c:before {
content: "\fe0c";
}
.variable-selector-0d:before {
content: "\fe0d";
}
.variable-selector-0e:before {
content: "\fe0e";
}
.variable-selector-0f:before {
content: "\fe0f";
}
.combining-half-marks-00:before {
content: "\fe20";
}
.combining-half-marks-01:before {
content: "\fe21";
}
.combining-half-marks-02:before {
content: "\fe22";
}
.combining-half-marks-03:before {
content: "\fe23";
}
.combining-half-marks-04:before {
content: "\fe24";
}
.combining-half-marks-05:before {
content: "\fe25";
}
.combining-half-marks-06:before {
content: "\fe26";
}
.combining-half-marks-07:before {
content: "\fe27";
}
.combining-half-marks-08:before {
content: "\fe28";
}
.combining-half-marks-09:before {
content: "\fe29";
}
.combining-half-marks-0a:before {
content: "\fe2a";
}
.combining-half-marks-0b:before {
content: "\fe2b";
}
.combining-half-marks-0c:before {
content: "\fe2c";
}
.combining-half-marks-0d:before {
content: "\fe2d";
}
.combining-half-marks-0e:before {
content: "\fe2e";
}
.combining-half-marks-0f:before {
content: "\fe2f";
}
.zero-width-no-break-space-0f:before {
content: "\feff";
}
.fi-bs-0:before {
content: "\f101";
}
.fi-bs-00s-music-disc:before {
content: "\f102";
}
.fi-bs-1:before {
content: "\f103";
}
.fi-bs-2:before {
content: "\f104";
}
.fi-bs-3:before {
content: "\f105";
}
.fi-bs-360-degrees:before {
content: "\f106";
}
.fi-bs-4:before {
content: "\f107";
}
.fi-bs-404:before {
content: "\f108";
}
.fi-bs-5:before {
content: "\f109";
}
.fi-bs-6:before {
content: "\f10a";
}
.fi-bs-60s-music-disc:before {
content: "\f10b";
}
.fi-bs-7:before {
content: "\f10c";
}
.fi-bs-70s-music-disc:before {
content: "\f10d";
}
.fi-bs-8:before {
content: "\f10e";
}
.fi-bs-80s-music-disc:before {
content: "\f10f";
}
.fi-bs-9:before {
content: "\f110";
}
.fi-bs-90s-music-disc:before {
content: "\f111";
}
.fi-bs-a:before {
content: "\f112";
}
.fi-bs-accident:before {
content: "\f113";
}
.fi-bs-acorn:before {
content: "\f114";
}
.fi-bs-ad-paid:before {
content: "\f115";
}
.fi-bs-ad:before {
content: "\f116";
}
.fi-bs-add-document:before {
content: "\f117";
}
.fi-bs-add-folder:before {
content: "\f118";
}
.fi-bs-add-image:before {
content: "\f119";
}
.fi-bs-add:before {
content: "\f11a";
}
.fi-bs-address-book:before {
content: "\f11b";
}
.fi-bs-address-card:before {
content: "\f11c";
}
.fi-bs-admin-alt:before {
content: "\f11d";
}
.fi-bs-admin:before {
content: "\f11e";
}
.fi-bs-age-alt:before {
content: "\f11f";
}
.fi-bs-age-restriction-eighteen:before {
content: "\f120";
}
.fi-bs-age-restriction-seven:before {
content: "\f121";
}
.fi-bs-age-restriction-six:before {
content: "\f122";
}
.fi-bs-age-restriction-sixteen:before {
content: "\f123";
}
.fi-bs-age-restriction-thirteen:before {
content: "\f124";
}
.fi-bs-age-restriction-three:before {
content: "\f125";
}
.fi-bs-age-restriction-twelve:before {
content: "\f126";
}
.fi-bs-age-restriction-twenty-one:before {
content: "\f127";
}
.fi-bs-age-restriction-zero:before {
content: "\f128";
}
.fi-bs-age:before {
content: "\f129";
}
.fi-bs-air-conditioner:before {
content: "\f12a";
}
.fi-bs-air-freshener:before {
content: "\f12b";
}
.fi-bs-air-pollution:before {
content: "\f12c";
}
.fi-bs-airplane-journey:before {
content: "\f12d";
}
.fi-bs-airplane-window-open:before {
content: "\f12e";
}
.fi-bs-airplay:before {
content: "\f12f";
}
.fi-bs-alarm-clock:before {
content: "\f130";
}
.fi-bs-alarm-exclamation:before {
content: "\f131";
}
.fi-bs-alarm-plus:before {
content: "\f132";
}
.fi-bs-alarm-snooze:before {
content: "\f133";
}
.fi-bs-album-circle-plus:before {
content: "\f134";
}
.fi-bs-album-circle-user:before {
content: "\f135";
}
.fi-bs-album-collection:before {
content: "\f136";
}
.fi-bs-album:before {
content: "\f137";
}
.fi-bs-algorithm:before {
content: "\f138";
}
.fi-bs-alicorn:before {
content: "\f139";
}
.fi-bs-alien:before {
content: "\f13a";
}
.fi-bs-align-center:before {
content: "\f13b";
}
.fi-bs-align-justify:before {
content: "\f13c";
}
.fi-bs-align-left:before {
content: "\f13d";
}
.fi-bs-align-slash:before {
content: "\f13e";
}
.fi-bs-ambulance:before {
content: "\f13f";
}
.fi-bs-analyse-alt:before {
content: "\f140";
}
.fi-bs-analyse:before {
content: "\f141";
}
.fi-bs-anatomical-heart:before {
content: "\f142";
}
.fi-bs-anchor:before {
content: "\f143";
}
.fi-bs-angel:before {
content: "\f144";
}
.fi-bs-angle-90:before {
content: "\f145";
}
.fi-bs-angle-circle-down:before {
content: "\f146";
}
.fi-bs-angle-circle-left:before {
content: "\f147";
}
.fi-bs-angle-circle-right:before {
content: "\f148";
}
.fi-bs-angle-circle-up:before {
content: "\f149";
}
.fi-bs-angle-double-left:before {
content: "\f14a";
}
.fi-bs-angle-double-right:before {
content: "\f14b";
}
.fi-bs-angle-double-small-down:before {
content: "\f14c";
}
.fi-bs-angle-double-small-left:before {
content: "\f14d";
}
.fi-bs-angle-double-small-right:before {
content: "\f14e";
}
.fi-bs-angle-double-small-up:before {
content: "\f14f";
}
.fi-bs-angle-down:before {
content: "\f150";
}
.fi-bs-angle-left:before {
content: "\f151";
}
.fi-bs-angle-right:before {
content: "\f152";
}
.fi-bs-angle-small-down:before {
content: "\f153";
}
.fi-bs-angle-small-left:before {
content: "\f154";
}
.fi-bs-angle-small-right:before {
content: "\f155";
}
.fi-bs-angle-small-up:before {
content: "\f156";
}
.fi-bs-angle-square-down:before {
content: "\f157";
}
.fi-bs-angle-square-left:before {
content: "\f158";
}
.fi-bs-angle-square-right:before {
content: "\f159";
}
.fi-bs-angle-square-up:before {
content: "\f15a";
}
.fi-bs-angle-up:before {
content: "\f15b";
}
.fi-bs-angle:before {
content: "\f15c";
}
.fi-bs-angles-up-down:before {
content: "\f15d";
}
.fi-bs-angry:before {
content: "\f15e";
}
.fi-bs-animated-icon:before {
content: "\f15f";
}
.fi-bs-ankh:before {
content: "\f160";
}
.fi-bs-answer-alt:before {
content: "\f161";
}
.fi-bs-answer:before {
content: "\f162";
}
.fi-bs-apartment:before {
content: "\f163";
}
.fi-bs-aperture:before {
content: "\f164";
}
.fi-bs-api:before {
content: "\f165";
}
.fi-bs-apple-core:before {
content: "\f166";
}
.fi-bs-apple-crate:before {
content: "\f167";
}
.fi-bs-apple-whole:before {
content: "\f168";
}
.fi-bs-apps-add:before {
content: "\f169";
}
.fi-bs-apps-delete:before {
content: "\f16a";
}
.fi-bs-apps-sort:before {
content: "\f16b";
}
.fi-bs-apps:before {
content: "\f16c";
}
.fi-bs-archive:before {
content: "\f16d";
}
.fi-bs-archway:before {
content: "\f16e";
}
.fi-bs-arrow-alt-circle-down:before {
content: "\f16f";
}
.fi-bs-arrow-alt-circle-left:before {
content: "\f170";
}
.fi-bs-arrow-alt-circle-right:before {
content: "\f171";
}
.fi-bs-arrow-alt-circle-up:before {
content: "\f172";
}
.fi-bs-arrow-alt-down:before {
content: "\f173";
}
.fi-bs-arrow-alt-from-bottom:before {
content: "\f174";
}
.fi-bs-arrow-alt-from-left:before {
content: "\f175";
}
.fi-bs-arrow-alt-from-right:before {
content: "\f176";
}
.fi-bs-arrow-alt-from-top:before {
content: "\f177";
}
.fi-bs-arrow-alt-left:before {
content: "\f178";
}
.fi-bs-arrow-alt-right:before {
content: "\f179";
}
.fi-bs-arrow-alt-square-down:before {
content: "\f17a";
}
.fi-bs-arrow-alt-square-left:before {
content: "\f17b";
}
.fi-bs-arrow-alt-square-right:before {
content: "\f17c";
}
.fi-bs-arrow-alt-square-up:before {
content: "\f17d";
}
.fi-bs-arrow-alt-to-bottom:before {
content: "\f17e";
}
.fi-bs-arrow-alt-to-left:before {
content: "\f17f";
}
.fi-bs-arrow-alt-to-right:before {
content: "\f180";
}
.fi-bs-arrow-alt-to-top:before {
content: "\f181";
}
.fi-bs-arrow-alt-up:before {
content: "\f182";
}
.fi-bs-arrow-circle-down:before {
content: "\f183";
}
.fi-bs-arrow-circle-left:before {
content: "\f184";
}
.fi-bs-arrow-circle-right:before {
content: "\f185";
}
.fi-bs-arrow-circle-up:before {
content: "\f186";
}
.fi-bs-arrow-comparison:before {
content: "\f187";
}
.fi-bs-arrow-down-from-arc:before {
content: "\f188";
}
.fi-bs-arrow-down-from-dotted-line:before {
content: "\f189";
}
.fi-bs-arrow-down-left:before {
content: "\f18a";
}
.fi-bs-arrow-down-small-big:before {
content: "\f18b";
}
.fi-bs-arrow-down-to-dotted-line:before {
content: "\f18c";
}
.fi-bs-arrow-down-to-square:before {
content: "\f18d";
}
.fi-bs-arrow-down-triangle-square:before {
content: "\f18e";
}
.fi-bs-arrow-down:before {
content: "\f18f";
}
.fi-bs-arrow-from-bottom:before {
content: "\f190";
}
.fi-bs-arrow-from-left:before {
content: "\f191";
}
.fi-bs-arrow-from-right:before {
content: "\f192";
}
.fi-bs-arrow-from-top:before {
content: "\f193";
}
.fi-bs-arrow-left-from-arc:before {
content: "\f194";
}
.fi-bs-arrow-left-from-line:before {
content: "\f195";
}
.fi-bs-arrow-left-to-arc:before {
content: "\f196";
}
.fi-bs-arrow-left:before {
content: "\f197";
}
.fi-bs-arrow-progress-alt:before {
content: "\f198";
}
.fi-bs-arrow-progress:before {
content: "\f199";
}
.fi-bs-arrow-right-to-bracket:before {
content: "\f19a";
}
.fi-bs-arrow-right:before {
content: "\f19b";
}
.fi-bs-arrow-small-down:before {
content: "\f19c";
}
.fi-bs-arrow-small-left:before {
content: "\f19d";
}
.fi-bs-arrow-small-right:before {
content: "\f19e";
}
.fi-bs-arrow-small-up:before {
content: "\f19f";
}
.fi-bs-arrow-square-down:before {
content: "\f1a0";
}
.fi-bs-arrow-square-left:before {
content: "\f1a1";
}
.fi-bs-arrow-square-right:before {
content: "\f1a2";
}
.fi-bs-arrow-square-up:before {
content: "\f1a3";
}
.fi-bs-arrow-to-bottom:before {
content: "\f1a4";
}
.fi-bs-arrow-to-left:before {
content: "\f1a5";
}
.fi-bs-arrow-to-right:before {
content: "\f1a6";
}
.fi-bs-arrow-to-top:before {
content: "\f1a7";
}
.fi-bs-arrow-trend-down:before {
content: "\f1a8";
}
.fi-bs-arrow-trend-up:before {
content: "\f1a9";
}
.fi-bs-arrow-turn-down-left:before {
content: "\f1aa";
}
.fi-bs-arrow-turn-down-right:before {
content: "\f1ab";
}
.fi-bs-arrow-turn-left-up:before {
content: "\f1ac";
}
.fi-bs-arrow-up-from-dotted-line:before {
content: "\f1ad";
}
.fi-bs-arrow-up-from-ground-water:before {
content: "\f1ae";
}
.fi-bs-arrow-up-from-square:before {
content: "\f1af";
}
.fi-bs-arrow-up-left-from-circle:before {
content: "\f1b0";
}
.fi-bs-arrow-up-left:before {
content: "\f1b1";
}
.fi-bs-arrow-up-right-and-arrow-down-left-from-center:before {
content: "\f1b2";
}
.fi-bs-arrow-up-right-from-square:before {
content: "\f1b3";
}
.fi-bs-arrow-up-right:before {
content: "\f1b4";
}
.fi-bs-arrow-up-small-big:before {
content: "\f1b5";
}
.fi-bs-arrow-up-square-triangle:before {
content: "\f1b6";
}
.fi-bs-arrow-up-to-arc:before {
content: "\f1b7";
}
.fi-bs-arrow-up-to-dotted-line:before {
content: "\f1b8";
}
.fi-bs-arrow-up:before {
content: "\f1b9";
}
.fi-bs-arrow-upward-growth-crypto:before {
content: "\f1ba";
}
.fi-bs-arrows-alt-h:before {
content: "\f1bb";
}
.fi-bs-arrows-alt-v:before {
content: "\f1bc";
}
.fi-bs-arrows-alt:before {
content: "\f1bd";
}
.fi-bs-arrows-cross:before {
content: "\f1be";
}
.fi-bs-arrows-from-dotted-line:before {
content: "\f1bf";
}
.fi-bs-arrows-from-line:before {
content: "\f1c0";
}
.fi-bs-arrows-h-copy:before {
content: "\f1c1";
}
.fi-bs-arrows-h:before {
content: "\f1c2";
}
.fi-bs-arrows-repeat-1:before {
content: "\f1c3";
}
.fi-bs-arrows-repeat:before {
content: "\f1c4";
}
.fi-bs-arrows-retweet:before {
content: "\f1c5";
}
.fi-bs-arrows-split-right-and-left:before {
content: "\f1c6";
}
.fi-bs-arrows-split-up-and-left:before {
content: "\f1c7";
}
.fi-bs-arrows-to-circle:before {
content: "\f1c8";
}
.fi-bs-arrows-to-dotted-line:before {
content: "\f1c9";
}
.fi-bs-arrows-to-eye:before {
content: "\f1ca";
}
.fi-bs-arrows-to-line:before {
content: "\f1cb";
}
.fi-bs-arrows:before {
content: "\f1cc";
}
.fi-bs-artificial-intelligence:before {
content: "\f1cd";
}
.fi-bs-assept-document:before {
content: "\f1ce";
}
.fi-bs-assessment-alt:before {
content: "\f1cf";
}
.fi-bs-assessment:before {
content: "\f1d0";
}
.fi-bs-assign:before {
content: "\f1d1";
}
.fi-bs-assistive-listening-systems:before {
content: "\f1d2";
}
.fi-bs-asterik:before {
content: "\f1d3";
}
.fi-bs-at:before {
content: "\f1d4";
}
.fi-bs-attribution-pen:before {
content: "\f1d5";
}
.fi-bs-attribution-pencil:before {
content: "\f1d6";
}
.fi-bs-aubergine:before {
content: "\f1d7";
}
.fi-bs-auction:before {
content: "\f1d8";
}
.fi-bs-audience-megaphone:before {
content: "\f1d9";
}
.fi-bs-audio-description-slash:before {
content: "\f1da";
}
.fi-bs-audit-alt:before {
content: "\f1db";
}
.fi-bs-audit:before {
content: "\f1dc";
}
.fi-bs-austral-sign:before {
content: "\f1dd";
}
.fi-bs-avocado:before {
content: "\f1de";
}
.fi-bs-award:before {
content: "\f1df";
}
.fi-bs-axe-battle:before {
content: "\f1e0";
}
.fi-bs-axe:before {
content: "\f1e1";
}
.fi-bs-b:before {
content: "\f1e2";
}
.fi-bs-baby-carriage:before {
content: "\f1e3";
}
.fi-bs-baby:before {
content: "\f1e4";
}
.fi-bs-back-up:before {
content: "\f1e5";
}
.fi-bs-background:before {
content: "\f1e6";
}
.fi-bs-backpack:before {
content: "\f1e7";
}
.fi-bs-bacon:before {
content: "\f1e8";
}
.fi-bs-bacteria:before {
content: "\f1e9";
}
.fi-bs-bacterium:before {
content: "\f1ea";
}
.fi-bs-badge-check:before {
content: "\f1eb";
}
.fi-bs-badge-dollar:before {
content: "\f1ec";
}
.fi-bs-badge-leaf:before {
content: "\f1ed";
}
.fi-bs-badge-percent:before {
content: "\f1ee";
}
.fi-bs-badge-sheriff:before {
content: "\f1ef";
}
.fi-bs-badge:before {
content: "\f1f0";
}
.fi-bs-badger-honey:before {
content: "\f1f1";
}
.fi-bs-badget-check-alt:before {
content: "\f1f2";
}
.fi-bs-badminton:before {
content: "\f1f3";
}
.fi-bs-bag-map-pin:before {
content: "\f1f4";
}
.fi-bs-bag-seedling:before {
content: "\f1f5";
}
.fi-bs-bag-shopping-minus:before {
content: "\f1f6";
}
.fi-bs-bags-shopping:before {
content: "\f1f7";
}
.fi-bs-baguette:before {
content: "\f1f8";
}
.fi-bs-bahai:before {
content: "\f1f9";
}
.fi-bs-baht-sign:before {
content: "\f1fa";
}
.fi-bs-balance-scale-left:before {
content: "\f1fb";
}
.fi-bs-balance-scale-right:before {
content: "\f1fc";
}
.fi-bs-ball-pile:before {
content: "\f1fd";
}
.fi-bs-ballet-dance:before {
content: "\f1fe";
}
.fi-bs-balloon:before {
content: "\f1ff";
}
.fi-bs-balloons:before {
content: "\f200";
}
.fi-bs-ballot-check:before {
content: "\f201";
}
.fi-bs-ballot:before {
content: "\f202";
}
.fi-bs-ban-bug:before {
content: "\f203";
}
.fi-bs-ban:before {
content: "\f204";
}
.fi-bs-banana:before {
content: "\f205";
}
.fi-bs-band-aid:before {
content: "\f206";
}
.fi-bs-bangladeshi-taka-sign:before {
content: "\f207";
}
.fi-bs-banjo:before {
content: "\f208";
}
.fi-bs-bank:before {
content: "\f209";
}
.fi-bs-banner-2:before {
content: "\f20a";
}
.fi-bs-banner-3:before {
content: "\f20b";
}
.fi-bs-banner-4:before {
content: "\f20c";
}
.fi-bs-banner-5:before {
content: "\f20d";
}
.fi-bs-banner:before {
content: "\f20e";
}
.fi-bs-barber-pole:before {
content: "\f20f";
}
.fi-bs-barber-shop:before {
content: "\f210";
}
.fi-bs-barcode-read:before {
content: "\f211";
}
.fi-bs-barcode-scan:before {
content: "\f212";
}
.fi-bs-barcode:before {
content: "\f213";
}
.fi-bs-bars-filter:before {
content: "\f214";
}
.fi-bs-bars-progress:before {
content: "\f215";
}
.fi-bs-bars-sort:before {
content: "\f216";
}
.fi-bs-bars-staggered:before {
content: "\f217";
}
.fi-bs-baseball-alt:before {
content: "\f218";
}
.fi-bs-baseball:before {
content: "\f219";
}
.fi-bs-basket-shopping-minus:before {
content: "\f21a";
}
.fi-bs-basket-shopping-plus:before {
content: "\f21b";
}
.fi-bs-basket-shopping-simple:before {
content: "\f21c";
}
.fi-bs-basketball-hoop:before {
content: "\f21d";
}
.fi-bs-basketball:before {
content: "\f21e";
}
.fi-bs-bat:before {
content: "\f21f";
}
.fi-bs-bath:before {
content: "\f220";
}
.fi-bs-battery-bolt:before {
content: "\f221";
}
.fi-bs-battery-empty:before {
content: "\f222";
}
.fi-bs-battery-exclamation:before {
content: "\f223";
}
.fi-bs-battery-full:before {
content: "\f224";
}
.fi-bs-battery-half:before {
content: "\f225";
}
.fi-bs-battery-quarter:before {
content: "\f226";
}
.fi-bs-battery-slash:before {
content: "\f227";
}
.fi-bs-battery-three-quarters:before {
content: "\f228";
}
.fi-bs-beacon:before {
content: "\f229";
}
.fi-bs-bed-alt:before {
content: "\f22a";
}
.fi-bs-bed-bunk:before {
content: "\f22b";
}
.fi-bs-bed-empty:before {
content: "\f22c";
}
.fi-bs-bed:before {
content: "\f22d";
}
.fi-bs-bee:before {
content: "\f22e";
}
.fi-bs-beer-mug-empty:before {
content: "\f22f";
}
.fi-bs-beer:before {
content: "\f230";
}
.fi-bs-bell-concierge:before {
content: "\f231";
}
.fi-bs-bell-notification-call:before {
content: "\f232";
}
.fi-bs-bell-notification-social-media:before {
content: "\f233";
}
.fi-bs-bell-ring:before {
content: "\f234";
}
.fi-bs-bell-school-slash:before {
content: "\f235";
}
.fi-bs-bell-school:before {
content: "\f236";
}
.fi-bs-bell-slash:before {
content: "\f237";
}
.fi-bs-bell:before {
content: "\f238";
}
.fi-bs-bells:before {
content: "\f239";
}
.fi-bs-bench-tree:before {
content: "\f23a";
}
.fi-bs-benefit-diamond-alt:before {
content: "\f23b";
}
.fi-bs-benefit-diamond:before {
content: "\f23c";
}
.fi-bs-benefit-hand:before {
content: "\f23d";
}
.fi-bs-benefit-increase:before {
content: "\f23e";
}
.fi-bs-benefit-porcent:before {
content: "\f23f";
}
.fi-bs-benefit:before {
content: "\f240";
}
.fi-bs-betamax:before {
content: "\f241";
}
.fi-bs-bible:before {
content: "\f242";
}
.fi-bs-bicycle-journey:before {
content: "\f243";
}
.fi-bs-bike:before {
content: "\f244";
}
.fi-bs-biking-mountain:before {
content: "\f245";
}
.fi-bs-biking:before {
content: "\f246";
}
.fi-bs-bill-arrow:before {
content: "\f247";
}
.fi-bs-billiard:before {
content: "\f248";
}
.fi-bs-bin-bottles:before {
content: "\f249";
}
.fi-bs-binary-circle-check:before {
content: "\f24a";
}
.fi-bs-binary-lock:before {
content: "\f24b";
}
.fi-bs-binary-slash:before {
content: "\f24c";
}
.fi-bs-binary:before {
content: "\f24d";
}
.fi-bs-binoculars:before {
content: "\f24e";
}
.fi-bs-bio-leaves:before {
content: "\f24f";
}
.fi-bs-bio:before {
content: "\f250";
}
.fi-bs-biohazard:before {
content: "\f251";
}
.fi-bs-bird:before {
content: "\f252";
}
.fi-bs-bitcoin-sign:before {
content: "\f253";
}
.fi-bs-blanket:before {
content: "\f254";
}
.fi-bs-blender-phone:before {
content: "\f255";
}
.fi-bs-blender:before {
content: "\f256";
}
.fi-bs-blinds-open:before {
content: "\f257";
}
.fi-bs-blinds-raised:before {
content: "\f258";
}
.fi-bs-blinds:before {
content: "\f259";
}
.fi-bs-block-brick:before {
content: "\f25a";
}
.fi-bs-block-microphone:before {
content: "\f25b";
}
.fi-bs-block-question:before {
content: "\f25c";
}
.fi-bs-block-quote:before {
content: "\f25d";
}
.fi-bs-block:before {
content: "\f25e";
}
.fi-bs-blockchain-3:before {
content: "\f25f";
}
.fi-bs-blog-pencil:before {
content: "\f260";
}
.fi-bs-blog-text:before {
content: "\f261";
}
.fi-bs-blood-dropper:before {
content: "\f262";
}
.fi-bs-blood-test-tube-alt:before {
content: "\f263";
}
.fi-bs-blood-test-tube:before {
content: "\f264";
}
.fi-bs-blood:before {
content: "\f265";
}
.fi-bs-blueberries:before {
content: "\f266";
}
.fi-bs-blueprint:before {
content: "\f267";
}
.fi-bs-bold:before {
content: "\f268";
}
.fi-bs-bolt-auto:before {
content: "\f269";
}
.fi-bs-bolt-slash:before {
content: "\f26a";
}
.fi-bs-bolt:before {
content: "\f26b";
}
.fi-bs-bomb:before {
content: "\f26c";
}
.fi-bs-bone-break:before {
content: "\f26d";
}
.fi-bs-bone:before {
content: "\f26e";
}
.fi-bs-bong:before {
content: "\f26f";
}
.fi-bs-bonus-alt:before {
content: "\f270";
}
.fi-bs-bonus-star:before {
content: "\f271";
}
.fi-bs-bonus:before {
content: "\f272";
}
.fi-bs-book-alt:before {
content: "\f273";
}
.fi-bs-book-arrow-right:before {
content: "\f274";
}
.fi-bs-book-arrow-up:before {
content: "\f275";
}
.fi-bs-book-atlas:before {
content: "\f276";
}
.fi-bs-book-bookmark:before {
content: "\f277";
}
.fi-bs-book-circle-arrow-right:before {
content: "\f278";
}
.fi-bs-book-circle-arrow-up:before {
content: "\f279";
}
.fi-bs-book-copy:before {
content: "\f27a";
}
.fi-bs-book-dead:before {
content: "\f27b";
}
.fi-bs-book-font:before {
content: "\f27c";
}
.fi-bs-book-heart:before {
content: "\f27d";
}
.fi-bs-book-medical:before {
content: "\f27e";
}
.fi-bs-book-open-cover:before {
content: "\f27f";
}
.fi-bs-book-open-reader:before {
content: "\f280";
}
.fi-bs-book-plus:before {
content: "\f281";
}
.fi-bs-book-quran:before {
content: "\f282";
}
.fi-bs-book-section:before {
content: "\f283";
}
.fi-bs-book-spells:before {
content: "\f284";
}
.fi-bs-book-tanakh:before {
content: "\f285";
}
.fi-bs-book-user:before {
content: "\f286";
}
.fi-bs-book:before {
content: "\f287";
}
.fi-bs-Booking:before {
content: "\f288";
}
.fi-bs-bookmark-slash:before {
content: "\f289";
}
.fi-bs-bookmark:before {
content: "\f28a";
}
.fi-bs-books-medical:before {
content: "\f28b";
}
.fi-bs-books:before {
content: "\f28c";
}
.fi-bs-boot-heeled:before {
content: "\f28d";
}
.fi-bs-boot:before {
content: "\f28e";
}
.fi-bs-booth-curtain:before {
content: "\f28f";
}
.fi-bs-border-all:before {
content: "\f290";
}
.fi-bs-border-bottom:before {
content: "\f291";
}
.fi-bs-border-center-h:before {
content: "\f292";
}
.fi-bs-border-center-v:before {
content: "\f293";
}
.fi-bs-border-inner:before {
content: "\f294";
}
.fi-bs-border-left:before {
content: "\f295";
}
.fi-bs-border-none:before {
content: "\f296";
}
.fi-bs-border-outer:before {
content: "\f297";
}
.fi-bs-border-right:before {
content: "\f298";
}
.fi-bs-border-style-alt:before {
content: "\f299";
}
.fi-bs-border-style:before {
content: "\f29a";
}
.fi-bs-border-top:before {
content: "\f29b";
}
.fi-bs-boss:before {
content: "\f29c";
}
.fi-bs-bottle-droplet:before {
content: "\f29d";
}
.fi-bs-bottle:before {
content: "\f29e";
}
.fi-bs-bow-arrow:before {
content: "\f29f";
}
.fi-bs-bowl-chopsticks-noodles:before {
content: "\f2a0";
}
.fi-bs-bowl-chopsticks:before {
content: "\f2a1";
}
.fi-bs-bowl-rice:before {
content: "\f2a2";
}
.fi-bs-bowl-scoop:before {
content: "\f2a3";
}
.fi-bs-bowl-scoops:before {
content: "\f2a4";
}
.fi-bs-bowl-soft-serve:before {
content: "\f2a5";
}
.fi-bs-bowl-spoon:before {
content: "\f2a6";
}
.fi-bs-bowling-ball:before {
content: "\f2a7";
}
.fi-bs-bowling-pins:before {
content: "\f2a8";
}
.fi-bs-bowling:before {
content: "\f2a9";
}
.fi-bs-box-alt:before {
content: "\f2aa";
}
.fi-bs-box-ballot:before {
content: "\f2ab";
}
.fi-bs-box-check:before {
content: "\f2ac";
}
.fi-bs-box-circle-check:before {
content: "\f2ad";
}
.fi-bs-box-dollar:before {
content: "\f2ae";
}
.fi-bs-box-fragile:before {
content: "\f2af";
}
.fi-bs-box-heart:before {
content: "\f2b0";
}
.fi-bs-box-open-full:before {
content: "\f2b1";
}
.fi-bs-box-open:before {
content: "\f2b2";
}
.fi-bs-box-tissue:before {
content: "\f2b3";
}
.fi-bs-box-up:before {
content: "\f2b4";
}
.fi-bs-box:before {
content: "\f2b5";
}
.fi-bs-boxes:before {
content: "\f2b6";
}
.fi-bs-boxing-glove:before {
content: "\f2b7";
}
.fi-bs-bracket-curly-right:before {
content: "\f2b8";
}
.fi-bs-bracket-curly:before {
content: "\f2b9";
}
.fi-bs-bracket-round-right:before {
content: "\f2ba";
}
.fi-bs-bracket-round:before {
content: "\f2bb";
}
.fi-bs-bracket-square-right:before {
content: "\f2bc";
}
.fi-bs-bracket-square:before {
content: "\f2bd";
}
.fi-bs-brackets-curly:before {
content: "\f2be";
}
.fi-bs-brackets-round:before {
content: "\f2bf";
}
.fi-bs-brackets-square:before {
content: "\f2c0";
}
.fi-bs-braille-a:before {
content: "\f2c1";
}
.fi-bs-braille-b:before {
content: "\f2c2";
}
.fi-bs-braille-c:before {
content: "\f2c3";
}
.fi-bs-braille-d:before {
content: "\f2c4";
}
.fi-bs-braille-e:before {
content: "\f2c5";
}
.fi-bs-braille-g:before {
content: "\f2c6";
}
.fi-bs-braille-h:before {
content: "\f2c7";
}
.fi-bs-braille-i:before {
content: "\f2c8";
}
.fi-bs-braille-j:before {
content: "\f2c9";
}
.fi-bs-braille-k:before {
content: "\f2ca";
}
.fi-bs-braille-l:before {
content: "\f2cb";
}
.fi-bs-braille-m:before {
content: "\f2cc";
}
.fi-bs-braille-n-alt:before {
content: "\f2cd";
}
.fi-bs-braille-n:before {
content: "\f2ce";
}
.fi-bs-braille-o:before {
content: "\f2cf";
}
.fi-bs-braille-p:before {
content: "\f2d0";
}
.fi-bs-braille-q:before {
content: "\f2d1";
}
.fi-bs-braille-r:before {
content: "\f2d2";
}
.fi-bs-braille-s:before {
content: "\f2d3";
}
.fi-bs-braille-t:before {
content: "\f2d4";
}
.fi-bs-braille-u:before {
content: "\f2d5";
}
.fi-bs-braille-v:before {
content: "\f2d6";
}
.fi-bs-braille-w:before {
content: "\f2d7";
}
.fi-bs-braille-x:before {
content: "\f2d8";
}
.fi-bs-braille-y:before {
content: "\f2d9";
}
.fi-bs-braille-z:before {
content: "\f2da";
}
.fi-bs-braille:before {
content: "\f2db";
}
.fi-bs-brain-circuit:before {
content: "\f2dc";
}
.fi-bs-brain:before {
content: "\f2dd";
}
.fi-bs-brake-warning:before {
content: "\f2de";
}
.fi-bs-branching:before {
content: "\f2df";
}
.fi-bs-brand:before {
content: "\f2e0";
}
.fi-bs-branding:before {
content: "\f2e1";
}
.fi-bs-bread-loaf:before {
content: "\f2e2";
}
.fi-bs-bread-slice-butter:before {
content: "\f2e3";
}
.fi-bs-bread-slice:before {
content: "\f2e4";
}
.fi-bs-bread:before {
content: "\f2e5";
}
.fi-bs-briefcase-arrow-right:before {
content: "\f2e6";
}
.fi-bs-briefcase-blank:before {
content: "\f2e7";
}
.fi-bs-briefcase:before {
content: "\f2e8";
}
.fi-bs-brightness-low:before {
content: "\f2e9";
}
.fi-bs-brightness:before {
content: "\f2ea";
}
.fi-bs-bring-forward:before {
content: "\f2eb";
}
.fi-bs-bring-front:before {
content: "\f2ec";
}
.fi-bs-broadcast-tower:before {
content: "\f2ed";
}
.fi-bs-broccoli:before {
content: "\f2ee";
}
.fi-bs-broken-chain-link-wrong:before {
content: "\f2ef";
}
.fi-bs-broken-image:before {
content: "\f2f0";
}
.fi-bs-broom-ball:before {
content: "\f2f1";
}
.fi-bs-broom:before {
content: "\f2f2";
}
.fi-bs-browser-ui:before {
content: "\f2f3";
}
.fi-bs-browser:before {
content: "\f2f4";
}
.fi-bs-browsers:before {
content: "\f2f5";
}
.fi-bs-brush:before {
content: "\f2f6";
}
.fi-bs-bucket:before {
content: "\f2f7";
}
.fi-bs-budget-alt:before {
content: "\f2f8";
}
.fi-bs-budget:before {
content: "\f2f9";
}
.fi-bs-bug-slash:before {
content: "\f2fa";
}
.fi-bs-bug:before {
content: "\f2fb";
}
.fi-bs-bugs:before {
content: "\f2fc";
}
.fi-bs-build-alt:before {
content: "\f2fd";
}
.fi-bs-build:before {
content: "\f2fe";
}
.fi-bs-builder:before {
content: "\f2ff";
}
.fi-bs-building-circle-arrow-right:before {
content: "\f300";
}
.fi-bs-building-ngo:before {
content: "\f301";
}
.fi-bs-building:before {
content: "\f302";
}
.fi-bs-bulb:before {
content: "\f303";
}
.fi-bs-bullet:before {
content: "\f304";
}
.fi-bs-bullhorn:before {
content: "\f305";
}
.fi-bs-bullseye-arrow:before {
content: "\f306";
}
.fi-bs-bullseye-pointer:before {
content: "\f307";
}
.fi-bs-bullseye:before {
content: "\f308";
}
.fi-bs-burger-alt:before {
content: "\f309";
}
.fi-bs-burger-fries:before {
content: "\f30a";
}
.fi-bs-burger-glass:before {
content: "\f30b";
}
.fi-bs-burrito:before {
content: "\f30c";
}
.fi-bs-burst:before {
content: "\f30d";
}
.fi-bs-bus-alt:before {
content: "\f30e";
}
.fi-bs-bus:before {
content: "\f30f";
}
.fi-bs-business-time:before {
content: "\f310";
}
.fi-bs-Butter:before {
content: "\f311";
}
.fi-bs-butterfly:before {
content: "\f312";
}
.fi-bs-c:before {
content: "\f313";
}
.fi-bs-cabin:before {
content: "\f314";
}
.fi-bs-cactus:before {
content: "\f315";
}
.fi-bs-cage-empty:before {
content: "\f316";
}
.fi-bs-cake-birthday:before {
content: "\f317";
}
.fi-bs-cake-slice:before {
content: "\f318";
}
.fi-bs-cake-wedding:before {
content: "\f319";
}
.fi-bs-calculator-bill:before {
content: "\f31a";
}
.fi-bs-calculator-math-tax:before {
content: "\f31b";
}
.fi-bs-calculator-money:before {
content: "\f31c";
}
.fi-bs-calculator-simple:before {
content: "\f31d";
}
.fi-bs-calculator:before {
content: "\f31e";
}
.fi-bs-calendar-arrow-down:before {
content: "\f31f";
}
.fi-bs-calendar-arrow-up:before {
content: "\f320";
}
.fi-bs-calendar-birhtday-cake:before {
content: "\f321";
}
.fi-bs-calendar-call:before {
content: "\f322";
}
.fi-bs-calendar-check:before {
content: "\f323";
}
.fi-bs-calendar-clock:before {
content: "\f324";
}
.fi-bs-calendar-day:before {
content: "\f325";
}
.fi-bs-calendar-days:before {
content: "\f326";
}
.fi-bs-calendar-event-tax:before {
content: "\f327";
}
.fi-bs-calendar-exclamation:before {
content: "\f328";
}
.fi-bs-calendar-gavel-legal:before {
content: "\f329";
}
.fi-bs-calendar-heart:before {
content: "\f32a";
}
.fi-bs-calendar-image:before {
content: "\f32b";
}
.fi-bs-calendar-lines-pen:before {
content: "\f32c";
}
.fi-bs-calendar-lines:before {
content: "\f32d";
}
.fi-bs-calendar-minus:before {
content: "\f32e";
}
.fi-bs-calendar-payment-loan:before {
content: "\f32f";
}
.fi-bs-calendar-pen:before {
content: "\f330";
}
.fi-bs-calendar-plus:before {
content: "\f331";
}
.fi-bs-calendar-salary:before {
content: "\f332";
}
.fi-bs-calendar-shift-swap:before {
content: "\f333";
}
.fi-bs-calendar-star:before {
content: "\f334";
}
.fi-bs-calendar-swap:before {
content: "\f335";
}
.fi-bs-calendar-week:before {
content: "\f336";
}
.fi-bs-calendar-xmark:before {
content: "\f337";
}
.fi-bs-calendar:before {
content: "\f338";
}
.fi-bs-calendars:before {
content: "\f339";
}
.fi-bs-call-duration:before {
content: "\f33a";
}
.fi-bs-call-history:before {
content: "\f33b";
}
.fi-bs-call-incoming:before {
content: "\f33c";
}
.fi-bs-call-missed:before {
content: "\f33d";
}
.fi-bs-call-outgoing:before {
content: "\f33e";
}
.fi-bs-camcorder:before {
content: "\f33f";
}
.fi-bs-camera-cctv:before {
content: "\f340";
}
.fi-bs-camera-movie:before {
content: "\f341";
}
.fi-bs-camera-retro:before {
content: "\f342";
}
.fi-bs-camera-rotate:before {
content: "\f343";
}
.fi-bs-camera-security:before {
content: "\f344";
}
.fi-bs-camera-slash:before {
content: "\f345";
}
.fi-bs-camera-viewfinder:before {
content: "\f346";
}
.fi-bs-camera:before {
content: "\f347";
}
.fi-bs-campfire:before {
content: "\f348";
}
.fi-bs-camping:before {
content: "\f349";
}
.fi-bs-can-food:before {
content: "\f34a";
}
.fi-bs-candle-holder:before {
content: "\f34b";
}
.fi-bs-candle-lotus-yoga:before {
content: "\f34c";
}
.fi-bs-candle-pose-yoga:before {
content: "\f34d";
}
.fi-bs-candy-alt:before {
content: "\f34e";
}
.fi-bs-candy-bar:before {
content: "\f34f";
}
.fi-bs-candy-cane:before {
content: "\f350";
}
.fi-bs-candy-corn:before {
content: "\f351";
}
.fi-bs-candy-sweet:before {
content: "\f352";
}
.fi-bs-candy:before {
content: "\f353";
}
.fi-bs-Cannabis:before {
content: "\f354";
}
.fi-bs-canned-food:before {
content: "\f355";
}
.fi-bs-capsules:before {
content: "\f356";
}
.fi-bs-car-alt:before {
content: "\f357";
}
.fi-bs-car-battery:before {
content: "\f358";
}
.fi-bs-car-bolt:before {
content: "\f359";
}
.fi-bs-car-building:before {
content: "\f35a";
}
.fi-bs-car-bump:before {
content: "\f35b";
}
.fi-bs-car-bus:before {
content: "\f35c";
}
.fi-bs-car-circle-bolt:before {
content: "\f35d";
}
.fi-bs-car-crash:before {
content: "\f35e";
}
.fi-bs-car-garage:before {
content: "\f35f";
}
.fi-bs-car-journey:before {
content: "\f360";
}
.fi-bs-car-mechanic:before {
content: "\f361";
}
.fi-bs-car-rear:before {
content: "\f362";
}
.fi-bs-car-side-bolt:before {
content: "\f363";
}
.fi-bs-car-side:before {
content: "\f364";
}
.fi-bs-car-tilt:before {
content: "\f365";
}
.fi-bs-car-tunnel:before {
content: "\f366";
}
.fi-bs-car-wash:before {
content: "\f367";
}
.fi-bs-car:before {
content: "\f368";
}
.fi-bs-caravan-alt:before {
content: "\f369";
}
.fi-bs-caravan:before {
content: "\f36a";
}
.fi-bs-card-club:before {
content: "\f36b";
}
.fi-bs-card-diamond:before {
content: "\f36c";
}
.fi-bs-card-heart:before {
content: "\f36d";
}
.fi-bs-card-spade:before {
content: "\f36e";
}
.fi-bs-cardinal-compass:before {
content: "\f36f";
}
.fi-bs-career-growth:before {
content: "\f370";
}
.fi-bs-career-path:before {
content: "\f371";
}
.fi-bs-caret-circle-down:before {
content: "\f372";
}
.fi-bs-caret-circle-right:before {
content: "\f373";
}
.fi-bs-caret-circle-up:before {
content: "\f374";
}
.fi-bs-caret-down:before {
content: "\f375";
}
.fi-bs-caret-left:before {
content: "\f376";
}
.fi-bs-caret-quare-up:before {
content: "\f377";
}
.fi-bs-caret-right:before {
content: "\f378";
}
.fi-bs-caret-square-down:before {
content: "\f379";
}
.fi-bs-caret-square-left_1:before {
content: "\f37a";
}
.fi-bs-caret-square-left:before {
content: "\f37b";
}
.fi-bs-caret-square-right:before {
content: "\f37c";
}
.fi-bs-caret-up:before {
content: "\f37d";
}
.fi-bs-carrot:before {
content: "\f37e";
}
.fi-bs-cars-crash:before {
content: "\f37f";
}
.fi-bs-cars:before {
content: "\f380";
}
.fi-bs-cart-arrow-down:before {
content: "\f381";
}
.fi-bs-cart-minus:before {
content: "\f382";
}
.fi-bs-cart-shopping-fast:before {
content: "\f383";
}
.fi-bs-cash-register:before {
content: "\f384";
}
.fi-bs-cassette-tape:before {
content: "\f385";
}
.fi-bs-cassette-vhs:before {
content: "\f386";
}
.fi-bs-castle:before {
content: "\f387";
}
.fi-bs-cat-head:before {
content: "\f388";
}
.fi-bs-cat-space:before {
content: "\f389";
}
.fi-bs-cat:before {
content: "\f38a";
}
.fi-bs-catalog-alt:before {
content: "\f38b";
}
.fi-bs-catalog-magazine:before {
content: "\f38c";
}
.fi-bs-catalog:before {
content: "\f38d";
}
.fi-bs-category-alt:before {
content: "\f38e";
}
.fi-bs-category:before {
content: "\f38f";
}
.fi-bs-cauldron:before {
content: "\f390";
}
.fi-bs-cedi-sign:before {
content: "\f391";
}
.fi-bs-cello:before {
content: "\f392";
}
.fi-bs-cent-sign:before {
content: "\f393";
}
.fi-bs-chair-office:before {
content: "\f394";
}
.fi-bs-chair:before {
content: "\f395";
}
.fi-bs-chalkboard-user:before {
content: "\f396";
}
.fi-bs-chalkboard:before {
content: "\f397";
}
.fi-bs-challenge-alt:before {
content: "\f398";
}
.fi-bs-challenge:before {
content: "\f399";
}
.fi-bs-channel:before {
content: "\f39a";
}
.fi-bs-charging-station:before {
content: "\f39b";
}
.fi-bs-chart-area:before {
content: "\f39c";
}
.fi-bs-chart-bullet:before {
content: "\f39d";
}
.fi-bs-chart-candlestick:before {
content: "\f39e";
}
.fi-bs-chart-connected:before {
content: "\f39f";
}
.fi-bs-chart-gantt:before {
content: "\f3a0";
}
.fi-bs-chart-histogram:before {
content: "\f3a1";
}
.fi-bs-chart-kanban:before {
content: "\f3a2";
}
.fi-bs-chart-line-up-down:before {
content: "\f3a3";
}
.fi-bs-chart-line-up:before {
content: "\f3a4";
}
.fi-bs-chart-mixed-up-circle-currency:before {
content: "\f3a5";
}
.fi-bs-chart-mixed-up-circle-dollar:before {
content: "\f3a6";
}
.fi-bs-chart-mixed:before {
content: "\f3a7";
}
.fi-bs-chart-network:before {
content: "\f3a8";
}
.fi-bs-chart-pie-alt:before {
content: "\f3a9";
}
.fi-bs-chart-pie-simple-circle-currency:before {
content: "\f3aa";
}
.fi-bs-chart-pie-simple-circle-dollar:before {
content: "\f3ab";
}
.fi-bs-chart-pie:before {
content: "\f3ac";
}
.fi-bs-chart-pyramid:before {
content: "\f3ad";
}
.fi-bs-chart-radar:before {
content: "\f3ae";
}
.fi-bs-chart-scatter-3d:before {
content: "\f3af";
}
.fi-bs-chart-scatter-bubble:before {
content: "\f3b0";
}
.fi-bs-chart-scatter:before {
content: "\f3b1";
}
.fi-bs-chart-set-theory:before {
content: "\f3b2";
}
.fi-bs-chart-simple-horizontal:before {
content: "\f3b3";
}
.fi-bs-chart-simple:before {
content: "\f3b4";
}
.fi-bs-chart-tree-map:before {
content: "\f3b5";
}
.fi-bs-chart-tree:before {
content: "\f3b6";
}
.fi-bs-chart-user:before {
content: "\f3b7";
}
.fi-bs-chart-waterfall:before {
content: "\f3b8";
}
.fi-bs-chat-arrow-down:before {
content: "\f3b9";
}
.fi-bs-chat-arrow-grow:before {
content: "\f3ba";
}
.fi-bs-chat-bubble-call:before {
content: "\f3bb";
}
.fi-bs-chatbot-speech-bubble:before {
content: "\f3bc";
}
.fi-bs-chatbot:before {
content: "\f3bd";
}
.fi-bs-cheap-bill:before {
content: "\f3be";
}
.fi-bs-cheap-dollar:before {
content: "\f3bf";
}
.fi-bs-cheap-stack-dollar:before {
content: "\f3c0";
}
.fi-bs-cheap-stack:before {
content: "\f3c1";
}
.fi-bs-cheap:before {
content: "\f3c2";
}
.fi-bs-check-circle:before {
content: "\f3c3";
}
.fi-bs-check-double:before {
content: "\f3c4";
}
.fi-bs-check-in-calendar:before {
content: "\f3c5";
}
.fi-bs-check-out-calendar:before {
content: "\f3c6";
}
.fi-bs-check:before {
content: "\f3c7";
}
.fi-bs-checkbox:before {
content: "\f3c8";
}
.fi-bs-checklist-task-budget:before {
content: "\f3c9";
}
.fi-bs-cheese-alt:before {
content: "\f3ca";
}
.fi-bs-cheese:before {
content: "\f3cb";
}
.fi-bs-cheeseburger:before {
content: "\f3cc";
}
.fi-bs-cherry:before {
content: "\f3cd";
}
.fi-bs-chess-bishop:before {
content: "\f3ce";
}
.fi-bs-chess-board:before {
content: "\f3cf";
}
.fi-bs-chess-clock-alt:before {
content: "\f3d0";
}
.fi-bs-chess-clock:before {
content: "\f3d1";
}
.fi-bs-chess-king-alt:before {
content: "\f3d2";
}
.fi-bs-chess-king:before {
content: "\f3d3";
}
.fi-bs-chess-knight-alt:before {
content: "\f3d4";
}
.fi-bs-chess-knight:before {
content: "\f3d5";
}
.fi-bs-chess-pawn-alt:before {
content: "\f3d6";
}
.fi-bs-chess-pawn:before {
content: "\f3d7";
}
.fi-bs-chess-piece:before {
content: "\f3d8";
}
.fi-bs-chess-queen-alt:before {
content: "\f3d9";
}
.fi-bs-chess-queen:before {
content: "\f3da";
}
.fi-bs-chess-rook-alt:before {
content: "\f3db";
}
.fi-bs-chess-rook:before {
content: "\f3dc";
}
.fi-bs-chess:before {
content: "\f3dd";
}
.fi-bs-chevron-double-down:before {
content: "\f3de";
}
.fi-bs-chevron-double-up:before {
content: "\f3df";
}
.fi-bs-child-head:before {
content: "\f3e0";
}
.fi-bs-child:before {
content: "\f3e1";
}
.fi-bs-chimney:before {
content: "\f3e2";
}
.fi-bs-chip:before {
content: "\f3e3";
}
.fi-bs-chocolate:before {
content: "\f3e4";
}
.fi-bs-choir-singing:before {
content: "\f3e5";
}
.fi-bs-choose-alt:before {
content: "\f3e6";
}
.fi-bs-choose:before {
content: "\f3e7";
}
.fi-bs-church:before {
content: "\f3e8";
}
.fi-bs-circle-0:before {
content: "\f3e9";
}
.fi-bs-circle-1:before {
content: "\f3ea";
}
.fi-bs-circle-2:before {
content: "\f3eb";
}
.fi-bs-circle-3:before {
content: "\f3ec";
}
.fi-bs-circle-4:before {
content: "\f3ed";
}
.fi-bs-circle-5:before {
content: "\f3ee";
}
.fi-bs-circle-6:before {
content: "\f3ef";
}
.fi-bs-circle-7:before {
content: "\f3f0";
}
.fi-bs-circle-8:before {
content: "\f3f1";
}
.fi-bs-circle-9:before {
content: "\f3f2";
}
.fi-bs-circle-a:before {
content: "\f3f3";
}
.fi-bs-circle-b:before {
content: "\f3f4";
}
.fi-bs-circle-bolt:before {
content: "\f3f5";
}
.fi-bs-circle-book-open:before {
content: "\f3f6";
}
.fi-bs-circle-bookmark:before {
content: "\f3f7";
}
.fi-bs-circle-c:before {
content: "\f3f8";
}
.fi-bs-circle-calendar:before {
content: "\f3f9";
}
.fi-bs-circle-camera:before {
content: "\f3fa";
}
.fi-bs-circle-d:before {
content: "\f3fb";
}
.fi-bs-circle-dashed:before {
content: "\f3fc";
}
.fi-bs-circle-divide:before {
content: "\f3fd";
}
.fi-bs-circle-e:before {
content: "\f3fe";
}
.fi-bs-circle-ellipsis-vertical:before {
content: "\f3ff";
}
.fi-bs-circle-ellipsis:before {
content: "\f400";
}
.fi-bs-circle-envelope:before {
content: "\f401";
}
.fi-bs-circle-exclamation-check:before {
content: "\f402";
}
.fi-bs-circle-f:before {
content: "\f403";
}
.fi-bs-circle-g:before {
content: "\f404";
}
.fi-bs-circle-h:before {
content: "\f405";
}
.fi-bs-circle-half-stroke:before {
content: "\f406";
}
.fi-bs-circle-half:before {
content: "\f407";
}
.fi-bs-circle-heart:before {
content: "\f408";
}
.fi-bs-circle-i:before {
content: "\f409";
}
.fi-bs-circle-j:before {
content: "\f40a";
}
.fi-bs-circle-k:before {
content: "\f40b";
}
.fi-bs-circle-l:before {
content: "\f40c";
}
.fi-bs-circle-m:before {
content: "\f40d";
}
.fi-bs-circle-microphone-lines:before {
content: "\f40e";
}
.fi-bs-circle-microphone:before {
content: "\f40f";
}
.fi-bs-circle-n:before {
content: "\f410";
}
.fi-bs-circle-nodes:before {
content: "\f411";
}
.fi-bs-circle-o:before {
content: "\f412";
}
.fi-bs-circle-overlap:before {
content: "\f413";
}
.fi-bs-circle-p:before {
content: "\f414";
}
.fi-bs-circle-phone-flip:before {
content: "\f415";
}
.fi-bs-circle-phone-hangup:before {
content: "\f416";
}
.fi-bs-circle-phone:before {
content: "\f417";
}
.fi-bs-circle-q:before {
content: "\f418";
}
.fi-bs-circle-quarter:before {
content: "\f419";
}
.fi-bs-circle-quarters-alt:before {
content: "\f41a";
}
.fi-bs-circle-r:before {
content: "\f41b";
}
.fi-bs-circle-s:before {
content: "\f41c";
}
.fi-bs-circle-small:before {
content: "\f41d";
}
.fi-bs-circle-star:before {
content: "\f41e";
}
.fi-bs-circle-t:before {
content: "\f41f";
}
.fi-bs-circle-three-quarters:before {
content: "\f420";
}
.fi-bs-circle-trash:before {
content: "\f421";
}
.fi-bs-circle-u:before {
content: "\f422";
}
.fi-bs-circle-user:before {
content: "\f423";
}
.fi-bs-circle-v:before {
content: "\f424";
}
.fi-bs-circle-video:before {
content: "\f425";
}
.fi-bs-circle-w:before {
content: "\f426";
}
.fi-bs-circle-waveform-lines:before {
content: "\f427";
}
.fi-bs-circle-x:before {
content: "\f428";
}
.fi-bs-circle-xmark:before {
content: "\f429";
}
.fi-bs-circle-y:before {
content: "\f42a";
}
.fi-bs-circle-z:before {
content: "\f42b";
}
.fi-bs-circle:before {
content: "\f42c";
}
.fi-bs-citrus-slice:before {
content: "\f42d";
}
.fi-bs-citrus:before {
content: "\f42e";
}
.fi-bs-city:before {
content: "\f42f";
}
.fi-bs-clapperboard-play:before {
content: "\f430";
}
.fi-bs-clapperboard:before {
content: "\f431";
}
.fi-bs-clarinet:before {
content: "\f432";
}
.fi-bs-claw-marks:before {
content: "\f433";
}
.fi-bs-clear-alt:before {
content: "\f434";
}
.fi-bs-clip-file:before {
content: "\f435";
}
.fi-bs-clip-mail:before {
content: "\f436";
}
.fi-bs-clip:before {
content: "\f437";
}
.fi-bs-clipboard-check:before {
content: "\f438";
}
.fi-bs-clipboard-exclamation:before {
content: "\f439";
}
.fi-bs-clipboard-list-check:before {
content: "\f43a";
}
.fi-bs-clipboard-list:before {
content: "\f43b";
}
.fi-bs-clipboard-prescription:before {
content: "\f43c";
}
.fi-bs-clipboard-question:before {
content: "\f43d";
}
.fi-bs-clipboard-user:before {
content: "\f43e";
}
.fi-bs-clipboard:before {
content: "\f43f";
}
.fi-bs-clipoard-wrong:before {
content: "\f440";
}
.fi-bs-clock-desk:before {
content: "\f441";
}
.fi-bs-clock-eight-thirty:before {
content: "\f442";
}
.fi-bs-clock-eleven-thirty:before {
content: "\f443";
}
.fi-bs-clock-eleven:before {
content: "\f444";
}
.fi-bs-clock-five-thirty:before {
content: "\f445";
}
.fi-bs-clock-five:before {
content: "\f446";
}
.fi-bs-clock-four-thirty:before {
content: "\f447";
}
.fi-bs-clock-nine-thirty:before {
content: "\f448";
}
.fi-bs-clock-nine:before {
content: "\f449";
}
.fi-bs-clock-one-thirty:before {
content: "\f44a";
}
.fi-bs-clock-one:before {
content: "\f44b";
}
.fi-bs-clock-seven-thirty:before {
content: "\f44c";
}
.fi-bs-clock-seven:before {
content: "\f44d";
}
.fi-bs-clock-six-thirty:before {
content: "\f44e";
}
.fi-bs-clock-six:before {
content: "\f44f";
}
.fi-bs-clock-ten-thirty:before {
content: "\f450";
}
.fi-bs-clock-ten:before {
content: "\f451";
}
.fi-bs-clock-three-thirty:before {
content: "\f452";
}
.fi-bs-clock-three:before {
content: "\f453";
}
.fi-bs-clock-time-tracking:before {
content: "\f454";
}
.fi-bs-clock-twelve-thirty:before {
content: "\f455";
}
.fi-bs-clock-twelve:before {
content: "\f456";
}
.fi-bs-clock-two-thirty:before {
content: "\f457";
}
.fi-bs-clock-two:before {
content: "\f458";
}
.fi-bs-clock-up-arrow:before {
content: "\f459";
}
.fi-bs-clock:before {
content: "\f45a";
}
.fi-bs-clone:before {
content: "\f45b";
}
.fi-bs-closed-captioning-slash:before {
content: "\f45c";
}
.fi-bs-clothes-hanger:before {
content: "\f45d";
}
.fi-bs-cloud-back-up-alt:before {
content: "\f45e";
}
.fi-bs-cloud-back-up:before {
content: "\f45f";
}
.fi-bs-cloud-check:before {
content: "\f460";
}
.fi-bs-cloud-code:before {
content: "\f461";
}
.fi-bs-cloud-disabled:before {
content: "\f462";
}
.fi-bs-cloud-download-alt:before {
content: "\f463";
}
.fi-bs-cloud-download:before {
content: "\f464";
}
.fi-bs-cloud-drizzle:before {
content: "\f465";
}
.fi-bs-cloud-exclamation:before {
content: "\f466";
}
.fi-bs-cloud-gear-automation:before {
content: "\f467";
}
.fi-bs-cloud-hail-mixed:before {
content: "\f468";
}
.fi-bs-cloud-hail:before {
content: "\f469";
}
.fi-bs-cloud-meatball:before {
content: "\f46a";
}
.fi-bs-cloud-moon-rain:before {
content: "\f46b";
}
.fi-bs-cloud-moon:before {
content: "\f46c";
}
.fi-bs-cloud-question:before {
content: "\f46d";
}
.fi-bs-cloud-rain:before {
content: "\f46e";
}
.fi-bs-cloud-rainbow:before {
content: "\f46f";
}
.fi-bs-cloud-share:before {
content: "\f470";
}
.fi-bs-cloud-showers-heavy:before {
content: "\f471";
}
.fi-bs-cloud-showers:before {
content: "\f472";
}
.fi-bs-cloud-sleet:before {
content: "\f473";
}
.fi-bs-cloud-snow:before {
content: "\f474";
}
.fi-bs-cloud-sun-rain:before {
content: "\f475";
}
.fi-bs-cloud-sun:before {
content: "\f476";
}
.fi-bs-cloud-upload-alt:before {
content: "\f477";
}
.fi-bs-cloud-upload:before {
content: "\f478";
}
.fi-bs-cloud:before {
content: "\f479";
}
.fi-bs-clouds-moon:before {
content: "\f47a";
}
.fi-bs-clouds-sun:before {
content: "\f47b";
}
.fi-bs-clouds:before {
content: "\f47c";
}
.fi-bs-clover-alt:before {
content: "\f47d";
}
.fi-bs-club:before {
content: "\f47e";
}
.fi-bs-cocktail-alt:before {
content: "\f47f";
}
.fi-bs-cocktail:before {
content: "\f480";
}
.fi-bs-coconut:before {
content: "\f481";
}
.fi-bs-code-branch:before {
content: "\f482";
}
.fi-bs-code-commit:before {
content: "\f483";
}
.fi-bs-code-compare:before {
content: "\f484";
}
.fi-bs-code-fork:before {
content: "\f485";
}
.fi-bs-code-merge:before {
content: "\f486";
}
.fi-bs-code-pull-request-closed:before {
content: "\f487";
}
.fi-bs-code-pull-request-draft:before {
content: "\f488";
}
.fi-bs-code-pull-request:before {
content: "\f489";
}
.fi-bs-code-simple:before {
content: "\f48a";
}
.fi-bs-coffee-bean:before {
content: "\f48b";
}
.fi-bs-coffee-beans:before {
content: "\f48c";
}
.fi-bs-coffee-heart:before {
content: "\f48d";
}
.fi-bs-coffee-pot:before {
content: "\f48e";
}
.fi-bs-coffee:before {
content: "\f48f";
}
.fi-bs-coffin-cross:before {
content: "\f490";
}
.fi-bs-coffin:before {
content: "\f491";
}
.fi-bs-coin-up-arrow:before {
content: "\f492";
}
.fi-bs-coin:before {
content: "\f493";
}
.fi-bs-coins:before {
content: "\f494";
}
.fi-bs-colon-sign:before {
content: "\f495";
}
.fi-bs-columns-3:before {
content: "\f496";
}
.fi-bs-comet:before {
content: "\f497";
}
.fi-bs-command:before {
content: "\f498";
}
.fi-bs-comment-alt-check:before {
content: "\f499";
}
.fi-bs-comment-alt-dots:before {
content: "\f49a";
}
.fi-bs-comment-alt-edit:before {
content: "\f49b";
}
.fi-bs-comment-alt-medical:before {
content: "\f49c";
}
.fi-bs-comment-alt-middle-top:before {
content: "\f49d";
}
.fi-bs-comment-alt-middle:before {
content: "\f49e";
}
.fi-bs-comment-alt-minus:before {
content: "\f49f";
}
.fi-bs-comment-alt-music:before {
content: "\f4a0";
}
.fi-bs-comment-alt:before {
content: "\f4a1";
}
.fi-bs-comment-arrow-down:before {
content: "\f4a2";
}
.fi-bs-comment-arrow-up-right:before {
content: "\f4a3";
}
.fi-bs-comment-arrow-up:before {
content: "\f4a4";
}
.fi-bs-comment-check:before {
content: "\f4a5";
}
.fi-bs-comment-code:before {
content: "\f4a6";
}
.fi-bs-comment-dollar:before {
content: "\f4a7";
}
.fi-bs-comment-dots:before {
content: "\f4a8";
}
.fi-bs-comment-exclamation:before {
content: "\f4a9";
}
.fi-bs-comment-heart:before {
content: "\f4aa";
}
.fi-bs-comment-image:before {
content: "\f4ab";
}
.fi-bs-comment-info:before {
content: "\f4ac";
}
.fi-bs-comment-medical:before {
content: "\f4ad";
}
.fi-bs-comment-minus:before {
content: "\f4ae";
}
.fi-bs-comment-pen:before {
content: "\f4af";
}
.fi-bs-comment-question:before {
content: "\f4b0";
}
.fi-bs-comment-quote:before {
content: "\f4b1";
}
.fi-bs-comment-slash:before {
content: "\f4b2";
}
.fi-bs-comment-smile:before {
content: "\f4b3";
}
.fi-bs-comment-sms:before {
content: "\f4b4";
}
.fi-bs-comment-text:before {
content: "\f4b5";
}
.fi-bs-comment-user:before {
content: "\f4b6";
}
.fi-bs-comment-xmark:before {
content: "\f4b7";
}
.fi-bs-comment:before {
content: "\f4b8";
}
.fi-bs-comments-dollar:before {
content: "\f4b9";
}
.fi-bs-comments-question-check:before {
content: "\f4ba";
}
.fi-bs-comments-question:before {
content: "\f4bb";
}
.fi-bs-comments:before {
content: "\f4bc";
}
.fi-bs-compass-alt:before {
content: "\f4bd";
}
.fi-bs-compass-east:before {
content: "\f4be";
}
.fi-bs-compass-north:before {
content: "\f4bf";
}
.fi-bs-compass-slash:before {
content: "\f4c0";
}
.fi-bs-compass-south:before {
content: "\f4c1";
}
.fi-bs-compass-west:before {
content: "\f4c2";
}
.fi-bs-completed:before {
content: "\f4c3";
}
.fi-bs-compliance-clipboard:before {
content: "\f4c4";
}
.fi-bs-compliance-document:before {
content: "\f4c5";
}
.fi-bs-compliance:before {
content: "\f4c6";
}
.fi-bs-compress-alt:before {
content: "\f4c7";
}
.fi-bs-compress:before {
content: "\f4c8";
}
.fi-bs-computer-classic:before {
content: "\f4c9";
}
.fi-bs-computer-mouse:before {
content: "\f4ca";
}
.fi-bs-computer-speaker:before {
content: "\f4cb";
}
.fi-bs-computer:before {
content: "\f4cc";
}
.fi-bs-concierge-bell:before {
content: "\f4cd";
}
.fi-bs-condition-alt:before {
content: "\f4ce";
}
.fi-bs-condition:before {
content: "\f4cf";
}
.fi-bs-confetti:before {
content: "\f4d0";
}
.fi-bs-constellation:before {
content: "\f4d1";
}
.fi-bs-container-storage:before {
content: "\f4d2";
}
.fi-bs-convert-document:before {
content: "\f4d3";
}
.fi-bs-convert-shapes:before {
content: "\f4d4";
}
.fi-bs-conveyor-belt-alt:before {
content: "\f4d5";
}
.fi-bs-conveyor-belt-arm:before {
content: "\f4d6";
}
.fi-bs-conveyor-belt-empty:before {
content: "\f4d7";
}
.fi-bs-conveyor-belt:before {
content: "\f4d8";
}
.fi-bs-cookie-alt:before {
content: "\f4d9";
}
.fi-bs-cookie:before {
content: "\f4da";
}
.fi-bs-copy-alt:before {
content: "\f4db";
}
.fi-bs-copy-image:before {
content: "\f4dc";
}
.fi-bs-copy:before {
content: "\f4dd";
}
.fi-bs-copyright:before {
content: "\f4de";
}
.fi-bs-corn:before {
content: "\f4df";
}
.fi-bs-corporate-alt:before {
content: "\f4e0";
}
.fi-bs-corporate:before {
content: "\f4e1";
}
.fi-bs-couch:before {
content: "\f4e2";
}
.fi-bs-court-sport:before {
content: "\f4e3";
}
.fi-bs-cow-alt:before {
content: "\f4e4";
}
.fi-bs-cow:before {
content: "\f4e5";
}
.fi-bs-cowbell-circle-plus:before {
content: "\f4e6";
}
.fi-bs-cowbell-more:before {
content: "\f4e7";
}
.fi-bs-cowbell:before {
content: "\f4e8";
}
.fi-bs-crab:before {
content: "\f4e9";
}
.fi-bs-crate-empty:before {
content: "\f4ea";
}
.fi-bs-cream:before {
content: "\f4eb";
}
.fi-bs-credit-card-buyer:before {
content: "\f4ec";
}
.fi-bs-credit-card-eye:before {
content: "\f4ed";
}
.fi-bs-credit-card:before {
content: "\f4ee";
}
.fi-bs-cricket:before {
content: "\f4ef";
}
.fi-bs-crm-alt:before {
content: "\f4f0";
}
.fi-bs-crm-computer:before {
content: "\f4f1";
}
.fi-bs-CRM:before {
content: "\f4f2";
}
.fi-bs-croissant:before {
content: "\f4f3";
}
.fi-bs-cross-circle:before {
content: "\f4f4";
}
.fi-bs-cross-religion:before {
content: "\f4f5";
}
.fi-bs-cross-small:before {
content: "\f4f6";
}
.fi-bs-cross:before {
content: "\f4f7";
}
.fi-bs-crow:before {
content: "\f4f8";
}
.fi-bs-crown:before {
content: "\f4f9";
}
.fi-bs-crutch:before {
content: "\f4fa";
}
.fi-bs-crutches:before {
content: "\f4fb";
}
.fi-bs-cruzeiro-sign:before {
content: "\f4fc";
}
.fi-bs-crypto-calendar:before {
content: "\f4fd";
}
.fi-bs-cryptocurrency:before {
content: "\f4fe";
}
.fi-bs-crystal-ball:before {
content: "\f4ff";
}
.fi-bs-cube:before {
content: "\f500";
}
.fi-bs-cubes-stacked:before {
content: "\f501";
}
.fi-bs-cubes:before {
content: "\f502";
}
.fi-bs-cucumber:before {
content: "\f503";
}
.fi-bs-cup-straw-swoosh:before {
content: "\f504";
}
.fi-bs-cup-straw:before {
content: "\f505";
}
.fi-bs-cup-togo:before {
content: "\f506";
}
.fi-bs-cupcake-alt:before {
content: "\f507";
}
.fi-bs-cupcake:before {
content: "\f508";
}
.fi-bs-curling:before {
content: "\f509";
}
.fi-bs-cursor-finger:before {
content: "\f50a";
}
.fi-bs-cursor-plus:before {
content: "\f50b";
}
.fi-bs-cursor-text-alt:before {
content: "\f50c";
}
.fi-bs-cursor-text:before {
content: "\f50d";
}
.fi-bs-cursor:before {
content: "\f50e";
}
.fi-bs-curve-alt:before {
content: "\f50f";
}
.fi-bs-curve-arrow:before {
content: "\f510";
}
.fi-bs-curve:before {
content: "\f511";
}
.fi-bs-custard:before {
content: "\f512";
}
.fi-bs-customer-care:before {
content: "\f513";
}
.fi-bs-customer-service:before {
content: "\f514";
}
.fi-bs-customization-cogwheel:before {
content: "\f515";
}
.fi-bs-customization:before {
content: "\f516";
}
.fi-bs-customize-computer:before {
content: "\f517";
}
.fi-bs-customize-edit:before {
content: "\f518";
}
.fi-bs-customize:before {
content: "\f519";
}
.fi-bs-CV:before {
content: "\f51a";
}
.fi-bs-cvv-card:before {
content: "\f51b";
}
.fi-bs-d:before {
content: "\f51c";
}
.fi-bs-dagger:before {
content: "\f51d";
}
.fi-bs-daily-calendar:before {
content: "\f51e";
}
.fi-bs-damage:before {
content: "\f51f";
}
.fi-bs-dart:before {
content: "\f520";
}
.fi-bs-dashboard-monitor:before {
content: "\f521";
}
.fi-bs-dashboard-panel:before {
content: "\f522";
}
.fi-bs-dashboard:before {
content: "\f523";
}
.fi-bs-data-transfer:before {
content: "\f524";
}
.fi-bs-database:before {
content: "\f525";
}
.fi-bs-debt:before {
content: "\f526";
}
.fi-bs-deer-rudolph:before {
content: "\f527";
}
.fi-bs-deer:before {
content: "\f528";
}
.fi-bs-delete-document:before {
content: "\f529";
}
.fi-bs-delete-right:before {
content: "\f52a";
}
.fi-bs-delete-user:before {
content: "\f52b";
}
.fi-bs-delete:before {
content: "\f52c";
}
.fi-bs-democrat:before {
content: "\f52d";
}
.fi-bs-department-structure:before {
content: "\f52e";
}
.fi-bs-department:before {
content: "\f52f";
}
.fi-bs-deposit-alt:before {
content: "\f530";
}
.fi-bs-deposit:before {
content: "\f531";
}
.fi-bs-description-alt:before {
content: "\f532";
}
.fi-bs-description:before {
content: "\f533";
}
.fi-bs-desk:before {
content: "\f534";
}
.fi-bs-desktop-arrow-down:before {
content: "\f535";
}
.fi-bs-desktop-wallpaper:before {
content: "\f536";
}
.fi-bs-devices:before {
content: "\f537";
}
.fi-bs-dewpoint:before {
content: "\f538";
}
.fi-bs-dharmachakra:before {
content: "\f539";
}
.fi-bs-diagram-cells:before {
content: "\f53a";
}
.fi-bs-diagram-lean-canvas:before {
content: "\f53b";
}
.fi-bs-diagram-nested:before {
content: "\f53c";
}
.fi-bs-diagram-next:before {
content: "\f53d";
}
.fi-bs-diagram-predecessor:before {
content: "\f53e";
}
.fi-bs-diagram-previous:before {
content: "\f53f";
}
.fi-bs-diagram-project:before {
content: "\f540";
}
.fi-bs-diagram-sankey:before {
content: "\f541";
}
.fi-bs-diagram-subtask:before {
content: "\f542";
}
.fi-bs-diagram-successor:before {
content: "\f543";
}
.fi-bs-diagram-venn:before {
content: "\f544";
}
.fi-bs-dial-high:before {
content: "\f545";
}
.fi-bs-dial-low:before {
content: "\f546";
}
.fi-bs-dial-max:before {
content: "\f547";
}
.fi-bs-dial-med-low:before {
content: "\f548";
}
.fi-bs-dial-med:before {
content: "\f549";
}
.fi-bs-dial-min:before {
content: "\f54a";
}
.fi-bs-dial-off:before {
content: "\f54b";
}
.fi-bs-dial:before {
content: "\f54c";
}
.fi-bs-diamond-exclamation:before {
content: "\f54d";
}
.fi-bs-diamond-turn-right:before {
content: "\f54e";
}
.fi-bs-diamond:before {
content: "\f54f";
}
.fi-bs-diary-bookmark-down:before {
content: "\f550";
}
.fi-bs-diary-bookmarks:before {
content: "\f551";
}
.fi-bs-diary-clasp:before {
content: "\f552";
}
.fi-bs-dice-alt:before {
content: "\f553";
}
.fi-bs-dice-d10:before {
content: "\f554";
}
.fi-bs-dice-d12:before {
content: "\f555";
}
.fi-bs-dice-d20:before {
content: "\f556";
}
.fi-bs-dice-d4:before {
content: "\f557";
}
.fi-bs-dice-d6:before {
content: "\f558";
}
.fi-bs-dice-d8:before {
content: "\f559";
}
.fi-bs-dice-four:before {
content: "\f55a";
}
.fi-bs-dice-one:before {
content: "\f55b";
}
.fi-bs-dice-six:before {
content: "\f55c";
}
.fi-bs-dice-three:before {
content: "\f55d";
}
.fi-bs-dice-two:before {
content: "\f55e";
}
.fi-bs-dice:before {
content: "\f55f";
}
.fi-bs-digging:before {
content: "\f560";
}
.fi-bs-digital-tachograph:before {
content: "\f561";
}
.fi-bs-dinner:before {
content: "\f562";
}
.fi-bs-diploma:before {
content: "\f563";
}
.fi-bs-direction-signal-arrow:before {
content: "\f564";
}
.fi-bs-direction-signal:before {
content: "\f565";
}
.fi-bs-disc-drive:before {
content: "\f566";
}
.fi-bs-disco-ball:before {
content: "\f567";
}
.fi-bs-discover:before {
content: "\f568";
}
.fi-bs-disease:before {
content: "\f569";
}
.fi-bs-disk:before {
content: "\f56a";
}
.fi-bs-display-arrow-down:before {
content: "\f56b";
}
.fi-bs-display-chart-up:before {
content: "\f56c";
}
.fi-bs-display-code:before {
content: "\f56d";
}
.fi-bs-display-medical:before {
content: "\f56e";
}
.fi-bs-display-slash:before {
content: "\f56f";
}
.fi-bs-distribute-spacing-horizontal:before {
content: "\f570";
}
.fi-bs-distribute-spacing-vertical:before {
content: "\f571";
}
.fi-bs-divide:before {
content: "\f572";
}
.fi-bs-dizzy:before {
content: "\f573";
}
.fi-bs-dna:before {
content: "\f574";
}
.fi-bs-do-not-enter:before {
content: "\f575";
}
.fi-bs-doctor:before {
content: "\f576";
}
.fi-bs-document-circle-wrong:before {
content: "\f577";
}
.fi-bs-document-paid:before {
content: "\f578";
}
.fi-bs-document-signed:before {
content: "\f579";
}
.fi-bs-document:before {
content: "\f57a";
}
.fi-bs-dog-leashed:before {
content: "\f57b";
}
.fi-bs-dog:before {
content: "\f57c";
}
.fi-bs-dollar:before {
content: "\f57d";
}
.fi-bs-dolly-flatbed-alt:before {
content: "\f57e";
}
.fi-bs-dolly-flatbed-empty:before {
content: "\f57f";
}
.fi-bs-dolly-flatbed:before {
content: "\f580";
}
.fi-bs-dolphin:before {
content: "\f581";
}
.fi-bs-domino-effect:before {
content: "\f582";
}
.fi-bs-donate:before {
content: "\f583";
}
.fi-bs-dong-sign:before {
content: "\f584";
}
.fi-bs-donut:before {
content: "\f585";
}
.fi-bs-door-closed:before {
content: "\f586";
}
.fi-bs-door-open:before {
content: "\f587";
}
.fi-bs-dot-circle:before {
content: "\f588";
}
.fi-bs-dot-pending:before {
content: "\f589";
}
.fi-bs-dove:before {
content: "\f58a";
}
.fi-bs-down-from-bracket:before {
content: "\f58b";
}
.fi-bs-down-left-and-up-right-to-center:before {
content: "\f58c";
}
.fi-bs-down-left:before {
content: "\f58d";
}
.fi-bs-down-right:before {
content: "\f58e";
}
.fi-bs-down-to-line:before {
content: "\f58f";
}
.fi-bs-down:before {
content: "\f590";
}
.fi-bs-download:before {
content: "\f591";
}
.fi-bs-drafting-compass:before {
content: "\f592";
}
.fi-bs-dragon:before {
content: "\f593";
}
.fi-bs-draw-polygon:before {
content: "\f594";
}
.fi-bs-draw-square:before {
content: "\f595";
}
.fi-bs-drawer-alt:before {
content: "\f596";
}
.fi-bs-drawer-empty:before {
content: "\f597";
}
.fi-bs-drawer:before {
content: "\f598";
}
.fi-bs-dreidel:before {
content: "\f599";
}
.fi-bs-drink-alt:before {
content: "\f59a";
}
.fi-bs-driver-man:before {
content: "\f59b";
}
.fi-bs-driver-woman:before {
content: "\f59c";
}
.fi-bs-drone-alt:before {
content: "\f59d";
}
.fi-bs-drone-front:before {
content: "\f59e";
}
.fi-bs-drone:before {
content: "\f59f";
}
.fi-bs-drop-down:before {
content: "\f5a0";
}
.fi-bs-dropdown-select:before {
content: "\f5a1";
}
.fi-bs-dropdown:before {
content: "\f5a2";
}
.fi-bs-drum-steelpan:before {
content: "\f5a3";
}
.fi-bs-drum:before {
content: "\f5a4";
}
.fi-bs-drumstick-bite:before {
content: "\f5a5";
}
.fi-bs-drumstick:before {
content: "\f5a6";
}
.fi-bs-dryer-alt:before {
content: "\f5a7";
}
.fi-bs-dryer:before {
content: "\f5a8";
}
.fi-bs-duck:before {
content: "\f5a9";
}
.fi-bs-dumbbell-fitness:before {
content: "\f5aa";
}
.fi-bs-dumbbell-horizontal:before {
content: "\f5ab";
}
.fi-bs-dumbbell-ray:before {
content: "\f5ac";
}
.fi-bs-dumbbell-weightlifting:before {
content: "\f5ad";
}
.fi-bs-dumpster-fire:before {
content: "\f5ae";
}
.fi-bs-dumpster:before {
content: "\f5af";
}
.fi-bs-dungeon:before {
content: "\f5b0";
}
.fi-bs-duplicate:before {
content: "\f5b1";
}
.fi-bs-duration-alt:before {
content: "\f5b2";
}
.fi-bs-duration:before {
content: "\f5b3";
}
.fi-bs-e-learning:before {
content: "\f5b4";
}
.fi-bs-e:before {
content: "\f5b5";
}
.fi-bs-ear-deaf:before {
content: "\f5b6";
}
.fi-bs-ear-muffs:before {
content: "\f5b7";
}
.fi-bs-ear:before {
content: "\f5b8";
}
.fi-bs-earnings:before {
content: "\f5b9";
}
.fi-bs-earth-africa:before {
content: "\f5ba";
}
.fi-bs-earth-americas:before {
content: "\f5bb";
}
.fi-bs-earth-asia:before {
content: "\f5bc";
}
.fi-bs-earth-europa:before {
content: "\f5bd";
}
.fi-bs-eclipse-alt:before {
content: "\f5be";
}
.fi-bs-eclipse:before {
content: "\f5bf";
}
.fi-bs-edit-alt:before {
content: "\f5c0";
}
.fi-bs-edit:before {
content: "\f5c1";
}
.fi-bs-effect:before {
content: "\f5c2";
}
.fi-bs-egg-fried:before {
content: "\f5c3";
}
.fi-bs-egg:before {
content: "\f5c4";
}
.fi-bs-eject:before {
content: "\f5c5";
}
.fi-bs-elephant:before {
content: "\f5c6";
}
.fi-bs-elevator:before {
content: "\f5c7";
}
.fi-bs-email-pending:before {
content: "\f5c8";
}
.fi-bs-employee-alt:before {
content: "\f5c9";
}
.fi-bs-employee-handbook:before {
content: "\f5ca";
}
.fi-bs-employee-man-alt:before {
content: "\f5cb";
}
.fi-bs-employee-man:before {
content: "\f5cc";
}
.fi-bs-employees-woman-man:before {
content: "\f5cd";
}
.fi-bs-employees:before {
content: "\f5ce";
}
.fi-bs-empty-set:before {
content: "\f5cf";
}
.fi-bs-endless-loop:before {
content: "\f5d0";
}
.fi-bs-engine-warning:before {
content: "\f5d1";
}
.fi-bs-engine:before {
content: "\f5d2";
}
.fi-bs-enter:before {
content: "\f5d3";
}
.fi-bs-envelope-ban:before {
content: "\f5d4";
}
.fi-bs-envelope-bulk:before {
content: "\f5d5";
}
.fi-bs-envelope-dot:before {
content: "\f5d6";
}
.fi-bs-envelope-download:before {
content: "\f5d7";
}
.fi-bs-envelope-heart:before {
content: "\f5d8";
}
.fi-bs-envelope-marker:before {
content: "\f5d9";
}
.fi-bs-envelope-open-dollar:before {
content: "\f5da";
}
.fi-bs-envelope-open-text:before {
content: "\f5db";
}
.fi-bs-envelope-open:before {
content: "\f5dc";
}
.fi-bs-envelope-plus:before {
content: "\f5dd";
}
.fi-bs-envelope:before {
content: "\f5de";
}
.fi-bs-envelopes:before {
content: "\f5df";
}
.fi-bs-equality:before {
content: "\f5e0";
}
.fi-bs-equals:before {
content: "\f5e1";
}
.fi-bs-eraser:before {
content: "\f5e2";
}
.fi-bs-error-camera:before {
content: "\f5e3";
}
.fi-bs-escalator:before {
content: "\f5e4";
}
.fi-bs-ethernet:before {
content: "\f5e5";
}
.fi-bs-euro:before {
content: "\f5e6";
}
.fi-bs-excavator:before {
content: "\f5e7";
}
.fi-bs-exchange-alt:before {
content: "\f5e8";
}
.fi-bs-exchange-cryptocurrency:before {
content: "\f5e9";
}
.fi-bs-exchange:before {
content: "\f5ea";
}
.fi-bs-exclamation:before {
content: "\f5eb";
}
.fi-bs-exit-alt:before {
content: "\f5ec";
}
.fi-bs-exit:before {
content: "\f5ed";
}
.fi-bs-expand-arrows-alt:before {
content: "\f5ee";
}
.fi-bs-expand-arrows:before {
content: "\f5ef";
}
.fi-bs-expand:before {
content: "\f5f0";
}
.fi-bs-expense-bill:before {
content: "\f5f1";
}
.fi-bs-expense:before {
content: "\f5f2";
}
.fi-bs-external-hard-drive:before {
content: "\f5f3";
}
.fi-bs-external-world:before {
content: "\f5f4";
}
.fi-bs-eye-crossed:before {
content: "\f5f5";
}
.fi-bs-eye-dropper-half:before {
content: "\f5f6";
}
.fi-bs-eye-dropper:before {
content: "\f5f7";
}
.fi-bs-eye:before {
content: "\f5f8";
}
.fi-bs-eyes:before {
content: "\f5f9";
}
.fi-bs-f:before {
content: "\f5fa";
}
.fi-bs-fabric:before {
content: "\f5fb";
}
.fi-bs-face-angry-horns:before {
content: "\f5fc";
}
.fi-bs-face-anguished:before {
content: "\f5fd";
}
.fi-bs-face-anxious-sweat:before {
content: "\f5fe";
}
.fi-bs-face-astonished:before {
content: "\f5ff";
}
.fi-bs-face-awesome:before {
content: "\f600";
}
.fi-bs-face-beam-hand-over-mouth:before {
content: "\f601";
}
.fi-bs-face-confounded:before {
content: "\f602";
}
.fi-bs-face-confused:before {
content: "\f603";
}
.fi-bs-face-cowboy-hat:before {
content: "\f604";
}
.fi-bs-face-disappointed:before {
content: "\f605";
}
.fi-bs-face-disguise:before {
content: "\f606";
}
.fi-bs-face-downcast-sweat:before {
content: "\f607";
}
.fi-bs-face-drooling:before {
content: "\f608";
}
.fi-bs-face-explode:before {
content: "\f609";
}
.fi-bs-face-expressionless:before {
content: "\f60a";
}
.fi-bs-face-eyes-xmarks:before {
content: "\f60b";
}
.fi-bs-face-fearful:before {
content: "\f60c";
}
.fi-bs-face-glasses:before {
content: "\f60d";
}
.fi-bs-face-grin-tongue-wink:before {
content: "\f60e";
}
.fi-bs-face-hand-yawn:before {
content: "\f60f";
}
.fi-bs-face-head-bandage:before {
content: "\f610";
}
.fi-bs-face-hushed:before {
content: "\f611";
}
.fi-bs-face-icicles:before {
content: "\f612";
}
.fi-bs-face-lying:before {
content: "\f613";
}
.fi-bs-face-mask:before {
content: "\f614";
}
.fi-bs-face-monocle:before {
content: "\f615";
}
.fi-bs-face-nauseated:before {
content: "\f616";
}
.fi-bs-face-nose-steam:before {
content: "\f617";
}
.fi-bs-face-party:before {
content: "\f618";
}
.fi-bs-face-pensive:before {
content: "\f619";
}
.fi-bs-face-persevering:before {
content: "\f61a";
}
.fi-bs-face-pleading:before {
content: "\f61b";
}
.fi-bs-face-raised-eyebrow:before {
content: "\f61c";
}
.fi-bs-face-relieved:before {
content: "\f61d";
}
.fi-bs-face-sad-sweat:before {
content: "\f61e";
}
.fi-bs-face-scream:before {
content: "\f61f";
}
.fi-bs-face-shush:before {
content: "\f620";
}
.fi-bs-face-sleeping:before {
content: "\f621";
}
.fi-bs-face-sleepy:before {
content: "\f622";
}
.fi-bs-face-smile-halo:before {
content: "\f623";
}
.fi-bs-face-smile-hearts:before {
content: "\f624";
}
.fi-bs-face-smile-horns:before {
content: "\f625";
}
.fi-bs-face-smile-tear:before {
content: "\f626";
}
.fi-bs-face-smile-tongue:before {
content: "\f627";
}
.fi-bs-face-smile-upside-down:before {
content: "\f628";
}
.fi-bs-face-smiling-hands:before {
content: "\f629";
}
.fi-bs-face-smirking:before {
content: "\f62a";
}
.fi-bs-face-sunglasses-alt:before {
content: "\f62b";
}
.fi-bs-face-sunglasses:before {
content: "\f62c";
}
.fi-bs-face-swear:before {
content: "\f62d";
}
.fi-bs-face-thermometer:before {
content: "\f62e";
}
.fi-bs-face-thinking:before {
content: "\f62f";
}
.fi-bs-face-tissue:before {
content: "\f630";
}
.fi-bs-face-tongue-money:before {
content: "\f631";
}
.fi-bs-face-tongue-sweat:before {
content: "\f632";
}
.fi-bs-face-unamused:before {
content: "\f633";
}
.fi-bs-face-viewfinder:before {
content: "\f634";
}
.fi-bs-face-vomit:before {
content: "\f635";
}
.fi-bs-face-weary:before {
content: "\f636";
}
.fi-bs-face-woozy:before {
content: "\f637";
}
.fi-bs-face-worried:before {
content: "\f638";
}
.fi-bs-face-zany:before {
content: "\f639";
}
.fi-bs-face-zipper:before {
content: "\f63a";
}
.fi-bs-fail:before {
content: "\f63b";
}
.fi-bs-falafel:before {
content: "\f63c";
}
.fi-bs-family-dress:before {
content: "\f63d";
}
.fi-bs-family-pants:before {
content: "\f63e";
}
.fi-bs-family:before {
content: "\f63f";
}
.fi-bs-fan-table:before {
content: "\f640";
}
.fi-bs-fan:before {
content: "\f641";
}
.fi-bs-farm:before {
content: "\f642";
}
.fi-bs-faucet-drip:before {
content: "\f643";
}
.fi-bs-faucet:before {
content: "\f644";
}
.fi-bs-fax:before {
content: "\f645";
}
.fi-bs-feather-pointed:before {
content: "\f646";
}
.fi-bs-feather:before {
content: "\f647";
}
.fi-bs-features-alt:before {
content: "\f648";
}
.fi-bs-features:before {
content: "\f649";
}
.fi-bs-fee-receipt:before {
content: "\f64a";
}
.fi-bs-fee:before {
content: "\f64b";
}
.fi-bs-feedback-alt:before {
content: "\f64c";
}
.fi-bs-feedback-cycle-loop:before {
content: "\f64d";
}
.fi-bs-feedback-hand:before {
content: "\f64e";
}
.fi-bs-feedback-review:before {
content: "\f64f";
}
.fi-bs-feedback:before {
content: "\f650";
}
.fi-bs-fence:before {
content: "\f651";
}
.fi-bs-ferris-wheel:before {
content: "\f652";
}
.fi-bs-field-hockey:before {
content: "\f653";
}
.fi-bs-fighter-jet:before {
content: "\f654";
}
.fi-bs-file-ai:before {
content: "\f655";
}
.fi-bs-file-audio:before {
content: "\f656";
}
.fi-bs-file-binary:before {
content: "\f657";
}
.fi-bs-file-chart-line:before {
content: "\f658";
}
.fi-bs-file-chart-pie:before {
content: "\f659";
}
.fi-bs-file-circle-info:before {
content: "\f65a";
}
.fi-bs-file-cloud:before {
content: "\f65b";
}
.fi-bs-file-code:before {
content: "\f65c";
}
.fi-bs-file-csv:before {
content: "\f65d";
}
.fi-bs-file-download:before {
content: "\f65e";
}
.fi-bs-file-edit:before {
content: "\f65f";
}
.fi-bs-file-eps:before {
content: "\f660";
}
.fi-bs-file-excel:before {
content: "\f661";
}
.fi-bs-file-exclamation:before {
content: "\f662";
}
.fi-bs-file-export:before {
content: "\f663";
}
.fi-bs-file-image:before {
content: "\f664";
}
.fi-bs-file-import:before {
content: "\f665";
}
.fi-bs-file-invoice-dollar:before {
content: "\f666";
}
.fi-bs-file-invoice:before {
content: "\f667";
}
.fi-bs-file-medical-alt:before {
content: "\f668";
}
.fi-bs-file-medical:before {
content: "\f669";
}
.fi-bs-file-minus:before {
content: "\f66a";
}
.fi-bs-file-pdf:before {
content: "\f66b";
}
.fi-bs-file-powerpoint:before {
content: "\f66c";
}
.fi-bs-file-prescription:before {
content: "\f66d";
}
.fi-bs-file-psd:before {
content: "\f66e";
}
.fi-bs-file-signature:before {
content: "\f66f";
}
.fi-bs-file-spreadsheet:before {
content: "\f670";
}
.fi-bs-file-upload:before {
content: "\f671";
}
.fi-bs-file-user:before {
content: "\f672";
}
.fi-bs-file-video:before {
content: "\f673";
}
.fi-bs-file-word:before {
content: "\f674";
}
.fi-bs-file-zipper:before {
content: "\f675";
}
.fi-bs-file:before {
content: "\f676";
}
.fi-bs-files-medical:before {
content: "\f677";
}
.fi-bs-fill:before {
content: "\f678";
}
.fi-bs-film-canister:before {
content: "\f679";
}
.fi-bs-film-slash:before {
content: "\f67a";
}
.fi-bs-film:before {
content: "\f67b";
}
.fi-bs-films:before {
content: "\f67c";
}
.fi-bs-filter-list:before {
content: "\f67d";
}
.fi-bs-filter-slash:before {
content: "\f67e";
}
.fi-bs-filter:before {
content: "\f67f";
}
.fi-bs-filters:before {
content: "\f680";
}
.fi-bs-fingerprint-security-risk:before {
content: "\f681";
}
.fi-bs-fingerprint:before {
content: "\f682";
}
.fi-bs-fire-burner:before {
content: "\f683";
}
.fi-bs-fire-extinguisher:before {
content: "\f684";
}
.fi-bs-fire-flame-curved:before {
content: "\f685";
}
.fi-bs-fire-flame-simple:before {
content: "\f686";
}
.fi-bs-fire-hydrant:before {
content: "\f687";
}
.fi-bs-fire-smoke:before {
content: "\f688";
}
.fi-bs-fireplace:before {
content: "\f689";
}
.fi-bs-first-award:before {
content: "\f68a";
}
.fi-bs-first-laurel:before {
content: "\f68b";
}
.fi-bs-first-medal:before {
content: "\f68c";
}
.fi-bs-first:before {
content: "\f68d";
}
.fi-bs-fish-bones:before {
content: "\f68e";
}
.fi-bs-fish-cooked:before {
content: "\f68f";
}
.fi-bs-fish:before {
content: "\f690";
}
.fi-bs-fishing-rod:before {
content: "\f691";
}
.fi-bs-fist-move:before {
content: "\f692";
}
.fi-bs-flag-alt:before {
content: "\f693";
}
.fi-bs-flag-checkered:before {
content: "\f694";
}
.fi-bs-flag-usa:before {
content: "\f695";
}
.fi-bs-flag:before {
content: "\f696";
}
.fi-bs-flame:before {
content: "\f697";
}
.fi-bs-flashlight:before {
content: "\f698";
}
.fi-bs-flask-gear:before {
content: "\f699";
}
.fi-bs-flask-poison:before {
content: "\f69a";
}
.fi-bs-flask-potion:before {
content: "\f69b";
}
.fi-bs-flask:before {
content: "\f69c";
}
.fi-bs-flatbread-stuffed:before {
content: "\f69d";
}
.fi-bs-flatbread:before {
content: "\f69e";
}
.fi-bs-flip-horizontal:before {
content: "\f69f";
}
.fi-bs-floor-alt:before {
content: "\f6a0";
}
.fi-bs-floor-layer:before {
content: "\f6a1";
}
.fi-bs-floor:before {
content: "\f6a2";
}
.fi-bs-floppy-disk-circle-arrow-right:before {
content: "\f6a3";
}
.fi-bs-floppy-disk-circle-xmark:before {
content: "\f6a4";
}
.fi-bs-floppy-disk-pen:before {
content: "\f6a5";
}
.fi-bs-floppy-disks:before {
content: "\f6a6";
}
.fi-bs-florin-sign:before {
content: "\f6a7";
}
.fi-bs-flower-bouquet:before {
content: "\f6a8";
}
.fi-bs-flower-butterfly:before {
content: "\f6a9";
}
.fi-bs-flower-daffodil:before {
content: "\f6aa";
}
.fi-bs-flower-tulip:before {
content: "\f6ab";
}
.fi-bs-flower:before {
content: "\f6ac";
}
.fi-bs-flushed:before {
content: "\f6ad";
}
.fi-bs-flute:before {
content: "\f6ae";
}
.fi-bs-flux-capacitor:before {
content: "\f6af";
}
.fi-bs-fly-insect:before {
content: "\f6b0";
}
.fi-bs-flying-disc:before {
content: "\f6b1";
}
.fi-bs-fog:before {
content: "\f6b2";
}
.fi-bs-folder-download:before {
content: "\f6b3";
}
.fi-bs-folder-fire:before {
content: "\f6b4";
}
.fi-bs-folder-minus:before {
content: "\f6b5";
}
.fi-bs-folder-open:before {
content: "\f6b6";
}
.fi-bs-folder-times:before {
content: "\f6b7";
}
.fi-bs-folder-tree:before {
content: "\f6b8";
}
.fi-bs-folder-upload:before {
content: "\f6b9";
}
.fi-bs-folder-xmark:before {
content: "\f6ba";
}
.fi-bs-folder:before {
content: "\f6bb";
}
.fi-bs-folders:before {
content: "\f6bc";
}
.fi-bs-follow-folder:before {
content: "\f6bd";
}
.fi-bs-followcollection:before {
content: "\f6be";
}
.fi-bs-following:before {
content: "\f6bf";
}
.fi-bs-fondue-pot:before {
content: "\f6c0";
}
.fi-bs-football:before {
content: "\f6c1";
}
.fi-bs-foreign-language-audio:before {
content: "\f6c2";
}
.fi-bs-fork:before {
content: "\f6c3";
}
.fi-bs-forklift:before {
content: "\f6c4";
}
.fi-bs-form:before {
content: "\f6c5";
}
.fi-bs-fort:before {
content: "\f6c6";
}
.fi-bs-forward-fast:before {
content: "\f6c7";
}
.fi-bs-forward:before {
content: "\f6c8";
}
.fi-bs-fox:before {
content: "\f6c9";
}
.fi-bs-frame:before {
content: "\f6ca";
}
.fi-bs-franc-sign:before {
content: "\f6cb";
}
.fi-bs-free-delivery:before {
content: "\f6cc";
}
.fi-bs-free:before {
content: "\f6cd";
}
.fi-bs-french-fries:before {
content: "\f6ce";
}
.fi-bs-friday:before {
content: "\f6cf";
}
.fi-bs-frog:before {
content: "\f6d0";
}
.fi-bs-frown:before {
content: "\f6d1";
}
.fi-bs-ftp:before {
content: "\f6d2";
}
.fi-bs-fuel-gauge:before {
content: "\f6d3";
}
.fi-bs-function-process:before {
content: "\f6d4";
}
.fi-bs-function-square:before {
content: "\f6d5";
}
.fi-bs-function:before {
content: "\f6d6";
}
.fi-bs-funnel-dollar:before {
content: "\f6d7";
}
.fi-bs-g:before {
content: "\f6d8";
}
.fi-bs-galaxy-alt:before {
content: "\f6d9";
}
.fi-bs-galaxy-planet:before {
content: "\f6da";
}
.fi-bs-galaxy-star:before {
content: "\f6db";
}
.fi-bs-galaxy:before {
content: "\f6dc";
}
.fi-bs-gallery-thumbnails:before {
content: "\f6dd";
}
.fi-bs-gallery:before {
content: "\f6de";
}
.fi-bs-game-board-alt:before {
content: "\f6df";
}
.fi-bs-gamepad:before {
content: "\f6e0";
}
.fi-bs-garage-car:before {
content: "\f6e1";
}
.fi-bs-garage-open:before {
content: "\f6e2";
}
.fi-bs-garage:before {
content: "\f6e3";
}
.fi-bs-garlic-alt:before {
content: "\f6e4";
}
.fi-bs-garlic:before {
content: "\f6e5";
}
.fi-bs-gas-pump-alt:before {
content: "\f6e6";
}
.fi-bs-gas-pump-slash:before {
content: "\f6e7";
}
.fi-bs-gas-pump:before {
content: "\f6e8";
}
.fi-bs-gauge-circle-bolt:before {
content: "\f6e9";
}
.fi-bs-gauge-circle-minus:before {
content: "\f6ea";
}
.fi-bs-gauge-circle-plus:before {
content: "\f6eb";
}
.fi-bs-gavel:before {
content: "\f6ec";
}
.fi-bs-gay-couple:before {
content: "\f6ed";
}
.fi-bs-gears:before {
content: "\f6ee";
}
.fi-bs-gem:before {
content: "\f6ef";
}
.fi-bs-general:before {
content: "\f6f0";
}
.fi-bs-ghost:before {
content: "\f6f1";
}
.fi-bs-gif-square:before {
content: "\f6f2";
}
.fi-bs-gif:before {
content: "\f6f3";
}
.fi-bs-gift-box-benefits:before {
content: "\f6f4";
}
.fi-bs-gift-card:before {
content: "\f6f5";
}
.fi-bs-gift:before {
content: "\f6f6";
}
.fi-bs-gifts:before {
content: "\f6f7";
}
.fi-bs-gingerbread-man:before {
content: "\f6f8";
}
.fi-bs-glass-champagne:before {
content: "\f6f9";
}
.fi-bs-glass-cheers:before {
content: "\f6fa";
}
.fi-bs-glass-citrus:before {
content: "\f6fb";
}
.fi-bs-glass-empty:before {
content: "\f6fc";
}
.fi-bs-glass-half:before {
content: "\f6fd";
}
.fi-bs-glass-water-droplet:before {
content: "\f6fe";
}
.fi-bs-glass-whiskey-rocks:before {
content: "\f6ff";
}
.fi-bs-glass-whiskey:before {
content: "\f700";
}
.fi-bs-glass:before {
content: "\f701";
}
.fi-bs-glasses:before {
content: "\f702";
}
.fi-bs-globe-alt:before {
content: "\f703";
}
.fi-bs-globe-pointer:before {
content: "\f704";
}
.fi-bs-globe-snow:before {
content: "\f705";
}
.fi-bs-globe:before {
content: "\f706";
}
.fi-bs-goal-net:before {
content: "\f707";
}
.fi-bs-golf-ball:before {
content: "\f708";
}
.fi-bs-golf-club:before {
content: "\f709";
}
.fi-bs-golf-hole:before {
content: "\f70a";
}
.fi-bs-golf:before {
content: "\f70b";
}
.fi-bs-gopuram:before {
content: "\f70c";
}
.fi-bs-government-budget:before {
content: "\f70d";
}
.fi-bs-government-flag:before {
content: "\f70e";
}
.fi-bs-government-user:before {
content: "\f70f";
}
.fi-bs-gps-navigation:before {
content: "\f710";
}
.fi-bs-graduation-cap:before {
content: "\f711";
}
.fi-bs-gramophone:before {
content: "\f712";
}
.fi-bs-grape:before {
content: "\f713";
}
.fi-bs-graph-curve:before {
content: "\f714";
}
.fi-bs-graphic-style:before {
content: "\f715";
}
.fi-bs-graphic-tablet:before {
content: "\f716";
}
.fi-bs-grate-droplet:before {
content: "\f717";
}
.fi-bs-grate:before {
content: "\f718";
}
.fi-bs-greater-than-equal:before {
content: "\f719";
}
.fi-bs-greater-than:before {
content: "\f71a";
}
.fi-bs-greek-helmet:before {
content: "\f71b";
}
.fi-bs-grid-alt:before {
content: "\f71c";
}
.fi-bs-grid-dividers:before {
content: "\f71d";
}
.fi-bs-grid:before {
content: "\f71e";
}
.fi-bs-grill-hot-alt:before {
content: "\f71f";
}
.fi-bs-grill:before {
content: "\f720";
}
.fi-bs-grimace:before {
content: "\f721";
}
.fi-bs-grin-alt:before {
content: "\f722";
}
.fi-bs-grin-beam-sweat:before {
content: "\f723";
}
.fi-bs-grin-beam:before {
content: "\f724";
}
.fi-bs-grin-hearts:before {
content: "\f725";
}
.fi-bs-grin-squint-tears:before {
content: "\f726";
}
.fi-bs-grin-squint:before {
content: "\f727";
}
.fi-bs-grin-stars:before {
content: "\f728";
}
.fi-bs-grin-tears:before {
content: "\f729";
}
.fi-bs-grin-tongue-squint:before {
content: "\f72a";
}
.fi-bs-grin-tongue-wink:before {
content: "\f72b";
}
.fi-bs-grin-tongue:before {
content: "\f72c";
}
.fi-bs-grin-wink:before {
content: "\f72d";
}
.fi-bs-grin:before {
content: "\f72e";
}
.fi-bs-grip-dots-vertical:before {
content: "\f72f";
}
.fi-bs-grip-dots:before {
content: "\f730";
}
.fi-bs-grip-horizontal:before {
content: "\f731";
}
.fi-bs-grip-lines-vertical:before {
content: "\f732";
}
.fi-bs-grip-lines:before {
content: "\f733";
}
.fi-bs-grip-vertical:before {
content: "\f734";
}
.fi-bs-grocery-bag:before {
content: "\f735";
}
.fi-bs-grocery-basket:before {
content: "\f736";
}
.fi-bs-group-arrows-rotate:before {
content: "\f737";
}
.fi-bs-group-call:before {
content: "\f738";
}
.fi-bs-group-community-social-media:before {
content: "\f739";
}
.fi-bs-growth-chart-invest:before {
content: "\f73a";
}
.fi-bs-guarani-sign:before {
content: "\f73b";
}
.fi-bs-guide-alt:before {
content: "\f73c";
}
.fi-bs-guide:before {
content: "\f73d";
}
.fi-bs-guitar-electric:before {
content: "\f73e";
}
.fi-bs-guitar:before {
content: "\f73f";
}
.fi-bs-guitars:before {
content: "\f740";
}
.fi-bs-gun-squirt:before {
content: "\f741";
}
.fi-bs-gym:before {
content: "\f742";
}
.fi-bs-h-square:before {
content: "\f743";
}
.fi-bs-h:before {
content: "\f744";
}
.fi-bs-h1:before {
content: "\f745";
}
.fi-bs-h2:before {
content: "\f746";
}
.fi-bs-h3:before {
content: "\f747";
}
.fi-bs-h4:before {
content: "\f748";
}
.fi-bs-hair-clipper:before {
content: "\f749";
}
.fi-bs-hamburger-soda:before {
content: "\f74a";
}
.fi-bs-hamburger:before {
content: "\f74b";
}
.fi-bs-hammer-crash:before {
content: "\f74c";
}
.fi-bs-hammer-war:before {
content: "\f74d";
}
.fi-bs-hammer:before {
content: "\f74e";
}
.fi-bs-hamsa:before {
content: "\f74f";
}
.fi-bs-hand-back-fist:before {
content: "\f750";
}
.fi-bs-hand-back-point-down:before {
content: "\f751";
}
.fi-bs-hand-back-point-left:before {
content: "\f752";
}
.fi-bs-hand-back-point-ribbon:before {
content: "\f753";
}
.fi-bs-hand-back-point-right:before {
content: "\f754";
}
.fi-bs-hand-bill:before {
content: "\f755";
}
.fi-bs-hand-dots:before {
content: "\f756";
}
.fi-bs-hand-fingers-crossed:before {
content: "\f757";
}
.fi-bs-hand-fist:before {
content: "\f758";
}
.fi-bs-hand-heart:before {
content: "\f759";
}
.fi-bs-hand-holding-box:before {
content: "\f75a";
}
.fi-bs-hand-holding-droplet:before {
content: "\f75b";
}
.fi-bs-hand-holding-heart:before {
content: "\f75c";
}
.fi-bs-hand-holding-magic:before {
content: "\f75d";
}
.fi-bs-hand-holding-medical:before {
content: "\f75e";
}
.fi-bs-hand-holding-seedling:before {
content: "\f75f";
}
.fi-bs-hand-holding-skull:before {
content: "\f760";
}
.fi-bs-hand-holding-usd:before {
content: "\f761";
}
.fi-bs-hand-holding-water:before {
content: "\f762";
}
.fi-bs-hand-horns:before {
content: "\f763";
}
.fi-bs-hand-lizard:before {
content: "\f764";
}
.fi-bs-hand-love:before {
content: "\f765";
}
.fi-bs-hand-middle-finger:before {
content: "\f766";
}
.fi-bs-hand-paper:before {
content: "\f767";
}
.fi-bs-hand-peace:before {
content: "\f768";
}
.fi-bs-hand-point-ribbon:before {
content: "\f769";
}
.fi-bs-hand-scissors:before {
content: "\f76a";
}
.fi-bs-hand-sparkles:before {
content: "\f76b";
}
.fi-bs-hand-spock:before {
content: "\f76c";
}
.fi-bs-hand-wave:before {
content: "\f76d";
}
.fi-bs-hand:before {
content: "\f76e";
}
.fi-bs-handmade:before {
content: "\f76f";
}
.fi-bs-hands-bubbles:before {
content: "\f770";
}
.fi-bs-hands-clapping:before {
content: "\f771";
}
.fi-bs-hands-heart:before {
content: "\f772";
}
.fi-bs-hands-holding-diamond:before {
content: "\f773";
}
.fi-bs-hands-holding:before {
content: "\f774";
}
.fi-bs-hands-usd:before {
content: "\f775";
}
.fi-bs-handshake-angle:before {
content: "\f776";
}
.fi-bs-handshake-deal-loan:before {
content: "\f777";
}
.fi-bs-handshake-house:before {
content: "\f778";
}
.fi-bs-handshake-simple-slash:before {
content: "\f779";
}
.fi-bs-handshake-trust:before {
content: "\f77a";
}
.fi-bs-handshake:before {
content: "\f77b";
}
.fi-bs-happy:before {
content: "\f77c";
}
.fi-bs-hard-hat:before {
content: "\f77d";
}
.fi-bs-hashtag-lock:before {
content: "\f77e";
}
.fi-bs-hastag:before {
content: "\f77f";
}
.fi-bs-hat-beach:before {
content: "\f780";
}
.fi-bs-hat-birthday:before {
content: "\f781";
}
.fi-bs-hat-chef:before {
content: "\f782";
}
.fi-bs-hat-cowboy-side:before {
content: "\f783";
}
.fi-bs-hat-cowboy:before {
content: "\f784";
}
.fi-bs-hat-santa:before {
content: "\f785";
}
.fi-bs-hat-winter:before {
content: "\f786";
}
.fi-bs-hat-witch:before {
content: "\f787";
}
.fi-bs-hat-wizard:before {
content: "\f788";
}
.fi-bs-hdd:before {
content: "\f789";
}
.fi-bs-head-side-brain:before {
content: "\f78a";
}
.fi-bs-head-side-cough-slash:before {
content: "\f78b";
}
.fi-bs-head-side-cough:before {
content: "\f78c";
}
.fi-bs-head-side-headphones:before {
content: "\f78d";
}
.fi-bs-head-side-heart:before {
content: "\f78e";
}
.fi-bs-head-side-mask:before {
content: "\f78f";
}
.fi-bs-head-side-medical:before {
content: "\f790";
}
.fi-bs-head-side-thinking:before {
content: "\f791";
}
.fi-bs-head-side-virus:before {
content: "\f792";
}
.fi-bs-head-side:before {
content: "\f793";
}
.fi-bs-head-vr:before {
content: "\f794";
}
.fi-bs-heading:before {
content: "\f795";
}
.fi-bs-headphones:before {
content: "\f796";
}
.fi-bs-headset:before {
content: "\f797";
}
.fi-bs-heart-arrow:before {
content: "\f798";
}
.fi-bs-heart-brain:before {
content: "\f799";
}
.fi-bs-heart-crack:before {
content: "\f79a";
}
.fi-bs-heart-half-stroke:before {
content: "\f79b";
}
.fi-bs-heart-half:before {
content: "\f79c";
}
.fi-bs-heart-health-muscle:before {
content: "\f79d";
}
.fi-bs-heart-lock:before {
content: "\f79e";
}
.fi-bs-heart-partner-handshake:before {
content: "\f79f";
}
.fi-bs-heart-rate:before {
content: "\f7a0";
}
.fi-bs-heart-slash:before {
content: "\f7a1";
}
.fi-bs-heart-upside-down:before {
content: "\f7a2";
}
.fi-bs-heart:before {
content: "\f7a3";
}
.fi-bs-heat:before {
content: "\f7a4";
}
.fi-bs-helicopter-side:before {
content: "\f7a5";
}
.fi-bs-helmet-battle:before {
content: "\f7a6";
}
.fi-bs-hexagon-check:before {
content: "\f7a7";
}
.fi-bs-hexagon-divide:before {
content: "\f7a8";
}
.fi-bs-hexagon-exclamation:before {
content: "\f7a9";
}
.fi-bs-hexagon:before {
content: "\f7aa";
}
.fi-bs-high-definition:before {
content: "\f7ab";
}
.fi-bs-high-five-celebration-yes:before {
content: "\f7ac";
}
.fi-bs-high-five:before {
content: "\f7ad";
}
.fi-bs-highlighter-line:before {
content: "\f7ae";
}
.fi-bs-highlighter:before {
content: "\f7af";
}
.fi-bs-hiking:before {
content: "\f7b0";
}
.fi-bs-hippo:before {
content: "\f7b1";
}
.fi-bs-hockey-mask:before {
content: "\f7b2";
}
.fi-bs-hockey-puck:before {
content: "\f7b3";
}
.fi-bs-hockey-stick-puck:before {
content: "\f7b4";
}
.fi-bs-hockey-sticks:before {
content: "\f7b5";
}
.fi-bs-holding-hand-gear:before {
content: "\f7b6";
}
.fi-bs-holding-hand-revenue:before {
content: "\f7b7";
}
.fi-bs-holly-berry:before {
content: "\f7b8";
}
.fi-bs-home-heart:before {
content: "\f7b9";
}
.fi-bs-home-location-alt:before {
content: "\f7ba";
}
.fi-bs-home-location:before {
content: "\f7bb";
}
.fi-bs-home:before {
content: "\f7bc";
}
.fi-bs-honey-pot:before {
content: "\f7bd";
}
.fi-bs-hood-cloak:before {
content: "\f7be";
}
.fi-bs-horizontal-rule:before {
content: "\f7bf";
}
.fi-bs-horse-head:before {
content: "\f7c0";
}
.fi-bs-horse-saddle:before {
content: "\f7c1";
}
.fi-bs-horse:before {
content: "\f7c2";
}
.fi-bs-horseshoe-broken:before {
content: "\f7c3";
}
.fi-bs-horseshoe:before {
content: "\f7c4";
}
.fi-bs-hose-reel:before {
content: "\f7c5";
}
.fi-bs-hose:before {
content: "\f7c6";
}
.fi-bs-hospital-symbol:before {
content: "\f7c7";
}
.fi-bs-hospital-user:before {
content: "\f7c8";
}
.fi-bs-hospital:before {
content: "\f7c9";
}
.fi-bs-hospitals:before {
content: "\f7ca";
}
.fi-bs-hot-tub:before {
content: "\f7cb";
}
.fi-bs-hotdog:before {
content: "\f7cc";
}
.fi-bs-hotel:before {
content: "\f7cd";
}
.fi-bs-hourglass-end:before {
content: "\f7ce";
}
.fi-bs-hourglass-start:before {
content: "\f7cf";
}
.fi-bs-hourglass:before {
content: "\f7d0";
}
.fi-bs-house-blank:before {
content: "\f7d1";
}
.fi-bs-house-building:before {
content: "\f7d2";
}
.fi-bs-house-chimney-blank:before {
content: "\f7d3";
}
.fi-bs-house-chimney-crack:before {
content: "\f7d4";
}
.fi-bs-house-chimney-heart:before {
content: "\f7d5";
}
.fi-bs-house-chimney-medical:before {
content: "\f7d6";
}
.fi-bs-house-chimney-user:before {
content: "\f7d7";
}
.fi-bs-house-chimney-window:before {
content: "\f7d8";
}
.fi-bs-house-chimney:before {
content: "\f7d9";
}
.fi-bs-house-circle-check:before {
content: "\f7da";
}
.fi-bs-house-circle-exclamation:before {
content: "\f7db";
}
.fi-bs-house-circle-xmark:before {
content: "\f7dc";
}
.fi-bs-house-crack-alt:before {
content: "\f7dd";
}
.fi-bs-house-crack:before {
content: "\f7de";
}
.fi-bs-house-day:before {
content: "\f7df";
}
.fi-bs-house-fire:before {
content: "\f7e0";
}
.fi-bs-house-flag:before {
content: "\f7e1";
}
.fi-bs-house-flood:before {
content: "\f7e2";
}
.fi-bs-house-laptop:before {
content: "\f7e3";
}
.fi-bs-house-leave:before {
content: "\f7e4";
}
.fi-bs-house-lock:before {
content: "\f7e5";
}
.fi-bs-house-medical:before {
content: "\f7e6";
}
.fi-bs-house-night:before {
content: "\f7e7";
}
.fi-bs-house-return:before {
content: "\f7e8";
}
.fi-bs-house-signal:before {
content: "\f7e9";
}
.fi-bs-house-tree:before {
content: "\f7ea";
}
.fi-bs-house-tsunami:before {
content: "\f7eb";
}
.fi-bs-house-turret:before {
content: "\f7ec";
}
.fi-bs-house-user:before {
content: "\f7ed";
}
.fi-bs-house-window:before {
content: "\f7ee";
}
.fi-bs-hr-group:before {
content: "\f7ef";
}
.fi-bs-hr-person:before {
content: "\f7f0";
}
.fi-bs-hr:before {
content: "\f7f1";
}
.fi-bs-hryvnia:before {
content: "\f7f2";
}
.fi-bs-humidity:before {
content: "\f7f3";
}
.fi-bs-hundred-points:before {
content: "\f7f4";
}
.fi-bs-hurricane:before {
content: "\f7f5";
}
.fi-bs-i:before {
content: "\f7f6";
}
.fi-bs-ice-cream:before {
content: "\f7f7";
}
.fi-bs-ice-skate:before {
content: "\f7f8";
}
.fi-bs-icicles:before {
content: "\f7f9";
}
.fi-bs-icon-star:before {
content: "\f7fa";
}
.fi-bs-id-badge:before {
content: "\f7fb";
}
.fi-bs-id-card-clip-alt:before {
content: "\f7fc";
}
.fi-bs-igloo:before {
content: "\f7fd";
}
.fi-bs-image-slash:before {
content: "\f7fe";
}
.fi-bs-images-user:before {
content: "\f7ff";
}
.fi-bs-images:before {
content: "\f800";
}
.fi-bs-improve-user:before {
content: "\f801";
}
.fi-bs-inbox-full:before {
content: "\f802";
}
.fi-bs-inbox-in:before {
content: "\f803";
}
.fi-bs-inbox-out:before {
content: "\f804";
}
.fi-bs-inbox:before {
content: "\f805";
}
.fi-bs-inboxes:before {
content: "\f806";
}
.fi-bs-incense-sticks-yoga:before {
content: "\f807";
}
.fi-bs-incognito:before {
content: "\f808";
}
.fi-bs-indent:before {
content: "\f809";
}
.fi-bs-indian-rupee-sign:before {
content: "\f80a";
}
.fi-bs-industry-alt:before {
content: "\f80b";
}
.fi-bs-industry-windows:before {
content: "\f80c";
}
.fi-bs-infinity:before {
content: "\f80d";
}
.fi-bs-info-guide:before {
content: "\f80e";
}
.fi-bs-info:before {
content: "\f80f";
}
.fi-bs-information:before {
content: "\f810";
}
.fi-bs-inhaler:before {
content: "\f811";
}
.fi-bs-input-numeric:before {
content: "\f812";
}
.fi-bs-input-pipe:before {
content: "\f813";
}
.fi-bs-input-text:before {
content: "\f814";
}
.fi-bs-insert-alt:before {
content: "\f815";
}
.fi-bs-insert-arrows:before {
content: "\f816";
}
.fi-bs-insert-button-circle:before {
content: "\f817";
}
.fi-bs-insert-credit-card:before {
content: "\f818";
}
.fi-bs-insert-square:before {
content: "\f819";
}
.fi-bs-insert:before {
content: "\f81a";
}
.fi-bs-insight-alt:before {
content: "\f81b";
}
.fi-bs-insight-head:before {
content: "\f81c";
}
.fi-bs-insight:before {
content: "\f81d";
}
.fi-bs-integral:before {
content: "\f81e";
}
.fi-bs-interactive:before {
content: "\f81f";
}
.fi-bs-interlining:before {
content: "\f820";
}
.fi-bs-internet-speed-wifi:before {
content: "\f821";
}
.fi-bs-interrogation:before {
content: "\f822";
}
.fi-bs-intersection:before {
content: "\f823";
}
.fi-bs-introduction-handshake:before {
content: "\f824";
}
.fi-bs-introduction:before {
content: "\f825";
}
.fi-bs-inventory-alt:before {
content: "\f826";
}
.fi-bs-invest:before {
content: "\f827";
}
.fi-bs-investment:before {
content: "\f828";
}
.fi-bs-invite-alt:before {
content: "\f829";
}
.fi-bs-invite:before {
content: "\f82a";
}
.fi-bs-iot-alt:before {
content: "\f82b";
}
.fi-bs-iot:before {
content: "\f82c";
}
.fi-bs-ip-address:before {
content: "\f82d";
}
.fi-bs-island-tropical:before {
content: "\f82e";
}
.fi-bs-issue-loupe:before {
content: "\f82f";
}
.fi-bs-it-alt:before {
content: "\f830";
}
.fi-bs-it-computer:before {
content: "\f831";
}
.fi-bs-it:before {
content: "\f832";
}
.fi-bs-italian-lira-sign:before {
content: "\f833";
}
.fi-bs-italic:before {
content: "\f834";
}
.fi-bs-j:before {
content: "\f835";
}
.fi-bs-jam:before {
content: "\f836";
}
.fi-bs-jar-alt:before {
content: "\f837";
}
.fi-bs-jar-wheat:before {
content: "\f838";
}
.fi-bs-javascript:before {
content: "\f839";
}
.fi-bs-joint:before {
content: "\f83a";
}
.fi-bs-joker:before {
content: "\f83b";
}
.fi-bs-journal-alt:before {
content: "\f83c";
}
.fi-bs-journal:before {
content: "\f83d";
}
.fi-bs-journey:before {
content: "\f83e";
}
.fi-bs-joystick:before {
content: "\f83f";
}
.fi-bs-jpg:before {
content: "\f840";
}
.fi-bs-jug-alt:before {
content: "\f841";
}
.fi-bs-jug-bottle:before {
content: "\f842";
}
.fi-bs-jug:before {
content: "\f843";
}
.fi-bs-jumping-rope:before {
content: "\f844";
}
.fi-bs-k:before {
content: "\f845";
}
.fi-bs-kaaba:before {
content: "\f846";
}
.fi-bs-kazoo:before {
content: "\f847";
}
.fi-bs-kerning:before {
content: "\f848";
}
.fi-bs-key-lock-crypto:before {
content: "\f849";
}
.fi-bs-key-skeleton-left-right:before {
content: "\f84a";
}
.fi-bs-key:before {
content: "\f84b";
}
.fi-bs-keyboard-brightness-low:before {
content: "\f84c";
}
.fi-bs-keyboard-brightness:before {
content: "\f84d";
}
.fi-bs-keyboard-down:before {
content: "\f84e";
}
.fi-bs-keyboard-left:before {
content: "\f84f";
}
.fi-bs-keyboard:before {
content: "\f850";
}
.fi-bs-keynote:before {
content: "\f851";
}
.fi-bs-kidneys:before {
content: "\f852";
}
.fi-bs-kip-sign:before {
content: "\f853";
}
.fi-bs-kiss-beam:before {
content: "\f854";
}
.fi-bs-kiss-wink-heart:before {
content: "\f855";
}
.fi-bs-kiss:before {
content: "\f856";
}
.fi-bs-kite:before {
content: "\f857";
}
.fi-bs-kiwi-bird:before {
content: "\f858";
}
.fi-bs-kiwi-fruit:before {
content: "\f859";
}
.fi-bs-knife-kitchen:before {
content: "\f85a";
}
.fi-bs-knife:before {
content: "\f85b";
}
.fi-bs-knitting:before {
content: "\f85c";
}
.fi-bs-kpi-evaluation:before {
content: "\f85d";
}
.fi-bs-kpi:before {
content: "\f85e";
}
.fi-bs-l:before {
content: "\f85f";
}
.fi-bs-label:before {
content: "\f860";
}
.fi-bs-lacrosse-stick-ball:before {
content: "\f861";
}
.fi-bs-lacrosse-stick:before {
content: "\f862";
}
.fi-bs-lambda:before {
content: "\f863";
}
.fi-bs-lamp-desk:before {
content: "\f864";
}
.fi-bs-lamp-floor:before {
content: "\f865";
}
.fi-bs-lamp-street:before {
content: "\f866";
}
.fi-bs-lamp:before {
content: "\f867";
}
.fi-bs-land-layer-location:before {
content: "\f868";
}
.fi-bs-land-layers:before {
content: "\f869";
}
.fi-bs-land-location:before {
content: "\f86a";
}
.fi-bs-landmark-alt:before {
content: "\f86b";
}
.fi-bs-language:before {
content: "\f86c";
}
.fi-bs-laptop-arrow-down:before {
content: "\f86d";
}
.fi-bs-laptop-binary:before {
content: "\f86e";
}
.fi-bs-laptop-code:before {
content: "\f86f";
}
.fi-bs-laptop-medical:before {
content: "\f870";
}
.fi-bs-laptop-mobile:before {
content: "\f871";
}
.fi-bs-laptop-slash:before {
content: "\f872";
}
.fi-bs-laptop:before {
content: "\f873";
}
.fi-bs-lari-sign:before {
content: "\f874";
}
.fi-bs-lasso-sparkles:before {
content: "\f875";
}
.fi-bs-lasso:before {
content: "\f876";
}
.fi-bs-last-square:before {
content: "\f877";
}
.fi-bs-laugh-beam:before {
content: "\f878";
}
.fi-bs-laugh-squint:before {
content: "\f879";
}
.fi-bs-laugh-wink:before {
content: "\f87a";
}
.fi-bs-laugh:before {
content: "\f87b";
}
.fi-bs-lawyer-man:before {
content: "\f87c";
}
.fi-bs-lawyer-woman:before {
content: "\f87d";
}
.fi-bs-layer-minus:before {
content: "\f87e";
}
.fi-bs-layer-plus:before {
content: "\f87f";
}
.fi-bs-layers:before {
content: "\f880";
}
.fi-bs-layout-fluid:before {
content: "\f881";
}
.fi-bs-lead-funnel:before {
content: "\f882";
}
.fi-bs-lead-management:before {
content: "\f883";
}
.fi-bs-lead:before {
content: "\f884";
}
.fi-bs-leader-alt:before {
content: "\f885";
}
.fi-bs-leader-speech:before {
content: "\f886";
}
.fi-bs-leader:before {
content: "\f887";
}
.fi-bs-leaderboard-alt:before {
content: "\f888";
}
.fi-bs-leaderboard-trophy:before {
content: "\f889";
}
.fi-bs-leaderboard:before {
content: "\f88a";
}
.fi-bs-leadership-alt:before {
content: "\f88b";
}
.fi-bs-leadership:before {
content: "\f88c";
}
.fi-bs-leaf-heart:before {
content: "\f88d";
}
.fi-bs-leaf-maple:before {
content: "\f88e";
}
.fi-bs-leaf-oak:before {
content: "\f88f";
}
.fi-bs-leaf:before {
content: "\f890";
}
.fi-bs-leafy-green:before {
content: "\f891";
}
.fi-bs-leave:before {
content: "\f892";
}
.fi-bs-left-from-bracket:before {
content: "\f893";
}
.fi-bs-left:before {
content: "\f894";
}
.fi-bs-legal:before {
content: "\f895";
}
.fi-bs-lemon:before {
content: "\f896";
}
.fi-bs-lesbian-couple:before {
content: "\f897";
}
.fi-bs-less-than-equal:before {
content: "\f898";
}
.fi-bs-less-than:before {
content: "\f899";
}
.fi-bs-lesson-class:before {
content: "\f89a";
}
.fi-bs-lesson:before {
content: "\f89b";
}
.fi-bs-letter-case:before {
content: "\f89c";
}
.fi-bs-lettuce:before {
content: "\f89d";
}
.fi-bs-level-down-alt:before {
content: "\f89e";
}
.fi-bs-level-down:before {
content: "\f89f";
}
.fi-bs-level-up-alt:before {
content: "\f8a0";
}
.fi-bs-level-up:before {
content: "\f8a1";
}
.fi-bs-license:before {
content: "\f8a2";
}
.fi-bs-life-ring:before {
content: "\f8a3";
}
.fi-bs-life:before {
content: "\f8a4";
}
.fi-bs-light-ceiling:before {
content: "\f8a5";
}
.fi-bs-light-emergency-on:before {
content: "\f8a6";
}
.fi-bs-light-emergency:before {
content: "\f8a7";
}
.fi-bs-light-switch-off:before {
content: "\f8a8";
}
.fi-bs-light-switch-on:before {
content: "\f8a9";
}
.fi-bs-light-switch:before {
content: "\f8aa";
}
.fi-bs-lightbulb-cfl-on:before {
content: "\f8ab";
}
.fi-bs-lightbulb-cfl:before {
content: "\f8ac";
}
.fi-bs-lightbulb-dollar:before {
content: "\f8ad";
}
.fi-bs-lightbulb-exclamation:before {
content: "\f8ae";
}
.fi-bs-lightbulb-head:before {
content: "\f8af";
}
.fi-bs-lightbulb-on:before {
content: "\f8b0";
}
.fi-bs-lightbulb-question:before {
content: "\f8b1";
}
.fi-bs-lightbulb-setting:before {
content: "\f8b2";
}
.fi-bs-lightbulb-slash:before {
content: "\f8b3";
}
.fi-bs-lighthouse:before {
content: "\f8b4";
}
.fi-bs-lights-holiday:before {
content: "\f8b5";
}
.fi-bs-limit-hand:before {
content: "\f8b6";
}
.fi-bs-limit-speedometer:before {
content: "\f8b7";
}
.fi-bs-line-width:before {
content: "\f8b8";
}
.fi-bs-link-alt:before {
content: "\f8b9";
}
.fi-bs-link-horizontal-slash:before {
content: "\f8ba";
}
.fi-bs-link-horizontal:before {
content: "\f8bb";
}
.fi-bs-link-slash-alt:before {
content: "\f8bc";
}
.fi-bs-link-slash:before {
content: "\f8bd";
}
.fi-bs-link:before {
content: "\f8be";
}
.fi-bs-lion-head:before {
content: "\f8bf";
}
.fi-bs-lion:before {
content: "\f8c0";
}
.fi-bs-lips:before {
content: "\f8c1";
}
.fi-bs-lipstick:before {
content: "\f8c2";
}
.fi-bs-lira-sign:before {
content: "\f8c3";
}
.fi-bs-list-check:before {
content: "\f8c4";
}
.fi-bs-list-dropdown:before {
content: "\f8c5";
}
.fi-bs-list-music:before {
content: "\f8c6";
}
.fi-bs-list-timeline:before {
content: "\f8c7";
}
.fi-bs-list:before {
content: "\f8c8";
}
.fi-bs-litecoin-sign:before {
content: "\f8c9";
}
.fi-bs-live-alt:before {
content: "\f8ca";
}
.fi-bs-live:before {
content: "\f8cb";
}
.fi-bs-loading:before {
content: "\f8cc";
}
.fi-bs-loan:before {
content: "\f8cd";
}
.fi-bs-lobster:before {
content: "\f8ce";
}
.fi-bs-location-alt:before {
content: "\f8cf";
}
.fi-bs-location-arrow:before {
content: "\f8d0";
}
.fi-bs-location-crosshairs-slash:before {
content: "\f8d1";
}
.fi-bs-location-crosshairs:before {
content: "\f8d2";
}
.fi-bs-location-dot-slash:before {
content: "\f8d3";
}
.fi-bs-location-exclamation:before {
content: "\f8d4";
}
.fi-bs-location-pin-call:before {
content: "\f8d5";
}
.fi-bs-lock-alt:before {
content: "\f8d6";
}
.fi-bs-lock-hashtag:before {
content: "\f8d7";
}
.fi-bs-lock-open-alt:before {
content: "\f8d8";
}
.fi-bs-lock:before {
content: "\f8d9";
}
.fi-bs-locust:before {
content: "\f8da";
}
.fi-bs-loop-square:before {
content: "\f8db";
}
.fi-bs-loveseat:before {
content: "\f8dc";
}
.fi-bs-low-vision:before {
content: "\f8dd";
}
.fi-bs-luchador:before {
content: "\f8de";
}
.fi-bs-luggage-cart:before {
content: "\f8df";
}
.fi-bs-luggage-rolling:before {
content: "\f8e0";
}
.fi-bs-lungs-virus:before {
content: "\f8e1";
}
.fi-bs-lungs:before {
content: "\f8e2";
}
.fi-bs-m:before {
content: "\f8e3";
}
.fi-bs-mace:before {
content: "\f8e4";
}
.fi-bs-magic-wand:before {
content: "\f8e5";
}
.fi-bs-magnet-user:before {
content: "\f8e6";
}
.fi-bs-magnet:before {
content: "\f8e7";
}
.fi-bs-mailbox-envelope:before {
content: "\f8e8";
}
.fi-bs-mailbox-flag-up:before {
content: "\f8e9";
}
.fi-bs-mailbox:before {
content: "\f8ea";
}
.fi-bs-makeup-brush:before {
content: "\f8eb";
}
.fi-bs-man-head:before {
content: "\f8ec";
}
.fi-bs-man-scientist:before {
content: "\f8ed";
}
.fi-bs-manat-sign:before {
content: "\f8ee";
}
.fi-bs-mandolin:before {
content: "\f8ef";
}
.fi-bs-mango:before {
content: "\f8f0";
}
.fi-bs-manhole:before {
content: "\f8f1";
}
.fi-bs-map-location-track:before {
content: "\f8f2";
}
.fi-bs-map-marker-check:before {
content: "\f8f3";
}
.fi-bs-map-marker-cross:before {
content: "\f8f4";
}
.fi-bs-map-marker-edit:before {
content: "\f8f5";
}
.fi-bs-map-marker-home:before {
content: "\f8f6";
}
.fi-bs-map-marker-minus:before {
content: "\f8f7";
}
.fi-bs-map-marker-plus:before {
content: "\f8f8";
}
.fi-bs-map-marker-question:before {
content: "\f8f9";
}
.fi-bs-map-marker-slash:before {
content: "\f8fa";
}
.fi-bs-map-marker-smile:before {
content: "\f8fb";
}
.fi-bs-map-marker:before {
content: "\f8fc";
}
.fi-bs-map-pin:before {
content: "\f8fd";
}
.fi-bs-map-point:before {
content: "\f8fe";
}
.fi-bs-map:before {
content: "\f8ff";
}
.fi-bs-marker-time:before {
content: "\f900";
}
.fi-bs-marker:before {
content: "\f901";
}
.fi-bs-marketplace-alt:before {
content: "\f902";
}
.fi-bs-marketplace-store:before {
content: "\f903";
}
.fi-bs-marketplace:before {
content: "\f904";
}
.fi-bs-mars-double:before {
content: "\f905";
}
.fi-bs-mars-stroke-right:before {
content: "\f906";
}
.fi-bs-mars-stroke-up:before {
content: "\f907";
}
.fi-bs-mars:before {
content: "\f908";
}
.fi-bs-martini-glass-citrus:before {
content: "\f909";
}
.fi-bs-martini-glass-empty:before {
content: "\f90a";
}
.fi-bs-mask-carnival:before {
content: "\f90b";
}
.fi-bs-mask-face:before {
content: "\f90c";
}
.fi-bs-mask-snorkel:before {
content: "\f90d";
}
.fi-bs-massage:before {
content: "\f90e";
}
.fi-bs-match-fire:before {
content: "\f90f";
}
.fi-bs-mattress-pillow:before {
content: "\f910";
}
.fi-bs-measuring-tape:before {
content: "\f911";
}
.fi-bs-meat:before {
content: "\f912";
}
.fi-bs-medal:before {
content: "\f913";
}
.fi-bs-medical-star:before {
content: "\f914";
}
.fi-bs-medicine:before {
content: "\f915";
}
.fi-bs-meditation:before {
content: "\f916";
}
.fi-bs-meeting-alt:before {
content: "\f917";
}
.fi-bs-meeting:before {
content: "\f918";
}
.fi-bs-megaphone-announcement-leader:before {
content: "\f919";
}
.fi-bs-megaphone:before {
content: "\f91a";
}
.fi-bs-meh-blank:before {
content: "\f91b";
}
.fi-bs-meh-rolling-eyes:before {
content: "\f91c";
}
.fi-bs-meh:before {
content: "\f91d";
}
.fi-bs-melon-alt:before {
content: "\f91e";
}
.fi-bs-melon:before {
content: "\f91f";
}
.fi-bs-member-list:before {
content: "\f920";
}
.fi-bs-member-search:before {
content: "\f921";
}
.fi-bs-membership-vip:before {
content: "\f922";
}
.fi-bs-membership:before {
content: "\f923";
}
.fi-bs-memo-circle-check:before {
content: "\f924";
}
.fi-bs-memo-pad:before {
content: "\f925";
}
.fi-bs-memo:before {
content: "\f926";
}
.fi-bs-memory:before {
content: "\f927";
}
.fi-bs-menu-burger:before {
content: "\f928";
}
.fi-bs-menu-dots-vertical:before {
content: "\f929";
}
.fi-bs-menu-dots:before {
content: "\f92a";
}
.fi-bs-mercury:before {
content: "\f92b";
}
.fi-bs-message-arrow-down:before {
content: "\f92c";
}
.fi-bs-message-arrow-up-right:before {
content: "\f92d";
}
.fi-bs-message-arrow-up:before {
content: "\f92e";
}
.fi-bs-message-bot:before {
content: "\f92f";
}
.fi-bs-message-code:before {
content: "\f930";
}
.fi-bs-message-dollar:before {
content: "\f931";
}
.fi-bs-message-heart:before {
content: "\f932";
}
.fi-bs-message-image:before {
content: "\f933";
}
.fi-bs-message-question:before {
content: "\f934";
}
.fi-bs-message-quote:before {
content: "\f935";
}
.fi-bs-message-slash:before {
content: "\f936";
}
.fi-bs-message-sms:before {
content: "\f937";
}
.fi-bs-message-text:before {
content: "\f938";
}
.fi-bs-message-xmark:before {
content: "\f939";
}
.fi-bs-messages-dollar:before {
content: "\f93a";
}
.fi-bs-messages-question:before {
content: "\f93b";
}
.fi-bs-messages:before {
content: "\f93c";
}
.fi-bs-meteor:before {
content: "\f93d";
}
.fi-bs-meter-bolt:before {
content: "\f93e";
}
.fi-bs-meter-droplet:before {
content: "\f93f";
}
.fi-bs-meter-fire:before {
content: "\f940";
}
.fi-bs-meter:before {
content: "\f941";
}
.fi-bs-method:before {
content: "\f942";
}
.fi-bs-microchip-ai:before {
content: "\f943";
}
.fi-bs-microchip:before {
content: "\f944";
}
.fi-bs-microphone-alt:before {
content: "\f945";
}
.fi-bs-microphone-slash:before {
content: "\f946";
}
.fi-bs-microphone:before {
content: "\f947";
}
.fi-bs-microscope:before {
content: "\f948";
}
.fi-bs-microwave:before {
content: "\f949";
}
.fi-bs-milk-alt:before {
content: "\f94a";
}
.fi-bs-milk:before {
content: "\f94b";
}
.fi-bs-mill-sign:before {
content: "\f94c";
}
.fi-bs-mind-share:before {
content: "\f94d";
}
.fi-bs-minus-circle:before {
content: "\f94e";
}
.fi-bs-minus-hexagon:before {
content: "\f94f";
}
.fi-bs-minus-small:before {
content: "\f950";
}
.fi-bs-minus:before {
content: "\f951";
}
.fi-bs-mistletoe:before {
content: "\f952";
}
.fi-bs-mix:before {
content: "\f953";
}
.fi-bs-mobile-button:before {
content: "\f954";
}
.fi-bs-mobile-notch:before {
content: "\f955";
}
.fi-bs-mobile:before {
content: "\f956";
}
.fi-bs-mockup:before {
content: "\f957";
}
.fi-bs-mode-alt:before {
content: "\f958";
}
.fi-bs-mode-landscape:before {
content: "\f959";
}
.fi-bs-mode-portrait:before {
content: "\f95a";
}
.fi-bs-mode:before {
content: "\f95b";
}
.fi-bs-model-cube-arrows:before {
content: "\f95c";
}
.fi-bs-model-cube-space:before {
content: "\f95d";
}
.fi-bs-model-cube:before {
content: "\f95e";
}
.fi-bs-module:before {
content: "\f95f";
}
.fi-bs-monday:before {
content: "\f960";
}
.fi-bs-money-bill-simple:before {
content: "\f961";
}
.fi-bs-money-bill-transfer:before {
content: "\f962";
}
.fi-bs-money-bill-wave-alt:before {
content: "\f963";
}
.fi-bs-money-bill-wave:before {
content: "\f964";
}
.fi-bs-money-bills-simple:before {
content: "\f965";
}
.fi-bs-money-bills:before {
content: "\f966";
}
.fi-bs-money-check-edit-alt:before {
content: "\f967";
}
.fi-bs-money-check-edit:before {
content: "\f968";
}
.fi-bs-money-check:before {
content: "\f969";
}
.fi-bs-money-coin-transfer:before {
content: "\f96a";
}
.fi-bs-money-from-bracket:before {
content: "\f96b";
}
.fi-bs-money-simple-from-bracket:before {
content: "\f96c";
}
.fi-bs-money-transfer-alt:before {
content: "\f96d";
}
.fi-bs-money-transfer-coin-arrow:before {
content: "\f96e";
}
.fi-bs-money-transfer-smartphone:before {
content: "\f96f";
}
.fi-bs-money-wings:before {
content: "\f970";
}
.fi-bs-money:before {
content: "\f971";
}
.fi-bs-monkey:before {
content: "\f972";
}
.fi-bs-monument:before {
content: "\f973";
}
.fi-bs-moon-stars:before {
content: "\f974";
}
.fi-bs-moon:before {
content: "\f975";
}
.fi-bs-moped:before {
content: "\f976";
}
.fi-bs-mortar-pestle:before {
content: "\f977";
}
.fi-bs-mortgage:before {
content: "\f978";
}
.fi-bs-mosque-alt:before {
content: "\f979";
}
.fi-bs-mosque-moon:before {
content: "\f97a";
}
.fi-bs-mosque:before {
content: "\f97b";
}
.fi-bs-mosquito-net:before {
content: "\f97c";
}
.fi-bs-mosquito:before {
content: "\f97d";
}
.fi-bs-motorcycle:before {
content: "\f97e";
}
.fi-bs-mound:before {
content: "\f97f";
}
.fi-bs-mountain-city:before {
content: "\f980";
}
.fi-bs-mountain:before {
content: "\f981";
}
.fi-bs-mountains:before {
content: "\f982";
}
.fi-bs-mouse-field:before {
content: "\f983";
}
.fi-bs-mouse:before {
content: "\f984";
}
.fi-bs-mov-file:before {
content: "\f985";
}
.fi-bs-move-to-folder-2:before {
content: "\f986";
}
.fi-bs-move-to-folder:before {
content: "\f987";
}
.fi-bs-mp3-file:before {
content: "\f988";
}
.fi-bs-mp3-player:before {
content: "\f989";
}
.fi-bs-mp4-file:before {
content: "\f98a";
}
.fi-bs-mug-alt:before {
content: "\f98b";
}
.fi-bs-mug-hot-alt:before {
content: "\f98c";
}
.fi-bs-mug-hot:before {
content: "\f98d";
}
.fi-bs-mug-marshmallows:before {
content: "\f98e";
}
.fi-bs-mug-tea-saucer:before {
content: "\f98f";
}
.fi-bs-mug-tea:before {
content: "\f990";
}
.fi-bs-mug:before {
content: "\f991";
}
.fi-bs-multiple-alt:before {
content: "\f992";
}
.fi-bs-multiple:before {
content: "\f993";
}
.fi-bs-muscle:before {
content: "\f994";
}
.fi-bs-mushroom-alt:before {
content: "\f995";
}
.fi-bs-mushroom:before {
content: "\f996";
}
.fi-bs-music-alt:before {
content: "\f997";
}
.fi-bs-music-file:before {
content: "\f998";
}
.fi-bs-music-note-slash:before {
content: "\f999";
}
.fi-bs-music-note:before {
content: "\f99a";
}
.fi-bs-music-slash:before {
content: "\f99b";
}
.fi-bs-music:before {
content: "\f99c";
}
.fi-bs-n:before {
content: "\f99d";
}
.fi-bs-naira-sign:before {
content: "\f99e";
}
.fi-bs-narwhal:before {
content: "\f99f";
}
.fi-bs-navigation:before {
content: "\f9a0";
}
.fi-bs-nesting-dolls:before {
content: "\f9a1";
}
.fi-bs-network-analytic:before {
content: "\f9a2";
}
.fi-bs-network-cloud:before {
content: "\f9a3";
}
.fi-bs-network:before {
content: "\f9a4";
}
.fi-bs-neuter:before {
content: "\f9a5";
}
.fi-bs-newsletter-subscribe:before {
content: "\f9a6";
}
.fi-bs-newspaper-open:before {
content: "\f9a7";
}
.fi-bs-newspaper:before {
content: "\f9a8";
}
.fi-bs-nfc-lock:before {
content: "\f9a9";
}
.fi-bs-nfc-magnifying-glass:before {
content: "\f9aa";
}
.fi-bs-nfc-pen:before {
content: "\f9ab";
}
.fi-bs-nfc-slash:before {
content: "\f9ac";
}
.fi-bs-nfc-trash:before {
content: "\f9ad";
}
.fi-bs-nfc:before {
content: "\f9ae";
}
.fi-bs-night-day:before {
content: "\f9af";
}
.fi-bs-no-fee:before {
content: "\f9b0";
}
.fi-bs-no-people:before {
content: "\f9b1";
}
.fi-bs-noodles:before {
content: "\f9b2";
}
.fi-bs-nose:before {
content: "\f9b3";
}
.fi-bs-not-equal:before {
content: "\f9b4";
}
.fi-bs-not-found-alt:before {
content: "\f9b5";
}
.fi-bs-not-found-magnifying-glass:before {
content: "\f9b6";
}
.fi-bs-not-found:before {
content: "\f9b7";
}
.fi-bs-notdef:before {
content: "\f9b8";
}
.fi-bs-note-medical:before {
content: "\f9b9";
}
.fi-bs-note-sticky:before {
content: "\f9ba";
}
.fi-bs-note:before {
content: "\f9bb";
}
.fi-bs-notebook-alt:before {
content: "\f9bc";
}
.fi-bs-notebook:before {
content: "\f9bd";
}
.fi-bs-notes-medical:before {
content: "\f9be";
}
.fi-bs-notes:before {
content: "\f9bf";
}
.fi-bs-o:before {
content: "\f9c0";
}
.fi-bs-object-exclude:before {
content: "\f9c1";
}
.fi-bs-object-group:before {
content: "\f9c2";
}
.fi-bs-object-intersect:before {
content: "\f9c3";
}
.fi-bs-object-subtract:before {
content: "\f9c4";
}
.fi-bs-object-ungroup:before {
content: "\f9c5";
}
.fi-bs-object-union:before {
content: "\f9c6";
}
.fi-bs-objects-column:before {
content: "\f9c7";
}
.fi-bs-octagon-check:before {
content: "\f9c8";
}
.fi-bs-octagon-divide:before {
content: "\f9c9";
}
.fi-bs-octagon-exclamation:before {
content: "\f9ca";
}
.fi-bs-octagon-minus:before {
content: "\f9cb";
}
.fi-bs-octagon-plus:before {
content: "\f9cc";
}
.fi-bs-octagon-xmark:before {
content: "\f9cd";
}
.fi-bs-octagon:before {
content: "\f9ce";
}
.fi-bs-oil-can:before {
content: "\f9cf";
}
.fi-bs-oil-temp:before {
content: "\f9d0";
}
.fi-bs-olive-oil:before {
content: "\f9d1";
}
.fi-bs-olive:before {
content: "\f9d2";
}
.fi-bs-olives:before {
content: "\f9d3";
}
.fi-bs-om:before {
content: "\f9d4";
}
.fi-bs-omega:before {
content: "\f9d5";
}
.fi-bs-onboarding:before {
content: "\f9d6";
}
.fi-bs-onion:before {
content: "\f9d7";
}
.fi-bs-opacity:before {
content: "\f9d8";
}
.fi-bs-open-mail-clip:before {
content: "\f9d9";
}
.fi-bs-operating-system-upgrade:before {
content: "\f9da";
}
.fi-bs-operation:before {
content: "\f9db";
}
.fi-bs-order-history:before {
content: "\f9dc";
}
.fi-bs-organization-chart:before {
content: "\f9dd";
}
.fi-bs-ornament:before {
content: "\f9de";
}
.fi-bs-otp:before {
content: "\f9df";
}
.fi-bs-otter:before {
content: "\f9e0";
}
.fi-bs-outdent:before {
content: "\f9e1";
}
.fi-bs-oval-alt:before {
content: "\f9e2";
}
.fi-bs-oval:before {
content: "\f9e3";
}
.fi-bs-oven:before {
content: "\f9e4";
}
.fi-bs-overline:before {
content: "\f9e5";
}
.fi-bs-overview:before {
content: "\f9e6";
}
.fi-bs-p:before {
content: "\f9e7";
}
.fi-bs-package:before {
content: "\f9e8";
}
.fi-bs-padlock-check:before {
content: "\f9e9";
}
.fi-bs-page-break:before {
content: "\f9ea";
}
.fi-bs-pager:before {
content: "\f9eb";
}
.fi-bs-paid:before {
content: "\f9ec";
}
.fi-bs-paint-brush:before {
content: "\f9ed";
}
.fi-bs-paint-roller:before {
content: "\f9ee";
}
.fi-bs-paintbrush-pencil:before {
content: "\f9ef";
}
.fi-bs-palette:before {
content: "\f9f0";
}
.fi-bs-pallet-alt:before {
content: "\f9f1";
}
.fi-bs-pallet:before {
content: "\f9f2";
}
.fi-bs-pan-food:before {
content: "\f9f3";
}
.fi-bs-pan-frying:before {
content: "\f9f4";
}
.fi-bs-pan:before {
content: "\f9f5";
}
.fi-bs-pancakes:before {
content: "\f9f6";
}
.fi-bs-panorama:before {
content: "\f9f7";
}
.fi-bs-paper-plane-launch:before {
content: "\f9f8";
}
.fi-bs-paper-plane-top:before {
content: "\f9f9";
}
.fi-bs-paper-plane:before {
content: "\f9fa";
}
.fi-bs-paperclip-vertical:before {
content: "\f9fb";
}
.fi-bs-parachute-box:before {
content: "\f9fc";
}
.fi-bs-paragraph-left:before {
content: "\f9fd";
}
.fi-bs-paragraph:before {
content: "\f9fe";
}
.fi-bs-parking-circle-slash:before {
content: "\f9ff";
}
.fi-bs-parking-circle:before {
content: "\fa00";
}
.fi-bs-parking-slash:before {
content: "\fa01";
}
.fi-bs-parking:before {
content: "\fa02";
}
.fi-bs-party-bell:before {
content: "\fa03";
}
.fi-bs-party-horn:before {
content: "\fa04";
}
.fi-bs-passport:before {
content: "\fa05";
}
.fi-bs-password-alt:before {
content: "\fa06";
}
.fi-bs-password-computer:before {
content: "\fa07";
}
.fi-bs-password-email:before {
content: "\fa08";
}
.fi-bs-password-smartphone:before {
content: "\fa09";
}
.fi-bs-password:before {
content: "\fa0a";
}
.fi-bs-paste:before {
content: "\fa0b";
}
.fi-bs-pattern:before {
content: "\fa0c";
}
.fi-bs-pause-circle:before {
content: "\fa0d";
}
.fi-bs-pause-square:before {
content: "\fa0e";
}
.fi-bs-pause:before {
content: "\fa0f";
}
.fi-bs-paw-claws:before {
content: "\fa10";
}
.fi-bs-paw-heart:before {
content: "\fa11";
}
.fi-bs-paw:before {
content: "\fa12";
}
.fi-bs-payment-pos:before {
content: "\fa13";
}
.fi-bs-payroll-calendar:before {
content: "\fa14";
}
.fi-bs-payroll-check:before {
content: "\fa15";
}
.fi-bs-payroll:before {
content: "\fa16";
}
.fi-bs-peace:before {
content: "\fa17";
}
.fi-bs-peach:before {
content: "\fa18";
}
.fi-bs-peanut:before {
content: "\fa19";
}
.fi-bs-peanuts:before {
content: "\fa1a";
}
.fi-bs-peapod:before {
content: "\fa1b";
}
.fi-bs-pear:before {
content: "\fa1c";
}
.fi-bs-pedestal:before {
content: "\fa1d";
}
.fi-bs-pen-circle:before {
content: "\fa1e";
}
.fi-bs-pen-clip-slash:before {
content: "\fa1f";
}
.fi-bs-pen-clip:before {
content: "\fa20";
}
.fi-bs-pen-fancy-slash:before {
content: "\fa21";
}
.fi-bs-pen-fancy:before {
content: "\fa22";
}
.fi-bs-pen-field:before {
content: "\fa23";
}
.fi-bs-pen-nib-slash:before {
content: "\fa24";
}
.fi-bs-pen-nib:before {
content: "\fa25";
}
.fi-bs-pen-slash:before {
content: "\fa26";
}
.fi-bs-pen-square:before {
content: "\fa27";
}
.fi-bs-pen-swirl:before {
content: "\fa28";
}
.fi-bs-pencil-paintbrush:before {
content: "\fa29";
}
.fi-bs-pencil-ruler:before {
content: "\fa2a";
}
.fi-bs-pencil-slash:before {
content: "\fa2b";
}
.fi-bs-pencil:before {
content: "\fa2c";
}
.fi-bs-pending:before {
content: "\fa2d";
}
.fi-bs-pennant:before {
content: "\fa2e";
}
.fi-bs-people-arrows-left-right:before {
content: "\fa2f";
}
.fi-bs-people-carry-box:before {
content: "\fa30";
}
.fi-bs-people-dress:before {
content: "\fa31";
}
.fi-bs-people-network-partner:before {
content: "\fa32";
}
.fi-bs-people-pants:before {
content: "\fa33";
}
.fi-bs-people-poll:before {
content: "\fa34";
}
.fi-bs-people-pulling:before {
content: "\fa35";
}
.fi-bs-people-roof:before {
content: "\fa36";
}
.fi-bs-people:before {
content: "\fa37";
}
.fi-bs-pepper-alt:before {
content: "\fa38";
}
.fi-bs-pepper-hot:before {
content: "\fa39";
}
.fi-bs-pepper:before {
content: "\fa3a";
}
.fi-bs-percent-10:before {
content: "\fa3b";
}
.fi-bs-percent-100:before {
content: "\fa3c";
}
.fi-bs-percent-20:before {
content: "\fa3d";
}
.fi-bs-percent-25:before {
content: "\fa3e";
}
.fi-bs-percent-30:before {
content: "\fa3f";
}
.fi-bs-percent-40:before {
content: "\fa40";
}
.fi-bs-percent-50:before {
content: "\fa41";
}
.fi-bs-percent-60:before {
content: "\fa42";
}
.fi-bs-percent-70:before {
content: "\fa43";
}
.fi-bs-percent-75:before {
content: "\fa44";
}
.fi-bs-percent-80:before {
content: "\fa45";
}
.fi-bs-percent-90:before {
content: "\fa46";
}
.fi-bs-percentage:before {
content: "\fa47";
}
.fi-bs-person-burst:before {
content: "\fa48";
}
.fi-bs-person-carry-box:before {
content: "\fa49";
}
.fi-bs-person-circle-check:before {
content: "\fa4a";
}
.fi-bs-person-circle-exclamation:before {
content: "\fa4b";
}
.fi-bs-person-circle-minus:before {
content: "\fa4c";
}
.fi-bs-person-circle-plus:before {
content: "\fa4d";
}
.fi-bs-person-circle-question:before {
content: "\fa4e";
}
.fi-bs-person-circle-xmark:before {
content: "\fa4f";
}
.fi-bs-person-cv:before {
content: "\fa50";
}
.fi-bs-person-dolly-empty:before {
content: "\fa51";
}
.fi-bs-person-dolly:before {
content: "\fa52";
}
.fi-bs-person-dress-simple:before {
content: "\fa53";
}
.fi-bs-person-dress:before {
content: "\fa54";
}
.fi-bs-person-luggage:before {
content: "\fa55";
}
.fi-bs-person-lunge:before {
content: "\fa56";
}
.fi-bs-person-pilates:before {
content: "\fa57";
}
.fi-bs-person-praying:before {
content: "\fa58";
}
.fi-bs-person-pregnant:before {
content: "\fa59";
}
.fi-bs-person-seat-reclined:before {
content: "\fa5a";
}
.fi-bs-person-seat:before {
content: "\fa5b";
}
.fi-bs-person-shelter:before {
content: "\fa5c";
}
.fi-bs-person-sign:before {
content: "\fa5d";
}
.fi-bs-person-simple:before {
content: "\fa5e";
}
.fi-bs-person-walking-with-cane:before {
content: "\fa5f";
}
.fi-bs-peseta-sign:before {
content: "\fa60";
}
.fi-bs-peso-sign:before {
content: "\fa61";
}
.fi-bs-pets:before {
content: "\fa62";
}
.fi-bs-pharmacy:before {
content: "\fa63";
}
.fi-bs-phone-call:before {
content: "\fa64";
}
.fi-bs-phone-cross:before {
content: "\fa65";
}
.fi-bs-phone-flip:before {
content: "\fa66";
}
.fi-bs-phone-guide:before {
content: "\fa67";
}
.fi-bs-phone-heart-message:before {
content: "\fa68";
}
.fi-bs-phone-office:before {
content: "\fa69";
}
.fi-bs-phone-pause:before {
content: "\fa6a";
}
.fi-bs-phone-plus:before {
content: "\fa6b";
}
.fi-bs-phone-rotary:before {
content: "\fa6c";
}
.fi-bs-phone-slash:before {
content: "\fa6d";
}
.fi-bs-photo-capture:before {
content: "\fa6e";
}
.fi-bs-photo-film-music:before {
content: "\fa6f";
}
.fi-bs-photo-video:before {
content: "\fa70";
}
.fi-bs-physics:before {
content: "\fa71";
}
.fi-bs-Pi:before {
content: "\fa72";
}
.fi-bs-piano-keyboard:before {
content: "\fa73";
}
.fi-bs-piano:before {
content: "\fa74";
}
.fi-bs-pickaxe:before {
content: "\fa75";
}
.fi-bs-picking-box:before {
content: "\fa76";
}
.fi-bs-picking:before {
content: "\fa77";
}
.fi-bs-picnic:before {
content: "\fa78";
}
.fi-bs-picpeople-filled:before {
content: "\fa79";
}
.fi-bs-picpeople:before {
content: "\fa7a";
}
.fi-bs-picture:before {
content: "\fa7b";
}
.fi-bs-pie:before {
content: "\fa7c";
}
.fi-bs-pig-bank-bulb:before {
content: "\fa7d";
}
.fi-bs-pig-face:before {
content: "\fa7e";
}
.fi-bs-pig:before {
content: "\fa7f";
}
.fi-bs-piggy-bank-budget:before {
content: "\fa80";
}
.fi-bs-piggy-bank:before {
content: "\fa81";
}
.fi-bs-pills:before {
content: "\fa82";
}
.fi-bs-pinata:before {
content: "\fa83";
}
.fi-bs-pineapple-alt:before {
content: "\fa84";
}
.fi-bs-pineapple:before {
content: "\fa85";
}
.fi-bs-ping-pong:before {
content: "\fa86";
}
.fi-bs-pipe-smoking:before {
content: "\fa87";
}
.fi-bs-pizza-slice:before {
content: "\fa88";
}
.fi-bs-place-of-worship:before {
content: "\fa89";
}
.fi-bs-plan-strategy:before {
content: "\fa8a";
}
.fi-bs-plan:before {
content: "\fa8b";
}
.fi-bs-plane-alt:before {
content: "\fa8c";
}
.fi-bs-plane-arrival:before {
content: "\fa8d";
}
.fi-bs-plane-departure:before {
content: "\fa8e";
}
.fi-bs-plane-prop:before {
content: "\fa8f";
}
.fi-bs-plane-slash:before {
content: "\fa90";
}
.fi-bs-plane-tail:before {
content: "\fa91";
}
.fi-bs-plane:before {
content: "\fa92";
}
.fi-bs-planet-moon:before {
content: "\fa93";
}
.fi-bs-planet-ringed:before {
content: "\fa94";
}
.fi-bs-plant-care:before {
content: "\fa95";
}
.fi-bs-plant-growth:before {
content: "\fa96";
}
.fi-bs-plant-seed-invest:before {
content: "\fa97";
}
.fi-bs-plant-wilt:before {
content: "\fa98";
}
.fi-bs-plate-utensils:before {
content: "\fa99";
}
.fi-bs-plate-wheat:before {
content: "\fa9a";
}
.fi-bs-plate:before {
content: "\fa9b";
}
.fi-bs-play-alt:before {
content: "\fa9c";
}
.fi-bs-play-circle:before {
content: "\fa9d";
}
.fi-bs-play-microphone:before {
content: "\fa9e";
}
.fi-bs-play-pause:before {
content: "\fa9f";
}
.fi-bs-play:before {
content: "\faa0";
}
.fi-bs-playing-cards:before {
content: "\faa1";
}
.fi-bs-plug-alt:before {
content: "\faa2";
}
.fi-bs-plug-cable:before {
content: "\faa3";
}
.fi-bs-plug-circle-bolt:before {
content: "\faa4";
}
.fi-bs-plug-circle-check:before {
content: "\faa5";
}
.fi-bs-plug-circle-exclamation:before {
content: "\faa6";
}
.fi-bs-plug-circle-minus:before {
content: "\faa7";
}
.fi-bs-plug-circle-plus:before {
content: "\faa8";
}
.fi-bs-plug-connection:before {
content: "\faa9";
}
.fi-bs-plug:before {
content: "\faaa";
}
.fi-bs-plus-hexagon:before {
content: "\faab";
}
.fi-bs-plus-minus:before {
content: "\faac";
}
.fi-bs-plus-small:before {
content: "\faad";
}
.fi-bs-plus:before {
content: "\faae";
}
.fi-bs-png-file:before {
content: "\faaf";
}
.fi-bs-podcast:before {
content: "\fab0";
}
.fi-bs-podium-star:before {
content: "\fab1";
}
.fi-bs-podium-victory-leader:before {
content: "\fab2";
}
.fi-bs-podium:before {
content: "\fab3";
}
.fi-bs-point-of-sale-bill:before {
content: "\fab4";
}
.fi-bs-point-of-sale-signal:before {
content: "\fab5";
}
.fi-bs-point-of-sale:before {
content: "\fab6";
}
.fi-bs-pointer-loading:before {
content: "\fab7";
}
.fi-bs-pointer-text:before {
content: "\fab8";
}
.fi-bs-poker-chip:before {
content: "\fab9";
}
.fi-bs-police-box:before {
content: "\faba";
}
.fi-bs-poll-h:before {
content: "\fabb";
}
.fi-bs-pollution:before {
content: "\fabc";
}
.fi-bs-pompebled:before {
content: "\fabd";
}
.fi-bs-poo-bolt:before {
content: "\fabe";
}
.fi-bs-poo:before {
content: "\fabf";
}
.fi-bs-pool-8-ball:before {
content: "\fac0";
}
.fi-bs-poop:before {
content: "\fac1";
}
.fi-bs-popcorn:before {
content: "\fac2";
}
.fi-bs-popsicle:before {
content: "\fac3";
}
.fi-bs-portal-enter:before {
content: "\fac4";
}
.fi-bs-portal-exit:before {
content: "\fac5";
}
.fi-bs-portrait:before {
content: "\fac6";
}
.fi-bs-postal-address:before {
content: "\fac7";
}
.fi-bs-pot:before {
content: "\fac8";
}
.fi-bs-potato:before {
content: "\fac9";
}
.fi-bs-pound:before {
content: "\faca";
}
.fi-bs-power:before {
content: "\facb";
}
.fi-bs-ppt-file:before {
content: "\facc";
}
.fi-bs-practice:before {
content: "\facd";
}
.fi-bs-praying-hands:before {
content: "\face";
}
.fi-bs-prescription-bottle-alt:before {
content: "\facf";
}
.fi-bs-prescription-bottle-pill:before {
content: "\fad0";
}
.fi-bs-prescription-bottle:before {
content: "\fad1";
}
.fi-bs-prescription:before {
content: "\fad2";
}
.fi-bs-presentation:before {
content: "\fad3";
}
.fi-bs-preview:before {
content: "\fad4";
}
.fi-bs-previous-square:before {
content: "\fad5";
}
.fi-bs-print-magnifying-glass:before {
content: "\fad6";
}
.fi-bs-print-slash:before {
content: "\fad7";
}
.fi-bs-print:before {
content: "\fad8";
}
.fi-bs-priority-arrow:before {
content: "\fad9";
}
.fi-bs-priority-arrows:before {
content: "\fada";
}
.fi-bs-priority-importance:before {
content: "\fadb";
}
.fi-bs-problem-solving:before {
content: "\fadc";
}
.fi-bs-procedures:before {
content: "\fadd";
}
.fi-bs-process:before {
content: "\fade";
}
.fi-bs-productivity:before {
content: "\fadf";
}
.fi-bs-progress-complete:before {
content: "\fae0";
}
.fi-bs-progress-download:before {
content: "\fae1";
}
.fi-bs-progress-upload:before {
content: "\fae2";
}
.fi-bs-projector:before {
content: "\fae3";
}
.fi-bs-protractor:before {
content: "\fae4";
}
.fi-bs-pulse:before {
content: "\fae5";
}
.fi-bs-pump-medical:before {
content: "\fae6";
}
.fi-bs-pump:before {
content: "\fae7";
}
.fi-bs-pumpkin-alt-2:before {
content: "\fae8";
}
.fi-bs-pumpkin-alt:before {
content: "\fae9";
}
.fi-bs-pumpkin:before {
content: "\faea";
}
.fi-bs-puzzle-alt:before {
content: "\faeb";
}
.fi-bs-puzzle-piece-integration:before {
content: "\faec";
}
.fi-bs-puzzle-piece:before {
content: "\faed";
}
.fi-bs-puzzle-pieces:before {
content: "\faee";
}
.fi-bs-pyramid:before {
content: "\faef";
}
.fi-bs-q:before {
content: "\faf0";
}
.fi-bs-qr-scan:before {
content: "\faf1";
}
.fi-bs-QR:before {
content: "\faf2";
}
.fi-bs-qrcode:before {
content: "\faf3";
}
.fi-bs-question-square:before {
content: "\faf4";
}
.fi-bs-question:before {
content: "\faf5";
}
.fi-bs-queue-alt:before {
content: "\faf6";
}
.fi-bs-queue-line:before {
content: "\faf7";
}
.fi-bs-queue-signal:before {
content: "\faf8";
}
.fi-bs-queue:before {
content: "\faf9";
}
.fi-bs-quill-pen-story:before {
content: "\fafa";
}
.fi-bs-quiz-alt:before {
content: "\fafb";
}
.fi-bs-quiz:before {
content: "\fafc";
}
.fi-bs-quote-right:before {
content: "\fafd";
}
.fi-bs-r:before {
content: "\fafe";
}
.fi-bs-rabbit-fast:before {
content: "\faff";
}
.fi-bs-rabbit:before {
content: "\fb00";
}
.fi-bs-raccoon:before {
content: "\fb01";
}
.fi-bs-racquet:before {
content: "\fb02";
}
.fi-bs-radar-monitoring-track:before {
content: "\fb03";
}
.fi-bs-radar:before {
content: "\fb04";
}
.fi-bs-radiation-alt:before {
content: "\fb05";
}
.fi-bs-radiation:before {
content: "\fb06";
}
.fi-bs-radio-alt:before {
content: "\fb07";
}
.fi-bs-radio-button:before {
content: "\fb08";
}
.fi-bs-radio:before {
content: "\fb09";
}
.fi-bs-radish:before {
content: "\fb0a";
}
.fi-bs-rainbow:before {
content: "\fb0b";
}
.fi-bs-raindrops:before {
content: "\fb0c";
}
.fi-bs-ram:before {
content: "\fb0d";
}
.fi-bs-ramp-loading:before {
content: "\fb0e";
}
.fi-bs-rank:before {
content: "\fb0f";
}
.fi-bs-ranking-podium-empty:before {
content: "\fb10";
}
.fi-bs-ranking-podium:before {
content: "\fb11";
}
.fi-bs-ranking-star:before {
content: "\fb12";
}
.fi-bs-ranking-stars:before {
content: "\fb13";
}
.fi-bs-raygun:before {
content: "\fb14";
}
.fi-bs-razor-barber:before {
content: "\fb15";
}
.fi-bs-react:before {
content: "\fb16";
}
.fi-bs-rec:before {
content: "\fb17";
}
.fi-bs-receipt:before {
content: "\fb18";
}
.fi-bs-recipe-book:before {
content: "\fb19";
}
.fi-bs-recipe:before {
content: "\fb1a";
}
.fi-bs-record-vinyl:before {
content: "\fb1b";
}
.fi-bs-rectabgle-vertical:before {
content: "\fb1c";
}
.fi-bs-rectangle-barcode:before {
content: "\fb1d";
}
.fi-bs-rectangle-code:before {
content: "\fb1e";
}
.fi-bs-rectangle-history-circle-plus:before {
content: "\fb1f";
}
.fi-bs-rectangle-horizontal:before {
content: "\fb20";
}
.fi-bs-rectangle-list:before {
content: "\fb21";
}
.fi-bs-rectangle-panoramic:before {
content: "\fb22";
}
.fi-bs-rectangle-pro:before {
content: "\fb23";
}
.fi-bs-rectangle-vertical-history:before {
content: "\fb24";
}
.fi-bs-rectangle-vertical:before {
content: "\fb25";
}
.fi-bs-rectangle-xmark:before {
content: "\fb26";
}
.fi-bs-rectangles-mixed:before {
content: "\fb27";
}
.fi-bs-recycle-bin:before {
content: "\fb28";
}
.fi-bs-recycle:before {
content: "\fb29";
}
.fi-bs-redo-alt:before {
content: "\fb2a";
}
.fi-bs-redo:before {
content: "\fb2b";
}
.fi-bs-reel:before {
content: "\fb2c";
}
.fi-bs-refer-arrow:before {
content: "\fb2d";
}
.fi-bs-refer:before {
content: "\fb2e";
}
.fi-bs-referral-alt:before {
content: "\fb2f";
}
.fi-bs-referral-user:before {
content: "\fb30";
}
.fi-bs-referral:before {
content: "\fb31";
}
.fi-bs-reflect-horizontal-alt:before {
content: "\fb32";
}
.fi-bs-reflect-horizontal:before {
content: "\fb33";
}
.fi-bs-reflect-vertical:before {
content: "\fb34";
}
.fi-bs-reflect:before {
content: "\fb35";
}
.fi-bs-refresh:before {
content: "\fb36";
}
.fi-bs-refrigerator:before {
content: "\fb37";
}
.fi-bs-refund-alt:before {
content: "\fb38";
}
.fi-bs-refund:before {
content: "\fb39";
}
.fi-bs-region-pin-alt:before {
content: "\fb3a";
}
.fi-bs-region-pin:before {
content: "\fb3b";
}
.fi-bs-registered:before {
content: "\fb3c";
}
.fi-bs-registration-paper:before {
content: "\fb3d";
}
.fi-bs-remove-folder:before {
content: "\fb3e";
}
.fi-bs-remove-user:before {
content: "\fb3f";
}
.fi-bs-rent-signal:before {
content: "\fb40";
}
.fi-bs-rent:before {
content: "\fb41";
}
.fi-bs-replace:before {
content: "\fb42";
}
.fi-bs-replay-10:before {
content: "\fb43";
}
.fi-bs-replay-30:before {
content: "\fb44";
}
.fi-bs-replay-5:before {
content: "\fb45";
}
.fi-bs-reply-all:before {
content: "\fb46";
}
.fi-bs-republican:before {
content: "\fb47";
}
.fi-bs-reservation-smartphone:before {
content: "\fb48";
}
.fi-bs-reservation-table:before {
content: "\fb49";
}
.fi-bs-resistance-band:before {
content: "\fb4a";
}
.fi-bs-resize:before {
content: "\fb4b";
}
.fi-bs-resources:before {
content: "\fb4c";
}
.fi-bs-restaurant:before {
content: "\fb4d";
}
.fi-bs-restock:before {
content: "\fb4e";
}
.fi-bs-restroom-simple:before {
content: "\fb4f";
}
.fi-bs-resume:before {
content: "\fb50";
}
.fi-bs-revenue-alt:before {
content: "\fb51";
}
.fi-bs-revenue-euro:before {
content: "\fb52";
}
.fi-bs-Revenue:before {
content: "\fb53";
}
.fi-bs-review:before {
content: "\fb54";
}
.fi-bs-rewind-button-circle:before {
content: "\fb55";
}
.fi-bs-rewind:before {
content: "\fb56";
}
.fi-bs-rhombus:before {
content: "\fb57";
}
.fi-bs-ribbon:before {
content: "\fb58";
}
.fi-bs-right-from-bracket:before {
content: "\fb59";
}
.fi-bs-right:before {
content: "\fb5a";
}
.fi-bs-ring-diamond:before {
content: "\fb5b";
}
.fi-bs-ring:before {
content: "\fb5c";
}
.fi-bs-rings-wedding:before {
content: "\fb5d";
}
.fi-bs-risk-alt:before {
content: "\fb5e";
}
.fi-bs-risk:before {
content: "\fb5f";
}
.fi-bs-road-barrier:before {
content: "\fb60";
}
.fi-bs-road-sign-left:before {
content: "\fb61";
}
.fi-bs-road:before {
content: "\fb62";
}
.fi-bs-robot:before {
content: "\fb63";
}
.fi-bs-robotic-arm:before {
content: "\fb64";
}
.fi-bs-rocket-lunch:before {
content: "\fb65";
}
.fi-bs-rocket:before {
content: "\fb66";
}
.fi-bs-roller-coaster:before {
content: "\fb67";
}
.fi-bs-room-service:before {
content: "\fb68";
}
.fi-bs-rotate-exclamation:before {
content: "\fb69";
}
.fi-bs-rotate-left:before {
content: "\fb6a";
}
.fi-bs-rotate-reverse:before {
content: "\fb6b";
}
.fi-bs-rotate-right:before {
content: "\fb6c";
}
.fi-bs-rotate-square:before {
content: "\fb6d";
}
.fi-bs-roulette:before {
content: "\fb6e";
}
.fi-bs-route-highway:before {
content: "\fb6f";
}
.fi-bs-route-interstate:before {
content: "\fb70";
}
.fi-bs-route:before {
content: "\fb71";
}
.fi-bs-router:before {
content: "\fb72";
}
.fi-bs-rss-alt:before {
content: "\fb73";
}
.fi-bs-rss:before {
content: "\fb74";
}
.fi-bs-ruble-sign:before {
content: "\fb75";
}
.fi-bs-rugby-helmet:before {
content: "\fb76";
}
.fi-bs-rugby:before {
content: "\fb77";
}
.fi-bs-ruler-combined:before {
content: "\fb78";
}
.fi-bs-ruler-horizontal:before {
content: "\fb79";
}
.fi-bs-ruler-triangle:before {
content: "\fb7a";
}
.fi-bs-ruler-vertical:before {
content: "\fb7b";
}
.fi-bs-rules-alt:before {
content: "\fb7c";
}
.fi-bs-rules:before {
content: "\fb7d";
}
.fi-bs-running-track:before {
content: "\fb7e";
}
.fi-bs-running:before {
content: "\fb7f";
}
.fi-bs-rupee-sign:before {
content: "\fb80";
}
.fi-bs-rupiah-sign:before {
content: "\fb81";
}
.fi-bs-rv:before {
content: "\fb82";
}
.fi-bs-s:before {
content: "\fb83";
}
.fi-bs-sack-dollar:before {
content: "\fb84";
}
.fi-bs-sack:before {
content: "\fb85";
}
.fi-bs-sad-cry:before {
content: "\fb86";
}
.fi-bs-sad-tear:before {
content: "\fb87";
}
.fi-bs-sad:before {
content: "\fb88";
}
.fi-bs-safe-box:before {
content: "\fb89";
}
.fi-bs-sailboat:before {
content: "\fb8a";
}
.fi-bs-salad:before {
content: "\fb8b";
}
.fi-bs-salary-alt:before {
content: "\fb8c";
}
.fi-bs-salt-pepper:before {
content: "\fb8d";
}
.fi-bs-salt-shaker:before {
content: "\fb8e";
}
.fi-bs-sandwich-alt:before {
content: "\fb8f";
}
.fi-bs-sandwich:before {
content: "\fb90";
}
.fi-bs-satellite-dish:before {
content: "\fb91";
}
.fi-bs-satellite:before {
content: "\fb92";
}
.fi-bs-saturday:before {
content: "\fb93";
}
.fi-bs-sauce:before {
content: "\fb94";
}
.fi-bs-sausage:before {
content: "\fb95";
}
.fi-bs-sax-hot:before {
content: "\fb96";
}
.fi-bs-saxophone:before {
content: "\fb97";
}
.fi-bs-scale-comparison-alt:before {
content: "\fb98";
}
.fi-bs-scale-comparison:before {
content: "\fb99";
}
.fi-bs-scale:before {
content: "\fb9a";
}
.fi-bs-scalpel-path:before {
content: "\fb9b";
}
.fi-bs-scalpel:before {
content: "\fb9c";
}
.fi-bs-scanner-gun:before {
content: "\fb9d";
}
.fi-bs-scanner-image:before {
content: "\fb9e";
}
.fi-bs-scanner-keyboard:before {
content: "\fb9f";
}
.fi-bs-scanner-touchscreen:before {
content: "\fba0";
}
.fi-bs-scarecrow:before {
content: "\fba1";
}
.fi-bs-scarf:before {
content: "\fba2";
}
.fi-bs-school-bus:before {
content: "\fba3";
}
.fi-bs-school:before {
content: "\fba4";
}
.fi-bs-scissors:before {
content: "\fba5";
}
.fi-bs-scooter:before {
content: "\fba6";
}
.fi-bs-screen:before {
content: "\fba7";
}
.fi-bs-screencast:before {
content: "\fba8";
}
.fi-bs-screw-alt:before {
content: "\fba9";
}
.fi-bs-screw:before {
content: "\fbaa";
}
.fi-bs-screwdriver:before {
content: "\fbab";
}
.fi-bs-scribble:before {
content: "\fbac";
}
.fi-bs-script:before {
content: "\fbad";
}
.fi-bs-scroll-document-story:before {
content: "\fbae";
}
.fi-bs-scroll-old:before {
content: "\fbaf";
}
.fi-bs-scroll-torah:before {
content: "\fbb0";
}
.fi-bs-scroll:before {
content: "\fbb1";
}
.fi-bs-scrubber:before {
content: "\fbb2";
}
.fi-bs-scythe:before {
content: "\fbb3";
}
.fi-bs-sd-card:before {
content: "\fbb4";
}
.fi-bs-sd-cards:before {
content: "\fbb5";
}
.fi-bs-seal-exclamation:before {
content: "\fbb6";
}
.fi-bs-seal-question:before {
content: "\fbb7";
}
.fi-bs-seal:before {
content: "\fbb8";
}
.fi-bs-search-alt:before {
content: "\fbb9";
}
.fi-bs-search-dollar:before {
content: "\fbba";
}
.fi-bs-search-heart:before {
content: "\fbbb";
}
.fi-bs-search-location:before {
content: "\fbbc";
}
.fi-bs-search:before {
content: "\fbbd";
}
.fi-bs-seat-airline:before {
content: "\fbbe";
}
.fi-bs-seatbelt-safety-driver:before {
content: "\fbbf";
}
.fi-bs-second-award:before {
content: "\fbc0";
}
.fi-bs-second-laurel:before {
content: "\fbc1";
}
.fi-bs-second-medal:before {
content: "\fbc2";
}
.fi-bs-second:before {
content: "\fbc3";
}
.fi-bs-seedling:before {
content: "\fbc4";
}
.fi-bs-selection:before {
content: "\fbc5";
}
.fi-bs-sell:before {
content: "\fbc6";
}
.fi-bs-seller-store:before {
content: "\fbc7";
}
.fi-bs-seller:before {
content: "\fbc8";
}
.fi-bs-selling:before {
content: "\fbc9";
}
.fi-bs-send-back:before {
content: "\fbca";
}
.fi-bs-send-backward:before {
content: "\fbcb";
}
.fi-bs-send-money-smartphone:before {
content: "\fbcc";
}
.fi-bs-send-money:before {
content: "\fbcd";
}
.fi-bs-sensor-alert:before {
content: "\fbce";
}
.fi-bs-sensor-fire:before {
content: "\fbcf";
}
.fi-bs-sensor-on:before {
content: "\fbd0";
}
.fi-bs-sensor-smoke:before {
content: "\fbd1";
}
.fi-bs-sensor:before {
content: "\fbd2";
}
.fi-bs-settings-sliders:before {
content: "\fbd3";
}
.fi-bs-settings:before {
content: "\fbd4";
}
.fi-bs-share-alt-square:before {
content: "\fbd5";
}
.fi-bs-share-square:before {
content: "\fbd6";
}
.fi-bs-share:before {
content: "\fbd7";
}
.fi-bs-sheep:before {
content: "\fbd8";
}
.fi-bs-shekel-sign:before {
content: "\fbd9";
}
.fi-bs-shelves:before {
content: "\fbda";
}
.fi-bs-shield-alt:before {
content: "\fbdb";
}
.fi-bs-shield-cat:before {
content: "\fbdc";
}
.fi-bs-shield-check:before {
content: "\fbdd";
}
.fi-bs-shield-cross:before {
content: "\fbde";
}
.fi-bs-shield-dog:before {
content: "\fbdf";
}
.fi-bs-shield-exclamation:before {
content: "\fbe0";
}
.fi-bs-shield-interrogation:before {
content: "\fbe1";
}
.fi-bs-shield-keyhole:before {
content: "\fbe2";
}
.fi-bs-shield-minus:before {
content: "\fbe3";
}
.fi-bs-shield-plus:before {
content: "\fbe4";
}
.fi-bs-shield-security-risk:before {
content: "\fbe5";
}
.fi-bs-shield-slash:before {
content: "\fbe6";
}
.fi-bs-shield-trust:before {
content: "\fbe7";
}
.fi-bs-shield-virus:before {
content: "\fbe8";
}
.fi-bs-shield-xmark:before {
content: "\fbe9";
}
.fi-bs-shield:before {
content: "\fbea";
}
.fi-bs-ship-side:before {
content: "\fbeb";
}
.fi-bs-ship:before {
content: "\fbec";
}
.fi-bs-shipping-fast:before {
content: "\fbed";
}
.fi-bs-shipping-timed:before {
content: "\fbee";
}
.fi-bs-shirt-long-sleeve:before {
content: "\fbef";
}
.fi-bs-shirt-running:before {
content: "\fbf0";
}
.fi-bs-shirt-tank-top:before {
content: "\fbf1";
}
.fi-bs-shirt:before {
content: "\fbf2";
}
.fi-bs-shish-kebab:before {
content: "\fbf3";
}
.fi-bs-shoe-prints:before {
content: "\fbf4";
}
.fi-bs-shop-lock:before {
content: "\fbf5";
}
.fi-bs-shop-slash:before {
content: "\fbf6";
}
.fi-bs-shop:before {
content: "\fbf7";
}
.fi-bs-shopping-bag-add:before {
content: "\fbf8";
}
.fi-bs-shopping-bag:before {
content: "\fbf9";
}
.fi-bs-shopping-basket:before {
content: "\fbfa";
}
.fi-bs-shopping-cart-add:before {
content: "\fbfb";
}
.fi-bs-shopping-cart-buyer:before {
content: "\fbfc";
}
.fi-bs-shopping-cart-check:before {
content: "\fbfd";
}
.fi-bs-shopping-cart:before {
content: "\fbfe";
}
.fi-bs-shovel-snow:before {
content: "\fbff";
}
.fi-bs-shovel:before {
content: "\fc00";
}
.fi-bs-shower-down:before {
content: "\fc01";
}
.fi-bs-shower:before {
content: "\fc02";
}
.fi-bs-shredder:before {
content: "\fc03";
}
.fi-bs-shrimp:before {
content: "\fc04";
}
.fi-bs-shuffle:before {
content: "\fc05";
}
.fi-bs-shuttle-van:before {
content: "\fc06";
}
.fi-bs-shuttlecock:before {
content: "\fc07";
}
.fi-bs-Sickle:before {
content: "\fc08";
}
.fi-bs-sidebar-flip:before {
content: "\fc09";
}
.fi-bs-sidebar:before {
content: "\fc0a";
}
.fi-bs-sigma:before {
content: "\fc0b";
}
.fi-bs-sign-hanging:before {
content: "\fc0c";
}
.fi-bs-sign-in-alt:before {
content: "\fc0d";
}
.fi-bs-sign-out-alt:before {
content: "\fc0e";
}
.fi-bs-sign-posts-wrench:before {
content: "\fc0f";
}
.fi-bs-sign-posts:before {
content: "\fc10";
}
.fi-bs-sign-up:before {
content: "\fc11";
}
.fi-bs-signal-alt-1:before {
content: "\fc12";
}
.fi-bs-signal-alt-2:before {
content: "\fc13";
}
.fi-bs-signal-alt-slash:before {
content: "\fc14";
}
.fi-bs-signal-alt:before {
content: "\fc15";
}
.fi-bs-signal-bars-fair:before {
content: "\fc16";
}
.fi-bs-signal-bars-good:before {
content: "\fc17";
}
.fi-bs-signal-bars-weak:before {
content: "\fc18";
}
.fi-bs-signal-stream-slash:before {
content: "\fc19";
}
.fi-bs-signal-stream:before {
content: "\fc1a";
}
.fi-bs-signature-lock:before {
content: "\fc1b";
}
.fi-bs-signature-slash:before {
content: "\fc1c";
}
.fi-bs-signature:before {
content: "\fc1d";
}
.fi-bs-sim-card:before {
content: "\fc1e";
}
.fi-bs-sim-cards:before {
content: "\fc1f";
}
.fi-bs-sink:before {
content: "\fc20";
}
.fi-bs-siren-on:before {
content: "\fc21";
}
.fi-bs-Siren:before {
content: "\fc22";
}
.fi-bs-site-alt:before {
content: "\fc23";
}
.fi-bs-site-browser:before {
content: "\fc24";
}
.fi-bs-site:before {
content: "\fc25";
}
.fi-bs-sitemap:before {
content: "\fc26";
}
.fi-bs-skateboard:before {
content: "\fc27";
}
.fi-bs-skating:before {
content: "\fc28";
}
.fi-bs-skeleton-ribs:before {
content: "\fc29";
}
.fi-bs-skeleton:before {
content: "\fc2a";
}
.fi-bs-skewer:before {
content: "\fc2b";
}
.fi-bs-ski-boot-ski:before {
content: "\fc2c";
}
.fi-bs-ski-jump:before {
content: "\fc2d";
}
.fi-bs-ski-lift:before {
content: "\fc2e";
}
.fi-bs-skiing-nordic:before {
content: "\fc2f";
}
.fi-bs-skiing:before {
content: "\fc30";
}
.fi-bs-skill-alt:before {
content: "\fc31";
}
.fi-bs-skill-user:before {
content: "\fc32";
}
.fi-bs-skill:before {
content: "\fc33";
}
.fi-bs-skin-arrow:before {
content: "\fc34";
}
.fi-bs-skin-drop:before {
content: "\fc35";
}
.fi-bs-skin-hair:before {
content: "\fc36";
}
.fi-bs-skin:before {
content: "\fc37";
}
.fi-bs-skip-15-seconds:before {
content: "\fc38";
}
.fi-bs-skull-cow:before {
content: "\fc39";
}
.fi-bs-skull-crossbones:before {
content: "\fc3a";
}
.fi-bs-skull:before {
content: "\fc3b";
}
.fi-bs-slash:before {
content: "\fc3c";
}
.fi-bs-sledding:before {
content: "\fc3d";
}
.fi-bs-sleeping-bag:before {
content: "\fc3e";
}
.fi-bs-sleigh:before {
content: "\fc3f";
}
.fi-bs-sliders-h-square:before {
content: "\fc40";
}
.fi-bs-sliders-v-square:before {
content: "\fc41";
}
.fi-bs-sliders-v:before {
content: "\fc42";
}
.fi-bs-slot-machine:before {
content: "\fc43";
}
.fi-bs-smart-home-alt:before {
content: "\fc44";
}
.fi-bs-smart-home:before {
content: "\fc45";
}
.fi-bs-smartphone:before {
content: "\fc46";
}
.fi-bs-smile-beam:before {
content: "\fc47";
}
.fi-bs-smile-plus:before {
content: "\fc48";
}
.fi-bs-smile-wink:before {
content: "\fc49";
}
.fi-bs-smiley-comment-alt:before {
content: "\fc4a";
}
.fi-bs-smog:before {
content: "\fc4b";
}
.fi-bs-smoke:before {
content: "\fc4c";
}
.fi-bs-smoking-ban:before {
content: "\fc4d";
}
.fi-bs-smoking:before {
content: "\fc4e";
}
.fi-bs-snake:before {
content: "\fc4f";
}
.fi-bs-snap:before {
content: "\fc50";
}
.fi-bs-snooze:before {
content: "\fc51";
}
.fi-bs-snow-blowing:before {
content: "\fc52";
}
.fi-bs-snowboarding:before {
content: "\fc53";
}
.fi-bs-snowflake-droplets:before {
content: "\fc54";
}
.fi-bs-snowflake:before {
content: "\fc55";
}
.fi-bs-snowflakes:before {
content: "\fc56";
}
.fi-bs-snowman-alt:before {
content: "\fc57";
}
.fi-bs-snowman-head:before {
content: "\fc58";
}
.fi-bs-snowmobile:before {
content: "\fc59";
}
.fi-bs-snowplow:before {
content: "\fc5a";
}
.fi-bs-soap-alt:before {
content: "\fc5b";
}
.fi-bs-soap:before {
content: "\fc5c";
}
.fi-bs-social-network:before {
content: "\fc5d";
}
.fi-bs-socks:before {
content: "\fc5e";
}
.fi-bs-sofa-size:before {
content: "\fc5f";
}
.fi-bs-sofa:before {
content: "\fc60";
}
.fi-bs-solar-panel-sun:before {
content: "\fc61";
}
.fi-bs-solar-panel:before {
content: "\fc62";
}
.fi-bs-solar-system:before {
content: "\fc63";
}
.fi-bs-sold-house:before {
content: "\fc64";
}
.fi-bs-sold-signal:before {
content: "\fc65";
}
.fi-bs-sort-alpha-down-alt:before {
content: "\fc66";
}
.fi-bs-sort-alpha-down:before {
content: "\fc67";
}
.fi-bs-sort-alpha-up-alt:before {
content: "\fc68";
}
.fi-bs-sort-alpha-up:before {
content: "\fc69";
}
.fi-bs-sort-alt:before {
content: "\fc6a";
}
.fi-bs-sort-amount-down-alt:before {
content: "\fc6b";
}
.fi-bs-sort-amount-down:before {
content: "\fc6c";
}
.fi-bs-sort-amount-up-alt:before {
content: "\fc6d";
}
.fi-bs-sort-amount-up:before {
content: "\fc6e";
}
.fi-bs-sort-circle-down:before {
content: "\fc6f";
}
.fi-bs-sort-circle-up:before {
content: "\fc70";
}
.fi-bs-sort-circle:before {
content: "\fc71";
}
.fi-bs-sort-down:before {
content: "\fc72";
}
.fi-bs-sort-numeric-down-alt:before {
content: "\fc73";
}
.fi-bs-sort-numeric-down:before {
content: "\fc74";
}
.fi-bs-sort-shapes-down:before {
content: "\fc75";
}
.fi-bs-sort-shapes-up:before {
content: "\fc76";
}
.fi-bs-sort-size-down:before {
content: "\fc77";
}
.fi-bs-sort-size-up:before {
content: "\fc78";
}
.fi-bs-sort:before {
content: "\fc79";
}
.fi-bs-soup:before {
content: "\fc7a";
}
.fi-bs-source-data:before {
content: "\fc7b";
}
.fi-bs-source-document-alt:before {
content: "\fc7c";
}
.fi-bs-source-document:before {
content: "\fc7d";
}
.fi-bs-spa:before {
content: "\fc7e";
}
.fi-bs-space-shuttle:before {
content: "\fc7f";
}
.fi-bs-space-station-moon-alt:before {
content: "\fc80";
}
.fi-bs-space-station-moon:before {
content: "\fc81";
}
.fi-bs-spade:before {
content: "\fc82";
}
.fi-bs-spaghetti-monster-flying:before {
content: "\fc83";
}
.fi-bs-spain-map:before {
content: "\fc84";
}
.fi-bs-sparkles:before {
content: "\fc85";
}
.fi-bs-spartan-helmet:before {
content: "\fc86";
}
.fi-bs-speaker:before {
content: "\fc87";
}
.fi-bs-speakers:before {
content: "\fc88";
}
.fi-bs-speech-bubble-story:before {
content: "\fc89";
}
.fi-bs-speedometer-arrow:before {
content: "\fc8a";
}
.fi-bs-speedometer-kpi:before {
content: "\fc8b";
}
.fi-bs-sphere:before {
content: "\fc8c";
}
.fi-bs-spider-black-widow:before {
content: "\fc8d";
}
.fi-bs-spider-web:before {
content: "\fc8e";
}
.fi-bs-spider:before {
content: "\fc8f";
}
.fi-bs-spinner:before {
content: "\fc90";
}
.fi-bs-split-up-relation:before {
content: "\fc91";
}
.fi-bs-split:before {
content: "\fc92";
}
.fi-bs-splotch:before {
content: "\fc93";
}
.fi-bs-spoon:before {
content: "\fc94";
}
.fi-bs-spray-can-sparkles:before {
content: "\fc95";
}
.fi-bs-spray-can:before {
content: "\fc96";
}
.fi-bs-spring-calendar:before {
content: "\fc97";
}
.fi-bs-sprinkler:before {
content: "\fc98";
}
.fi-bs-spy:before {
content: "\fc99";
}
.fi-bs-square-0:before {
content: "\fc9a";
}
.fi-bs-square-1:before {
content: "\fc9b";
}
.fi-bs-square-2:before {
content: "\fc9c";
}
.fi-bs-square-3:before {
content: "\fc9d";
}
.fi-bs-square-4:before {
content: "\fc9e";
}
.fi-bs-square-5:before {
content: "\fc9f";
}
.fi-bs-square-6:before {
content: "\fca0";
}
.fi-bs-square-7:before {
content: "\fca1";
}
.fi-bs-square-8:before {
content: "\fca2";
}
.fi-bs-square-9:before {
content: "\fca3";
}
.fi-bs-square-a:before {
content: "\fca4";
}
.fi-bs-square-b:before {
content: "\fca5";
}
.fi-bs-square-bolt:before {
content: "\fca6";
}
.fi-bs-square-c:before {
content: "\fca7";
}
.fi-bs-square-code:before {
content: "\fca8";
}
.fi-bs-square-d:before {
content: "\fca9";
}
.fi-bs-square-dashed-circle-plus:before {
content: "\fcaa";
}
.fi-bs-square-dashed:before {
content: "\fcab";
}
.fi-bs-square-divide:before {
content: "\fcac";
}
.fi-bs-square-e:before {
content: "\fcad";
}
.fi-bs-square-ellipsis-vertical:before {
content: "\fcae";
}
.fi-bs-square-ellipsis:before {
content: "\fcaf";
}
.fi-bs-square-exclamation:before {
content: "\fcb0";
}
.fi-bs-square-f:before {
content: "\fcb1";
}
.fi-bs-square-g:before {
content: "\fcb2";
}
.fi-bs-square-h:before {
content: "\fcb3";
}
.fi-bs-square-heart:before {
content: "\fcb4";
}
.fi-bs-square-i:before {
content: "\fcb5";
}
.fi-bs-square-info:before {
content: "\fcb6";
}
.fi-bs-square-j:before {
content: "\fcb7";
}
.fi-bs-square-k:before {
content: "\fcb8";
}
.fi-bs-square-kanban:before {
content: "\fcb9";
}
.fi-bs-square-l:before {
content: "\fcba";
}
.fi-bs-square-m:before {
content: "\fcbb";
}
.fi-bs-square-minus:before {
content: "\fcbc";
}
.fi-bs-square-n:before {
content: "\fcbd";
}
.fi-bs-square-o:before {
content: "\fcbe";
}
.fi-bs-square-p:before {
content: "\fcbf";
}
.fi-bs-square-phone-hangup:before {
content: "\fcc0";
}
.fi-bs-square-plus:before {
content: "\fcc1";
}
.fi-bs-square-poll-horizontal:before {
content: "\fcc2";
}
.fi-bs-square-poll-vertical:before {
content: "\fcc3";
}
.fi-bs-square-q:before {
content: "\fcc4";
}
.fi-bs-square-quote:before {
content: "\fcc5";
}
.fi-bs-square-r:before {
content: "\fcc6";
}
.fi-bs-square-root:before {
content: "\fcc7";
}
.fi-bs-square-s:before {
content: "\fcc8";
}
.fi-bs-square-small:before {
content: "\fcc9";
}
.fi-bs-square-star:before {
content: "\fcca";
}
.fi-bs-square-t:before {
content: "\fccb";
}
.fi-bs-square-terminal:before {
content: "\fccc";
}
.fi-bs-square-u:before {
content: "\fccd";
}
.fi-bs-square-up-right:before {
content: "\fcce";
}
.fi-bs-square-v:before {
content: "\fccf";
}
.fi-bs-square-w:before {
content: "\fcd0";
}
.fi-bs-square-x:before {
content: "\fcd1";
}
.fi-bs-square-y:before {
content: "\fcd2";
}
.fi-bs-square-z:before {
content: "\fcd3";
}
.fi-bs-square:before {
content: "\fcd4";
}
.fi-bs-squid:before {
content: "\fcd5";
}
.fi-bs-squircle:before {
content: "\fcd6";
}
.fi-bs-squirrel:before {
content: "\fcd7";
}
.fi-bs-staff:before {
content: "\fcd8";
}
.fi-bs-stage-concert:before {
content: "\fcd9";
}
.fi-bs-stage-theatre:before {
content: "\fcda";
}
.fi-bs-stage:before {
content: "\fcdb";
}
.fi-bs-stairs:before {
content: "\fcdc";
}
.fi-bs-stamp:before {
content: "\fcdd";
}
.fi-bs-standard-definition:before {
content: "\fcde";
}
.fi-bs-star-and-crescent:before {
content: "\fcdf";
}
.fi-bs-star-christmas:before {
content: "\fce0";
}
.fi-bs-star-comment-alt:before {
content: "\fce1";
}
.fi-bs-star-exclamation:before {
content: "\fce2";
}
.fi-bs-star-octogram:before {
content: "\fce3";
}
.fi-bs-star-of-david:before {
content: "\fce4";
}
.fi-bs-star-rating-call:before {
content: "\fce5";
}
.fi-bs-star-sharp-half-stroke:before {
content: "\fce6";
}
.fi-bs-star-sharp-half:before {
content: "\fce7";
}
.fi-bs-star-shooting:before {
content: "\fce8";
}
.fi-bs-star:before {
content: "\fce9";
}
.fi-bs-starfighter:before {
content: "\fcea";
}
.fi-bs-stars:before {
content: "\fceb";
}
.fi-bs-state-country:before {
content: "\fcec";
}
.fi-bs-stationary-bike:before {
content: "\fced";
}
.fi-bs-stats:before {
content: "\fcee";
}
.fi-bs-steak:before {
content: "\fcef";
}
.fi-bs-steering-wheel:before {
content: "\fcf0";
}
.fi-bs-step-backward:before {
content: "\fcf1";
}
.fi-bs-step-forward:before {
content: "\fcf2";
}
.fi-bs-sterling-sign:before {
content: "\fcf3";
}
.fi-bs-stethoscope:before {
content: "\fcf4";
}
.fi-bs-sticker:before {
content: "\fcf5";
}
.fi-bs-stocking:before {
content: "\fcf6";
}
.fi-bs-stomach:before {
content: "\fcf7";
}
.fi-bs-stop-circle:before {
content: "\fcf8";
}
.fi-bs-stop-square:before {
content: "\fcf9";
}
.fi-bs-stop:before {
content: "\fcfa";
}
.fi-bs-stopwatch:before {
content: "\fcfb";
}
.fi-bs-store-alt:before {
content: "\fcfc";
}
.fi-bs-store-buyer:before {
content: "\fcfd";
}
.fi-bs-store-lock:before {
content: "\fcfe";
}
.fi-bs-store-slash:before {
content: "\fcff";
}
.fi-bs-story-book:before {
content: "\fd00";
}
.fi-bs-story-fairy-tale:before {
content: "\fd01";
}
.fi-bs-story-fantasy:before {
content: "\fd02";
}
.fi-bs-strategy-chess-risk:before {
content: "\fd03";
}
.fi-bs-strawberry:before {
content: "\fd04";
}
.fi-bs-street-view:before {
content: "\fd05";
}
.fi-bs-stretcher:before {
content: "\fd06";
}
.fi-bs-strikethrough:before {
content: "\fd07";
}
.fi-bs-stroopwafel:before {
content: "\fd08";
}
.fi-bs-student-alt:before {
content: "\fd09";
}
.fi-bs-student:before {
content: "\fd0a";
}
.fi-bs-subscript:before {
content: "\fd0b";
}
.fi-bs-subscription-alt:before {
content: "\fd0c";
}
.fi-bs-subscription:before {
content: "\fd0d";
}
.fi-bs-subtitles-slash:before {
content: "\fd0e";
}
.fi-bs-subtitles:before {
content: "\fd0f";
}
.fi-bs-subway:before {
content: "\fd10";
}
.fi-bs-suitcase-alt:before {
content: "\fd11";
}
.fi-bs-summary-check:before {
content: "\fd12";
}
.fi-bs-summer:before {
content: "\fd13";
}
.fi-bs-sun-dust:before {
content: "\fd14";
}
.fi-bs-sun-plant-wilt:before {
content: "\fd15";
}
.fi-bs-sun-salutation-yoga:before {
content: "\fd16";
}
.fi-bs-sun:before {
content: "\fd17";
}
.fi-bs-sunday:before {
content: "\fd18";
}
.fi-bs-sunglasses-alt:before {
content: "\fd19";
}
.fi-bs-sunglasses:before {
content: "\fd1a";
}
.fi-bs-sunrise-alt:before {
content: "\fd1b";
}
.fi-bs-sunrise:before {
content: "\fd1c";
}
.fi-bs-sunset:before {
content: "\fd1d";
}
.fi-bs-superscript:before {
content: "\fd1e";
}
.fi-bs-supplier-alt:before {
content: "\fd1f";
}
.fi-bs-supplier:before {
content: "\fd20";
}
.fi-bs-surfing:before {
content: "\fd21";
}
.fi-bs-surprise:before {
content: "\fd22";
}
.fi-bs-surveillance-camera:before {
content: "\fd23";
}
.fi-bs-survey-xmark:before {
content: "\fd24";
}
.fi-bs-sushi-alt:before {
content: "\fd25";
}
.fi-bs-sushi-roll:before {
content: "\fd26";
}
.fi-bs-sushi:before {
content: "\fd27";
}
.fi-bs-svg:before {
content: "\fd28";
}
.fi-bs-swap:before {
content: "\fd29";
}
.fi-bs-swatchbook:before {
content: "\fd2a";
}
.fi-bs-swimmer:before {
content: "\fd2b";
}
.fi-bs-swimming-pool:before {
content: "\fd2c";
}
.fi-bs-swing:before {
content: "\fd2d";
}
.fi-bs-swipe-down:before {
content: "\fd2e";
}
.fi-bs-swipe-left:before {
content: "\fd2f";
}
.fi-bs-swipe-right:before {
content: "\fd30";
}
.fi-bs-swipe-up:before {
content: "\fd31";
}
.fi-bs-sword:before {
content: "\fd32";
}
.fi-bs-symbol:before {
content: "\fd33";
}
.fi-bs-symbols:before {
content: "\fd34";
}
.fi-bs-synagogue:before {
content: "\fd35";
}
.fi-bs-syringe:before {
content: "\fd36";
}
.fi-bs-system-cloud:before {
content: "\fd37";
}
.fi-bs-t:before {
content: "\fd38";
}
.fi-bs-tab-folder:before {
content: "\fd39";
}
.fi-bs-table-columns:before {
content: "\fd3a";
}
.fi-bs-table-layout:before {
content: "\fd3b";
}
.fi-bs-table-list:before {
content: "\fd3c";
}
.fi-bs-table-picnic:before {
content: "\fd3d";
}
.fi-bs-table-pivot:before {
content: "\fd3e";
}
.fi-bs-table-rows:before {
content: "\fd3f";
}
.fi-bs-table-tree:before {
content: "\fd40";
}
.fi-bs-table:before {
content: "\fd41";
}
.fi-bs-tablet-android-alt:before {
content: "\fd42";
}
.fi-bs-tablet-android:before {
content: "\fd43";
}
.fi-bs-tablet-rugged:before {
content: "\fd44";
}
.fi-bs-tablet:before {
content: "\fd45";
}
.fi-bs-tachometer-alt-average:before {
content: "\fd46";
}
.fi-bs-tachometer-alt-fastest:before {
content: "\fd47";
}
.fi-bs-tachometer-alt-slow:before {
content: "\fd48";
}
.fi-bs-tachometer-alt-slowest:before {
content: "\fd49";
}
.fi-bs-tachometer-average:before {
content: "\fd4a";
}
.fi-bs-tachometer-fast:before {
content: "\fd4b";
}
.fi-bs-tachometer-fastest:before {
content: "\fd4c";
}
.fi-bs-tachometer-slow:before {
content: "\fd4d";
}
.fi-bs-tachometer-slowest:before {
content: "\fd4e";
}
.fi-bs-tachometer:before {
content: "\fd4f";
}
.fi-bs-taco:before {
content: "\fd50";
}
.fi-bs-tags:before {
content: "\fd51";
}
.fi-bs-talent-alt:before {
content: "\fd52";
}
.fi-bs-talent-hand:before {
content: "\fd53";
}
.fi-bs-talent:before {
content: "\fd54";
}
.fi-bs-tally-1:before {
content: "\fd55";
}
.fi-bs-tally-2:before {
content: "\fd56";
}
.fi-bs-tally-3:before {
content: "\fd57";
}
.fi-bs-tally-4:before {
content: "\fd58";
}
.fi-bs-tally:before {
content: "\fd59";
}
.fi-bs-tamale:before {
content: "\fd5a";
}
.fi-bs-tank-water:before {
content: "\fd5b";
}
.fi-bs-tap:before {
content: "\fd5c";
}
.fi-bs-tape:before {
content: "\fd5d";
}
.fi-bs-target-audience:before {
content: "\fd5e";
}
.fi-bs-target:before {
content: "\fd5f";
}
.fi-bs-tax-alt:before {
content: "\fd60";
}
.fi-bs-tax:before {
content: "\fd61";
}
.fi-bs-taxi-bus:before {
content: "\fd62";
}
.fi-bs-taxi:before {
content: "\fd63";
}
.fi-bs-team-check-alt:before {
content: "\fd64";
}
.fi-bs-team-check:before {
content: "\fd65";
}
.fi-bs-teddy-bear:before {
content: "\fd66";
}
.fi-bs-teeth-open:before {
content: "\fd67";
}
.fi-bs-telescope:before {
content: "\fd68";
}
.fi-bs-temperature-down:before {
content: "\fd69";
}
.fi-bs-temperature-frigid:before {
content: "\fd6a";
}
.fi-bs-temperature-high:before {
content: "\fd6b";
}
.fi-bs-temperature-list:before {
content: "\fd6c";
}
.fi-bs-temperature-low:before {
content: "\fd6d";
}
.fi-bs-temperature-up:before {
content: "\fd6e";
}
.fi-bs-template-alt:before {
content: "\fd6f";
}
.fi-bs-template:before {
content: "\fd70";
}
.fi-bs-tenge:before {
content: "\fd71";
}
.fi-bs-tennis:before {
content: "\fd72";
}
.fi-bs-tent-arrow-down-to-line:before {
content: "\fd73";
}
.fi-bs-tent-arrow-left-right:before {
content: "\fd74";
}
.fi-bs-tent-arrow-turn-left:before {
content: "\fd75";
}
.fi-bs-tent-arrows-down:before {
content: "\fd76";
}
.fi-bs-tents:before {
content: "\fd77";
}
.fi-bs-terminal:before {
content: "\fd78";
}
.fi-bs-terrace:before {
content: "\fd79";
}
.fi-bs-test-tube:before {
content: "\fd7a";
}
.fi-bs-test:before {
content: "\fd7b";
}
.fi-bs-text-box-dots:before {
content: "\fd7c";
}
.fi-bs-text-box-edit:before {
content: "\fd7d";
}
.fi-bs-text-box:before {
content: "\fd7e";
}
.fi-bs-text-check:before {
content: "\fd7f";
}
.fi-bs-text-height:before {
content: "\fd80";
}
.fi-bs-text-shadow:before {
content: "\fd81";
}
.fi-bs-text-size:before {
content: "\fd82";
}
.fi-bs-text-slash:before {
content: "\fd83";
}
.fi-bs-text-width:before {
content: "\fd84";
}
.fi-bs-text:before {
content: "\fd85";
}
.fi-bs-theater-masks:before {
content: "\fd86";
}
.fi-bs-thermometer-alt:before {
content: "\fd87";
}
.fi-bs-thermometer-empty:before {
content: "\fd88";
}
.fi-bs-thermometer-full:before {
content: "\fd89";
}
.fi-bs-thermometer-half:before {
content: "\fd8a";
}
.fi-bs-thermometer-quarter:before {
content: "\fd8b";
}
.fi-bs-thermometer-three-quarters:before {
content: "\fd8c";
}
.fi-bs-theta:before {
content: "\fd8d";
}
.fi-bs-third-award:before {
content: "\fd8e";
}
.fi-bs-third-laurel:before {
content: "\fd8f";
}
.fi-bs-third-medal:before {
content: "\fd90";
}
.fi-bs-third:before {
content: "\fd91";
}
.fi-bs-thought-bubble:before {
content: "\fd92";
}
.fi-bs-three-leaf-clover:before {
content: "\fd93";
}
.fi-bs-thumbs-up-trust:before {
content: "\fd94";
}
.fi-bs-thumbtack:before {
content: "\fd95";
}
.fi-bs-thunderstorm-moon:before {
content: "\fd96";
}
.fi-bs-thunderstorm-risk:before {
content: "\fd97";
}
.fi-bs-thunderstorm-sun:before {
content: "\fd98";
}
.fi-bs-thunderstorm:before {
content: "\fd99";
}
.fi-bs-thursday:before {
content: "\fd9a";
}
.fi-bs-ticket-airline:before {
content: "\fd9b";
}
.fi-bs-ticket-alt:before {
content: "\fd9c";
}
.fi-bs-ticket:before {
content: "\fd9d";
}
.fi-bs-tickets-airline:before {
content: "\fd9e";
}
.fi-bs-tie:before {
content: "\fd9f";
}
.fi-bs-tilde:before {
content: "\fda0";
}
.fi-bs-time-add:before {
content: "\fda1";
}
.fi-bs-time-check:before {
content: "\fda2";
}
.fi-bs-time-delete:before {
content: "\fda3";
}
.fi-bs-time-fast:before {
content: "\fda4";
}
.fi-bs-time-forward-sixty:before {
content: "\fda5";
}
.fi-bs-time-forward-ten:before {
content: "\fda6";
}
.fi-bs-time-forward:before {
content: "\fda7";
}
.fi-bs-time-half-past:before {
content: "\fda8";
}
.fi-bs-time-oclock:before {
content: "\fda9";
}
.fi-bs-time-past:before {
content: "\fdaa";
}
.fi-bs-time-quarter-past:before {
content: "\fdab";
}
.fi-bs-time-quarter-to:before {
content: "\fdac";
}
.fi-bs-time-twenty-four:before {
content: "\fdad";
}
.fi-bs-time-watch-calendar:before {
content: "\fdae";
}
.fi-bs-timer-clock-call:before {
content: "\fdaf";
}
.fi-bs-times-hexagon:before {
content: "\fdb0";
}
.fi-bs-tint-slash:before {
content: "\fdb1";
}
.fi-bs-tip-coin:before {
content: "\fdb2";
}
.fi-bs-tire-flat:before {
content: "\fdb3";
}
.fi-bs-tire-pressure-warning:before {
content: "\fdb4";
}
.fi-bs-tire-rugged:before {
content: "\fdb5";
}
.fi-bs-tire:before {
content: "\fdb6";
}
.fi-bs-tired:before {
content: "\fdb7";
}
.fi-bs-to-do-alt:before {
content: "\fdb8";
}
.fi-bs-to-do:before {
content: "\fdb9";
}
.fi-bs-together-people:before {
content: "\fdba";
}
.fi-bs-toggle-off:before {
content: "\fdbb";
}
.fi-bs-toggle-on:before {
content: "\fdbc";
}
.fi-bs-toilet-paper-blank-under:before {
content: "\fdbd";
}
.fi-bs-toilet-paper-blank:before {
content: "\fdbe";
}
.fi-bs-toilet-paper-slash:before {
content: "\fdbf";
}
.fi-bs-toilet-paper-under-slash:before {
content: "\fdc0";
}
.fi-bs-toilet-paper-under:before {
content: "\fdc1";
}
.fi-bs-toilet:before {
content: "\fdc2";
}
.fi-bs-toilets-portable:before {
content: "\fdc3";
}
.fi-bs-token:before {
content: "\fdc4";
}
.fi-bs-tomato:before {
content: "\fdc5";
}
.fi-bs-tombstone-alt:before {
content: "\fdc6";
}
.fi-bs-tombstone:before {
content: "\fdc7";
}
.fi-bs-tool-box:before {
content: "\fdc8";
}
.fi-bs-tool-crop:before {
content: "\fdc9";
}
.fi-bs-tool-marquee:before {
content: "\fdca";
}
.fi-bs-tools:before {
content: "\fdcb";
}
.fi-bs-tooth:before {
content: "\fdcc";
}
.fi-bs-toothbrush:before {
content: "\fdcd";
}
.fi-bs-torch-inspiration-leader:before {
content: "\fdce";
}
.fi-bs-torii-gate:before {
content: "\fdcf";
}
.fi-bs-tornado:before {
content: "\fdd0";
}
.fi-bs-total:before {
content: "\fdd1";
}
.fi-bs-tour-guide-people:before {
content: "\fdd2";
}
.fi-bs-tour-virtual:before {
content: "\fdd3";
}
.fi-bs-tower-control:before {
content: "\fdd4";
}
.fi-bs-track:before {
content: "\fdd5";
}
.fi-bs-tractor:before {
content: "\fdd6";
}
.fi-bs-trademark:before {
content: "\fdd7";
}
.fi-bs-traffic-cone:before {
content: "\fdd8";
}
.fi-bs-traffic-light-go:before {
content: "\fdd9";
}
.fi-bs-traffic-light-slow:before {
content: "\fdda";
}
.fi-bs-traffic-light-stop:before {
content: "\fddb";
}
.fi-bs-traffic-light:before {
content: "\fddc";
}
.fi-bs-trailer:before {
content: "\fddd";
}
.fi-bs-train-journey:before {
content: "\fdde";
}
.fi-bs-train-side:before {
content: "\fddf";
}
.fi-bs-train-station-building:before {
content: "\fde0";
}
.fi-bs-train-station:before {
content: "\fde1";
}
.fi-bs-train-subway-tunnel:before {
content: "\fde2";
}
.fi-bs-train-track:before {
content: "\fde3";
}
.fi-bs-train-tram:before {
content: "\fde4";
}
.fi-bs-train:before {
content: "\fde5";
}
.fi-bs-tram:before {
content: "\fde6";
}
.fi-bs-transform:before {
content: "\fde7";
}
.fi-bs-transformation-block:before {
content: "\fde8";
}
.fi-bs-transformation-circle:before {
content: "\fde9";
}
.fi-bs-transformation-design:before {
content: "\fdea";
}
.fi-bs-transformation-shapes:before {
content: "\fdeb";
}
.fi-bs-transformer-bolt:before {
content: "\fdec";
}
.fi-bs-transgender:before {
content: "\fded";
}
.fi-bs-transporter-1:before {
content: "\fdee";
}
.fi-bs-transporter-2:before {
content: "\fdef";
}
.fi-bs-transporter-3:before {
content: "\fdf0";
}
.fi-bs-transporter-4:before {
content: "\fdf1";
}
.fi-bs-transporter-5:before {
content: "\fdf2";
}
.fi-bs-transporter-6:before {
content: "\fdf3";
}
.fi-bs-transporter-7:before {
content: "\fdf4";
}
.fi-bs-transporter-empty:before {
content: "\fdf5";
}
.fi-bs-transporter:before {
content: "\fdf6";
}
.fi-bs-trash-can-check:before {
content: "\fdf7";
}
.fi-bs-trash-can-clock:before {
content: "\fdf8";
}
.fi-bs-trash-can-list:before {
content: "\fdf9";
}
.fi-bs-trash-can-plus:before {
content: "\fdfa";
}
.fi-bs-trash-can-slash:before {
content: "\fdfb";
}
.fi-bs-trash-check:before {
content: "\fdfc";
}
.fi-bs-trash-clock:before {
content: "\fdfd";
}
.fi-bs-trash-empty:before {
content: "\fdfe";
}
.fi-bs-trash-list:before {
content: "\fdff";
}
.fi-bs-trash-plus:before {
content: "\fe10";
}
.fi-bs-trash-restore-alt:before {
content: "\fe11";
}
.fi-bs-trash-restore:before {
content: "\fe12";
}
.fi-bs-trash-slash:before {
content: "\fe13";
}
.fi-bs-trash-undo-alt:before {
content: "\fe14";
}
.fi-bs-trash-undo:before {
content: "\fe15";
}
.fi-bs-trash-xmark:before {
content: "\fe16";
}
.fi-bs-trash:before {
content: "\fe17";
}
.fi-bs-treadmill:before {
content: "\fe18";
}
.fi-bs-treasure-chest:before {
content: "\fe19";
}
.fi-bs-treatment:before {
content: "\fe1a";
}
.fi-bs-tree-alt:before {
content: "\fe1b";
}
.fi-bs-tree-christmas:before {
content: "\fe1c";
}
.fi-bs-tree-deciduous:before {
content: "\fe1d";
}
.fi-bs-tree:before {
content: "\fe1e";
}
.fi-bs-trees-alt:before {
content: "\fe1f";
}
.fi-bs-trees:before {
content: "\fe30";
}
.fi-bs-triangle-music:before {
content: "\fe31";
}
.fi-bs-triangle-person-digging:before {
content: "\fe32";
}
.fi-bs-triangle-warning:before {
content: "\fe33";
}
.fi-bs-triangle:before {
content: "\fe34";
}
.fi-bs-tricycle:before {
content: "\fe35";
}
.fi-bs-trillium:before {
content: "\fe36";
}
.fi-bs-trophy-achievement-skill:before {
content: "\fe37";
}
.fi-bs-trophy-star:before {
content: "\fe38";
}
.fi-bs-trophy:before {
content: "\fe39";
}
.fi-bs-truck-arrow-left:before {
content: "\fe3a";
}
.fi-bs-truck-arrow-right:before {
content: "\fe3b";
}
.fi-bs-truck-bolt:before {
content: "\fe3c";
}
.fi-bs-truck-box:before {
content: "\fe3d";
}
.fi-bs-truck-check:before {
content: "\fe3e";
}
.fi-bs-truck-container-empty:before {
content: "\fe3f";
}
.fi-bs-truck-container:before {
content: "\fe40";
}
.fi-bs-truck-couch:before {
content: "\fe41";
}
.fi-bs-truck-fire:before {
content: "\fe42";
}
.fi-bs-truck-flatbed:before {
content: "\fe43";
}
.fi-bs-truck-front:before {
content: "\fe44";
}
.fi-bs-truck-ladder:before {
content: "\fe45";
}
.fi-bs-truck-loading:before {
content: "\fe46";
}
.fi-bs-truck-medical:before {
content: "\fe47";
}
.fi-bs-truck-monster:before {
content: "\fe48";
}
.fi-bs-truck-moving:before {
content: "\fe49";
}
.fi-bs-truck-pickup:before {
content: "\fe4a";
}
.fi-bs-truck-plow:before {
content: "\fe4b";
}
.fi-bs-truck-ramp:before {
content: "\fe4c";
}
.fi-bs-truck-side:before {
content: "\fe4d";
}
.fi-bs-truck-tow:before {
content: "\fe4e";
}
.fi-bs-truck-utensils:before {
content: "\fe4f";
}
.fi-bs-trumpet:before {
content: "\fe50";
}
.fi-bs-trust-alt:before {
content: "\fe51";
}
.fi-bs-trust:before {
content: "\fe52";
}
.fi-bs-tshirt:before {
content: "\fe53";
}
.fi-bs-tty-answer:before {
content: "\fe54";
}
.fi-bs-tty:before {
content: "\fe55";
}
.fi-bs-tubes:before {
content: "\fe56";
}
.fi-bs-tuesday:before {
content: "\fe57";
}
.fi-bs-tugrik-sign:before {
content: "\fe58";
}
.fi-bs-turkey:before {
content: "\fe59";
}
.fi-bs-turn-left-down:before {
content: "\fe5a";
}
.fi-bs-turn-left:before {
content: "\fe5b";
}
.fi-bs-turn-right:before {
content: "\fe5c";
}
.fi-bs-turntable:before {
content: "\fe5d";
}
.fi-bs-turtle:before {
content: "\fe5e";
}
.fi-bs-tv-music:before {
content: "\fe5f";
}
.fi-bs-tv-retro:before {
content: "\fe60";
}
.fi-bs-typewriter:before {
content: "\fe61";
}
.fi-bs-u:before {
content: "\fe62";
}
.fi-bs-ufo-beam:before {
content: "\fe63";
}
.fi-bs-ufo:before {
content: "\fe64";
}
.fi-bs-ui-ux:before {
content: "\fe65";
}
.fi-bs-umbrella-beach:before {
content: "\fe66";
}
.fi-bs-umbrella:before {
content: "\fe67";
}
.fi-bs-under-construction:before {
content: "\fe68";
}
.fi-bs-underline:before {
content: "\fe69";
}
.fi-bs-undo-alt:before {
content: "\fe6a";
}
.fi-bs-undo:before {
content: "\fe6b";
}
.fi-bs-unicorn:before {
content: "\fe6c";
}
.fi-bs-uniform-martial-arts:before {
content: "\fe6d";
}
.fi-bs-universal-access:before {
content: "\fe6e";
}
.fi-bs-unlock:before {
content: "\fe6f";
}
.fi-bs-up-from-bracket:before {
content: "\fe70";
}
.fi-bs-up-left:before {
content: "\fe71";
}
.fi-bs-up-right-from-square:before {
content: "\fe72";
}
.fi-bs-up-right:before {
content: "\fe73";
}
.fi-bs-up:before {
content: "\fe74";
}
.fi-bs-upload:before {
content: "\fe75";
}
.fi-bs-url:before {
content: "\fe76";
}
.fi-bs-usb-pendrive:before {
content: "\fe77";
}
.fi-bs-usd-circle:before {
content: "\fe78";
}
.fi-bs-usd-square:before {
content: "\fe79";
}
.fi-bs-user-add:before {
content: "\fe7a";
}
.fi-bs-user-alien:before {
content: "\fe7b";
}
.fi-bs-user-astronaut:before {
content: "\fe7c";
}
.fi-bs-user-check:before {
content: "\fe7d";
}
.fi-bs-user-chef:before {
content: "\fe7e";
}
.fi-bs-user-coach:before {
content: "\fe7f";
}
.fi-bs-user-cowboy:before {
content: "\fe80";
}
.fi-bs-user-crown:before {
content: "\fe81";
}
.fi-bs-user-gear:before {
content: "\fe82";
}
.fi-bs-user-graduate:before {
content: "\fe83";
}
.fi-bs-user-headset:before {
content: "\fe84";
}
.fi-bs-user-helmet-safety:before {
content: "\fe85";
}
.fi-bs-user-injured:before {
content: "\fe86";
}
.fi-bs-user-interface-ui:before {
content: "\fe87";
}
.fi-bs-user-key:before {
content: "\fe88";
}
.fi-bs-user-lock:before {
content: "\fe89";
}
.fi-bs-user-md-chat:before {
content: "\fe8a";
}
.fi-bs-user-md:before {
content: "\fe8b";
}
.fi-bs-user-minus:before {
content: "\fe8c";
}
.fi-bs-user-music:before {
content: "\fe8d";
}
.fi-bs-user-ninja:before {
content: "\fe8e";
}
.fi-bs-user-nurse:before {
content: "\fe8f";
}
.fi-bs-user-pen:before {
content: "\fe90";
}
.fi-bs-user-pilot-tie:before {
content: "\fe91";
}
.fi-bs-user-pilot:before {
content: "\fe92";
}
.fi-bs-user-police:before {
content: "\fe93";
}
.fi-bs-user-robot-xmarks:before {
content: "\fe94";
}
.fi-bs-user-robot:before {
content: "\fe95";
}
.fi-bs-user-salary:before {
content: "\fe96";
}
.fi-bs-user-shield:before {
content: "\fe97";
}
.fi-bs-user-skill-gear:before {
content: "\fe98";
}
.fi-bs-user-slash:before {
content: "\fe99";
}
.fi-bs-user-tag:before {
content: "\fe9a";
}
.fi-bs-user-time:before {
content: "\fe9b";
}
.fi-bs-user-trust:before {
content: "\fe9c";
}
.fi-bs-user-unlock:before {
content: "\fe9d";
}
.fi-bs-user-visor:before {
content: "\fe9e";
}
.fi-bs-user-xmark:before {
content: "\fe9f";
}
.fi-bs-user:before {
content: "\fea0";
}
.fi-bs-users-alt:before {
content: "\fea1";
}
.fi-bs-users-class:before {
content: "\fea2";
}
.fi-bs-users-gear:before {
content: "\fea3";
}
.fi-bs-users-medical:before {
content: "\fea4";
}
.fi-bs-users-slash:before {
content: "\fea5";
}
.fi-bs-users:before {
content: "\fea6";
}
.fi-bs-utensils-slash:before {
content: "\fea7";
}
.fi-bs-utensils:before {
content: "\fea8";
}
.fi-bs-utility-pole-double:before {
content: "\fea9";
}
.fi-bs-utility-pole:before {
content: "\feaa";
}
.fi-bs-ux-browser:before {
content: "\feab";
}
.fi-bs-ux:before {
content: "\feac";
}
.fi-bs-v:before {
content: "\fead";
}
.fi-bs-vacuum-robot:before {
content: "\feae";
}
.fi-bs-vacuum:before {
content: "\feaf";
}
.fi-bs-value-absolute:before {
content: "\feb0";
}
.fi-bs-vault:before {
content: "\feb1";
}
.fi-bs-vector-alt:before {
content: "\feb2";
}
.fi-bs-vector-circle:before {
content: "\feb3";
}
.fi-bs-vector-polygon:before {
content: "\feb4";
}
.fi-bs-vector:before {
content: "\feb5";
}
.fi-bs-venus-double:before {
content: "\feb6";
}
.fi-bs-venus-mars:before {
content: "\feb7";
}
.fi-bs-venus:before {
content: "\feb8";
}
.fi-bs-vest-patches:before {
content: "\feb9";
}
.fi-bs-vest:before {
content: "\feba";
}
.fi-bs-video-arrow-down-left:before {
content: "\febb";
}
.fi-bs-video-arrow-up-right:before {
content: "\febc";
}
.fi-bs-video-camera-alt:before {
content: "\febd";
}
.fi-bs-video-camera:before {
content: "\febe";
}
.fi-bs-video-duration:before {
content: "\febf";
}
.fi-bs-video-plus:before {
content: "\fec0";
}
.fi-bs-video-slash:before {
content: "\fec1";
}
.fi-bs-videoconference:before {
content: "\fec2";
}
.fi-bs-vihara:before {
content: "\fec3";
}
.fi-bs-violin:before {
content: "\fec4";
}
.fi-bs-virus-slash:before {
content: "\fec5";
}
.fi-bs-virus:before {
content: "\fec6";
}
.fi-bs-viruses:before {
content: "\fec7";
}
.fi-bs-visit:before {
content: "\fec8";
}
.fi-bs-voicemail:before {
content: "\fec9";
}
.fi-bs-volcano:before {
content: "\feca";
}
.fi-bs-volleyball:before {
content: "\fecb";
}
.fi-bs-volume-down:before {
content: "\fecc";
}
.fi-bs-volume-mute:before {
content: "\fecd";
}
.fi-bs-volume-off:before {
content: "\fece";
}
.fi-bs-volume-slash:before {
content: "\fecf";
}
.fi-bs-volume:before {
content: "\fed0";
}
.fi-bs-vote-nay:before {
content: "\fed1";
}
.fi-bs-vote-yea:before {
content: "\fed2";
}
.fi-bs-vr-cardboard:before {
content: "\fed3";
}
.fi-bs-w:before {
content: "\fed4";
}
.fi-bs-waffle:before {
content: "\fed5";
}
.fi-bs-wagon-covered:before {
content: "\fed6";
}
.fi-bs-walker:before {
content: "\fed7";
}
.fi-bs-walkie-talkie:before {
content: "\fed8";
}
.fi-bs-walking:before {
content: "\fed9";
}
.fi-bs-wallet-arrow:before {
content: "\feda";
}
.fi-bs-wallet-buyer:before {
content: "\fedb";
}
.fi-bs-wallet:before {
content: "\fedc";
}
.fi-bs-warehouse-alt:before {
content: "\fedd";
}
.fi-bs-warranty:before {
content: "\fede";
}
.fi-bs-washer:before {
content: "\fedf";
}
.fi-bs-waste-pollution:before {
content: "\fee0";
}
.fi-bs-waste:before {
content: "\fee1";
}
.fi-bs-watch-calculator:before {
content: "\fee2";
}
.fi-bs-watch-fitness:before {
content: "\fee3";
}
.fi-bs-watch-smart:before {
content: "\fee4";
}
.fi-bs-watch:before {
content: "\fee5";
}
.fi-bs-water-bottle:before {
content: "\fee6";
}
.fi-bs-water-ladder:before {
content: "\fee7";
}
.fi-bs-water-lower:before {
content: "\fee8";
}
.fi-bs-water-rise:before {
content: "\fee9";
}
.fi-bs-water:before {
content: "\feea";
}
.fi-bs-watermelon:before {
content: "\feeb";
}
.fi-bs-wave-sine:before {
content: "\feec";
}
.fi-bs-wave-square:before {
content: "\feed";
}
.fi-bs-wave-triangle:before {
content: "\feee";
}
.fi-bs-wave:before {
content: "\feef";
}
.fi-bs-waveform-path:before {
content: "\fef0";
}
.fi-bs-waveform:before {
content: "\fef1";
}
.fi-bs-web-design:before {
content: "\fef2";
}
.fi-bs-webcam-slash:before {
content: "\fef3";
}
.fi-bs-webcam:before {
content: "\fef4";
}
.fi-bs-webhook:before {
content: "\fef5";
}
.fi-bs-wednesday:before {
content: "\fef6";
}
.fi-bs-whale:before {
content: "\fef7";
}
.fi-bs-wheat-awn-circle-exclamation:before {
content: "\fef8";
}
.fi-bs-wheat-awn-slash:before {
content: "\fef9";
}
.fi-bs-wheat-awn:before {
content: "\fefa";
}
.fi-bs-wheat-slash:before {
content: "\fefb";
}
.fi-bs-wheat:before {
content: "\fefc";
}
.fi-bs-wheelchair-move:before {
content: "\fefd";
}
.fi-bs-wheelchair-sleeping:before {
content: "\fefe";
}
.fi-bs-wheelchair:before {
content: "\ff00";
}
.fi-bs-whistle:before {
content: "\ff01";
}
.fi-bs-white-space:before {
content: "\ff02";
}
.fi-bs-wifi-1:before {
content: "\ff03";
}
.fi-bs-wifi-2:before {
content: "\ff04";
}
.fi-bs-wifi-alt:before {
content: "\ff05";
}
.fi-bs-wifi-exclamation:before {
content: "\ff06";
}
.fi-bs-wifi-slash:before {
content: "\ff07";
}
.fi-bs-wifi:before {
content: "\ff08";
}
.fi-bs-wind-turbine:before {
content: "\ff09";
}
.fi-bs-wind-warning:before {
content: "\ff0a";
}
.fi-bs-wind:before {
content: "\ff0b";
}
.fi-bs-window-alt:before {
content: "\ff0c";
}
.fi-bs-window-frame-open:before {
content: "\ff0d";
}
.fi-bs-window-frame:before {
content: "\ff0e";
}
.fi-bs-window-maximize:before {
content: "\ff0f";
}
.fi-bs-window-minimize:before {
content: "\ff10";
}
.fi-bs-window-restore:before {
content: "\ff11";
}
.fi-bs-windsock:before {
content: "\ff12";
}
.fi-bs-wine-bottle:before {
content: "\ff13";
}
.fi-bs-wine-glass-crack:before {
content: "\ff14";
}
.fi-bs-wine-glass-empty:before {
content: "\ff15";
}
.fi-bs-wishlist-heart:before {
content: "\ff16";
}
.fi-bs-wishlist-star:before {
content: "\ff17";
}
.fi-bs-woman-head:before {
content: "\ff18";
}
.fi-bs-woman-scientist:before {
content: "\ff19";
}
.fi-bs-won-sign:before {
content: "\ff1a";
}
.fi-bs-work-in-progress:before {
content: "\ff1b";
}
.fi-bs-workflow-alt:before {
content: "\ff1c";
}
.fi-bs-workflow-setting-alt:before {
content: "\ff1d";
}
.fi-bs-workflow-setting:before {
content: "\ff1e";
}
.fi-bs-workflow:before {
content: "\ff1f";
}
.fi-bs-workshop:before {
content: "\ff20";
}
.fi-bs-world:before {
content: "\ff21";
}
.fi-bs-worm:before {
content: "\ff22";
}
.fi-bs-wreath:before {
content: "\ff23";
}
.fi-bs-wrench-alt:before {
content: "\ff24";
}
.fi-bs-wrench-simple:before {
content: "\ff25";
}
.fi-bs-x-ray:before {
content: "\ff26";
}
.fi-bs-x:before {
content: "\ff27";
}
.fi-bs-y:before {
content: "\ff28";
}
.fi-bs-yen:before {
content: "\ff29";
}
.fi-bs-yin-yang:before {
content: "\ff2a";
}
.fi-bs-z:before {
content: "\ff2b";
}
.fi-bs-zip-file:before {
content: "\ff2c";
}
.fi-bs-zoom-in:before {
content: "\ff2d";
}
.fi-bs-zoom-out:before {
content: "\ff2e";
}@font-face {
font-family: "uicons-solid-rounded";
src: url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-solid-rounded.woff2) format("woff2"),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-solid-rounded.woff) format("woff"),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-solid-rounded.eot#iefix) format("embedded-opentype");
font-display: swap;
}
i[class^="fi-sr-"]:before, i[class*=" fi-sr-"]:before, span[class^="fi-sr-"]:before, span[class*="fi-sr-"]:before {
font-family: uicons-solid-rounded !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.variable-selector-00:before {
content: "\fe00";
}
.variable-selector-01:before {
content: "\fe01";
}
.variable-selector-02:before {
content: "\fe02";
}
.variable-selector-03:before {
content: "\fe03";
}
.variable-selector-04:before {
content: "\fe04";
}
.variable-selector-05:before {
content: "\fe05";
}
.variable-selector-06:before {
content: "\fe06";
}
.variable-selector-07:before {
content: "\fe07";
}
.variable-selector-08:before {
content: "\fe08";
}
.variable-selector-09:before {
content: "\fe09";
}
.variable-selector-0a:before {
content: "\fe0a";
}
.variable-selector-0b:before {
content: "\fe0b";
}
.variable-selector-0c:before {
content: "\fe0c";
}
.variable-selector-0d:before {
content: "\fe0d";
}
.variable-selector-0e:before {
content: "\fe0e";
}
.variable-selector-0f:before {
content: "\fe0f";
}
.combining-half-marks-00:before {
content: "\fe20";
}
.combining-half-marks-01:before {
content: "\fe21";
}
.combining-half-marks-02:before {
content: "\fe22";
}
.combining-half-marks-03:before {
content: "\fe23";
}
.combining-half-marks-04:before {
content: "\fe24";
}
.combining-half-marks-05:before {
content: "\fe25";
}
.combining-half-marks-06:before {
content: "\fe26";
}
.combining-half-marks-07:before {
content: "\fe27";
}
.combining-half-marks-08:before {
content: "\fe28";
}
.combining-half-marks-09:before {
content: "\fe29";
}
.combining-half-marks-0a:before {
content: "\fe2a";
}
.combining-half-marks-0b:before {
content: "\fe2b";
}
.combining-half-marks-0c:before {
content: "\fe2c";
}
.combining-half-marks-0d:before {
content: "\fe2d";
}
.combining-half-marks-0e:before {
content: "\fe2e";
}
.combining-half-marks-0f:before {
content: "\fe2f";
}
.zero-width-no-break-space-0f:before {
content: "\feff";
}
.fi-sr-0:before {
content: "\f101";
}
.fi-sr-00s-music-disc:before {
content: "\f102";
}
.fi-sr-1:before {
content: "\f103";
}
.fi-sr-2:before {
content: "\f104";
}
.fi-sr-3:before {
content: "\f105";
}
.fi-sr-360-degrees:before {
content: "\f106";
}
.fi-sr-4:before {
content: "\f107";
}
.fi-sr-404:before {
content: "\f108";
}
.fi-sr-5:before {
content: "\f109";
}
.fi-sr-6:before {
content: "\f10a";
}
.fi-sr-60s-music-disc:before {
content: "\f10b";
}
.fi-sr-7:before {
content: "\f10c";
}
.fi-sr-70s-music-disc:before {
content: "\f10d";
}
.fi-sr-8:before {
content: "\f10e";
}
.fi-sr-80s-music-disc:before {
content: "\f10f";
}
.fi-sr-9:before {
content: "\f110";
}
.fi-sr-90s-music-disc:before {
content: "\f111";
}
.fi-sr-a:before {
content: "\f112";
}
.fi-sr-accident:before {
content: "\f113";
}
.fi-sr-acorn:before {
content: "\f114";
}
.fi-sr-ad-paid:before {
content: "\f115";
}
.fi-sr-ad:before {
content: "\f116";
}
.fi-sr-add-document:before {
content: "\f117";
}
.fi-sr-add-folder:before {
content: "\f118";
}
.fi-sr-add-image:before {
content: "\f119";
}
.fi-sr-add:before {
content: "\f11a";
}
.fi-sr-address-book:before {
content: "\f11b";
}
.fi-sr-address-card:before {
content: "\f11c";
}
.fi-sr-admin-alt:before {
content: "\f11d";
}
.fi-sr-admin:before {
content: "\f11e";
}
.fi-sr-age-alt:before {
content: "\f11f";
}
.fi-sr-age-restriction-eighteen:before {
content: "\f120";
}
.fi-sr-age-restriction-seven:before {
content: "\f121";
}
.fi-sr-age-restriction-six:before {
content: "\f122";
}
.fi-sr-age-restriction-sixteen:before {
content: "\f123";
}
.fi-sr-age-restriction-thirteen:before {
content: "\f124";
}
.fi-sr-age-restriction-three:before {
content: "\f125";
}
.fi-sr-age-restriction-twelve:before {
content: "\f126";
}
.fi-sr-age-restriction-twenty-one:before {
content: "\f127";
}
.fi-sr-age-restriction-zero:before {
content: "\f128";
}
.fi-sr-age:before {
content: "\f129";
}
.fi-sr-air-conditioner:before {
content: "\f12a";
}
.fi-sr-air-freshener:before {
content: "\f12b";
}
.fi-sr-air-pollution:before {
content: "\f12c";
}
.fi-sr-airplane-journey:before {
content: "\f12d";
}
.fi-sr-airplane-window-open:before {
content: "\f12e";
}
.fi-sr-airplay:before {
content: "\f12f";
}
.fi-sr-alarm-clock:before {
content: "\f130";
}
.fi-sr-alarm-exclamation:before {
content: "\f131";
}
.fi-sr-alarm-plus:before {
content: "\f132";
}
.fi-sr-alarm-snooze:before {
content: "\f133";
}
.fi-sr-album-circle-plus:before {
content: "\f134";
}
.fi-sr-album-circle-user:before {
content: "\f135";
}
.fi-sr-album-collection:before {
content: "\f136";
}
.fi-sr-album:before {
content: "\f137";
}
.fi-sr-algorithm:before {
content: "\f138";
}
.fi-sr-alicorn:before {
content: "\f139";
}
.fi-sr-alien:before {
content: "\f13a";
}
.fi-sr-align-center:before {
content: "\f13b";
}
.fi-sr-align-justify:before {
content: "\f13c";
}
.fi-sr-align-left:before {
content: "\f13d";
}
.fi-sr-align-slash:before {
content: "\f13e";
}
.fi-sr-ambulance:before {
content: "\f13f";
}
.fi-sr-amusement-park:before {
content: "\f140";
}
.fi-sr-analyse-alt:before {
content: "\f141";
}
.fi-sr-analyse:before {
content: "\f142";
}
.fi-sr-anatomical-heart:before {
content: "\f143";
}
.fi-sr-anchor:before {
content: "\f144";
}
.fi-sr-angel:before {
content: "\f145";
}
.fi-sr-angle-90:before {
content: "\f146";
}
.fi-sr-angle-circle-down:before {
content: "\f147";
}
.fi-sr-angle-circle-left:before {
content: "\f148";
}
.fi-sr-angle-circle-right:before {
content: "\f149";
}
.fi-sr-angle-circle-up:before {
content: "\f14a";
}
.fi-sr-angle-double-left:before {
content: "\f14b";
}
.fi-sr-angle-double-right:before {
content: "\f14c";
}
.fi-sr-angle-double-small-down:before {
content: "\f14d";
}
.fi-sr-angle-double-small-left:before {
content: "\f14e";
}
.fi-sr-angle-double-small-right:before {
content: "\f14f";
}
.fi-sr-angle-double-small-up:before {
content: "\f150";
}
.fi-sr-angle-down:before {
content: "\f151";
}
.fi-sr-angle-left:before {
content: "\f152";
}
.fi-sr-angle-right:before {
content: "\f153";
}
.fi-sr-angle-small-down:before {
content: "\f154";
}
.fi-sr-angle-small-left:before {
content: "\f155";
}
.fi-sr-angle-small-right:before {
content: "\f156";
}
.fi-sr-angle-small-up:before {
content: "\f157";
}
.fi-sr-angle-square-down:before {
content: "\f158";
}
.fi-sr-angle-square-left:before {
content: "\f159";
}
.fi-sr-angle-square-right:before {
content: "\f15a";
}
.fi-sr-angle-square-up:before {
content: "\f15b";
}
.fi-sr-angle-up:before {
content: "\f15c";
}
.fi-sr-angle:before {
content: "\f15d";
}
.fi-sr-angles-up-down:before {
content: "\f15e";
}
.fi-sr-angry:before {
content: "\f15f";
}
.fi-sr-animated-icon:before {
content: "\f160";
}
.fi-sr-ankh:before {
content: "\f161";
}
.fi-sr-answer-alt:before {
content: "\f162";
}
.fi-sr-answer:before {
content: "\f163";
}
.fi-sr-apartment:before {
content: "\f164";
}
.fi-sr-aperture:before {
content: "\f165";
}
.fi-sr-api:before {
content: "\f166";
}
.fi-sr-apple-core:before {
content: "\f167";
}
.fi-sr-apple-crate:before {
content: "\f168";
}
.fi-sr-apple-whole:before {
content: "\f169";
}
.fi-sr-apps-add:before {
content: "\f16a";
}
.fi-sr-apps-delete:before {
content: "\f16b";
}
.fi-sr-apps-sort:before {
content: "\f16c";
}
.fi-sr-apps:before {
content: "\f16d";
}
.fi-sr-archive:before {
content: "\f16e";
}
.fi-sr-archway:before {
content: "\f16f";
}
.fi-sr-arrow-alt-circle-down:before {
content: "\f170";
}
.fi-sr-arrow-alt-circle-left:before {
content: "\f171";
}
.fi-sr-arrow-alt-circle-right:before {
content: "\f172";
}
.fi-sr-arrow-alt-circle-up:before {
content: "\f173";
}
.fi-sr-arrow-alt-down:before {
content: "\f174";
}
.fi-sr-arrow-alt-from-bottom:before {
content: "\f175";
}
.fi-sr-arrow-alt-from-left:before {
content: "\f176";
}
.fi-sr-arrow-alt-from-right:before {
content: "\f177";
}
.fi-sr-arrow-alt-from-top:before {
content: "\f178";
}
.fi-sr-arrow-alt-left:before {
content: "\f179";
}
.fi-sr-arrow-alt-right:before {
content: "\f17a";
}
.fi-sr-arrow-alt-square-down:before {
content: "\f17b";
}
.fi-sr-arrow-alt-square-left:before {
content: "\f17c";
}
.fi-sr-arrow-alt-square-right:before {
content: "\f17d";
}
.fi-sr-arrow-alt-square-up:before {
content: "\f17e";
}
.fi-sr-arrow-alt-to-bottom:before {
content: "\f17f";
}
.fi-sr-arrow-alt-to-left:before {
content: "\f180";
}
.fi-sr-arrow-alt-to-right:before {
content: "\f181";
}
.fi-sr-arrow-alt-to-top:before {
content: "\f182";
}
.fi-sr-arrow-alt-up:before {
content: "\f183";
}
.fi-sr-arrow-circle-down:before {
content: "\f184";
}
.fi-sr-arrow-circle-left:before {
content: "\f185";
}
.fi-sr-arrow-circle-right:before {
content: "\f186";
}
.fi-sr-arrow-circle-up:before {
content: "\f187";
}
.fi-sr-arrow-comparison:before {
content: "\f188";
}
.fi-sr-arrow-down-from-arc:before {
content: "\f189";
}
.fi-sr-arrow-down-from-dotted-line:before {
content: "\f18a";
}
.fi-sr-arrow-down-left:before {
content: "\f18b";
}
.fi-sr-arrow-down-small-big:before {
content: "\f18c";
}
.fi-sr-arrow-down-to-dotted-line:before {
content: "\f18d";
}
.fi-sr-arrow-down-to-square:before {
content: "\f18e";
}
.fi-sr-arrow-down-triangle-square:before {
content: "\f18f";
}
.fi-sr-arrow-down:before {
content: "\f190";
}
.fi-sr-arrow-from-bottom:before {
content: "\f191";
}
.fi-sr-arrow-from-left:before {
content: "\f192";
}
.fi-sr-arrow-from-right:before {
content: "\f193";
}
.fi-sr-arrow-from-top:before {
content: "\f194";
}
.fi-sr-arrow-left-from-arc:before {
content: "\f195";
}
.fi-sr-arrow-left-from-line:before {
content: "\f196";
}
.fi-sr-arrow-left-to-arc:before {
content: "\f197";
}
.fi-sr-arrow-left:before {
content: "\f198";
}
.fi-sr-arrow-progress-alt:before {
content: "\f199";
}
.fi-sr-arrow-progress:before {
content: "\f19a";
}
.fi-sr-arrow-right-to-bracket:before {
content: "\f19b";
}
.fi-sr-arrow-right:before {
content: "\f19c";
}
.fi-sr-arrow-small-down:before {
content: "\f19d";
}
.fi-sr-arrow-small-left:before {
content: "\f19e";
}
.fi-sr-arrow-small-right:before {
content: "\f19f";
}
.fi-sr-arrow-small-up:before {
content: "\f1a0";
}
.fi-sr-arrow-square-down:before {
content: "\f1a1";
}
.fi-sr-arrow-square-left:before {
content: "\f1a2";
}
.fi-sr-arrow-square-right:before {
content: "\f1a3";
}
.fi-sr-arrow-square-up:before {
content: "\f1a4";
}
.fi-sr-arrow-to-bottom:before {
content: "\f1a5";
}
.fi-sr-arrow-to-left:before {
content: "\f1a6";
}
.fi-sr-arrow-to-right:before {
content: "\f1a7";
}
.fi-sr-arrow-to-top:before {
content: "\f1a8";
}
.fi-sr-arrow-trend-down:before {
content: "\f1a9";
}
.fi-sr-arrow-trend-up:before {
content: "\f1aa";
}
.fi-sr-arrow-turn-down-left:before {
content: "\f1ab";
}
.fi-sr-arrow-turn-down-right:before {
content: "\f1ac";
}
.fi-sr-arrow-turn-left-up:before {
content: "\f1ad";
}
.fi-sr-arrow-up-from-dotted-line:before {
content: "\f1ae";
}
.fi-sr-arrow-up-from-ground-water:before {
content: "\f1af";
}
.fi-sr-arrow-up-from-square:before {
content: "\f1b0";
}
.fi-sr-arrow-up-left-from-circle:before {
content: "\f1b1";
}
.fi-sr-arrow-up-left:before {
content: "\f1b2";
}
.fi-sr-arrow-up-right-and-arrow-down-left-from-center:before {
content: "\f1b3";
}
.fi-sr-arrow-up-right-from-square:before {
content: "\f1b4";
}
.fi-sr-arrow-up-right:before {
content: "\f1b5";
}
.fi-sr-arrow-up-small-big:before {
content: "\f1b6";
}
.fi-sr-arrow-up-square-triangle:before {
content: "\f1b7";
}
.fi-sr-arrow-up-to-arc:before {
content: "\f1b8";
}
.fi-sr-arrow-up-to-dotted-line:before {
content: "\f1b9";
}
.fi-sr-arrow-up:before {
content: "\f1ba";
}
.fi-sr-arrow-upward-growth-crypto:before {
content: "\f1bb";
}
.fi-sr-arrows-alt-h:before {
content: "\f1bc";
}
.fi-sr-arrows-alt-v:before {
content: "\f1bd";
}
.fi-sr-arrows-alt:before {
content: "\f1be";
}
.fi-sr-arrows-cross:before {
content: "\f1bf";
}
.fi-sr-arrows-from-dotted-line:before {
content: "\f1c0";
}
.fi-sr-arrows-from-line:before {
content: "\f1c1";
}
.fi-sr-arrows-h-copy:before {
content: "\f1c2";
}
.fi-sr-arrows-h:before {
content: "\f1c3";
}
.fi-sr-arrows-repeat-1:before {
content: "\f1c4";
}
.fi-sr-arrows-repeat:before {
content: "\f1c5";
}
.fi-sr-arrows-retweet:before {
content: "\f1c6";
}
.fi-sr-arrows-split-right-and-left:before {
content: "\f1c7";
}
.fi-sr-arrows-split-up-and-left:before {
content: "\f1c8";
}
.fi-sr-arrows-to-circle:before {
content: "\f1c9";
}
.fi-sr-arrows-to-dotted-line:before {
content: "\f1ca";
}
.fi-sr-arrows-to-eye:before {
content: "\f1cb";
}
.fi-sr-arrows-to-line:before {
content: "\f1cc";
}
.fi-sr-arrows:before {
content: "\f1cd";
}
.fi-sr-artificial-intelligence:before {
content: "\f1ce";
}
.fi-sr-assept-document:before {
content: "\f1cf";
}
.fi-sr-assessment-alt:before {
content: "\f1d0";
}
.fi-sr-assessment:before {
content: "\f1d1";
}
.fi-sr-assistive-listening-systems:before {
content: "\f1d2";
}
.fi-sr-asterik:before {
content: "\f1d3";
}
.fi-sr-at:before {
content: "\f1d4";
}
.fi-sr-attribution-pen:before {
content: "\f1d5";
}
.fi-sr-attribution-pencil:before {
content: "\f1d6";
}
.fi-sr-aubergine:before {
content: "\f1d7";
}
.fi-sr-auction:before {
content: "\f1d8";
}
.fi-sr-audience-megaphone:before {
content: "\f1d9";
}
.fi-sr-audio-description-slash:before {
content: "\f1da";
}
.fi-sr-audit-alt:before {
content: "\f1db";
}
.fi-sr-audit:before {
content: "\f1dc";
}
.fi-sr-austral-sign:before {
content: "\f1dd";
}
.fi-sr-avocado:before {
content: "\f1de";
}
.fi-sr-award:before {
content: "\f1df";
}
.fi-sr-axe-battle:before {
content: "\f1e0";
}
.fi-sr-axe:before {
content: "\f1e1";
}
.fi-sr-b:before {
content: "\f1e2";
}
.fi-sr-baby-carriage:before {
content: "\f1e3";
}
.fi-sr-baby:before {
content: "\f1e4";
}
.fi-sr-back-up:before {
content: "\f1e5";
}
.fi-sr-background:before {
content: "\f1e6";
}
.fi-sr-backpack:before {
content: "\f1e7";
}
.fi-sr-bacon:before {
content: "\f1e8";
}
.fi-sr-bacteria:before {
content: "\f1e9";
}
.fi-sr-bacterium:before {
content: "\f1ea";
}
.fi-sr-badge-check:before {
content: "\f1eb";
}
.fi-sr-badge-dollar:before {
content: "\f1ec";
}
.fi-sr-badge-leaf:before {
content: "\f1ed";
}
.fi-sr-badge-percent:before {
content: "\f1ee";
}
.fi-sr-badge-sheriff:before {
content: "\f1ef";
}
.fi-sr-badge:before {
content: "\f1f0";
}
.fi-sr-badger-honey:before {
content: "\f1f1";
}
.fi-sr-badminton:before {
content: "\f1f2";
}
.fi-sr-bag-map-pin:before {
content: "\f1f3";
}
.fi-sr-bag-seedling:before {
content: "\f1f4";
}
.fi-sr-bag-shopping-minus:before {
content: "\f1f5";
}
.fi-sr-bags-shopping:before {
content: "\f1f6";
}
.fi-sr-baguette:before {
content: "\f1f7";
}
.fi-sr-bahai:before {
content: "\f1f8";
}
.fi-sr-baht-sign:before {
content: "\f1f9";
}
.fi-sr-balance-scale-left:before {
content: "\f1fa";
}
.fi-sr-balance-scale-right:before {
content: "\f1fb";
}
.fi-sr-ball-pile:before {
content: "\f1fc";
}
.fi-sr-ballet-dance:before {
content: "\f1fd";
}
.fi-sr-balloon:before {
content: "\f1fe";
}
.fi-sr-balloons:before {
content: "\f1ff";
}
.fi-sr-ballot-check:before {
content: "\f200";
}
.fi-sr-ballot:before {
content: "\f201";
}
.fi-sr-ban-bug:before {
content: "\f202";
}
.fi-sr-ban:before {
content: "\f203";
}
.fi-sr-banana:before {
content: "\f204";
}
.fi-sr-band-aid:before {
content: "\f205";
}
.fi-sr-bangladeshi-taka-sign:before {
content: "\f206";
}
.fi-sr-banjo:before {
content: "\f207";
}
.fi-sr-bank:before {
content: "\f208";
}
.fi-sr-banner-2:before {
content: "\f209";
}
.fi-sr-banner-3:before {
content: "\f20a";
}
.fi-sr-banner-4:before {
content: "\f20b";
}
.fi-sr-banner-5:before {
content: "\f20c";
}
.fi-sr-banner:before {
content: "\f20d";
}
.fi-sr-barber-pole:before {
content: "\f20e";
}
.fi-sr-barber-shop:before {
content: "\f20f";
}
.fi-sr-barcode-read:before {
content: "\f210";
}
.fi-sr-barcode-scan:before {
content: "\f211";
}
.fi-sr-barcode:before {
content: "\f212";
}
.fi-sr-bars-filter:before {
content: "\f213";
}
.fi-sr-bars-progress:before {
content: "\f214";
}
.fi-sr-bars-sort:before {
content: "\f215";
}
.fi-sr-bars-staggered:before {
content: "\f216";
}
.fi-sr-baseball-alt:before {
content: "\f217";
}
.fi-sr-baseball:before {
content: "\f218";
}
.fi-sr-basket-shopping-minus:before {
content: "\f219";
}
.fi-sr-basket-shopping-plus:before {
content: "\f21a";
}
.fi-sr-basket-shopping-simple:before {
content: "\f21b";
}
.fi-sr-basketball-hoop:before {
content: "\f21c";
}
.fi-sr-basketball:before {
content: "\f21d";
}
.fi-sr-bat:before {
content: "\f21e";
}
.fi-sr-bath:before {
content: "\f21f";
}
.fi-sr-battery-bolt:before {
content: "\f220";
}
.fi-sr-battery-empty:before {
content: "\f221";
}
.fi-sr-battery-exclamation:before {
content: "\f222";
}
.fi-sr-battery-full:before {
content: "\f223";
}
.fi-sr-battery-half:before {
content: "\f224";
}
.fi-sr-battery-quarter:before {
content: "\f225";
}
.fi-sr-battery-slash:before {
content: "\f226";
}
.fi-sr-battery-three-quarters:before {
content: "\f227";
}
.fi-sr-beacon:before {
content: "\f228";
}
.fi-sr-bed-alt:before {
content: "\f229";
}
.fi-sr-bed-bunk:before {
content: "\f22a";
}
.fi-sr-bed-empty:before {
content: "\f22b";
}
.fi-sr-bed:before {
content: "\f22c";
}
.fi-sr-bee:before {
content: "\f22d";
}
.fi-sr-beer-mug-empty:before {
content: "\f22e";
}
.fi-sr-beer:before {
content: "\f22f";
}
.fi-sr-bell-concierge:before {
content: "\f230";
}
.fi-sr-bell-notification-call:before {
content: "\f231";
}
.fi-sr-bell-notification-social-media:before {
content: "\f232";
}
.fi-sr-bell-ring:before {
content: "\f233";
}
.fi-sr-bell-school-slash:before {
content: "\f234";
}
.fi-sr-bell-school:before {
content: "\f235";
}
.fi-sr-bell-slash:before {
content: "\f236";
}
.fi-sr-bell:before {
content: "\f237";
}
.fi-sr-bells:before {
content: "\f238";
}
.fi-sr-bench-tree:before {
content: "\f239";
}
.fi-sr-benefit-diamond-alt:before {
content: "\f23a";
}
.fi-sr-benefit-diamond:before {
content: "\f23b";
}
.fi-sr-benefit-hand:before {
content: "\f23c";
}
.fi-sr-benefit-increase:before {
content: "\f23d";
}
.fi-sr-benefit-porcent:before {
content: "\f23e";
}
.fi-sr-benefit:before {
content: "\f23f";
}
.fi-sr-betamax:before {
content: "\f240";
}
.fi-sr-bible:before {
content: "\f241";
}
.fi-sr-bicycle-journey:before {
content: "\f242";
}
.fi-sr-bike:before {
content: "\f243";
}
.fi-sr-biking-mountain:before {
content: "\f244";
}
.fi-sr-biking:before {
content: "\f245";
}
.fi-sr-bill-arrow:before {
content: "\f246";
}
.fi-sr-billiard:before {
content: "\f247";
}
.fi-sr-bin-bottles:before {
content: "\f248";
}
.fi-sr-binary-circle-check:before {
content: "\f249";
}
.fi-sr-binary-lock:before {
content: "\f24a";
}
.fi-sr-binary-slash:before {
content: "\f24b";
}
.fi-sr-binary:before {
content: "\f24c";
}
.fi-sr-binoculars:before {
content: "\f24d";
}
.fi-sr-bio-leaves:before {
content: "\f24e";
}
.fi-sr-bio:before {
content: "\f24f";
}
.fi-sr-biohazard:before {
content: "\f250";
}
.fi-sr-bird:before {
content: "\f251";
}
.fi-sr-bitcoin-sign:before {
content: "\f252";
}
.fi-sr-blanket:before {
content: "\f253";
}
.fi-sr-blender-phone:before {
content: "\f254";
}
.fi-sr-blender:before {
content: "\f255";
}
.fi-sr-blinds-open:before {
content: "\f256";
}
.fi-sr-blinds-raised:before {
content: "\f257";
}
.fi-sr-blinds:before {
content: "\f258";
}
.fi-sr-block-brick:before {
content: "\f259";
}
.fi-sr-block-microphone:before {
content: "\f25a";
}
.fi-sr-block-question:before {
content: "\f25b";
}
.fi-sr-block-quote:before {
content: "\f25c";
}
.fi-sr-block:before {
content: "\f25d";
}
.fi-sr-blog-pencil:before {
content: "\f25e";
}
.fi-sr-blog-text:before {
content: "\f25f";
}
.fi-sr-blood-dropper:before {
content: "\f260";
}
.fi-sr-blood-test-tube-alt:before {
content: "\f261";
}
.fi-sr-blood-test-tube:before {
content: "\f262";
}
.fi-sr-blood:before {
content: "\f263";
}
.fi-sr-blossom:before {
content: "\f264";
}
.fi-sr-blueberries:before {
content: "\f265";
}
.fi-sr-blueprint:before {
content: "\f266";
}
.fi-sr-bold:before {
content: "\f267";
}
.fi-sr-bolt-auto:before {
content: "\f268";
}
.fi-sr-bolt-slash:before {
content: "\f269";
}
.fi-sr-bolt:before {
content: "\f26a";
}
.fi-sr-bomb:before {
content: "\f26b";
}
.fi-sr-bone-break:before {
content: "\f26c";
}
.fi-sr-bone:before {
content: "\f26d";
}
.fi-sr-bong:before {
content: "\f26e";
}
.fi-sr-bonus-alt:before {
content: "\f26f";
}
.fi-sr-bonus-star:before {
content: "\f270";
}
.fi-sr-bonus:before {
content: "\f271";
}
.fi-sr-book-alt:before {
content: "\f272";
}
.fi-sr-book-arrow-right:before {
content: "\f273";
}
.fi-sr-book-arrow-up:before {
content: "\f274";
}
.fi-sr-book-atlas:before {
content: "\f275";
}
.fi-sr-book-bookmark:before {
content: "\f276";
}
.fi-sr-book-circle-arrow-right:before {
content: "\f277";
}
.fi-sr-book-circle-arrow-up:before {
content: "\f278";
}
.fi-sr-book-copy:before {
content: "\f279";
}
.fi-sr-book-dead:before {
content: "\f27a";
}
.fi-sr-book-font:before {
content: "\f27b";
}
.fi-sr-book-heart:before {
content: "\f27c";
}
.fi-sr-book-medical:before {
content: "\f27d";
}
.fi-sr-book-open-cover:before {
content: "\f27e";
}
.fi-sr-book-open-reader:before {
content: "\f27f";
}
.fi-sr-book-plus:before {
content: "\f280";
}
.fi-sr-book-quran:before {
content: "\f281";
}
.fi-sr-book-section:before {
content: "\f282";
}
.fi-sr-book-spells:before {
content: "\f283";
}
.fi-sr-book-tanakh:before {
content: "\f284";
}
.fi-sr-book-user:before {
content: "\f285";
}
.fi-sr-book:before {
content: "\f286";
}
.fi-sr-Booking:before {
content: "\f287";
}
.fi-sr-bookmark-slash:before {
content: "\f288";
}
.fi-sr-bookmark:before {
content: "\f289";
}
.fi-sr-books-medical:before {
content: "\f28a";
}
.fi-sr-books:before {
content: "\f28b";
}
.fi-sr-boot-heeled:before {
content: "\f28c";
}
.fi-sr-boot:before {
content: "\f28d";
}
.fi-sr-booth-curtain:before {
content: "\f28e";
}
.fi-sr-border-all:before {
content: "\f28f";
}
.fi-sr-border-bottom:before {
content: "\f290";
}
.fi-sr-border-center-h:before {
content: "\f291";
}
.fi-sr-border-center-v:before {
content: "\f292";
}
.fi-sr-border-inner:before {
content: "\f293";
}
.fi-sr-border-left:before {
content: "\f294";
}
.fi-sr-border-none:before {
content: "\f295";
}
.fi-sr-border-outer:before {
content: "\f296";
}
.fi-sr-border-right:before {
content: "\f297";
}
.fi-sr-border-style-alt:before {
content: "\f298";
}
.fi-sr-border-style:before {
content: "\f299";
}
.fi-sr-border-top:before {
content: "\f29a";
}
.fi-sr-boss:before {
content: "\f29b";
}
.fi-sr-bottle-droplet:before {
content: "\f29c";
}
.fi-sr-bottle:before {
content: "\f29d";
}
.fi-sr-bow-arrow:before {
content: "\f29e";
}
.fi-sr-bowl-chopsticks-noodles:before {
content: "\f29f";
}
.fi-sr-bowl-chopsticks:before {
content: "\f2a0";
}
.fi-sr-bowl-rice:before {
content: "\f2a1";
}
.fi-sr-bowl-scoop:before {
content: "\f2a2";
}
.fi-sr-bowl-scoops:before {
content: "\f2a3";
}
.fi-sr-bowl-soft-serve:before {
content: "\f2a4";
}
.fi-sr-bowl-spoon:before {
content: "\f2a5";
}
.fi-sr-bowling-ball:before {
content: "\f2a6";
}
.fi-sr-bowling-pins:before {
content: "\f2a7";
}
.fi-sr-bowling:before {
content: "\f2a8";
}
.fi-sr-box-alt:before {
content: "\f2a9";
}
.fi-sr-box-ballot:before {
content: "\f2aa";
}
.fi-sr-box-check:before {
content: "\f2ab";
}
.fi-sr-box-circle-check:before {
content: "\f2ac";
}
.fi-sr-box-dollar:before {
content: "\f2ad";
}
.fi-sr-box-fragile:before {
content: "\f2ae";
}
.fi-sr-box-heart:before {
content: "\f2af";
}
.fi-sr-box-open-full:before {
content: "\f2b0";
}
.fi-sr-box-open:before {
content: "\f2b1";
}
.fi-sr-box-tissue:before {
content: "\f2b2";
}
.fi-sr-box-up:before {
content: "\f2b3";
}
.fi-sr-box:before {
content: "\f2b4";
}
.fi-sr-boxes:before {
content: "\f2b5";
}
.fi-sr-boxing-glove:before {
content: "\f2b6";
}
.fi-sr-bracket-curly-right:before {
content: "\f2b7";
}
.fi-sr-bracket-curly:before {
content: "\f2b8";
}
.fi-sr-bracket-round-right:before {
content: "\f2b9";
}
.fi-sr-bracket-round:before {
content: "\f2ba";
}
.fi-sr-bracket-square-right:before {
content: "\f2bb";
}
.fi-sr-bracket-square:before {
content: "\f2bc";
}
.fi-sr-brackets-curly:before {
content: "\f2bd";
}
.fi-sr-brackets-round:before {
content: "\f2be";
}
.fi-sr-brackets-square:before {
content: "\f2bf";
}
.fi-sr-braille-a:before {
content: "\f2c0";
}
.fi-sr-braille-b:before {
content: "\f2c1";
}
.fi-sr-braille-c:before {
content: "\f2c2";
}
.fi-sr-braille-d:before {
content: "\f2c3";
}
.fi-sr-braille-e:before {
content: "\f2c4";
}
.fi-sr-braille-g:before {
content: "\f2c5";
}
.fi-sr-braille-h:before {
content: "\f2c6";
}
.fi-sr-braille-i:before {
content: "\f2c7";
}
.fi-sr-braille-j:before {
content: "\f2c8";
}
.fi-sr-braille-k:before {
content: "\f2c9";
}
.fi-sr-braille-l:before {
content: "\f2ca";
}
.fi-sr-braille-m:before {
content: "\f2cb";
}
.fi-sr-braille-n-alt:before {
content: "\f2cc";
}
.fi-sr-braille-n:before {
content: "\f2cd";
}
.fi-sr-braille-o:before {
content: "\f2ce";
}
.fi-sr-braille-p:before {
content: "\f2cf";
}
.fi-sr-braille-q:before {
content: "\f2d0";
}
.fi-sr-braille-r:before {
content: "\f2d1";
}
.fi-sr-braille-s:before {
content: "\f2d2";
}
.fi-sr-braille-t:before {
content: "\f2d3";
}
.fi-sr-braille-u:before {
content: "\f2d4";
}
.fi-sr-braille-v:before {
content: "\f2d5";
}
.fi-sr-braille-w:before {
content: "\f2d6";
}
.fi-sr-braille-x:before {
content: "\f2d7";
}
.fi-sr-braille-y:before {
content: "\f2d8";
}
.fi-sr-braille-z:before {
content: "\f2d9";
}
.fi-sr-braille:before {
content: "\f2da";
}
.fi-sr-brain-circuit:before {
content: "\f2db";
}
.fi-sr-brain:before {
content: "\f2dc";
}
.fi-sr-brake-warning:before {
content: "\f2dd";
}
.fi-sr-branching:before {
content: "\f2de";
}
.fi-sr-brand:before {
content: "\f2df";
}
.fi-sr-branding:before {
content: "\f2e0";
}
.fi-sr-bread-loaf:before {
content: "\f2e1";
}
.fi-sr-bread-slice-butter:before {
content: "\f2e2";
}
.fi-sr-bread-slice:before {
content: "\f2e3";
}
.fi-sr-bread:before {
content: "\f2e4";
}
.fi-sr-briefcase-arrow-right:before {
content: "\f2e5";
}
.fi-sr-briefcase-blank:before {
content: "\f2e6";
}
.fi-sr-briefcase:before {
content: "\f2e7";
}
.fi-sr-brightness-low:before {
content: "\f2e8";
}
.fi-sr-brightness:before {
content: "\f2e9";
}
.fi-sr-bring-forward:before {
content: "\f2ea";
}
.fi-sr-bring-front:before {
content: "\f2eb";
}
.fi-sr-broadcast-tower:before {
content: "\f2ec";
}
.fi-sr-broccoli:before {
content: "\f2ed";
}
.fi-sr-broken-chain-link-wrong:before {
content: "\f2ee";
}
.fi-sr-broken-image:before {
content: "\f2ef";
}
.fi-sr-broom-ball:before {
content: "\f2f0";
}
.fi-sr-broom:before {
content: "\f2f1";
}
.fi-sr-browser-ui:before {
content: "\f2f2";
}
.fi-sr-browser:before {
content: "\f2f3";
}
.fi-sr-browsers:before {
content: "\f2f4";
}
.fi-sr-brush:before {
content: "\f2f5";
}
.fi-sr-bucket:before {
content: "\f2f6";
}
.fi-sr-budget-alt:before {
content: "\f2f7";
}
.fi-sr-budget:before {
content: "\f2f8";
}
.fi-sr-bug-slash:before {
content: "\f2f9";
}
.fi-sr-bug:before {
content: "\f2fa";
}
.fi-sr-bugs:before {
content: "\f2fb";
}
.fi-sr-build-alt:before {
content: "\f2fc";
}
.fi-sr-build:before {
content: "\f2fd";
}
.fi-sr-building-circle-arrow-right:before {
content: "\f2fe";
}
.fi-sr-building-ngo:before {
content: "\f2ff";
}
.fi-sr-building:before {
content: "\f300";
}
.fi-sr-bulb:before {
content: "\f301";
}
.fi-sr-bullet:before {
content: "\f302";
}
.fi-sr-bullhorn:before {
content: "\f303";
}
.fi-sr-bullseye-arrow:before {
content: "\f304";
}
.fi-sr-bullseye-pointer:before {
content: "\f305";
}
.fi-sr-bullseye:before {
content: "\f306";
}
.fi-sr-burger-alt:before {
content: "\f307";
}
.fi-sr-burger-fries:before {
content: "\f308";
}
.fi-sr-burger-glass:before {
content: "\f309";
}
.fi-sr-burrito:before {
content: "\f30a";
}
.fi-sr-burst:before {
content: "\f30b";
}
.fi-sr-bus-alt:before {
content: "\f30c";
}
.fi-sr-bus:before {
content: "\f30d";
}
.fi-sr-business-time:before {
content: "\f30e";
}
.fi-sr-Butter:before {
content: "\f30f";
}
.fi-sr-butterfly:before {
content: "\f310";
}
.fi-sr-c:before {
content: "\f311";
}
.fi-sr-cabin:before {
content: "\f312";
}
.fi-sr-cactus:before {
content: "\f313";
}
.fi-sr-cage-empty:before {
content: "\f314";
}
.fi-sr-cake-birthday:before {
content: "\f315";
}
.fi-sr-cake-slice:before {
content: "\f316";
}
.fi-sr-cake-wedding:before {
content: "\f317";
}
.fi-sr-calculator-bill:before {
content: "\f318";
}
.fi-sr-calculator-math-tax:before {
content: "\f319";
}
.fi-sr-calculator-money:before {
content: "\f31a";
}
.fi-sr-calculator-simple:before {
content: "\f31b";
}
.fi-sr-calculator:before {
content: "\f31c";
}
.fi-sr-calendar-arrow-down:before {
content: "\f31d";
}
.fi-sr-calendar-arrow-up:before {
content: "\f31e";
}
.fi-sr-calendar-birhtday-cake:before {
content: "\f31f";
}
.fi-sr-calendar-call:before {
content: "\f320";
}
.fi-sr-calendar-check:before {
content: "\f321";
}
.fi-sr-calendar-clock:before {
content: "\f322";
}
.fi-sr-calendar-day:before {
content: "\f323";
}
.fi-sr-calendar-days:before {
content: "\f324";
}
.fi-sr-calendar-event-tax:before {
content: "\f325";
}
.fi-sr-calendar-exclamation:before {
content: "\f326";
}
.fi-sr-calendar-gavel-legal:before {
content: "\f327";
}
.fi-sr-calendar-heart:before {
content: "\f328";
}
.fi-sr-calendar-image:before {
content: "\f329";
}
.fi-sr-calendar-lines-pen:before {
content: "\f32a";
}
.fi-sr-calendar-lines:before {
content: "\f32b";
}
.fi-sr-calendar-minus:before {
content: "\f32c";
}
.fi-sr-calendar-payment-loan:before {
content: "\f32d";
}
.fi-sr-calendar-pen:before {
content: "\f32e";
}
.fi-sr-calendar-plus:before {
content: "\f32f";
}
.fi-sr-calendar-salary:before {
content: "\f330";
}
.fi-sr-calendar-shift-swap:before {
content: "\f331";
}
.fi-sr-calendar-star:before {
content: "\f332";
}
.fi-sr-calendar-swap:before {
content: "\f333";
}
.fi-sr-calendar-week:before {
content: "\f334";
}
.fi-sr-calendar-xmark:before {
content: "\f335";
}
.fi-sr-calendar:before {
content: "\f336";
}
.fi-sr-calendars:before {
content: "\f337";
}
.fi-sr-call-duration:before {
content: "\f338";
}
.fi-sr-call-history:before {
content: "\f339";
}
.fi-sr-call-incoming:before {
content: "\f33a";
}
.fi-sr-call-missed:before {
content: "\f33b";
}
.fi-sr-call-outgoing:before {
content: "\f33c";
}
.fi-sr-camcorder:before {
content: "\f33d";
}
.fi-sr-camera-cctv:before {
content: "\f33e";
}
.fi-sr-camera-movie:before {
content: "\f33f";
}
.fi-sr-camera-retro:before {
content: "\f340";
}
.fi-sr-camera-rotate:before {
content: "\f341";
}
.fi-sr-camera-security:before {
content: "\f342";
}
.fi-sr-camera-slash:before {
content: "\f343";
}
.fi-sr-camera-viewfinder:before {
content: "\f344";
}
.fi-sr-camera:before {
content: "\f345";
}
.fi-sr-campfire:before {
content: "\f346";
}
.fi-sr-camping:before {
content: "\f347";
}
.fi-sr-can-food:before {
content: "\f348";
}
.fi-sr-candle-holder:before {
content: "\f349";
}
.fi-sr-candle-lotus-yoga:before {
content: "\f34a";
}
.fi-sr-candle-pose-yoga:before {
content: "\f34b";
}
.fi-sr-candy-alt:before {
content: "\f34c";
}
.fi-sr-candy-bar:before {
content: "\f34d";
}
.fi-sr-candy-cane:before {
content: "\f34e";
}
.fi-sr-candy-corn:before {
content: "\f34f";
}
.fi-sr-candy-sweet:before {
content: "\f350";
}
.fi-sr-candy:before {
content: "\f351";
}
.fi-sr-Cannabis:before {
content: "\f352";
}
.fi-sr-canned-food:before {
content: "\f353";
}
.fi-sr-capsules:before {
content: "\f354";
}
.fi-sr-car-alt:before {
content: "\f355";
}
.fi-sr-car-battery:before {
content: "\f356";
}
.fi-sr-car-bolt:before {
content: "\f357";
}
.fi-sr-car-building:before {
content: "\f358";
}
.fi-sr-car-bump:before {
content: "\f359";
}
.fi-sr-car-bus:before {
content: "\f35a";
}
.fi-sr-car-circle-bolt:before {
content: "\f35b";
}
.fi-sr-car-crash:before {
content: "\f35c";
}
.fi-sr-car-garage:before {
content: "\f35d";
}
.fi-sr-car-journey:before {
content: "\f35e";
}
.fi-sr-car-mechanic:before {
content: "\f35f";
}
.fi-sr-car-rear:before {
content: "\f360";
}
.fi-sr-car-side-bolt:before {
content: "\f361";
}
.fi-sr-car-side:before {
content: "\f362";
}
.fi-sr-car-tilt:before {
content: "\f363";
}
.fi-sr-car-tunnel:before {
content: "\f364";
}
.fi-sr-car-wash:before {
content: "\f365";
}
.fi-sr-car:before {
content: "\f366";
}
.fi-sr-caravan-alt:before {
content: "\f367";
}
.fi-sr-caravan:before {
content: "\f368";
}
.fi-sr-card-club:before {
content: "\f369";
}
.fi-sr-card-diamond:before {
content: "\f36a";
}
.fi-sr-card-heart:before {
content: "\f36b";
}
.fi-sr-card-spade:before {
content: "\f36c";
}
.fi-sr-cardinal-compass:before {
content: "\f36d";
}
.fi-sr-career-growth:before {
content: "\f36e";
}
.fi-sr-career-path:before {
content: "\f36f";
}
.fi-sr-caret-circle-down:before {
content: "\f370";
}
.fi-sr-caret-circle-right:before {
content: "\f371";
}
.fi-sr-caret-circle-up:before {
content: "\f372";
}
.fi-sr-caret-down:before {
content: "\f373";
}
.fi-sr-caret-left:before {
content: "\f374";
}
.fi-sr-caret-quare-up:before {
content: "\f375";
}
.fi-sr-caret-right:before {
content: "\f376";
}
.fi-sr-caret-square-down:before {
content: "\f377";
}
.fi-sr-caret-square-left_1:before {
content: "\f378";
}
.fi-sr-caret-square-left:before {
content: "\f379";
}
.fi-sr-caret-square-right:before {
content: "\f37a";
}
.fi-sr-caret-up:before {
content: "\f37b";
}
.fi-sr-carrot:before {
content: "\f37c";
}
.fi-sr-cars-crash:before {
content: "\f37d";
}
.fi-sr-cars:before {
content: "\f37e";
}
.fi-sr-cart-arrow-down:before {
content: "\f37f";
}
.fi-sr-cart-minus:before {
content: "\f380";
}
.fi-sr-cart-shopping-fast:before {
content: "\f381";
}
.fi-sr-cash-register:before {
content: "\f382";
}
.fi-sr-cassette-tape:before {
content: "\f383";
}
.fi-sr-cassette-vhs:before {
content: "\f384";
}
.fi-sr-castle:before {
content: "\f385";
}
.fi-sr-cat-head:before {
content: "\f386";
}
.fi-sr-cat-space:before {
content: "\f387";
}
.fi-sr-cat:before {
content: "\f388";
}
.fi-sr-catalog-alt:before {
content: "\f389";
}
.fi-sr-catalog-magazine:before {
content: "\f38a";
}
.fi-sr-catalog:before {
content: "\f38b";
}
.fi-sr-category-alt:before {
content: "\f38c";
}
.fi-sr-category:before {
content: "\f38d";
}
.fi-sr-cauldron:before {
content: "\f38e";
}
.fi-sr-cedi-sign:before {
content: "\f38f";
}
.fi-sr-cello:before {
content: "\f390";
}
.fi-sr-cent-sign:before {
content: "\f391";
}
.fi-sr-chair-office:before {
content: "\f392";
}
.fi-sr-chair:before {
content: "\f393";
}
.fi-sr-chalkboard-user:before {
content: "\f394";
}
.fi-sr-chalkboard:before {
content: "\f395";
}
.fi-sr-challenge-alt:before {
content: "\f396";
}
.fi-sr-challenge:before {
content: "\f397";
}
.fi-sr-channel:before {
content: "\f398";
}
.fi-sr-charging-station:before {
content: "\f399";
}
.fi-sr-chart-area:before {
content: "\f39a";
}
.fi-sr-chart-bullet:before {
content: "\f39b";
}
.fi-sr-chart-candlestick:before {
content: "\f39c";
}
.fi-sr-chart-connected:before {
content: "\f39d";
}
.fi-sr-chart-gantt:before {
content: "\f39e";
}
.fi-sr-chart-histogram:before {
content: "\f39f";
}
.fi-sr-chart-kanban:before {
content: "\f3a0";
}
.fi-sr-chart-line-up-down:before {
content: "\f3a1";
}
.fi-sr-chart-line-up:before {
content: "\f3a2";
}
.fi-sr-chart-mixed-up-circle-currency:before {
content: "\f3a3";
}
.fi-sr-chart-mixed-up-circle-dollar:before {
content: "\f3a4";
}
.fi-sr-chart-mixed:before {
content: "\f3a5";
}
.fi-sr-chart-network:before {
content: "\f3a6";
}
.fi-sr-chart-pie-alt:before {
content: "\f3a7";
}
.fi-sr-chart-pie-simple-circle-currency:before {
content: "\f3a8";
}
.fi-sr-chart-pie-simple-circle-dollar:before {
content: "\f3a9";
}
.fi-sr-chart-pie:before {
content: "\f3aa";
}
.fi-sr-chart-pyramid:before {
content: "\f3ab";
}
.fi-sr-chart-radar:before {
content: "\f3ac";
}
.fi-sr-chart-scatter-3d:before {
content: "\f3ad";
}
.fi-sr-chart-scatter-bubble:before {
content: "\f3ae";
}
.fi-sr-chart-scatter:before {
content: "\f3af";
}
.fi-sr-chart-set-theory:before {
content: "\f3b0";
}
.fi-sr-chart-simple-horizontal:before {
content: "\f3b1";
}
.fi-sr-chart-simple:before {
content: "\f3b2";
}
.fi-sr-chart-tree-map:before {
content: "\f3b3";
}
.fi-sr-chart-tree:before {
content: "\f3b4";
}
.fi-sr-chart-user:before {
content: "\f3b5";
}
.fi-sr-chart-waterfall:before {
content: "\f3b6";
}
.fi-sr-chat-arrow-down:before {
content: "\f3b7";
}
.fi-sr-chat-arrow-grow:before {
content: "\f3b8";
}
.fi-sr-chat-bubble-call:before {
content: "\f3b9";
}
.fi-sr-chatbot-speech-bubble:before {
content: "\f3ba";
}
.fi-sr-chatbot:before {
content: "\f3bb";
}
.fi-sr-check-circle:before {
content: "\f3bc";
}
.fi-sr-check-double:before {
content: "\f3bd";
}
.fi-sr-check-in-calendar:before {
content: "\f3be";
}
.fi-sr-check-out-calendar:before {
content: "\f3bf";
}
.fi-sr-check:before {
content: "\f3c0";
}
.fi-sr-checkbox:before {
content: "\f3c1";
}
.fi-sr-checklist-task-budget:before {
content: "\f3c2";
}
.fi-sr-cheese-alt:before {
content: "\f3c3";
}
.fi-sr-cheese:before {
content: "\f3c4";
}
.fi-sr-cheeseburger:before {
content: "\f3c5";
}
.fi-sr-cherry:before {
content: "\f3c6";
}
.fi-sr-chess-bishop:before {
content: "\f3c7";
}
.fi-sr-chess-board:before {
content: "\f3c8";
}
.fi-sr-chess-clock-alt:before {
content: "\f3c9";
}
.fi-sr-chess-clock:before {
content: "\f3ca";
}
.fi-sr-chess-king-alt:before {
content: "\f3cb";
}
.fi-sr-chess-king:before {
content: "\f3cc";
}
.fi-sr-chess-knight-alt:before {
content: "\f3cd";
}
.fi-sr-chess-knight:before {
content: "\f3ce";
}
.fi-sr-chess-pawn-alt:before {
content: "\f3cf";
}
.fi-sr-chess-pawn:before {
content: "\f3d0";
}
.fi-sr-chess-piece:before {
content: "\f3d1";
}
.fi-sr-chess-queen-alt:before {
content: "\f3d2";
}
.fi-sr-chess-queen:before {
content: "\f3d3";
}
.fi-sr-chess-rook-alt:before {
content: "\f3d4";
}
.fi-sr-chess-rook:before {
content: "\f3d5";
}
.fi-sr-chess:before {
content: "\f3d6";
}
.fi-sr-chevron-double-down:before {
content: "\f3d7";
}
.fi-sr-chevron-double-up:before {
content: "\f3d8";
}
.fi-sr-child-head:before {
content: "\f3d9";
}
.fi-sr-child:before {
content: "\f3da";
}
.fi-sr-chimney:before {
content: "\f3db";
}
.fi-sr-chip:before {
content: "\f3dc";
}
.fi-sr-chocolate:before {
content: "\f3dd";
}
.fi-sr-choir-singing:before {
content: "\f3de";
}
.fi-sr-choose-alt:before {
content: "\f3df";
}
.fi-sr-choose:before {
content: "\f3e0";
}
.fi-sr-church:before {
content: "\f3e1";
}
.fi-sr-circle-0:before {
content: "\f3e2";
}
.fi-sr-circle-1:before {
content: "\f3e3";
}
.fi-sr-circle-2:before {
content: "\f3e4";
}
.fi-sr-circle-3:before {
content: "\f3e5";
}
.fi-sr-circle-4:before {
content: "\f3e6";
}
.fi-sr-circle-5:before {
content: "\f3e7";
}
.fi-sr-circle-6:before {
content: "\f3e8";
}
.fi-sr-circle-7:before {
content: "\f3e9";
}
.fi-sr-circle-8:before {
content: "\f3ea";
}
.fi-sr-circle-9:before {
content: "\f3eb";
}
.fi-sr-circle-a:before {
content: "\f3ec";
}
.fi-sr-circle-b:before {
content: "\f3ed";
}
.fi-sr-circle-bolt:before {
content: "\f3ee";
}
.fi-sr-circle-book-open:before {
content: "\f3ef";
}
.fi-sr-circle-bookmark:before {
content: "\f3f0";
}
.fi-sr-circle-c:before {
content: "\f3f1";
}
.fi-sr-circle-calendar:before {
content: "\f3f2";
}
.fi-sr-circle-camera:before {
content: "\f3f3";
}
.fi-sr-circle-d:before {
content: "\f3f4";
}
.fi-sr-circle-dashed:before {
content: "\f3f5";
}
.fi-sr-circle-divide:before {
content: "\f3f6";
}
.fi-sr-circle-e:before {
content: "\f3f7";
}
.fi-sr-circle-ellipsis-vertical:before {
content: "\f3f8";
}
.fi-sr-circle-ellipsis:before {
content: "\f3f9";
}
.fi-sr-circle-envelope:before {
content: "\f3fa";
}
.fi-sr-circle-exclamation-check:before {
content: "\f3fb";
}
.fi-sr-circle-f:before {
content: "\f3fc";
}
.fi-sr-circle-g:before {
content: "\f3fd";
}
.fi-sr-circle-h:before {
content: "\f3fe";
}
.fi-sr-circle-half-stroke:before {
content: "\f3ff";
}
.fi-sr-circle-half:before {
content: "\f400";
}
.fi-sr-circle-heart:before {
content: "\f401";
}
.fi-sr-circle-i:before {
content: "\f402";
}
.fi-sr-circle-j:before {
content: "\f403";
}
.fi-sr-circle-k:before {
content: "\f404";
}
.fi-sr-circle-l:before {
content: "\f405";
}
.fi-sr-circle-m:before {
content: "\f406";
}
.fi-sr-circle-microphone-lines:before {
content: "\f407";
}
.fi-sr-circle-microphone:before {
content: "\f408";
}
.fi-sr-circle-n:before {
content: "\f409";
}
.fi-sr-circle-nodes:before {
content: "\f40a";
}
.fi-sr-circle-o:before {
content: "\f40b";
}
.fi-sr-circle-overlap:before {
content: "\f40c";
}
.fi-sr-circle-p:before {
content: "\f40d";
}
.fi-sr-circle-phone-flip:before {
content: "\f40e";
}
.fi-sr-circle-phone-hangup:before {
content: "\f40f";
}
.fi-sr-circle-phone:before {
content: "\f410";
}
.fi-sr-circle-q:before {
content: "\f411";
}
.fi-sr-circle-quarter:before {
content: "\f412";
}
.fi-sr-circle-quarters-alt:before {
content: "\f413";
}
.fi-sr-circle-r:before {
content: "\f414";
}
.fi-sr-circle-s:before {
content: "\f415";
}
.fi-sr-circle-small:before {
content: "\f416";
}
.fi-sr-circle-star:before {
content: "\f417";
}
.fi-sr-circle-t:before {
content: "\f418";
}
.fi-sr-circle-three-quarters:before {
content: "\f419";
}
.fi-sr-circle-trash:before {
content: "\f41a";
}
.fi-sr-circle-u:before {
content: "\f41b";
}
.fi-sr-circle-user:before {
content: "\f41c";
}
.fi-sr-circle-v:before {
content: "\f41d";
}
.fi-sr-circle-video:before {
content: "\f41e";
}
.fi-sr-circle-w:before {
content: "\f41f";
}
.fi-sr-circle-waveform-lines:before {
content: "\f420";
}
.fi-sr-circle-x:before {
content: "\f421";
}
.fi-sr-circle-xmark:before {
content: "\f422";
}
.fi-sr-circle-y:before {
content: "\f423";
}
.fi-sr-circle-z:before {
content: "\f424";
}
.fi-sr-circle:before {
content: "\f425";
}
.fi-sr-citrus-slice:before {
content: "\f426";
}
.fi-sr-citrus:before {
content: "\f427";
}
.fi-sr-city:before {
content: "\f428";
}
.fi-sr-clapperboard-play:before {
content: "\f429";
}
.fi-sr-clapperboard:before {
content: "\f42a";
}
.fi-sr-clarinet:before {
content: "\f42b";
}
.fi-sr-claw-marks:before {
content: "\f42c";
}
.fi-sr-clear-alt:before {
content: "\f42d";
}
.fi-sr-clip-file:before {
content: "\f42e";
}
.fi-sr-clip-mail:before {
content: "\f42f";
}
.fi-sr-clip:before {
content: "\f430";
}
.fi-sr-clipboard-check:before {
content: "\f431";
}
.fi-sr-clipboard-list-check:before {
content: "\f432";
}
.fi-sr-clipboard-list:before {
content: "\f433";
}
.fi-sr-clipboard-prescription:before {
content: "\f434";
}
.fi-sr-clipboard-question:before {
content: "\f435";
}
.fi-sr-clipboard-user:before {
content: "\f436";
}
.fi-sr-clipboard:before {
content: "\f437";
}
.fi-sr-clipoard-wrong:before {
content: "\f438";
}
.fi-sr-clock-desk:before {
content: "\f439";
}
.fi-sr-clock-eight-thirty:before {
content: "\f43a";
}
.fi-sr-clock-eleven-thirty:before {
content: "\f43b";
}
.fi-sr-clock-eleven:before {
content: "\f43c";
}
.fi-sr-clock-five-thirty:before {
content: "\f43d";
}
.fi-sr-clock-five:before {
content: "\f43e";
}
.fi-sr-clock-four-thirty:before {
content: "\f43f";
}
.fi-sr-clock-nine-thirty:before {
content: "\f440";
}
.fi-sr-clock-nine:before {
content: "\f441";
}
.fi-sr-clock-one-thirty:before {
content: "\f442";
}
.fi-sr-clock-one:before {
content: "\f443";
}
.fi-sr-clock-seven-thirty:before {
content: "\f444";
}
.fi-sr-clock-seven:before {
content: "\f445";
}
.fi-sr-clock-six-thirty:before {
content: "\f446";
}
.fi-sr-clock-six:before {
content: "\f447";
}
.fi-sr-clock-ten-thirty:before {
content: "\f448";
}
.fi-sr-clock-ten:before {
content: "\f449";
}
.fi-sr-clock-three-thirty:before {
content: "\f44a";
}
.fi-sr-clock-three:before {
content: "\f44b";
}
.fi-sr-clock-time-tracking:before {
content: "\f44c";
}
.fi-sr-clock-twelve-thirty:before {
content: "\f44d";
}
.fi-sr-clock-twelve:before {
content: "\f44e";
}
.fi-sr-clock-two-thirty:before {
content: "\f44f";
}
.fi-sr-clock-two:before {
content: "\f450";
}
.fi-sr-clock-up-arrow:before {
content: "\f451";
}
.fi-sr-clock:before {
content: "\f452";
}
.fi-sr-clone:before {
content: "\f453";
}
.fi-sr-closed-captioning-slash:before {
content: "\f454";
}
.fi-sr-clothes-hanger:before {
content: "\f455";
}
.fi-sr-cloud-back-up-alt:before {
content: "\f456";
}
.fi-sr-cloud-back-up:before {
content: "\f457";
}
.fi-sr-cloud-check:before {
content: "\f458";
}
.fi-sr-cloud-code:before {
content: "\f459";
}
.fi-sr-cloud-disabled:before {
content: "\f45a";
}
.fi-sr-cloud-download-alt:before {
content: "\f45b";
}
.fi-sr-cloud-download:before {
content: "\f45c";
}
.fi-sr-cloud-drizzle:before {
content: "\f45d";
}
.fi-sr-cloud-exclamation:before {
content: "\f45e";
}
.fi-sr-cloud-gear-automation:before {
content: "\f45f";
}
.fi-sr-cloud-hail-mixed:before {
content: "\f460";
}
.fi-sr-cloud-hail:before {
content: "\f461";
}
.fi-sr-cloud-meatball:before {
content: "\f462";
}
.fi-sr-cloud-moon-rain:before {
content: "\f463";
}
.fi-sr-cloud-moon:before {
content: "\f464";
}
.fi-sr-cloud-question:before {
content: "\f465";
}
.fi-sr-cloud-rain:before {
content: "\f466";
}
.fi-sr-cloud-rainbow:before {
content: "\f467";
}
.fi-sr-cloud-share:before {
content: "\f468";
}
.fi-sr-cloud-showers-heavy:before {
content: "\f469";
}
.fi-sr-cloud-showers:before {
content: "\f46a";
}
.fi-sr-cloud-sleet:before {
content: "\f46b";
}
.fi-sr-cloud-snow:before {
content: "\f46c";
}
.fi-sr-cloud-sun-rain:before {
content: "\f46d";
}
.fi-sr-cloud-sun:before {
content: "\f46e";
}
.fi-sr-cloud-upload-alt:before {
content: "\f46f";
}
.fi-sr-cloud-upload:before {
content: "\f470";
}
.fi-sr-cloud:before {
content: "\f471";
}
.fi-sr-clouds-moon:before {
content: "\f472";
}
.fi-sr-clouds-sun:before {
content: "\f473";
}
.fi-sr-clouds:before {
content: "\f474";
}
.fi-sr-clover-alt:before {
content: "\f475";
}
.fi-sr-club:before {
content: "\f476";
}
.fi-sr-cocktail-alt:before {
content: "\f477";
}
.fi-sr-cocktail:before {
content: "\f478";
}
.fi-sr-coconut:before {
content: "\f479";
}
.fi-sr-code-branch:before {
content: "\f47a";
}
.fi-sr-code-commit:before {
content: "\f47b";
}
.fi-sr-code-compare:before {
content: "\f47c";
}
.fi-sr-code-fork:before {
content: "\f47d";
}
.fi-sr-code-merge:before {
content: "\f47e";
}
.fi-sr-code-pull-request-closed:before {
content: "\f47f";
}
.fi-sr-code-pull-request-draft:before {
content: "\f480";
}
.fi-sr-code-pull-request:before {
content: "\f481";
}
.fi-sr-code-simple:before {
content: "\f482";
}
.fi-sr-coffee-bean:before {
content: "\f483";
}
.fi-sr-coffee-beans:before {
content: "\f484";
}
.fi-sr-coffee-heart:before {
content: "\f485";
}
.fi-sr-coffee-pot:before {
content: "\f486";
}
.fi-sr-coffee:before {
content: "\f487";
}
.fi-sr-coffin-cross:before {
content: "\f488";
}
.fi-sr-coffin:before {
content: "\f489";
}
.fi-sr-coin-up-arrow:before {
content: "\f48a";
}
.fi-sr-coin:before {
content: "\f48b";
}
.fi-sr-coins:before {
content: "\f48c";
}
.fi-sr-colon-sign:before {
content: "\f48d";
}
.fi-sr-columns-3:before {
content: "\f48e";
}
.fi-sr-comet:before {
content: "\f48f";
}
.fi-sr-command:before {
content: "\f490";
}
.fi-sr-comment-alt-check:before {
content: "\f491";
}
.fi-sr-comment-alt-dots:before {
content: "\f492";
}
.fi-sr-comment-alt-edit:before {
content: "\f493";
}
.fi-sr-comment-alt-medical:before {
content: "\f494";
}
.fi-sr-comment-alt-middle-top:before {
content: "\f495";
}
.fi-sr-comment-alt-middle:before {
content: "\f496";
}
.fi-sr-comment-alt-minus:before {
content: "\f497";
}
.fi-sr-comment-alt-music:before {
content: "\f498";
}
.fi-sr-comment-alt:before {
content: "\f499";
}
.fi-sr-comment-arrow-down:before {
content: "\f49a";
}
.fi-sr-comment-arrow-up-right:before {
content: "\f49b";
}
.fi-sr-comment-arrow-up:before {
content: "\f49c";
}
.fi-sr-comment-check:before {
content: "\f49d";
}
.fi-sr-comment-code:before {
content: "\f49e";
}
.fi-sr-comment-dollar:before {
content: "\f49f";
}
.fi-sr-comment-dots:before {
content: "\f4a0";
}
.fi-sr-comment-exclamation:before {
content: "\f4a1";
}
.fi-sr-comment-heart:before {
content: "\f4a2";
}
.fi-sr-comment-image:before {
content: "\f4a3";
}
.fi-sr-comment-info:before {
content: "\f4a4";
}
.fi-sr-comment-medical:before {
content: "\f4a5";
}
.fi-sr-comment-minus:before {
content: "\f4a6";
}
.fi-sr-comment-pen:before {
content: "\f4a7";
}
.fi-sr-comment-question:before {
content: "\f4a8";
}
.fi-sr-comment-quote:before {
content: "\f4a9";
}
.fi-sr-comment-slash:before {
content: "\f4aa";
}
.fi-sr-comment-smile:before {
content: "\f4ab";
}
.fi-sr-comment-sms:before {
content: "\f4ac";
}
.fi-sr-comment-text:before {
content: "\f4ad";
}
.fi-sr-comment-user:before {
content: "\f4ae";
}
.fi-sr-comment-xmark:before {
content: "\f4af";
}
.fi-sr-comment:before {
content: "\f4b0";
}
.fi-sr-comments-dollar:before {
content: "\f4b1";
}
.fi-sr-comments-question-check:before {
content: "\f4b2";
}
.fi-sr-comments-question:before {
content: "\f4b3";
}
.fi-sr-comments:before {
content: "\f4b4";
}
.fi-sr-compass-alt:before {
content: "\f4b5";
}
.fi-sr-compass-east:before {
content: "\f4b6";
}
.fi-sr-compass-north:before {
content: "\f4b7";
}
.fi-sr-compass-slash:before {
content: "\f4b8";
}
.fi-sr-compass-south:before {
content: "\f4b9";
}
.fi-sr-compass-west:before {
content: "\f4ba";
}
.fi-sr-completed:before {
content: "\f4bb";
}
.fi-sr-compliance-clipboard:before {
content: "\f4bc";
}
.fi-sr-compliance-document:before {
content: "\f4bd";
}
.fi-sr-compliance:before {
content: "\f4be";
}
.fi-sr-compress-alt:before {
content: "\f4bf";
}
.fi-sr-compress:before {
content: "\f4c0";
}
.fi-sr-computer-classic:before {
content: "\f4c1";
}
.fi-sr-computer-mouse:before {
content: "\f4c2";
}
.fi-sr-computer-speaker:before {
content: "\f4c3";
}
.fi-sr-computer:before {
content: "\f4c4";
}
.fi-sr-concierge-bell:before {
content: "\f4c5";
}
.fi-sr-condition-alt:before {
content: "\f4c6";
}
.fi-sr-condition:before {
content: "\f4c7";
}
.fi-sr-confetti:before {
content: "\f4c8";
}
.fi-sr-constellation:before {
content: "\f4c9";
}
.fi-sr-container-storage:before {
content: "\f4ca";
}
.fi-sr-convert-document:before {
content: "\f4cb";
}
.fi-sr-convert-shapes:before {
content: "\f4cc";
}
.fi-sr-conveyor-belt-alt:before {
content: "\f4cd";
}
.fi-sr-conveyor-belt-arm:before {
content: "\f4ce";
}
.fi-sr-conveyor-belt-empty:before {
content: "\f4cf";
}
.fi-sr-conveyor-belt:before {
content: "\f4d0";
}
.fi-sr-cookie-alt:before {
content: "\f4d1";
}
.fi-sr-cookie:before {
content: "\f4d2";
}
.fi-sr-copy-alt:before {
content: "\f4d3";
}
.fi-sr-copy-image:before {
content: "\f4d4";
}
.fi-sr-copy:before {
content: "\f4d5";
}
.fi-sr-copyright:before {
content: "\f4d6";
}
.fi-sr-corn:before {
content: "\f4d7";
}
.fi-sr-couch:before {
content: "\f4d8";
}
.fi-sr-court-sport:before {
content: "\f4d9";
}
.fi-sr-cow-alt:before {
content: "\f4da";
}
.fi-sr-cow:before {
content: "\f4db";
}
.fi-sr-cowbell-circle-plus:before {
content: "\f4dc";
}
.fi-sr-cowbell-more:before {
content: "\f4dd";
}
.fi-sr-cowbell:before {
content: "\f4de";
}
.fi-sr-crab:before {
content: "\f4df";
}
.fi-sr-crate-empty:before {
content: "\f4e0";
}
.fi-sr-cream:before {
content: "\f4e1";
}
.fi-sr-credit-card-buyer:before {
content: "\f4e2";
}
.fi-sr-credit-card-eye:before {
content: "\f4e3";
}
.fi-sr-credit-card:before {
content: "\f4e4";
}
.fi-sr-cricket:before {
content: "\f4e5";
}
.fi-sr-crm-alt:before {
content: "\f4e6";
}
.fi-sr-crm-computer:before {
content: "\f4e7";
}
.fi-sr-CRM:before {
content: "\f4e8";
}
.fi-sr-croissant:before {
content: "\f4e9";
}
.fi-sr-cross-circle:before {
content: "\f4ea";
}
.fi-sr-cross-religion:before {
content: "\f4eb";
}
.fi-sr-cross-small:before {
content: "\f4ec";
}
.fi-sr-cross:before {
content: "\f4ed";
}
.fi-sr-crow:before {
content: "\f4ee";
}
.fi-sr-crown:before {
content: "\f4ef";
}
.fi-sr-crutch:before {
content: "\f4f0";
}
.fi-sr-crutches:before {
content: "\f4f1";
}
.fi-sr-cruzeiro-sign:before {
content: "\f4f2";
}
.fi-sr-crypto-calendar:before {
content: "\f4f3";
}
.fi-sr-cryptocurrency:before {
content: "\f4f4";
}
.fi-sr-crystal-ball:before {
content: "\f4f5";
}
.fi-sr-cube:before {
content: "\f4f6";
}
.fi-sr-cubes-stacked:before {
content: "\f4f7";
}
.fi-sr-cubes:before {
content: "\f4f8";
}
.fi-sr-cucumber:before {
content: "\f4f9";
}
.fi-sr-cup-straw-swoosh:before {
content: "\f4fa";
}
.fi-sr-cup-straw:before {
content: "\f4fb";
}
.fi-sr-cup-togo:before {
content: "\f4fc";
}
.fi-sr-cupcake-alt:before {
content: "\f4fd";
}
.fi-sr-cupcake:before {
content: "\f4fe";
}
.fi-sr-curling:before {
content: "\f4ff";
}
.fi-sr-cursor-finger:before {
content: "\f500";
}
.fi-sr-cursor-plus:before {
content: "\f501";
}
.fi-sr-cursor-text-alt:before {
content: "\f502";
}
.fi-sr-cursor-text:before {
content: "\f503";
}
.fi-sr-cursor:before {
content: "\f504";
}
.fi-sr-curve-alt:before {
content: "\f505";
}
.fi-sr-curve-arrow:before {
content: "\f506";
}
.fi-sr-curve:before {
content: "\f507";
}
.fi-sr-custard:before {
content: "\f508";
}
.fi-sr-customer-care:before {
content: "\f509";
}
.fi-sr-customer-service:before {
content: "\f50a";
}
.fi-sr-customization-cogwheel:before {
content: "\f50b";
}
.fi-sr-customization:before {
content: "\f50c";
}
.fi-sr-customize-computer:before {
content: "\f50d";
}
.fi-sr-customize-edit:before {
content: "\f50e";
}
.fi-sr-customize:before {
content: "\f50f";
}
.fi-sr-CV:before {
content: "\f510";
}
.fi-sr-cvv-card:before {
content: "\f511";
}
.fi-sr-d:before {
content: "\f512";
}
.fi-sr-dagger:before {
content: "\f513";
}
.fi-sr-daily-calendar:before {
content: "\f514";
}
.fi-sr-damage:before {
content: "\f515";
}
.fi-sr-dart:before {
content: "\f516";
}
.fi-sr-dashboard-monitor:before {
content: "\f517";
}
.fi-sr-dashboard-panel:before {
content: "\f518";
}
.fi-sr-dashboard:before {
content: "\f519";
}
.fi-sr-data-transfer:before {
content: "\f51a";
}
.fi-sr-database:before {
content: "\f51b";
}
.fi-sr-deer-rudolph:before {
content: "\f51c";
}
.fi-sr-deer:before {
content: "\f51d";
}
.fi-sr-delete-document:before {
content: "\f51e";
}
.fi-sr-delete-right:before {
content: "\f51f";
}
.fi-sr-delete-user:before {
content: "\f520";
}
.fi-sr-delete:before {
content: "\f521";
}
.fi-sr-democrat:before {
content: "\f522";
}
.fi-sr-department-structure:before {
content: "\f523";
}
.fi-sr-department:before {
content: "\f524";
}
.fi-sr-deposit-alt:before {
content: "\f525";
}
.fi-sr-deposit:before {
content: "\f526";
}
.fi-sr-description-alt:before {
content: "\f527";
}
.fi-sr-description:before {
content: "\f528";
}
.fi-sr-desk:before {
content: "\f529";
}
.fi-sr-desktop-arrow-down:before {
content: "\f52a";
}
.fi-sr-desktop-wallpaper:before {
content: "\f52b";
}
.fi-sr-devices:before {
content: "\f52c";
}
.fi-sr-dewpoint:before {
content: "\f52d";
}
.fi-sr-dharmachakra:before {
content: "\f52e";
}
.fi-sr-diagram-cells:before {
content: "\f52f";
}
.fi-sr-diagram-lean-canvas:before {
content: "\f530";
}
.fi-sr-diagram-nested:before {
content: "\f531";
}
.fi-sr-diagram-next:before {
content: "\f532";
}
.fi-sr-diagram-predecessor:before {
content: "\f533";
}
.fi-sr-diagram-previous:before {
content: "\f534";
}
.fi-sr-diagram-project:before {
content: "\f535";
}
.fi-sr-diagram-sankey:before {
content: "\f536";
}
.fi-sr-diagram-subtask:before {
content: "\f537";
}
.fi-sr-diagram-successor:before {
content: "\f538";
}
.fi-sr-diagram-venn:before {
content: "\f539";
}
.fi-sr-dial-high:before {
content: "\f53a";
}
.fi-sr-dial-low:before {
content: "\f53b";
}
.fi-sr-dial-max:before {
content: "\f53c";
}
.fi-sr-dial-med-low:before {
content: "\f53d";
}
.fi-sr-dial-med:before {
content: "\f53e";
}
.fi-sr-dial-min:before {
content: "\f53f";
}
.fi-sr-dial-off:before {
content: "\f540";
}
.fi-sr-dial:before {
content: "\f541";
}
.fi-sr-diamond-exclamation:before {
content: "\f542";
}
.fi-sr-diamond-turn-right:before {
content: "\f543";
}
.fi-sr-diamond:before {
content: "\f544";
}
.fi-sr-diary-bookmark-down:before {
content: "\f545";
}
.fi-sr-diary-bookmarks:before {
content: "\f546";
}
.fi-sr-diary-clasp:before {
content: "\f547";
}
.fi-sr-dice-alt:before {
content: "\f548";
}
.fi-sr-dice-d10:before {
content: "\f549";
}
.fi-sr-dice-d12:before {
content: "\f54a";
}
.fi-sr-dice-d20:before {
content: "\f54b";
}
.fi-sr-dice-d4:before {
content: "\f54c";
}
.fi-sr-dice-d6:before {
content: "\f54d";
}
.fi-sr-dice-d8:before {
content: "\f54e";
}
.fi-sr-dice-four:before {
content: "\f54f";
}
.fi-sr-dice-one:before {
content: "\f550";
}
.fi-sr-dice-six:before {
content: "\f551";
}
.fi-sr-dice-three:before {
content: "\f552";
}
.fi-sr-dice-two:before {
content: "\f553";
}
.fi-sr-dice:before {
content: "\f554";
}
.fi-sr-digging:before {
content: "\f555";
}
.fi-sr-digital-tachograph:before {
content: "\f556";
}
.fi-sr-dinner:before {
content: "\f557";
}
.fi-sr-diploma:before {
content: "\f558";
}
.fi-sr-direction-signal-arrow:before {
content: "\f559";
}
.fi-sr-direction-signal:before {
content: "\f55a";
}
.fi-sr-disc-drive:before {
content: "\f55b";
}
.fi-sr-discover:before {
content: "\f55c";
}
.fi-sr-disease:before {
content: "\f55d";
}
.fi-sr-disk:before {
content: "\f55e";
}
.fi-sr-display-arrow-down:before {
content: "\f55f";
}
.fi-sr-display-chart-up:before {
content: "\f560";
}
.fi-sr-display-code:before {
content: "\f561";
}
.fi-sr-display-medical:before {
content: "\f562";
}
.fi-sr-display-slash:before {
content: "\f563";
}
.fi-sr-distribute-spacing-horizontal:before {
content: "\f564";
}
.fi-sr-distribute-spacing-vertical:before {
content: "\f565";
}
.fi-sr-divide:before {
content: "\f566";
}
.fi-sr-dizzy:before {
content: "\f567";
}
.fi-sr-dna:before {
content: "\f568";
}
.fi-sr-do-not-enter:before {
content: "\f569";
}
.fi-sr-doctor:before {
content: "\f56a";
}
.fi-sr-document-circle-wrong:before {
content: "\f56b";
}
.fi-sr-document-paid:before {
content: "\f56c";
}
.fi-sr-document-signed:before {
content: "\f56d";
}
.fi-sr-document:before {
content: "\f56e";
}
.fi-sr-dog-leashed:before {
content: "\f56f";
}
.fi-sr-dog:before {
content: "\f570";
}
.fi-sr-dollar:before {
content: "\f571";
}
.fi-sr-dolly-flatbed-alt:before {
content: "\f572";
}
.fi-sr-dolly-flatbed-empty:before {
content: "\f573";
}
.fi-sr-dolly-flatbed:before {
content: "\f574";
}
.fi-sr-dolphin:before {
content: "\f575";
}
.fi-sr-domino-effect:before {
content: "\f576";
}
.fi-sr-donate:before {
content: "\f577";
}
.fi-sr-dong-sign:before {
content: "\f578";
}
.fi-sr-donut:before {
content: "\f579";
}
.fi-sr-door-closed:before {
content: "\f57a";
}
.fi-sr-door-open:before {
content: "\f57b";
}
.fi-sr-dot-circle:before {
content: "\f57c";
}
.fi-sr-dot-pending:before {
content: "\f57d";
}
.fi-sr-dove:before {
content: "\f57e";
}
.fi-sr-down-from-bracket:before {
content: "\f57f";
}
.fi-sr-down-left-and-up-right-to-center:before {
content: "\f580";
}
.fi-sr-down-left:before {
content: "\f581";
}
.fi-sr-down-right:before {
content: "\f582";
}
.fi-sr-down-to-line:before {
content: "\f583";
}
.fi-sr-down:before {
content: "\f584";
}
.fi-sr-download:before {
content: "\f585";
}
.fi-sr-drafting-compass:before {
content: "\f586";
}
.fi-sr-dragon:before {
content: "\f587";
}
.fi-sr-draw-polygon:before {
content: "\f588";
}
.fi-sr-draw-square:before {
content: "\f589";
}
.fi-sr-drawer-alt:before {
content: "\f58a";
}
.fi-sr-drawer-empty:before {
content: "\f58b";
}
.fi-sr-drawer:before {
content: "\f58c";
}
.fi-sr-dreidel:before {
content: "\f58d";
}
.fi-sr-drink-alt:before {
content: "\f58e";
}
.fi-sr-driver-man:before {
content: "\f58f";
}
.fi-sr-driver-woman:before {
content: "\f590";
}
.fi-sr-drone-alt:before {
content: "\f591";
}
.fi-sr-drone-front:before {
content: "\f592";
}
.fi-sr-drone:before {
content: "\f593";
}
.fi-sr-drop-down:before {
content: "\f594";
}
.fi-sr-dropdown-select:before {
content: "\f595";
}
.fi-sr-dropdown:before {
content: "\f596";
}
.fi-sr-drum-steelpan:before {
content: "\f597";
}
.fi-sr-drum:before {
content: "\f598";
}
.fi-sr-drumstick-bite:before {
content: "\f599";
}
.fi-sr-drumstick:before {
content: "\f59a";
}
.fi-sr-dryer-alt:before {
content: "\f59b";
}
.fi-sr-dryer:before {
content: "\f59c";
}
.fi-sr-duck:before {
content: "\f59d";
}
.fi-sr-dumbbell-fitness:before {
content: "\f59e";
}
.fi-sr-dumbbell-horizontal:before {
content: "\f59f";
}
.fi-sr-dumbbell-ray:before {
content: "\f5a0";
}
.fi-sr-dumbbell-weightlifting:before {
content: "\f5a1";
}
.fi-sr-dumpster-fire:before {
content: "\f5a2";
}
.fi-sr-dumpster:before {
content: "\f5a3";
}
.fi-sr-dungeon:before {
content: "\f5a4";
}
.fi-sr-duplicate:before {
content: "\f5a5";
}
.fi-sr-duration-alt:before {
content: "\f5a6";
}
.fi-sr-duration:before {
content: "\f5a7";
}
.fi-sr-e-learning:before {
content: "\f5a8";
}
.fi-sr-e:before {
content: "\f5a9";
}
.fi-sr-ear-deaf:before {
content: "\f5aa";
}
.fi-sr-ear-muffs:before {
content: "\f5ab";
}
.fi-sr-ear:before {
content: "\f5ac";
}
.fi-sr-earnings:before {
content: "\f5ad";
}
.fi-sr-earth-africa:before {
content: "\f5ae";
}
.fi-sr-earth-americas:before {
content: "\f5af";
}
.fi-sr-earth-asia:before {
content: "\f5b0";
}
.fi-sr-earth-europa:before {
content: "\f5b1";
}
.fi-sr-eclipse-alt:before {
content: "\f5b2";
}
.fi-sr-eclipse:before {
content: "\f5b3";
}
.fi-sr-edit-alt:before {
content: "\f5b4";
}
.fi-sr-edit:before {
content: "\f5b5";
}
.fi-sr-effect:before {
content: "\f5b6";
}
.fi-sr-egg-fried:before {
content: "\f5b7";
}
.fi-sr-egg:before {
content: "\f5b8";
}
.fi-sr-eject:before {
content: "\f5b9";
}
.fi-sr-elephant:before {
content: "\f5ba";
}
.fi-sr-elevator:before {
content: "\f5bb";
}
.fi-sr-email-pending:before {
content: "\f5bc";
}
.fi-sr-employee-alt:before {
content: "\f5bd";
}
.fi-sr-employee-handbook:before {
content: "\f5be";
}
.fi-sr-employee-man-alt:before {
content: "\f5bf";
}
.fi-sr-employee-man:before {
content: "\f5c0";
}
.fi-sr-empty-set:before {
content: "\f5c1";
}
.fi-sr-endless-loop:before {
content: "\f5c2";
}
.fi-sr-engine-warning:before {
content: "\f5c3";
}
.fi-sr-engine:before {
content: "\f5c4";
}
.fi-sr-enter:before {
content: "\f5c5";
}
.fi-sr-entertainment:before {
content: "\f5c6";
}
.fi-sr-envelope-ban:before {
content: "\f5c7";
}
.fi-sr-envelope-bulk:before {
content: "\f5c8";
}
.fi-sr-envelope-dot:before {
content: "\f5c9";
}
.fi-sr-envelope-download:before {
content: "\f5ca";
}
.fi-sr-envelope-heart:before {
content: "\f5cb";
}
.fi-sr-envelope-marker:before {
content: "\f5cc";
}
.fi-sr-envelope-open-dollar:before {
content: "\f5cd";
}
.fi-sr-envelope-open-text:before {
content: "\f5ce";
}
.fi-sr-envelope-open:before {
content: "\f5cf";
}
.fi-sr-envelope-plus:before {
content: "\f5d0";
}
.fi-sr-envelope:before {
content: "\f5d1";
}
.fi-sr-envelopes:before {
content: "\f5d2";
}
.fi-sr-equality:before {
content: "\f5d3";
}
.fi-sr-equals:before {
content: "\f5d4";
}
.fi-sr-equipment:before {
content: "\f5d5";
}
.fi-sr-eraser:before {
content: "\f5d6";
}
.fi-sr-error-camera:before {
content: "\f5d7";
}
.fi-sr-escalator:before {
content: "\f5d8";
}
.fi-sr-ethernet:before {
content: "\f5d9";
}
.fi-sr-euro:before {
content: "\f5da";
}
.fi-sr-excavator:before {
content: "\f5db";
}
.fi-sr-exchange-alt:before {
content: "\f5dc";
}
.fi-sr-exchange-cryptocurrency:before {
content: "\f5dd";
}
.fi-sr-exchange:before {
content: "\f5de";
}
.fi-sr-exclamation:before {
content: "\f5df";
}
.fi-sr-exit-alt:before {
content: "\f5e0";
}
.fi-sr-exit:before {
content: "\f5e1";
}
.fi-sr-expand-arrows-alt:before {
content: "\f5e2";
}
.fi-sr-expand-arrows:before {
content: "\f5e3";
}
.fi-sr-expand:before {
content: "\f5e4";
}
.fi-sr-expense-bill:before {
content: "\f5e5";
}
.fi-sr-expense:before {
content: "\f5e6";
}
.fi-sr-external-hard-drive:before {
content: "\f5e7";
}
.fi-sr-external-world:before {
content: "\f5e8";
}
.fi-sr-eye-crossed:before {
content: "\f5e9";
}
.fi-sr-eye-dropper-half:before {
content: "\f5ea";
}
.fi-sr-eye:before {
content: "\f5eb";
}
.fi-sr-eyes:before {
content: "\f5ec";
}
.fi-sr-f:before {
content: "\f5ed";
}
.fi-sr-fabric:before {
content: "\f5ee";
}
.fi-sr-face-angry-horns:before {
content: "\f5ef";
}
.fi-sr-face-anguished:before {
content: "\f5f0";
}
.fi-sr-face-anxious-sweat:before {
content: "\f5f1";
}
.fi-sr-face-astonished:before {
content: "\f5f2";
}
.fi-sr-face-awesome:before {
content: "\f5f3";
}
.fi-sr-face-beam-hand-over-mouth:before {
content: "\f5f4";
}
.fi-sr-face-confounded:before {
content: "\f5f5";
}
.fi-sr-face-confused:before {
content: "\f5f6";
}
.fi-sr-face-cowboy-hat:before {
content: "\f5f7";
}
.fi-sr-face-disappointed:before {
content: "\f5f8";
}
.fi-sr-face-disguise:before {
content: "\f5f9";
}
.fi-sr-face-downcast-sweat:before {
content: "\f5fa";
}
.fi-sr-face-drooling:before {
content: "\f5fb";
}
.fi-sr-face-explode:before {
content: "\f5fc";
}
.fi-sr-face-expressionless:before {
content: "\f5fd";
}
.fi-sr-face-eyes-xmarks:before {
content: "\f5fe";
}
.fi-sr-face-fearful:before {
content: "\f5ff";
}
.fi-sr-face-glasses:before {
content: "\f600";
}
.fi-sr-face-grin-tongue-wink:before {
content: "\f601";
}
.fi-sr-face-hand-yawn:before {
content: "\f602";
}
.fi-sr-face-head-bandage:before {
content: "\f603";
}
.fi-sr-face-hushed:before {
content: "\f604";
}
.fi-sr-face-icicles:before {
content: "\f605";
}
.fi-sr-face-lying:before {
content: "\f606";
}
.fi-sr-face-mask:before {
content: "\f607";
}
.fi-sr-face-monocle:before {
content: "\f608";
}
.fi-sr-face-nauseated:before {
content: "\f609";
}
.fi-sr-face-nose-steam:before {
content: "\f60a";
}
.fi-sr-face-party:before {
content: "\f60b";
}
.fi-sr-face-pensive:before {
content: "\f60c";
}
.fi-sr-face-persevering:before {
content: "\f60d";
}
.fi-sr-face-pleading:before {
content: "\f60e";
}
.fi-sr-face-raised-eyebrow:before {
content: "\f60f";
}
.fi-sr-face-relieved:before {
content: "\f610";
}
.fi-sr-face-sad-sweat:before {
content: "\f611";
}
.fi-sr-face-scream:before {
content: "\f612";
}
.fi-sr-face-shush:before {
content: "\f613";
}
.fi-sr-face-sleeping:before {
content: "\f614";
}
.fi-sr-face-sleepy:before {
content: "\f615";
}
.fi-sr-face-smile-halo:before {
content: "\f616";
}
.fi-sr-face-smile-hearts:before {
content: "\f617";
}
.fi-sr-face-smile-horns:before {
content: "\f618";
}
.fi-sr-face-smile-tear:before {
content: "\f619";
}
.fi-sr-face-smile-tongue:before {
content: "\f61a";
}
.fi-sr-face-smile-upside-down:before {
content: "\f61b";
}
.fi-sr-face-smiling-hands:before {
content: "\f61c";
}
.fi-sr-face-smirking:before {
content: "\f61d";
}
.fi-sr-face-sunglasses-alt:before {
content: "\f61e";
}
.fi-sr-face-sunglasses:before {
content: "\f61f";
}
.fi-sr-face-swear:before {
content: "\f620";
}
.fi-sr-face-thermometer:before {
content: "\f621";
}
.fi-sr-face-thinking:before {
content: "\f622";
}
.fi-sr-face-tissue:before {
content: "\f623";
}
.fi-sr-face-tongue-money:before {
content: "\f624";
}
.fi-sr-face-tongue-sweat:before {
content: "\f625";
}
.fi-sr-face-unamused:before {
content: "\f626";
}
.fi-sr-face-viewfinder:before {
content: "\f627";
}
.fi-sr-face-vomit:before {
content: "\f628";
}
.fi-sr-face-weary:before {
content: "\f629";
}
.fi-sr-face-woozy:before {
content: "\f62a";
}
.fi-sr-face-worried:before {
content: "\f62b";
}
.fi-sr-face-zany:before {
content: "\f62c";
}
.fi-sr-face-zipper:before {
content: "\f62d";
}
.fi-sr-fail:before {
content: "\f62e";
}
.fi-sr-falafel:before {
content: "\f62f";
}
.fi-sr-family-dress:before {
content: "\f630";
}
.fi-sr-family-pants:before {
content: "\f631";
}
.fi-sr-family:before {
content: "\f632";
}
.fi-sr-fan-table:before {
content: "\f633";
}
.fi-sr-fan:before {
content: "\f634";
}
.fi-sr-farm:before {
content: "\f635";
}
.fi-sr-faucet-drip:before {
content: "\f636";
}
.fi-sr-faucet:before {
content: "\f637";
}
.fi-sr-fax:before {
content: "\f638";
}
.fi-sr-feather-pointed:before {
content: "\f639";
}
.fi-sr-feather:before {
content: "\f63a";
}
.fi-sr-features-alt:before {
content: "\f63b";
}
.fi-sr-features:before {
content: "\f63c";
}
.fi-sr-fee-receipt:before {
content: "\f63d";
}
.fi-sr-fee:before {
content: "\f63e";
}
.fi-sr-feedback-alt:before {
content: "\f63f";
}
.fi-sr-feedback-cycle-loop:before {
content: "\f640";
}
.fi-sr-feedback-hand:before {
content: "\f641";
}
.fi-sr-feedback-review:before {
content: "\f642";
}
.fi-sr-feedback:before {
content: "\f643";
}
.fi-sr-fence:before {
content: "\f644";
}
.fi-sr-field-hockey:before {
content: "\f645";
}
.fi-sr-fighter-jet:before {
content: "\f646";
}
.fi-sr-file-ai:before {
content: "\f647";
}
.fi-sr-file-audio:before {
content: "\f648";
}
.fi-sr-file-binary:before {
content: "\f649";
}
.fi-sr-file-chart-line:before {
content: "\f64a";
}
.fi-sr-file-chart-pie:before {
content: "\f64b";
}
.fi-sr-file-circle-info:before {
content: "\f64c";
}
.fi-sr-file-cloud:before {
content: "\f64d";
}
.fi-sr-file-code:before {
content: "\f64e";
}
.fi-sr-file-csv:before {
content: "\f64f";
}
.fi-sr-file-download:before {
content: "\f650";
}
.fi-sr-file-edit:before {
content: "\f651";
}
.fi-sr-file-eps:before {
content: "\f652";
}
.fi-sr-file-excel:before {
content: "\f653";
}
.fi-sr-file-exclamation:before {
content: "\f654";
}
.fi-sr-file-export:before {
content: "\f655";
}
.fi-sr-file-image:before {
content: "\f656";
}
.fi-sr-file-import:before {
content: "\f657";
}
.fi-sr-file-invoice-dollar:before {
content: "\f658";
}
.fi-sr-file-invoice:before {
content: "\f659";
}
.fi-sr-file-medical-alt:before {
content: "\f65a";
}
.fi-sr-file-medical:before {
content: "\f65b";
}
.fi-sr-file-minus:before {
content: "\f65c";
}
.fi-sr-file-pdf:before {
content: "\f65d";
}
.fi-sr-file-powerpoint:before {
content: "\f65e";
}
.fi-sr-file-prescription:before {
content: "\f65f";
}
.fi-sr-file-psd:before {
content: "\f660";
}
.fi-sr-file-signature:before {
content: "\f661";
}
.fi-sr-file-spreadsheet:before {
content: "\f662";
}
.fi-sr-file-upload:before {
content: "\f663";
}
.fi-sr-file-user:before {
content: "\f664";
}
.fi-sr-file-video:before {
content: "\f665";
}
.fi-sr-file-word:before {
content: "\f666";
}
.fi-sr-file-zipper:before {
content: "\f667";
}
.fi-sr-file:before {
content: "\f668";
}
.fi-sr-files-medical:before {
content: "\f669";
}
.fi-sr-fill:before {
content: "\f66a";
}
.fi-sr-film-canister:before {
content: "\f66b";
}
.fi-sr-film-slash:before {
content: "\f66c";
}
.fi-sr-film:before {
content: "\f66d";
}
.fi-sr-films:before {
content: "\f66e";
}
.fi-sr-filter-list:before {
content: "\f66f";
}
.fi-sr-filter-slash:before {
content: "\f670";
}
.fi-sr-filter:before {
content: "\f671";
}
.fi-sr-filters:before {
content: "\f672";
}
.fi-sr-fingerprint-security-risk:before {
content: "\f673";
}
.fi-sr-fingerprint:before {
content: "\f674";
}
.fi-sr-fire-burner:before {
content: "\f675";
}
.fi-sr-fire-extinguisher:before {
content: "\f676";
}
.fi-sr-fire-flame-curved:before {
content: "\f677";
}
.fi-sr-fire-flame-simple:before {
content: "\f678";
}
.fi-sr-fire-hydrant:before {
content: "\f679";
}
.fi-sr-fire-smoke:before {
content: "\f67a";
}
.fi-sr-fireplace:before {
content: "\f67b";
}
.fi-sr-first-award:before {
content: "\f67c";
}
.fi-sr-first-laurel:before {
content: "\f67d";
}
.fi-sr-first-medal:before {
content: "\f67e";
}
.fi-sr-first:before {
content: "\f67f";
}
.fi-sr-fish-bones:before {
content: "\f680";
}
.fi-sr-fish-cooked:before {
content: "\f681";
}
.fi-sr-fish:before {
content: "\f682";
}
.fi-sr-fishing-rod:before {
content: "\f683";
}
.fi-sr-fist-move:before {
content: "\f684";
}
.fi-sr-flag-alt:before {
content: "\f685";
}
.fi-sr-flag-checkered:before {
content: "\f686";
}
.fi-sr-flag-usa:before {
content: "\f687";
}
.fi-sr-flag:before {
content: "\f688";
}
.fi-sr-flame:before {
content: "\f689";
}
.fi-sr-flashlight:before {
content: "\f68a";
}
.fi-sr-flask-gear:before {
content: "\f68b";
}
.fi-sr-flask-poison:before {
content: "\f68c";
}
.fi-sr-flask-potion:before {
content: "\f68d";
}
.fi-sr-flask:before {
content: "\f68e";
}
.fi-sr-flatbread-stuffed:before {
content: "\f68f";
}
.fi-sr-flatbread:before {
content: "\f690";
}
.fi-sr-flip-horizontal:before {
content: "\f691";
}
.fi-sr-floor-alt:before {
content: "\f692";
}
.fi-sr-floor-layer:before {
content: "\f693";
}
.fi-sr-floor:before {
content: "\f694";
}
.fi-sr-floppy-disk-circle-arrow-right:before {
content: "\f695";
}
.fi-sr-floppy-disk-circle-xmark:before {
content: "\f696";
}
.fi-sr-floppy-disk-pen:before {
content: "\f697";
}
.fi-sr-floppy-disks:before {
content: "\f698";
}
.fi-sr-florin-sign:before {
content: "\f699";
}
.fi-sr-flower-butterfly:before {
content: "\f69a";
}
.fi-sr-flower-daffodil:before {
content: "\f69b";
}
.fi-sr-flower-tulip:before {
content: "\f69c";
}
.fi-sr-flower:before {
content: "\f69d";
}
.fi-sr-flushed:before {
content: "\f69e";
}
.fi-sr-flute:before {
content: "\f69f";
}
.fi-sr-flux-capacitor:before {
content: "\f6a0";
}
.fi-sr-fly-insect:before {
content: "\f6a1";
}
.fi-sr-flying-disc:before {
content: "\f6a2";
}
.fi-sr-fog:before {
content: "\f6a3";
}
.fi-sr-folder-download:before {
content: "\f6a4";
}
.fi-sr-folder-fire:before {
content: "\f6a5";
}
.fi-sr-folder-minus:before {
content: "\f6a6";
}
.fi-sr-folder-open:before {
content: "\f6a7";
}
.fi-sr-folder-times:before {
content: "\f6a8";
}
.fi-sr-folder-tree:before {
content: "\f6a9";
}
.fi-sr-folder-upload:before {
content: "\f6aa";
}
.fi-sr-folder-xmark:before {
content: "\f6ab";
}
.fi-sr-folder:before {
content: "\f6ac";
}
.fi-sr-folders:before {
content: "\f6ad";
}
.fi-sr-follow-folder:before {
content: "\f6ae";
}
.fi-sr-followcollection:before {
content: "\f6af";
}
.fi-sr-following:before {
content: "\f6b0";
}
.fi-sr-fondue-pot:before {
content: "\f6b1";
}
.fi-sr-football:before {
content: "\f6b2";
}
.fi-sr-foreign-language-audio:before {
content: "\f6b3";
}
.fi-sr-fork:before {
content: "\f6b4";
}
.fi-sr-forklift:before {
content: "\f6b5";
}
.fi-sr-form:before {
content: "\f6b6";
}
.fi-sr-fort:before {
content: "\f6b7";
}
.fi-sr-forward-fast:before {
content: "\f6b8";
}
.fi-sr-forward:before {
content: "\f6b9";
}
.fi-sr-fox:before {
content: "\f6ba";
}
.fi-sr-frame:before {
content: "\f6bb";
}
.fi-sr-franc-sign:before {
content: "\f6bc";
}
.fi-sr-free-delivery:before {
content: "\f6bd";
}
.fi-sr-free:before {
content: "\f6be";
}
.fi-sr-french-fries:before {
content: "\f6bf";
}
.fi-sr-friday:before {
content: "\f6c0";
}
.fi-sr-frog:before {
content: "\f6c1";
}
.fi-sr-frown:before {
content: "\f6c2";
}
.fi-sr-ftp:before {
content: "\f6c3";
}
.fi-sr-fuel-gauge:before {
content: "\f6c4";
}
.fi-sr-function-process:before {
content: "\f6c5";
}
.fi-sr-function-square:before {
content: "\f6c6";
}
.fi-sr-function:before {
content: "\f6c7";
}
.fi-sr-funnel-dollar:before {
content: "\f6c8";
}
.fi-sr-g:before {
content: "\f6c9";
}
.fi-sr-galaxy-alt:before {
content: "\f6ca";
}
.fi-sr-galaxy-planet:before {
content: "\f6cb";
}
.fi-sr-galaxy-star:before {
content: "\f6cc";
}
.fi-sr-galaxy:before {
content: "\f6cd";
}
.fi-sr-gallery-thumbnails:before {
content: "\f6ce";
}
.fi-sr-gallery:before {
content: "\f6cf";
}
.fi-sr-game-board-alt:before {
content: "\f6d0";
}
.fi-sr-game:before {
content: "\f6d1";
}
.fi-sr-gamepad:before {
content: "\f6d2";
}
.fi-sr-games:before {
content: "\f6d3";
}
.fi-sr-garage-car:before {
content: "\f6d4";
}
.fi-sr-garage-open:before {
content: "\f6d5";
}
.fi-sr-garage:before {
content: "\f6d6";
}
.fi-sr-garlic-alt:before {
content: "\f6d7";
}
.fi-sr-garlic:before {
content: "\f6d8";
}
.fi-sr-gas-pump-alt:before {
content: "\f6d9";
}
.fi-sr-gas-pump-slash:before {
content: "\f6da";
}
.fi-sr-gas-pump:before {
content: "\f6db";
}
.fi-sr-gauge-circle-bolt:before {
content: "\f6dc";
}
.fi-sr-gauge-circle-minus:before {
content: "\f6dd";
}
.fi-sr-gauge-circle-plus:before {
content: "\f6de";
}
.fi-sr-gavel:before {
content: "\f6df";
}
.fi-sr-gay-couple:before {
content: "\f6e0";
}
.fi-sr-gears:before {
content: "\f6e1";
}
.fi-sr-gem:before {
content: "\f6e2";
}
.fi-sr-general:before {
content: "\f6e3";
}
.fi-sr-ghost:before {
content: "\f6e4";
}
.fi-sr-gif-square:before {
content: "\f6e5";
}
.fi-sr-gif:before {
content: "\f6e6";
}
.fi-sr-gift-box-benefits:before {
content: "\f6e7";
}
.fi-sr-gift-card:before {
content: "\f6e8";
}
.fi-sr-gift:before {
content: "\f6e9";
}
.fi-sr-gifts:before {
content: "\f6ea";
}
.fi-sr-gingerbread-man:before {
content: "\f6eb";
}
.fi-sr-glass-champagne:before {
content: "\f6ec";
}
.fi-sr-glass-cheers:before {
content: "\f6ed";
}
.fi-sr-glass-citrus:before {
content: "\f6ee";
}
.fi-sr-glass-empty:before {
content: "\f6ef";
}
.fi-sr-glass-half:before {
content: "\f6f0";
}
.fi-sr-glass-water-droplet:before {
content: "\f6f1";
}
.fi-sr-glass-whiskey-rocks:before {
content: "\f6f2";
}
.fi-sr-glass-whiskey:before {
content: "\f6f3";
}
.fi-sr-glass:before {
content: "\f6f4";
}
.fi-sr-glasses:before {
content: "\f6f5";
}
.fi-sr-globe-alt:before {
content: "\f6f6";
}
.fi-sr-globe-pointer:before {
content: "\f6f7";
}
.fi-sr-globe-snow:before {
content: "\f6f8";
}
.fi-sr-globe:before {
content: "\f6f9";
}
.fi-sr-goal-net:before {
content: "\f6fa";
}
.fi-sr-golf-ball:before {
content: "\f6fb";
}
.fi-sr-golf-club:before {
content: "\f6fc";
}
.fi-sr-golf-hole:before {
content: "\f6fd";
}
.fi-sr-golf:before {
content: "\f6fe";
}
.fi-sr-gopuram:before {
content: "\f6ff";
}
.fi-sr-government-budget:before {
content: "\f700";
}
.fi-sr-government-flag:before {
content: "\f701";
}
.fi-sr-government-user:before {
content: "\f702";
}
.fi-sr-gps-navigation:before {
content: "\f703";
}
.fi-sr-graduation-cap:before {
content: "\f704";
}
.fi-sr-gramophone:before {
content: "\f705";
}
.fi-sr-grape:before {
content: "\f706";
}
.fi-sr-graph-curve:before {
content: "\f707";
}
.fi-sr-graphic-style:before {
content: "\f708";
}
.fi-sr-graphic-tablet:before {
content: "\f709";
}
.fi-sr-grate-droplet:before {
content: "\f70a";
}
.fi-sr-grate:before {
content: "\f70b";
}
.fi-sr-greater-than-equal:before {
content: "\f70c";
}
.fi-sr-greater-than:before {
content: "\f70d";
}
.fi-sr-greek-helmet:before {
content: "\f70e";
}
.fi-sr-grid-alt:before {
content: "\f70f";
}
.fi-sr-grid-dividers:before {
content: "\f710";
}
.fi-sr-grid:before {
content: "\f711";
}
.fi-sr-grill-hot-alt:before {
content: "\f712";
}
.fi-sr-grill:before {
content: "\f713";
}
.fi-sr-grimace:before {
content: "\f714";
}
.fi-sr-grin-alt:before {
content: "\f715";
}
.fi-sr-grin-beam-sweat:before {
content: "\f716";
}
.fi-sr-grin-beam:before {
content: "\f717";
}
.fi-sr-grin-hearts:before {
content: "\f718";
}
.fi-sr-grin-squint-tears:before {
content: "\f719";
}
.fi-sr-grin-squint:before {
content: "\f71a";
}
.fi-sr-grin-stars:before {
content: "\f71b";
}
.fi-sr-grin-tears:before {
content: "\f71c";
}
.fi-sr-grin-tongue-squint:before {
content: "\f71d";
}
.fi-sr-grin-tongue-wink:before {
content: "\f71e";
}
.fi-sr-grin-tongue:before {
content: "\f71f";
}
.fi-sr-grin-wink:before {
content: "\f720";
}
.fi-sr-grin:before {
content: "\f721";
}
.fi-sr-grip-dots-vertical:before {
content: "\f722";
}
.fi-sr-grip-dots:before {
content: "\f723";
}
.fi-sr-grip-horizontal:before {
content: "\f724";
}
.fi-sr-grip-lines-vertical:before {
content: "\f725";
}
.fi-sr-grip-lines:before {
content: "\f726";
}
.fi-sr-grip-vertical:before {
content: "\f727";
}
.fi-sr-grocery-bag:before {
content: "\f728";
}
.fi-sr-grocery-basket:before {
content: "\f729";
}
.fi-sr-group-arrows-rotate:before {
content: "\f72a";
}
.fi-sr-group-call:before {
content: "\f72b";
}
.fi-sr-group-community-social-media:before {
content: "\f72c";
}
.fi-sr-growth-chart-invest:before {
content: "\f72d";
}
.fi-sr-guarani-sign:before {
content: "\f72e";
}
.fi-sr-guide-alt:before {
content: "\f72f";
}
.fi-sr-guide:before {
content: "\f730";
}
.fi-sr-guitar-electric:before {
content: "\f731";
}
.fi-sr-guitar:before {
content: "\f732";
}
.fi-sr-guitars:before {
content: "\f733";
}
.fi-sr-gun-squirt:before {
content: "\f734";
}
.fi-sr-gym:before {
content: "\f735";
}
.fi-sr-h-square:before {
content: "\f736";
}
.fi-sr-h:before {
content: "\f737";
}
.fi-sr-h1:before {
content: "\f738";
}
.fi-sr-h2:before {
content: "\f739";
}
.fi-sr-h3:before {
content: "\f73a";
}
.fi-sr-h4:before {
content: "\f73b";
}
.fi-sr-hair-clipper:before {
content: "\f73c";
}
.fi-sr-hamburger-soda:before {
content: "\f73d";
}
.fi-sr-hamburger:before {
content: "\f73e";
}
.fi-sr-hammer-crash:before {
content: "\f73f";
}
.fi-sr-hammer-war:before {
content: "\f740";
}
.fi-sr-hammer:before {
content: "\f741";
}
.fi-sr-hamsa:before {
content: "\f742";
}
.fi-sr-hand-back-fist:before {
content: "\f743";
}
.fi-sr-hand-back-point-down:before {
content: "\f744";
}
.fi-sr-hand-back-point-left:before {
content: "\f745";
}
.fi-sr-hand-back-point-ribbon:before {
content: "\f746";
}
.fi-sr-hand-back-point-right:before {
content: "\f747";
}
.fi-sr-hand-bill:before {
content: "\f748";
}
.fi-sr-hand-dots:before {
content: "\f749";
}
.fi-sr-hand-fingers-crossed:before {
content: "\f74a";
}
.fi-sr-hand-fist:before {
content: "\f74b";
}
.fi-sr-hand-heart:before {
content: "\f74c";
}
.fi-sr-hand-holding-box:before {
content: "\f74d";
}
.fi-sr-hand-holding-droplet:before {
content: "\f74e";
}
.fi-sr-hand-holding-heart:before {
content: "\f74f";
}
.fi-sr-hand-holding-magic:before {
content: "\f750";
}
.fi-sr-hand-holding-medical:before {
content: "\f751";
}
.fi-sr-hand-holding-seeding:before {
content: "\f752";
}
.fi-sr-hand-holding-skull:before {
content: "\f753";
}
.fi-sr-hand-holding-usd:before {
content: "\f754";
}
.fi-sr-hand-holding-water:before {
content: "\f755";
}
.fi-sr-hand-horns:before {
content: "\f756";
}
.fi-sr-hand-lizard:before {
content: "\f757";
}
.fi-sr-hand-love:before {
content: "\f758";
}
.fi-sr-hand-middle-finger:before {
content: "\f759";
}
.fi-sr-hand-paper:before {
content: "\f75a";
}
.fi-sr-hand-peace:before {
content: "\f75b";
}
.fi-sr-hand-point-ribbon:before {
content: "\f75c";
}
.fi-sr-hand-scissors:before {
content: "\f75d";
}
.fi-sr-hand-sparkles:before {
content: "\f75e";
}
.fi-sr-hand-spock:before {
content: "\f75f";
}
.fi-sr-hand-wave:before {
content: "\f760";
}
.fi-sr-handmade:before {
content: "\f761";
}
.fi-sr-hands-bubbles:before {
content: "\f762";
}
.fi-sr-hands-clapping:before {
content: "\f763";
}
.fi-sr-hands-heart:before {
content: "\f764";
}
.fi-sr-hands-holding-diamond:before {
content: "\f765";
}
.fi-sr-hands-holding:before {
content: "\f766";
}
.fi-sr-hands-usd:before {
content: "\f767";
}
.fi-sr-handshake-angle:before {
content: "\f768";
}
.fi-sr-handshake-deal-loan:before {
content: "\f769";
}
.fi-sr-handshake-house:before {
content: "\f76a";
}
.fi-sr-handshake-simple-slash:before {
content: "\f76b";
}
.fi-sr-handshake-trust:before {
content: "\f76c";
}
.fi-sr-handshake:before {
content: "\f76d";
}
.fi-sr-hard-hat:before {
content: "\f76e";
}
.fi-sr-hashtag-lock:before {
content: "\f76f";
}
.fi-sr-hastag:before {
content: "\f770";
}
.fi-sr-hat-beach:before {
content: "\f771";
}
.fi-sr-hat-birthday:before {
content: "\f772";
}
.fi-sr-hat-chef:before {
content: "\f773";
}
.fi-sr-hat-cowboy-side:before {
content: "\f774";
}
.fi-sr-hat-cowboy:before {
content: "\f775";
}
.fi-sr-hat-santa:before {
content: "\f776";
}
.fi-sr-hat-winter:before {
content: "\f777";
}
.fi-sr-hat-witch:before {
content: "\f778";
}
.fi-sr-hat-wizard:before {
content: "\f779";
}
.fi-sr-hdd:before {
content: "\f77a";
}
.fi-sr-head-side-brain:before {
content: "\f77b";
}
.fi-sr-head-side-cough-slash:before {
content: "\f77c";
}
.fi-sr-head-side-cough:before {
content: "\f77d";
}
.fi-sr-head-side-headphones:before {
content: "\f77e";
}
.fi-sr-head-side-heart:before {
content: "\f77f";
}
.fi-sr-head-side-mask:before {
content: "\f780";
}
.fi-sr-head-side-medical:before {
content: "\f781";
}
.fi-sr-head-side-thinking:before {
content: "\f782";
}
.fi-sr-head-side-virus:before {
content: "\f783";
}
.fi-sr-head-side:before {
content: "\f784";
}
.fi-sr-head-vr:before {
content: "\f785";
}
.fi-sr-heading:before {
content: "\f786";
}
.fi-sr-headphones:before {
content: "\f787";
}
.fi-sr-headset:before {
content: "\f788";
}
.fi-sr-heart-arrow:before {
content: "\f789";
}
.fi-sr-heart-brain:before {
content: "\f78a";
}
.fi-sr-heart-crack:before {
content: "\f78b";
}
.fi-sr-heart-half-stroke:before {
content: "\f78c";
}
.fi-sr-heart-half:before {
content: "\f78d";
}
.fi-sr-heart-health-muscle:before {
content: "\f78e";
}
.fi-sr-heart-lock:before {
content: "\f78f";
}
.fi-sr-heart-partner-handshake:before {
content: "\f790";
}
.fi-sr-heart-rate:before {
content: "\f791";
}
.fi-sr-heart-slash:before {
content: "\f792";
}
.fi-sr-heart-upside-down:before {
content: "\f793";
}
.fi-sr-heart:before {
content: "\f794";
}
.fi-sr-heat:before {
content: "\f795";
}
.fi-sr-helicopter-side:before {
content: "\f796";
}
.fi-sr-helmet-battle:before {
content: "\f797";
}
.fi-sr-hexagon-check:before {
content: "\f798";
}
.fi-sr-hexagon-divide:before {
content: "\f799";
}
.fi-sr-hexagon-exclamation:before {
content: "\f79a";
}
.fi-sr-hexagon:before {
content: "\f79b";
}
.fi-sr-high-definition:before {
content: "\f79c";
}
.fi-sr-high-five-celebration-yes:before {
content: "\f79d";
}
.fi-sr-high-five:before {
content: "\f79e";
}
.fi-sr-highlighter-line:before {
content: "\f79f";
}
.fi-sr-highlighter:before {
content: "\f7a0";
}
.fi-sr-hiking:before {
content: "\f7a1";
}
.fi-sr-hippo:before {
content: "\f7a2";
}
.fi-sr-hockey-mask:before {
content: "\f7a3";
}
.fi-sr-hockey-puck:before {
content: "\f7a4";
}
.fi-sr-hockey-stick-puck:before {
content: "\f7a5";
}
.fi-sr-hockey-sticks:before {
content: "\f7a6";
}
.fi-sr-holding-hand-gear:before {
content: "\f7a7";
}
.fi-sr-holding-hand-revenue:before {
content: "\f7a8";
}
.fi-sr-holly-berry:before {
content: "\f7a9";
}
.fi-sr-home-heart:before {
content: "\f7aa";
}
.fi-sr-home-location-alt:before {
content: "\f7ab";
}
.fi-sr-home-location:before {
content: "\f7ac";
}
.fi-sr-home:before {
content: "\f7ad";
}
.fi-sr-honey-pot:before {
content: "\f7ae";
}
.fi-sr-hood-cloak:before {
content: "\f7af";
}
.fi-sr-horizontal-rule:before {
content: "\f7b0";
}
.fi-sr-horse-head:before {
content: "\f7b1";
}
.fi-sr-horse-saddle:before {
content: "\f7b2";
}
.fi-sr-horse:before {
content: "\f7b3";
}
.fi-sr-horseshoe-broken:before {
content: "\f7b4";
}
.fi-sr-horseshoe:before {
content: "\f7b5";
}
.fi-sr-hose-reel:before {
content: "\f7b6";
}
.fi-sr-hose:before {
content: "\f7b7";
}
.fi-sr-hospital-symbol:before {
content: "\f7b8";
}
.fi-sr-hospital-user:before {
content: "\f7b9";
}
.fi-sr-hospital:before {
content: "\f7ba";
}
.fi-sr-hospitals:before {
content: "\f7bb";
}
.fi-sr-hot-tub:before {
content: "\f7bc";
}
.fi-sr-hotdog:before {
content: "\f7bd";
}
.fi-sr-hotel:before {
content: "\f7be";
}
.fi-sr-hourglass-end:before {
content: "\f7bf";
}
.fi-sr-hourglass-start:before {
content: "\f7c0";
}
.fi-sr-hourglass:before {
content: "\f7c1";
}
.fi-sr-house-blank:before {
content: "\f7c2";
}
.fi-sr-house-building:before {
content: "\f7c3";
}
.fi-sr-house-chimney-blank:before {
content: "\f7c4";
}
.fi-sr-house-chimney-crack:before {
content: "\f7c5";
}
.fi-sr-house-chimney-heart:before {
content: "\f7c6";
}
.fi-sr-house-chimney-medical:before {
content: "\f7c7";
}
.fi-sr-house-chimney-user:before {
content: "\f7c8";
}
.fi-sr-house-chimney-window:before {
content: "\f7c9";
}
.fi-sr-house-chimney:before {
content: "\f7ca";
}
.fi-sr-house-circle-check:before {
content: "\f7cb";
}
.fi-sr-house-circle-exclamation:before {
content: "\f7cc";
}
.fi-sr-house-circle-xmark:before {
content: "\f7cd";
}
.fi-sr-house-crack-alt:before {
content: "\f7ce";
}
.fi-sr-house-crack:before {
content: "\f7cf";
}
.fi-sr-house-day:before {
content: "\f7d0";
}
.fi-sr-house-fire:before {
content: "\f7d1";
}
.fi-sr-house-flag:before {
content: "\f7d2";
}
.fi-sr-house-flood:before {
content: "\f7d3";
}
.fi-sr-house-laptop:before {
content: "\f7d4";
}
.fi-sr-house-leave:before {
content: "\f7d5";
}
.fi-sr-house-lock:before {
content: "\f7d6";
}
.fi-sr-house-medical:before {
content: "\f7d7";
}
.fi-sr-house-night:before {
content: "\f7d8";
}
.fi-sr-house-return:before {
content: "\f7d9";
}
.fi-sr-house-signal:before {
content: "\f7da";
}
.fi-sr-house-tree:before {
content: "\f7db";
}
.fi-sr-house-tsunami:before {
content: "\f7dc";
}
.fi-sr-house-turret:before {
content: "\f7dd";
}
.fi-sr-house-user:before {
content: "\f7de";
}
.fi-sr-house-window:before {
content: "\f7df";
}
.fi-sr-hr-group:before {
content: "\f7e0";
}
.fi-sr-hr-person:before {
content: "\f7e1";
}
.fi-sr-hr:before {
content: "\f7e2";
}
.fi-sr-hryvnia:before {
content: "\f7e3";
}
.fi-sr-humidity:before {
content: "\f7e4";
}
.fi-sr-hundred-points:before {
content: "\f7e5";
}
.fi-sr-hurricane:before {
content: "\f7e6";
}
.fi-sr-i:before {
content: "\f7e7";
}
.fi-sr-ice-cream:before {
content: "\f7e8";
}
.fi-sr-icicles:before {
content: "\f7e9";
}
.fi-sr-icon-star:before {
content: "\f7ea";
}
.fi-sr-id-badge:before {
content: "\f7eb";
}
.fi-sr-id-card-clip-alt:before {
content: "\f7ec";
}
.fi-sr-igloo:before {
content: "\f7ed";
}
.fi-sr-image-slash:before {
content: "\f7ee";
}
.fi-sr-images-user:before {
content: "\f7ef";
}
.fi-sr-images:before {
content: "\f7f0";
}
.fi-sr-improve-user:before {
content: "\f7f1";
}
.fi-sr-inbox-full:before {
content: "\f7f2";
}
.fi-sr-inbox-in:before {
content: "\f7f3";
}
.fi-sr-inbox-out:before {
content: "\f7f4";
}
.fi-sr-inbox:before {
content: "\f7f5";
}
.fi-sr-inboxes:before {
content: "\f7f6";
}
.fi-sr-incense-sticks-yoga:before {
content: "\f7f7";
}
.fi-sr-incognito:before {
content: "\f7f8";
}
.fi-sr-indent:before {
content: "\f7f9";
}
.fi-sr-indian-rupee-sign:before {
content: "\f7fa";
}
.fi-sr-industry-alt:before {
content: "\f7fb";
}
.fi-sr-industry-windows:before {
content: "\f7fc";
}
.fi-sr-infinity:before {
content: "\f7fd";
}
.fi-sr-info-guide:before {
content: "\f7fe";
}
.fi-sr-info:before {
content: "\f7ff";
}
.fi-sr-information:before {
content: "\f800";
}
.fi-sr-inhaler:before {
content: "\f801";
}
.fi-sr-input-numeric:before {
content: "\f802";
}
.fi-sr-input-pipe:before {
content: "\f803";
}
.fi-sr-input-text:before {
content: "\f804";
}
.fi-sr-insert-alt:before {
content: "\f805";
}
.fi-sr-insert-arrows:before {
content: "\f806";
}
.fi-sr-insert-button-circle:before {
content: "\f807";
}
.fi-sr-insert-credit-card:before {
content: "\f808";
}
.fi-sr-insert-square:before {
content: "\f809";
}
.fi-sr-insert:before {
content: "\f80a";
}
.fi-sr-insight-alt:before {
content: "\f80b";
}
.fi-sr-insight-head:before {
content: "\f80c";
}
.fi-sr-insight:before {
content: "\f80d";
}
.fi-sr-integral:before {
content: "\f80e";
}
.fi-sr-interactive:before {
content: "\f80f";
}
.fi-sr-interlining:before {
content: "\f810";
}
.fi-sr-internet-speed-wifi:before {
content: "\f811";
}
.fi-sr-interrogation:before {
content: "\f812";
}
.fi-sr-intersection:before {
content: "\f813";
}
.fi-sr-introduction-handshake:before {
content: "\f814";
}
.fi-sr-introduction:before {
content: "\f815";
}
.fi-sr-inventory-alt:before {
content: "\f816";
}
.fi-sr-invest:before {
content: "\f817";
}
.fi-sr-investment:before {
content: "\f818";
}
.fi-sr-invite-alt:before {
content: "\f819";
}
.fi-sr-invite:before {
content: "\f81a";
}
.fi-sr-iot-alt:before {
content: "\f81b";
}
.fi-sr-iot:before {
content: "\f81c";
}
.fi-sr-ip-address:before {
content: "\f81d";
}
.fi-sr-island-tropical:before {
content: "\f81e";
}
.fi-sr-it-alt:before {
content: "\f81f";
}
.fi-sr-it-computer:before {
content: "\f820";
}
.fi-sr-it:before {
content: "\f821";
}
.fi-sr-italian-lira-sign:before {
content: "\f822";
}
.fi-sr-italic:before {
content: "\f823";
}
.fi-sr-j:before {
content: "\f824";
}
.fi-sr-jam:before {
content: "\f825";
}
.fi-sr-jar-alt:before {
content: "\f826";
}
.fi-sr-jar-wheat:before {
content: "\f827";
}
.fi-sr-javascript:before {
content: "\f828";
}
.fi-sr-joint:before {
content: "\f829";
}
.fi-sr-joker:before {
content: "\f82a";
}
.fi-sr-journal-alt:before {
content: "\f82b";
}
.fi-sr-journal:before {
content: "\f82c";
}
.fi-sr-journey:before {
content: "\f82d";
}
.fi-sr-joystick:before {
content: "\f82e";
}
.fi-sr-jpg:before {
content: "\f82f";
}
.fi-sr-jug-alt:before {
content: "\f830";
}
.fi-sr-jug-bottle:before {
content: "\f831";
}
.fi-sr-jug:before {
content: "\f832";
}
.fi-sr-jumping-rope:before {
content: "\f833";
}
.fi-sr-k:before {
content: "\f834";
}
.fi-sr-kaaba:before {
content: "\f835";
}
.fi-sr-kazoo:before {
content: "\f836";
}
.fi-sr-kerning:before {
content: "\f837";
}
.fi-sr-key-lock-crypto:before {
content: "\f838";
}
.fi-sr-key-skeleton-left-right:before {
content: "\f839";
}
.fi-sr-key:before {
content: "\f83a";
}
.fi-sr-keyboard-brightness-low:before {
content: "\f83b";
}
.fi-sr-keyboard-brightness:before {
content: "\f83c";
}
.fi-sr-keyboard-down:before {
content: "\f83d";
}
.fi-sr-keyboard-left:before {
content: "\f83e";
}
.fi-sr-keyboard:before {
content: "\f83f";
}
.fi-sr-keynote:before {
content: "\f840";
}
.fi-sr-kidneys:before {
content: "\f841";
}
.fi-sr-kip-sign:before {
content: "\f842";
}
.fi-sr-kiss-beam:before {
content: "\f843";
}
.fi-sr-kiss-wink-heart:before {
content: "\f844";
}
.fi-sr-kiss:before {
content: "\f845";
}
.fi-sr-kite:before {
content: "\f846";
}
.fi-sr-kiwi-bird:before {
content: "\f847";
}
.fi-sr-kiwi-fruit:before {
content: "\f848";
}
.fi-sr-knife-kitchen:before {
content: "\f849";
}
.fi-sr-knife:before {
content: "\f84a";
}
.fi-sr-knitting:before {
content: "\f84b";
}
.fi-sr-kpi-evaluation:before {
content: "\f84c";
}
.fi-sr-kpi:before {
content: "\f84d";
}
.fi-sr-l:before {
content: "\f84e";
}
.fi-sr-label:before {
content: "\f84f";
}
.fi-sr-lacrosse-stick-ball:before {
content: "\f850";
}
.fi-sr-lacrosse-stick:before {
content: "\f851";
}
.fi-sr-lambda:before {
content: "\f852";
}
.fi-sr-lamp-desk:before {
content: "\f853";
}
.fi-sr-lamp-floor:before {
content: "\f854";
}
.fi-sr-lamp-street:before {
content: "\f855";
}
.fi-sr-lamp:before {
content: "\f856";
}
.fi-sr-land-layer-location:before {
content: "\f857";
}
.fi-sr-land-layers:before {
content: "\f858";
}
.fi-sr-land-location:before {
content: "\f859";
}
.fi-sr-landmark-alt:before {
content: "\f85a";
}
.fi-sr-language:before {
content: "\f85b";
}
.fi-sr-laptop-arrow-down:before {
content: "\f85c";
}
.fi-sr-laptop-binary:before {
content: "\f85d";
}
.fi-sr-laptop-code:before {
content: "\f85e";
}
.fi-sr-laptop-medical:before {
content: "\f85f";
}
.fi-sr-laptop-mobile:before {
content: "\f860";
}
.fi-sr-laptop-slash:before {
content: "\f861";
}
.fi-sr-laptop:before {
content: "\f862";
}
.fi-sr-lari-sign:before {
content: "\f863";
}
.fi-sr-lasso-sparkles:before {
content: "\f864";
}
.fi-sr-lasso:before {
content: "\f865";
}
.fi-sr-last-square:before {
content: "\f866";
}
.fi-sr-laugh-beam:before {
content: "\f867";
}
.fi-sr-laugh-squint:before {
content: "\f868";
}
.fi-sr-laugh-wink:before {
content: "\f869";
}
.fi-sr-laugh:before {
content: "\f86a";
}
.fi-sr-lawyer-man:before {
content: "\f86b";
}
.fi-sr-lawyer-woman:before {
content: "\f86c";
}
.fi-sr-layer-minus:before {
content: "\f86d";
}
.fi-sr-layer-plus:before {
content: "\f86e";
}
.fi-sr-layers:before {
content: "\f86f";
}
.fi-sr-layout-fluid:before {
content: "\f870";
}
.fi-sr-lead-funnel:before {
content: "\f871";
}
.fi-sr-lead-management:before {
content: "\f872";
}
.fi-sr-lead:before {
content: "\f873";
}
.fi-sr-leader-alt:before {
content: "\f874";
}
.fi-sr-leader-speech:before {
content: "\f875";
}
.fi-sr-leader:before {
content: "\f876";
}
.fi-sr-leaderboard-alt:before {
content: "\f877";
}
.fi-sr-leaderboard-trophy:before {
content: "\f878";
}
.fi-sr-leaderboard:before {
content: "\f879";
}
.fi-sr-leadership-alt:before {
content: "\f87a";
}
.fi-sr-leadership:before {
content: "\f87b";
}
.fi-sr-leaf-heart:before {
content: "\f87c";
}
.fi-sr-leaf-maple:before {
content: "\f87d";
}
.fi-sr-leaf-oak:before {
content: "\f87e";
}
.fi-sr-leaf:before {
content: "\f87f";
}
.fi-sr-leafy-green:before {
content: "\f880";
}
.fi-sr-leave:before {
content: "\f881";
}
.fi-sr-left-from-bracket:before {
content: "\f882";
}
.fi-sr-left:before {
content: "\f883";
}
.fi-sr-legal:before {
content: "\f884";
}
.fi-sr-lemon:before {
content: "\f885";
}
.fi-sr-lesbian-couple:before {
content: "\f886";
}
.fi-sr-less-than-equal:before {
content: "\f887";
}
.fi-sr-less-than:before {
content: "\f888";
}
.fi-sr-lesson-class:before {
content: "\f889";
}
.fi-sr-lesson:before {
content: "\f88a";
}
.fi-sr-letter-case:before {
content: "\f88b";
}
.fi-sr-lettuce:before {
content: "\f88c";
}
.fi-sr-level-down-alt:before {
content: "\f88d";
}
.fi-sr-level-down:before {
content: "\f88e";
}
.fi-sr-level-up-alt:before {
content: "\f88f";
}
.fi-sr-level-up:before {
content: "\f890";
}
.fi-sr-license:before {
content: "\f891";
}
.fi-sr-life-ring:before {
content: "\f892";
}
.fi-sr-life:before {
content: "\f893";
}
.fi-sr-light-ceiling:before {
content: "\f894";
}
.fi-sr-light-emergency-on:before {
content: "\f895";
}
.fi-sr-light-emergency:before {
content: "\f896";
}
.fi-sr-light-switch-off:before {
content: "\f897";
}
.fi-sr-light-switch-on:before {
content: "\f898";
}
.fi-sr-light-switch:before {
content: "\f899";
}
.fi-sr-lightbulb-cfl-on:before {
content: "\f89a";
}
.fi-sr-lightbulb-cfl:before {
content: "\f89b";
}
.fi-sr-lightbulb-dollar:before {
content: "\f89c";
}
.fi-sr-lightbulb-exclamation:before {
content: "\f89d";
}
.fi-sr-lightbulb-head:before {
content: "\f89e";
}
.fi-sr-lightbulb-on:before {
content: "\f89f";
}
.fi-sr-lightbulb-question:before {
content: "\f8a0";
}
.fi-sr-lightbulb-setting:before {
content: "\f8a1";
}
.fi-sr-lightbulb-slash:before {
content: "\f8a2";
}
.fi-sr-lighthouse:before {
content: "\f8a3";
}
.fi-sr-lights-holiday:before {
content: "\f8a4";
}
.fi-sr-limit-hand:before {
content: "\f8a5";
}
.fi-sr-limit-speedometer:before {
content: "\f8a6";
}
.fi-sr-line-width:before {
content: "\f8a7";
}
.fi-sr-link-alt:before {
content: "\f8a8";
}
.fi-sr-link-horizontal-slash:before {
content: "\f8a9";
}
.fi-sr-link-horizontal:before {
content: "\f8aa";
}
.fi-sr-link-slash-alt:before {
content: "\f8ab";
}
.fi-sr-link-slash:before {
content: "\f8ac";
}
.fi-sr-link:before {
content: "\f8ad";
}
.fi-sr-lion-head:before {
content: "\f8ae";
}
.fi-sr-lion:before {
content: "\f8af";
}
.fi-sr-lips:before {
content: "\f8b0";
}
.fi-sr-lipstick:before {
content: "\f8b1";
}
.fi-sr-lira-sign:before {
content: "\f8b2";
}
.fi-sr-list-check:before {
content: "\f8b3";
}
.fi-sr-list-dropdown:before {
content: "\f8b4";
}
.fi-sr-list-music:before {
content: "\f8b5";
}
.fi-sr-list-timeline:before {
content: "\f8b6";
}
.fi-sr-list:before {
content: "\f8b7";
}
.fi-sr-litecoin-sign:before {
content: "\f8b8";
}
.fi-sr-live-alt:before {
content: "\f8b9";
}
.fi-sr-live:before {
content: "\f8ba";
}
.fi-sr-loading:before {
content: "\f8bb";
}
.fi-sr-loan:before {
content: "\f8bc";
}
.fi-sr-lobster:before {
content: "\f8bd";
}
.fi-sr-location-alt:before {
content: "\f8be";
}
.fi-sr-location-arrow:before {
content: "\f8bf";
}
.fi-sr-location-crosshairs-slash:before {
content: "\f8c0";
}
.fi-sr-location-crosshairs:before {
content: "\f8c1";
}
.fi-sr-location-dot-slash:before {
content: "\f8c2";
}
.fi-sr-location-exclamation:before {
content: "\f8c3";
}
.fi-sr-location-pin-call:before {
content: "\f8c4";
}
.fi-sr-lock-alt:before {
content: "\f8c5";
}
.fi-sr-lock-hashtag:before {
content: "\f8c6";
}
.fi-sr-lock-open-alt:before {
content: "\f8c7";
}
.fi-sr-lock:before {
content: "\f8c8";
}
.fi-sr-locust:before {
content: "\f8c9";
}
.fi-sr-loop-square:before {
content: "\f8ca";
}
.fi-sr-loveseat:before {
content: "\f8cb";
}
.fi-sr-low-vision:before {
content: "\f8cc";
}
.fi-sr-luchador:before {
content: "\f8cd";
}
.fi-sr-luggage-cart:before {
content: "\f8ce";
}
.fi-sr-luggage-rolling:before {
content: "\f8cf";
}
.fi-sr-lungs-virus:before {
content: "\f8d0";
}
.fi-sr-lungs:before {
content: "\f8d1";
}
.fi-sr-m:before {
content: "\f8d2";
}
.fi-sr-mace:before {
content: "\f8d3";
}
.fi-sr-magnet-user:before {
content: "\f8d4";
}
.fi-sr-magnet:before {
content: "\f8d5";
}
.fi-sr-mailbox-envelope:before {
content: "\f8d6";
}
.fi-sr-mailbox-flag-up:before {
content: "\f8d7";
}
.fi-sr-mailbox:before {
content: "\f8d8";
}
.fi-sr-makeup-brush:before {
content: "\f8d9";
}
.fi-sr-man-head:before {
content: "\f8da";
}
.fi-sr-man-scientist:before {
content: "\f8db";
}
.fi-sr-manat-sign:before {
content: "\f8dc";
}
.fi-sr-mandolin:before {
content: "\f8dd";
}
.fi-sr-mango:before {
content: "\f8de";
}
.fi-sr-manhole:before {
content: "\f8df";
}
.fi-sr-map-location-track:before {
content: "\f8e0";
}
.fi-sr-map-marker-check:before {
content: "\f8e1";
}
.fi-sr-map-marker-cross:before {
content: "\f8e2";
}
.fi-sr-map-marker-edit:before {
content: "\f8e3";
}
.fi-sr-map-marker-home:before {
content: "\f8e4";
}
.fi-sr-map-marker-minus:before {
content: "\f8e5";
}
.fi-sr-map-marker-plus:before {
content: "\f8e6";
}
.fi-sr-map-marker-question:before {
content: "\f8e7";
}
.fi-sr-map-marker-slash:before {
content: "\f8e8";
}
.fi-sr-map-marker-smile:before {
content: "\f8e9";
}
.fi-sr-map-marker:before {
content: "\f8ea";
}
.fi-sr-map-pin:before {
content: "\f8eb";
}
.fi-sr-map-point:before {
content: "\f8ec";
}
.fi-sr-map:before {
content: "\f8ed";
}
.fi-sr-marker-time:before {
content: "\f8ee";
}
.fi-sr-marker:before {
content: "\f8ef";
}
.fi-sr-marketplace-alt:before {
content: "\f8f0";
}
.fi-sr-marketplace-store:before {
content: "\f8f1";
}
.fi-sr-marketplace:before {
content: "\f8f2";
}
.fi-sr-mars-double:before {
content: "\f8f3";
}
.fi-sr-mars-stroke-right:before {
content: "\f8f4";
}
.fi-sr-mars-stroke-up:before {
content: "\f8f5";
}
.fi-sr-mars:before {
content: "\f8f6";
}
.fi-sr-martini-glass-citrus:before {
content: "\f8f7";
}
.fi-sr-martini-glass-empty:before {
content: "\f8f8";
}
.fi-sr-mask-carnival:before {
content: "\f8f9";
}
.fi-sr-mask-face:before {
content: "\f8fa";
}
.fi-sr-mask-snorkel:before {
content: "\f8fb";
}
.fi-sr-massage:before {
content: "\f8fc";
}
.fi-sr-match-fire:before {
content: "\f8fd";
}
.fi-sr-mattress-pillow:before {
content: "\f8fe";
}
.fi-sr-measuring-tape:before {
content: "\f8ff";
}
.fi-sr-meat:before {
content: "\f900";
}
.fi-sr-medal:before {
content: "\f901";
}
.fi-sr-medical-star:before {
content: "\f902";
}
.fi-sr-medicine:before {
content: "\f903";
}
.fi-sr-meditation:before {
content: "\f904";
}
.fi-sr-meeting-alt:before {
content: "\f905";
}
.fi-sr-meeting:before {
content: "\f906";
}
.fi-sr-megaphone-announcement-leader:before {
content: "\f907";
}
.fi-sr-megaphone:before {
content: "\f908";
}
.fi-sr-meh-blank:before {
content: "\f909";
}
.fi-sr-meh-rolling-eyes:before {
content: "\f90a";
}
.fi-sr-meh:before {
content: "\f90b";
}
.fi-sr-melon-alt:before {
content: "\f90c";
}
.fi-sr-melon:before {
content: "\f90d";
}
.fi-sr-member-list:before {
content: "\f90e";
}
.fi-sr-member-search:before {
content: "\f90f";
}
.fi-sr-membership-vip:before {
content: "\f910";
}
.fi-sr-membership:before {
content: "\f911";
}
.fi-sr-memo-circle-check:before {
content: "\f912";
}
.fi-sr-memo-pad:before {
content: "\f913";
}
.fi-sr-memo:before {
content: "\f914";
}
.fi-sr-memory:before {
content: "\f915";
}
.fi-sr-menu-burger:before {
content: "\f916";
}
.fi-sr-menu-dots-vertical:before {
content: "\f917";
}
.fi-sr-menu-dots:before {
content: "\f918";
}
.fi-sr-mercury:before {
content: "\f919";
}
.fi-sr-message-arrow-down:before {
content: "\f91a";
}
.fi-sr-message-arrow-up-right:before {
content: "\f91b";
}
.fi-sr-message-arrow-up:before {
content: "\f91c";
}
.fi-sr-message-bot:before {
content: "\f91d";
}
.fi-sr-message-code:before {
content: "\f91e";
}
.fi-sr-message-dollar:before {
content: "\f91f";
}
.fi-sr-message-heart:before {
content: "\f920";
}
.fi-sr-message-image:before {
content: "\f921";
}
.fi-sr-message-question:before {
content: "\f922";
}
.fi-sr-message-quote:before {
content: "\f923";
}
.fi-sr-message-slash:before {
content: "\f924";
}
.fi-sr-message-sms:before {
content: "\f925";
}
.fi-sr-message-text:before {
content: "\f926";
}
.fi-sr-message-xmark:before {
content: "\f927";
}
.fi-sr-messages-dollar:before {
content: "\f928";
}
.fi-sr-messages-question:before {
content: "\f929";
}
.fi-sr-messages:before {
content: "\f92a";
}
.fi-sr-meteor:before {
content: "\f92b";
}
.fi-sr-meter-bolt:before {
content: "\f92c";
}
.fi-sr-meter-droplet:before {
content: "\f92d";
}
.fi-sr-meter-fire:before {
content: "\f92e";
}
.fi-sr-meter:before {
content: "\f92f";
}
.fi-sr-microchip-ai:before {
content: "\f930";
}
.fi-sr-microchip:before {
content: "\f931";
}
.fi-sr-microphone-alt:before {
content: "\f932";
}
.fi-sr-microphone-slash:before {
content: "\f933";
}
.fi-sr-microphone:before {
content: "\f934";
}
.fi-sr-microscope:before {
content: "\f935";
}
.fi-sr-microwave:before {
content: "\f936";
}
.fi-sr-milk-alt:before {
content: "\f937";
}
.fi-sr-milk:before {
content: "\f938";
}
.fi-sr-mill-sign:before {
content: "\f939";
}
.fi-sr-mind-share:before {
content: "\f93a";
}
.fi-sr-minus-circle:before {
content: "\f93b";
}
.fi-sr-minus-hexagon:before {
content: "\f93c";
}
.fi-sr-minus-small:before {
content: "\f93d";
}
.fi-sr-minus:before {
content: "\f93e";
}
.fi-sr-mistletoe:before {
content: "\f93f";
}
.fi-sr-mix:before {
content: "\f940";
}
.fi-sr-mobile-button:before {
content: "\f941";
}
.fi-sr-mobile-notch:before {
content: "\f942";
}
.fi-sr-mobile:before {
content: "\f943";
}
.fi-sr-mockup:before {
content: "\f944";
}
.fi-sr-mode-alt:before {
content: "\f945";
}
.fi-sr-mode-landscape:before {
content: "\f946";
}
.fi-sr-mode-portrait:before {
content: "\f947";
}
.fi-sr-mode:before {
content: "\f948";
}
.fi-sr-model-cube-arrows:before {
content: "\f949";
}
.fi-sr-model-cube-space:before {
content: "\f94a";
}
.fi-sr-model-cube:before {
content: "\f94b";
}
.fi-sr-module:before {
content: "\f94c";
}
.fi-sr-monday:before {
content: "\f94d";
}
.fi-sr-money-bill-simple:before {
content: "\f94e";
}
.fi-sr-money-bill-transfer:before {
content: "\f94f";
}
.fi-sr-money-bill-wave-alt:before {
content: "\f950";
}
.fi-sr-money-bill-wave:before {
content: "\f951";
}
.fi-sr-money-bills-simple:before {
content: "\f952";
}
.fi-sr-money-bills:before {
content: "\f953";
}
.fi-sr-money-check-edit-alt:before {
content: "\f954";
}
.fi-sr-money-check-edit:before {
content: "\f955";
}
.fi-sr-money-check:before {
content: "\f956";
}
.fi-sr-money-coin-transfer:before {
content: "\f957";
}
.fi-sr-money-from-bracket:before {
content: "\f958";
}
.fi-sr-money-simple-from-bracket:before {
content: "\f959";
}
.fi-sr-money-transfer-alt:before {
content: "\f95a";
}
.fi-sr-money-transfer-coin-arrow:before {
content: "\f95b";
}
.fi-sr-money-transfer-smartphone:before {
content: "\f95c";
}
.fi-sr-money-wings:before {
content: "\f95d";
}
.fi-sr-money:before {
content: "\f95e";
}
.fi-sr-monkey:before {
content: "\f95f";
}
.fi-sr-monument:before {
content: "\f960";
}
.fi-sr-moon-stars:before {
content: "\f961";
}
.fi-sr-moon:before {
content: "\f962";
}
.fi-sr-moped:before {
content: "\f963";
}
.fi-sr-mortar-pestle:before {
content: "\f964";
}
.fi-sr-mortgage:before {
content: "\f965";
}
.fi-sr-mosque-alt:before {
content: "\f966";
}
.fi-sr-mosque-moon:before {
content: "\f967";
}
.fi-sr-mosque:before {
content: "\f968";
}
.fi-sr-mosquito-net:before {
content: "\f969";
}
.fi-sr-mosquito:before {
content: "\f96a";
}
.fi-sr-motorcycle:before {
content: "\f96b";
}
.fi-sr-mound:before {
content: "\f96c";
}
.fi-sr-mountain-city:before {
content: "\f96d";
}
.fi-sr-mountain:before {
content: "\f96e";
}
.fi-sr-mountains:before {
content: "\f96f";
}
.fi-sr-mouse-field:before {
content: "\f970";
}
.fi-sr-mouse:before {
content: "\f971";
}
.fi-sr-mov-file:before {
content: "\f972";
}
.fi-sr-move-to-folder-2:before {
content: "\f973";
}
.fi-sr-move-to-folder:before {
content: "\f974";
}
.fi-sr-mp3-file:before {
content: "\f975";
}
.fi-sr-mp3-player:before {
content: "\f976";
}
.fi-sr-mp4-file:before {
content: "\f977";
}
.fi-sr-mug-alt:before {
content: "\f978";
}
.fi-sr-mug-hot-alt:before {
content: "\f979";
}
.fi-sr-mug-hot:before {
content: "\f97a";
}
.fi-sr-mug-marshmallows:before {
content: "\f97b";
}
.fi-sr-mug-tea-saucer:before {
content: "\f97c";
}
.fi-sr-mug-tea:before {
content: "\f97d";
}
.fi-sr-mug:before {
content: "\f97e";
}
.fi-sr-multiple-alt:before {
content: "\f97f";
}
.fi-sr-multiple:before {
content: "\f980";
}
.fi-sr-muscle:before {
content: "\f981";
}
.fi-sr-mushroom-alt:before {
content: "\f982";
}
.fi-sr-mushroom:before {
content: "\f983";
}
.fi-sr-music-alt-slash:before {
content: "\f984";
}
.fi-sr-music-alt:before {
content: "\f985";
}
.fi-sr-music-file:before {
content: "\f986";
}
.fi-sr-music-note:before {
content: "\f987";
}
.fi-sr-music-slash:before {
content: "\f988";
}
.fi-sr-music:before {
content: "\f989";
}
.fi-sr-n:before {
content: "\f98a";
}
.fi-sr-naira-sign:before {
content: "\f98b";
}
.fi-sr-narwhal:before {
content: "\f98c";
}
.fi-sr-navigation:before {
content: "\f98d";
}
.fi-sr-nesting-dolls:before {
content: "\f98e";
}
.fi-sr-network-cloud:before {
content: "\f98f";
}
.fi-sr-network:before {
content: "\f990";
}
.fi-sr-neuter:before {
content: "\f991";
}
.fi-sr-newsletter-subscribe:before {
content: "\f992";
}
.fi-sr-newspaper-open:before {
content: "\f993";
}
.fi-sr-newspaper:before {
content: "\f994";
}
.fi-sr-nfc-lock:before {
content: "\f995";
}
.fi-sr-nfc-magnifying-glass:before {
content: "\f996";
}
.fi-sr-nfc-pen:before {
content: "\f997";
}
.fi-sr-nfc-slash:before {
content: "\f998";
}
.fi-sr-nfc-trash:before {
content: "\f999";
}
.fi-sr-nfc:before {
content: "\f99a";
}
.fi-sr-night-day:before {
content: "\f99b";
}
.fi-sr-no-fee:before {
content: "\f99c";
}
.fi-sr-no-people:before {
content: "\f99d";
}
.fi-sr-noodles:before {
content: "\f99e";
}
.fi-sr-nose:before {
content: "\f99f";
}
.fi-sr-not-equal:before {
content: "\f9a0";
}
.fi-sr-not-found-alt:before {
content: "\f9a1";
}
.fi-sr-not-found-magnifying-glass:before {
content: "\f9a2";
}
.fi-sr-not-found:before {
content: "\f9a3";
}
.fi-sr-notdef:before {
content: "\f9a4";
}
.fi-sr-note-medical:before {
content: "\f9a5";
}
.fi-sr-note-sticky:before {
content: "\f9a6";
}
.fi-sr-note:before {
content: "\f9a7";
}
.fi-sr-notebook-alt:before {
content: "\f9a8";
}
.fi-sr-notebook:before {
content: "\f9a9";
}
.fi-sr-notes-medical:before {
content: "\f9aa";
}
.fi-sr-notes:before {
content: "\f9ab";
}
.fi-sr-o:before {
content: "\f9ac";
}
.fi-sr-object-exclude:before {
content: "\f9ad";
}
.fi-sr-object-group:before {
content: "\f9ae";
}
.fi-sr-object-intersect:before {
content: "\f9af";
}
.fi-sr-object-subtract:before {
content: "\f9b0";
}
.fi-sr-object-ungroup:before {
content: "\f9b1";
}
.fi-sr-object-union:before {
content: "\f9b2";
}
.fi-sr-objects-column:before {
content: "\f9b3";
}
.fi-sr-octagon-check:before {
content: "\f9b4";
}
.fi-sr-octagon-divide:before {
content: "\f9b5";
}
.fi-sr-octagon-exclamation:before {
content: "\f9b6";
}
.fi-sr-octagon-minus:before {
content: "\f9b7";
}
.fi-sr-octagon-plus:before {
content: "\f9b8";
}
.fi-sr-octagon-xmark:before {
content: "\f9b9";
}
.fi-sr-octagon:before {
content: "\f9ba";
}
.fi-sr-oil-can:before {
content: "\f9bb";
}
.fi-sr-oil-temp:before {
content: "\f9bc";
}
.fi-sr-olive-oil:before {
content: "\f9bd";
}
.fi-sr-olive:before {
content: "\f9be";
}
.fi-sr-olives:before {
content: "\f9bf";
}
.fi-sr-om:before {
content: "\f9c0";
}
.fi-sr-omega:before {
content: "\f9c1";
}
.fi-sr-onboarding:before {
content: "\f9c2";
}
.fi-sr-onion:before {
content: "\f9c3";
}
.fi-sr-opacity:before {
content: "\f9c4";
}
.fi-sr-open-mail-clip:before {
content: "\f9c5";
}
.fi-sr-operating-system-upgrade:before {
content: "\f9c6";
}
.fi-sr-operation:before {
content: "\f9c7";
}
.fi-sr-order-history:before {
content: "\f9c8";
}
.fi-sr-organization-chart:before {
content: "\f9c9";
}
.fi-sr-ornament:before {
content: "\f9ca";
}
.fi-sr-otp:before {
content: "\f9cb";
}
.fi-sr-otter:before {
content: "\f9cc";
}
.fi-sr-outdent:before {
content: "\f9cd";
}
.fi-sr-oval-alt:before {
content: "\f9ce";
}
.fi-sr-oval:before {
content: "\f9cf";
}
.fi-sr-oven:before {
content: "\f9d0";
}
.fi-sr-overline:before {
content: "\f9d1";
}
.fi-sr-overview:before {
content: "\f9d2";
}
.fi-sr-p:before {
content: "\f9d3";
}
.fi-sr-package:before {
content: "\f9d4";
}
.fi-sr-padlock-check:before {
content: "\f9d5";
}
.fi-sr-page-break:before {
content: "\f9d6";
}
.fi-sr-pager:before {
content: "\f9d7";
}
.fi-sr-paid:before {
content: "\f9d8";
}
.fi-sr-paint-roller:before {
content: "\f9d9";
}
.fi-sr-paint:before {
content: "\f9da";
}
.fi-sr-paintbrush-pencil:before {
content: "\f9db";
}
.fi-sr-palette:before {
content: "\f9dc";
}
.fi-sr-pallet-alt:before {
content: "\f9dd";
}
.fi-sr-pallet:before {
content: "\f9de";
}
.fi-sr-pan-food:before {
content: "\f9df";
}
.fi-sr-pan-frying:before {
content: "\f9e0";
}
.fi-sr-pan:before {
content: "\f9e1";
}
.fi-sr-pancakes:before {
content: "\f9e2";
}
.fi-sr-panorama:before {
content: "\f9e3";
}
.fi-sr-paper-plane-launch:before {
content: "\f9e4";
}
.fi-sr-paper-plane-top:before {
content: "\f9e5";
}
.fi-sr-paper-plane:before {
content: "\f9e6";
}
.fi-sr-paperclip-vertical:before {
content: "\f9e7";
}
.fi-sr-parachute-box:before {
content: "\f9e8";
}
.fi-sr-paragraph-left:before {
content: "\f9e9";
}
.fi-sr-paragraph:before {
content: "\f9ea";
}
.fi-sr-parking-circle-slash:before {
content: "\f9eb";
}
.fi-sr-parking-circle:before {
content: "\f9ec";
}
.fi-sr-parking-slash:before {
content: "\f9ed";
}
.fi-sr-parking:before {
content: "\f9ee";
}
.fi-sr-party-bell:before {
content: "\f9ef";
}
.fi-sr-party-horn:before {
content: "\f9f0";
}
.fi-sr-party:before {
content: "\f9f1";
}
.fi-sr-passport:before {
content: "\f9f2";
}
.fi-sr-password-alt:before {
content: "\f9f3";
}
.fi-sr-password-computer:before {
content: "\f9f4";
}
.fi-sr-password-email:before {
content: "\f9f5";
}
.fi-sr-password-smartphone:before {
content: "\f9f6";
}
.fi-sr-password:before {
content: "\f9f7";
}
.fi-sr-paste:before {
content: "\f9f8";
}
.fi-sr-pattern:before {
content: "\f9f9";
}
.fi-sr-pause-circle:before {
content: "\f9fa";
}
.fi-sr-pause-square:before {
content: "\f9fb";
}
.fi-sr-pause:before {
content: "\f9fc";
}
.fi-sr-paw-claws:before {
content: "\f9fd";
}
.fi-sr-paw-heart:before {
content: "\f9fe";
}
.fi-sr-paw:before {
content: "\f9ff";
}
.fi-sr-payment-pos:before {
content: "\fa00";
}
.fi-sr-payroll-check:before {
content: "\fa01";
}
.fi-sr-peace:before {
content: "\fa02";
}
.fi-sr-peach:before {
content: "\fa03";
}
.fi-sr-peanut:before {
content: "\fa04";
}
.fi-sr-peanuts:before {
content: "\fa05";
}
.fi-sr-peapod:before {
content: "\fa06";
}
.fi-sr-pear:before {
content: "\fa07";
}
.fi-sr-pedestal:before {
content: "\fa08";
}
.fi-sr-pen-circle:before {
content: "\fa09";
}
.fi-sr-pen-clip-slash:before {
content: "\fa0a";
}
.fi-sr-pen-clip:before {
content: "\fa0b";
}
.fi-sr-pen-fancy-slash:before {
content: "\fa0c";
}
.fi-sr-pen-fancy:before {
content: "\fa0d";
}
.fi-sr-pen-field:before {
content: "\fa0e";
}
.fi-sr-pen-nib-slash:before {
content: "\fa0f";
}
.fi-sr-pen-nib:before {
content: "\fa10";
}
.fi-sr-pen-slash:before {
content: "\fa11";
}
.fi-sr-pen-square:before {
content: "\fa12";
}
.fi-sr-pen-swirl:before {
content: "\fa13";
}
.fi-sr-pencil-paintbrush:before {
content: "\fa14";
}
.fi-sr-pencil-ruler:before {
content: "\fa15";
}
.fi-sr-pencil-slash:before {
content: "\fa16";
}
.fi-sr-pencil:before {
content: "\fa17";
}
.fi-sr-pending:before {
content: "\fa18";
}
.fi-sr-pennant:before {
content: "\fa19";
}
.fi-sr-people-arrows-left-right:before {
content: "\fa1a";
}
.fi-sr-people-carry-box:before {
content: "\fa1b";
}
.fi-sr-people-dress:before {
content: "\fa1c";
}
.fi-sr-people-network-partner:before {
content: "\fa1d";
}
.fi-sr-people-pants:before {
content: "\fa1e";
}
.fi-sr-people-poll:before {
content: "\fa1f";
}
.fi-sr-people-pulling:before {
content: "\fa20";
}
.fi-sr-people-roof:before {
content: "\fa21";
}
.fi-sr-people:before {
content: "\fa22";
}
.fi-sr-pepper-alt:before {
content: "\fa23";
}
.fi-sr-pepper-hot:before {
content: "\fa24";
}
.fi-sr-pepper:before {
content: "\fa25";
}
.fi-sr-percentage:before {
content: "\fa26";
}
.fi-sr-person-burst:before {
content: "\fa27";
}
.fi-sr-person-carry-box:before {
content: "\fa28";
}
.fi-sr-person-circle-check:before {
content: "\fa29";
}
.fi-sr-person-circle-exclamation:before {
content: "\fa2a";
}
.fi-sr-person-circle-minus:before {
content: "\fa2b";
}
.fi-sr-person-circle-plus:before {
content: "\fa2c";
}
.fi-sr-person-circle-question:before {
content: "\fa2d";
}
.fi-sr-person-circle-xmark:before {
content: "\fa2e";
}
.fi-sr-person-cv:before {
content: "\fa2f";
}
.fi-sr-person-dolly-empty:before {
content: "\fa30";
}
.fi-sr-person-dolly:before {
content: "\fa31";
}
.fi-sr-person-dress-simple:before {
content: "\fa32";
}
.fi-sr-person-dress:before {
content: "\fa33";
}
.fi-sr-person-luggage:before {
content: "\fa34";
}
.fi-sr-person-lunge:before {
content: "\fa35";
}
.fi-sr-person-pilates:before {
content: "\fa36";
}
.fi-sr-person-praying:before {
content: "\fa37";
}
.fi-sr-person-pregnant:before {
content: "\fa38";
}
.fi-sr-person-seat-reclined:before {
content: "\fa39";
}
.fi-sr-person-seat:before {
content: "\fa3a";
}
.fi-sr-person-shelter:before {
content: "\fa3b";
}
.fi-sr-person-sign:before {
content: "\fa3c";
}
.fi-sr-person-simple:before {
content: "\fa3d";
}
.fi-sr-person-walking-with-cane:before {
content: "\fa3e";
}
.fi-sr-peseta-sign:before {
content: "\fa3f";
}
.fi-sr-peso-sign:before {
content: "\fa40";
}
.fi-sr-pets:before {
content: "\fa41";
}
.fi-sr-pharmacy:before {
content: "\fa42";
}
.fi-sr-phone-call:before {
content: "\fa43";
}
.fi-sr-phone-cross:before {
content: "\fa44";
}
.fi-sr-phone-flip:before {
content: "\fa45";
}
.fi-sr-phone-guide:before {
content: "\fa46";
}
.fi-sr-phone-heart-message:before {
content: "\fa47";
}
.fi-sr-phone-office:before {
content: "\fa48";
}
.fi-sr-phone-pause:before {
content: "\fa49";
}
.fi-sr-phone-plus:before {
content: "\fa4a";
}
.fi-sr-phone-rotary:before {
content: "\fa4b";
}
.fi-sr-phone-slash:before {
content: "\fa4c";
}
.fi-sr-photo-capture:before {
content: "\fa4d";
}
.fi-sr-photo-film-music:before {
content: "\fa4e";
}
.fi-sr-photo-video:before {
content: "\fa4f";
}
.fi-sr-physics:before {
content: "\fa50";
}
.fi-sr-Pi:before {
content: "\fa51";
}
.fi-sr-piano-keyboard:before {
content: "\fa52";
}
.fi-sr-piano:before {
content: "\fa53";
}
.fi-sr-pickaxe:before {
content: "\fa54";
}
.fi-sr-picking-box:before {
content: "\fa55";
}
.fi-sr-picking:before {
content: "\fa56";
}
.fi-sr-picnic:before {
content: "\fa57";
}
.fi-sr-picpeople-filled:before {
content: "\fa58";
}
.fi-sr-picpeople:before {
content: "\fa59";
}
.fi-sr-picture:before {
content: "\fa5a";
}
.fi-sr-pie:before {
content: "\fa5b";
}
.fi-sr-pig-bank-bulb:before {
content: "\fa5c";
}
.fi-sr-pig-face:before {
content: "\fa5d";
}
.fi-sr-pig:before {
content: "\fa5e";
}
.fi-sr-piggy-bank-budget:before {
content: "\fa5f";
}
.fi-sr-piggy-bank:before {
content: "\fa60";
}
.fi-sr-pills:before {
content: "\fa61";
}
.fi-sr-pinata:before {
content: "\fa62";
}
.fi-sr-pineapple-alt:before {
content: "\fa63";
}
.fi-sr-pineapple:before {
content: "\fa64";
}
.fi-sr-pipe-smoking:before {
content: "\fa65";
}
.fi-sr-pipette:before {
content: "\fa66";
}
.fi-sr-pizza-slice:before {
content: "\fa67";
}
.fi-sr-place-of-worship:before {
content: "\fa68";
}
.fi-sr-plan-strategy:before {
content: "\fa69";
}
.fi-sr-plan:before {
content: "\fa6a";
}
.fi-sr-plane-alt:before {
content: "\fa6b";
}
.fi-sr-plane-arrival:before {
content: "\fa6c";
}
.fi-sr-plane-departure:before {
content: "\fa6d";
}
.fi-sr-plane-prop:before {
content: "\fa6e";
}
.fi-sr-plane-slash:before {
content: "\fa6f";
}
.fi-sr-plane-tail:before {
content: "\fa70";
}
.fi-sr-plane:before {
content: "\fa71";
}
.fi-sr-planet-moon:before {
content: "\fa72";
}
.fi-sr-planet-ringed:before {
content: "\fa73";
}
.fi-sr-plant-care:before {
content: "\fa74";
}
.fi-sr-plant-growth:before {
content: "\fa75";
}
.fi-sr-plant-seed-invest:before {
content: "\fa76";
}
.fi-sr-plant-wilt:before {
content: "\fa77";
}
.fi-sr-plate-utensils:before {
content: "\fa78";
}
.fi-sr-plate-wheat:before {
content: "\fa79";
}
.fi-sr-plate:before {
content: "\fa7a";
}
.fi-sr-play-alt:before {
content: "\fa7b";
}
.fi-sr-play-circle:before {
content: "\fa7c";
}
.fi-sr-play-microphone:before {
content: "\fa7d";
}
.fi-sr-play-pause:before {
content: "\fa7e";
}
.fi-sr-play:before {
content: "\fa7f";
}
.fi-sr-plug-alt:before {
content: "\fa80";
}
.fi-sr-plug-cable:before {
content: "\fa81";
}
.fi-sr-plug-circle-bolt:before {
content: "\fa82";
}
.fi-sr-plug-circle-check:before {
content: "\fa83";
}
.fi-sr-plug-circle-exclamation:before {
content: "\fa84";
}
.fi-sr-plug-circle-minus:before {
content: "\fa85";
}
.fi-sr-plug-circle-plus:before {
content: "\fa86";
}
.fi-sr-plug-connection:before {
content: "\fa87";
}
.fi-sr-plug:before {
content: "\fa88";
}
.fi-sr-plus-hexagon:before {
content: "\fa89";
}
.fi-sr-plus-minus:before {
content: "\fa8a";
}
.fi-sr-plus-small:before {
content: "\fa8b";
}
.fi-sr-plus:before {
content: "\fa8c";
}
.fi-sr-png-file:before {
content: "\fa8d";
}
.fi-sr-podcast:before {
content: "\fa8e";
}
.fi-sr-podium-star:before {
content: "\fa8f";
}
.fi-sr-podium-victory-leader:before {
content: "\fa90";
}
.fi-sr-podium:before {
content: "\fa91";
}
.fi-sr-point-of-sale-bill:before {
content: "\fa92";
}
.fi-sr-point-of-sale-signal:before {
content: "\fa93";
}
.fi-sr-point-of-sale:before {
content: "\fa94";
}
.fi-sr-pointer-loading:before {
content: "\fa95";
}
.fi-sr-pointer-text:before {
content: "\fa96";
}
.fi-sr-police-box:before {
content: "\fa97";
}
.fi-sr-poll-h:before {
content: "\fa98";
}
.fi-sr-pollution:before {
content: "\fa99";
}
.fi-sr-pompebled:before {
content: "\fa9a";
}
.fi-sr-poo-bolt:before {
content: "\fa9b";
}
.fi-sr-poo:before {
content: "\fa9c";
}
.fi-sr-pool-8-ball:before {
content: "\fa9d";
}
.fi-sr-poop:before {
content: "\fa9e";
}
.fi-sr-popcorn:before {
content: "\fa9f";
}
.fi-sr-popsicle:before {
content: "\faa0";
}
.fi-sr-portal-enter:before {
content: "\faa1";
}
.fi-sr-portal-exit:before {
content: "\faa2";
}
.fi-sr-portrait:before {
content: "\faa3";
}
.fi-sr-postal-address:before {
content: "\faa4";
}
.fi-sr-pot:before {
content: "\faa5";
}
.fi-sr-potato:before {
content: "\faa6";
}
.fi-sr-pound:before {
content: "\faa7";
}
.fi-sr-power:before {
content: "\faa8";
}
.fi-sr-ppt-file:before {
content: "\faa9";
}
.fi-sr-practice:before {
content: "\faaa";
}
.fi-sr-praying-hands:before {
content: "\faab";
}
.fi-sr-prescription-bottle-alt:before {
content: "\faac";
}
.fi-sr-prescription-bottle-pill:before {
content: "\faad";
}
.fi-sr-prescription-bottle:before {
content: "\faae";
}
.fi-sr-prescription:before {
content: "\faaf";
}
.fi-sr-presentation:before {
content: "\fab0";
}
.fi-sr-preview:before {
content: "\fab1";
}
.fi-sr-previous-square:before {
content: "\fab2";
}
.fi-sr-print-magnifying-glass:before {
content: "\fab3";
}
.fi-sr-print-slash:before {
content: "\fab4";
}
.fi-sr-print:before {
content: "\fab5";
}
.fi-sr-priority-arrow:before {
content: "\fab6";
}
.fi-sr-priority-arrows:before {
content: "\fab7";
}
.fi-sr-priority-importance:before {
content: "\fab8";
}
.fi-sr-procedures:before {
content: "\fab9";
}
.fi-sr-process:before {
content: "\faba";
}
.fi-sr-productivity:before {
content: "\fabb";
}
.fi-sr-progress-complete:before {
content: "\fabc";
}
.fi-sr-progress-download:before {
content: "\fabd";
}
.fi-sr-progress-upload:before {
content: "\fabe";
}
.fi-sr-projector:before {
content: "\fabf";
}
.fi-sr-protractor:before {
content: "\fac0";
}
.fi-sr-pulse:before {
content: "\fac1";
}
.fi-sr-pump-medical:before {
content: "\fac2";
}
.fi-sr-pump:before {
content: "\fac3";
}
.fi-sr-pumpkin-alt-2:before {
content: "\fac4";
}
.fi-sr-pumpkin-alt:before {
content: "\fac5";
}
.fi-sr-pumpkin:before {
content: "\fac6";
}
.fi-sr-puzzle-alt:before {
content: "\fac7";
}
.fi-sr-puzzle-piece-integration:before {
content: "\fac8";
}
.fi-sr-puzzle-piece:before {
content: "\fac9";
}
.fi-sr-puzzle-pieces:before {
content: "\faca";
}
.fi-sr-pyramid:before {
content: "\facb";
}
.fi-sr-q:before {
content: "\facc";
}
.fi-sr-qr-scan:before {
content: "\facd";
}
.fi-sr-QR:before {
content: "\face";
}
.fi-sr-qrcode:before {
content: "\facf";
}
.fi-sr-question-square:before {
content: "\fad0";
}
.fi-sr-question:before {
content: "\fad1";
}
.fi-sr-queue-alt:before {
content: "\fad2";
}
.fi-sr-queue-line:before {
content: "\fad3";
}
.fi-sr-queue-signal:before {
content: "\fad4";
}
.fi-sr-queue:before {
content: "\fad5";
}
.fi-sr-quill-pen-story:before {
content: "\fad6";
}
.fi-sr-quiz-alt:before {
content: "\fad7";
}
.fi-sr-quiz:before {
content: "\fad8";
}
.fi-sr-quote-right:before {
content: "\fad9";
}
.fi-sr-r:before {
content: "\fada";
}
.fi-sr-rabbit-fast:before {
content: "\fadb";
}
.fi-sr-rabbit:before {
content: "\fadc";
}
.fi-sr-raccoon:before {
content: "\fadd";
}
.fi-sr-racquet:before {
content: "\fade";
}
.fi-sr-radar-monitoring-track:before {
content: "\fadf";
}
.fi-sr-radar:before {
content: "\fae0";
}
.fi-sr-radiation-alt:before {
content: "\fae1";
}
.fi-sr-radiation:before {
content: "\fae2";
}
.fi-sr-radio-alt:before {
content: "\fae3";
}
.fi-sr-radio-button:before {
content: "\fae4";
}
.fi-sr-radio:before {
content: "\fae5";
}
.fi-sr-radish:before {
content: "\fae6";
}
.fi-sr-rainbow:before {
content: "\fae7";
}
.fi-sr-raindrops:before {
content: "\fae8";
}
.fi-sr-ram:before {
content: "\fae9";
}
.fi-sr-ramp-loading:before {
content: "\faea";
}
.fi-sr-rank:before {
content: "\faeb";
}
.fi-sr-ranking-podium-empty:before {
content: "\faec";
}
.fi-sr-ranking-podium:before {
content: "\faed";
}
.fi-sr-ranking-star:before {
content: "\faee";
}
.fi-sr-ranking-stars:before {
content: "\faef";
}
.fi-sr-raygun:before {
content: "\faf0";
}
.fi-sr-razor-barber:before {
content: "\faf1";
}
.fi-sr-react:before {
content: "\faf2";
}
.fi-sr-rec:before {
content: "\faf3";
}
.fi-sr-receipt:before {
content: "\faf4";
}
.fi-sr-recipe-book:before {
content: "\faf5";
}
.fi-sr-recipe:before {
content: "\faf6";
}
.fi-sr-record-vinyl:before {
content: "\faf7";
}
.fi-sr-rectabgle-vertical:before {
content: "\faf8";
}
.fi-sr-rectangle-barcode:before {
content: "\faf9";
}
.fi-sr-rectangle-code:before {
content: "\fafa";
}
.fi-sr-rectangle-history-circle-plus:before {
content: "\fafb";
}
.fi-sr-rectangle-horizontal:before {
content: "\fafc";
}
.fi-sr-rectangle-list:before {
content: "\fafd";
}
.fi-sr-rectangle-panoramic:before {
content: "\fafe";
}
.fi-sr-rectangle-pro:before {
content: "\faff";
}
.fi-sr-rectangle-vertical-history:before {
content: "\fb00";
}
.fi-sr-rectangle-vertical:before {
content: "\fb01";
}
.fi-sr-rectangle-xmark:before {
content: "\fb02";
}
.fi-sr-rectangles-mixed:before {
content: "\fb03";
}
.fi-sr-recycle-bin:before {
content: "\fb04";
}
.fi-sr-recycle:before {
content: "\fb05";
}
.fi-sr-redo-alt:before {
content: "\fb06";
}
.fi-sr-redo:before {
content: "\fb07";
}
.fi-sr-reel:before {
content: "\fb08";
}
.fi-sr-refer-arrow:before {
content: "\fb09";
}
.fi-sr-refer:before {
content: "\fb0a";
}
.fi-sr-referral-alt:before {
content: "\fb0b";
}
.fi-sr-referral-user:before {
content: "\fb0c";
}
.fi-sr-referral:before {
content: "\fb0d";
}
.fi-sr-reflect-horizontal-alt:before {
content: "\fb0e";
}
.fi-sr-reflect-horizontal:before {
content: "\fb0f";
}
.fi-sr-reflect-vertical:before {
content: "\fb10";
}
.fi-sr-reflect:before {
content: "\fb11";
}
.fi-sr-refresh:before {
content: "\fb12";
}
.fi-sr-refrigerator:before {
content: "\fb13";
}
.fi-sr-refund-alt:before {
content: "\fb14";
}
.fi-sr-refund:before {
content: "\fb15";
}
.fi-sr-region-pin-alt:before {
content: "\fb16";
}
.fi-sr-region-pin:before {
content: "\fb17";
}
.fi-sr-registered:before {
content: "\fb18";
}
.fi-sr-registration-paper:before {
content: "\fb19";
}
.fi-sr-remove-folder:before {
content: "\fb1a";
}
.fi-sr-remove-user:before {
content: "\fb1b";
}
.fi-sr-rent-signal:before {
content: "\fb1c";
}
.fi-sr-rent:before {
content: "\fb1d";
}
.fi-sr-replace:before {
content: "\fb1e";
}
.fi-sr-replay-10:before {
content: "\fb1f";
}
.fi-sr-replay-30:before {
content: "\fb20";
}
.fi-sr-replay-5:before {
content: "\fb21";
}
.fi-sr-reply-all:before {
content: "\fb22";
}
.fi-sr-republican:before {
content: "\fb23";
}
.fi-sr-reservation-smartphone:before {
content: "\fb24";
}
.fi-sr-reservation-table:before {
content: "\fb25";
}
.fi-sr-resistance-band:before {
content: "\fb26";
}
.fi-sr-resize:before {
content: "\fb27";
}
.fi-sr-resources:before {
content: "\fb28";
}
.fi-sr-restaurant:before {
content: "\fb29";
}
.fi-sr-restroom-simple:before {
content: "\fb2a";
}
.fi-sr-resume:before {
content: "\fb2b";
}
.fi-sr-revenue-alt:before {
content: "\fb2c";
}
.fi-sr-revenue-euro:before {
content: "\fb2d";
}
.fi-sr-Revenue:before {
content: "\fb2e";
}
.fi-sr-review:before {
content: "\fb2f";
}
.fi-sr-rewind-button-circle:before {
content: "\fb30";
}
.fi-sr-rewind:before {
content: "\fb31";
}
.fi-sr-rhombus:before {
content: "\fb32";
}
.fi-sr-ribbon:before {
content: "\fb33";
}
.fi-sr-right-from-bracket:before {
content: "\fb34";
}
.fi-sr-right:before {
content: "\fb35";
}
.fi-sr-ring-diamond:before {
content: "\fb36";
}
.fi-sr-ring:before {
content: "\fb37";
}
.fi-sr-rings-wedding:before {
content: "\fb38";
}
.fi-sr-risk-alt:before {
content: "\fb39";
}
.fi-sr-risk:before {
content: "\fb3a";
}
.fi-sr-road-barrier:before {
content: "\fb3b";
}
.fi-sr-road-sign-left:before {
content: "\fb3c";
}
.fi-sr-road:before {
content: "\fb3d";
}
.fi-sr-robot:before {
content: "\fb3e";
}
.fi-sr-robotic-arm:before {
content: "\fb3f";
}
.fi-sr-rocket-lunch:before {
content: "\fb40";
}
.fi-sr-rocket:before {
content: "\fb41";
}
.fi-sr-roller-coaster:before {
content: "\fb42";
}
.fi-sr-room-service:before {
content: "\fb43";
}
.fi-sr-rotate-exclamation:before {
content: "\fb44";
}
.fi-sr-rotate-left:before {
content: "\fb45";
}
.fi-sr-rotate-reverse:before {
content: "\fb46";
}
.fi-sr-rotate-right:before {
content: "\fb47";
}
.fi-sr-rotate-square:before {
content: "\fb48";
}
.fi-sr-roulette:before {
content: "\fb49";
}
.fi-sr-route-highway:before {
content: "\fb4a";
}
.fi-sr-route-interstate:before {
content: "\fb4b";
}
.fi-sr-route:before {
content: "\fb4c";
}
.fi-sr-router:before {
content: "\fb4d";
}
.fi-sr-rss-alt:before {
content: "\fb4e";
}
.fi-sr-rss:before {
content: "\fb4f";
}
.fi-sr-ruble-sign:before {
content: "\fb50";
}
.fi-sr-rugby-helmet:before {
content: "\fb51";
}
.fi-sr-rugby:before {
content: "\fb52";
}
.fi-sr-ruler-combined:before {
content: "\fb53";
}
.fi-sr-ruler-horizontal:before {
content: "\fb54";
}
.fi-sr-ruler-triangle:before {
content: "\fb55";
}
.fi-sr-ruler-vertical:before {
content: "\fb56";
}
.fi-sr-rules-alt:before {
content: "\fb57";
}
.fi-sr-rules:before {
content: "\fb58";
}
.fi-sr-running-track:before {
content: "\fb59";
}
.fi-sr-running:before {
content: "\fb5a";
}
.fi-sr-rupee-sign:before {
content: "\fb5b";
}
.fi-sr-rupiah-sign:before {
content: "\fb5c";
}
.fi-sr-rv:before {
content: "\fb5d";
}
.fi-sr-s:before {
content: "\fb5e";
}
.fi-sr-sack-dollar:before {
content: "\fb5f";
}
.fi-sr-sack:before {
content: "\fb60";
}
.fi-sr-sad-cry:before {
content: "\fb61";
}
.fi-sr-sad-tear:before {
content: "\fb62";
}
.fi-sr-sad:before {
content: "\fb63";
}
.fi-sr-safe-box:before {
content: "\fb64";
}
.fi-sr-sailboat:before {
content: "\fb65";
}
.fi-sr-salad:before {
content: "\fb66";
}
.fi-sr-salary-alt:before {
content: "\fb67";
}
.fi-sr-salt-pepper:before {
content: "\fb68";
}
.fi-sr-salt-shaker:before {
content: "\fb69";
}
.fi-sr-sandwich-alt:before {
content: "\fb6a";
}
.fi-sr-sandwich:before {
content: "\fb6b";
}
.fi-sr-satellite-dish:before {
content: "\fb6c";
}
.fi-sr-satellite:before {
content: "\fb6d";
}
.fi-sr-saturday:before {
content: "\fb6e";
}
.fi-sr-sauce:before {
content: "\fb6f";
}
.fi-sr-sausage:before {
content: "\fb70";
}
.fi-sr-sax-hot:before {
content: "\fb71";
}
.fi-sr-saxophone:before {
content: "\fb72";
}
.fi-sr-scale-comparison-alt:before {
content: "\fb73";
}
.fi-sr-scale-comparison:before {
content: "\fb74";
}
.fi-sr-scale:before {
content: "\fb75";
}
.fi-sr-scalpel-path:before {
content: "\fb76";
}
.fi-sr-scalpel:before {
content: "\fb77";
}
.fi-sr-scanner-gun:before {
content: "\fb78";
}
.fi-sr-scanner-image:before {
content: "\fb79";
}
.fi-sr-scanner-keyboard:before {
content: "\fb7a";
}
.fi-sr-scanner-touchscreen:before {
content: "\fb7b";
}
.fi-sr-scarecrow:before {
content: "\fb7c";
}
.fi-sr-scarf:before {
content: "\fb7d";
}
.fi-sr-school-bus:before {
content: "\fb7e";
}
.fi-sr-school:before {
content: "\fb7f";
}
.fi-sr-scissors:before {
content: "\fb80";
}
.fi-sr-scooter:before {
content: "\fb81";
}
.fi-sr-screen:before {
content: "\fb82";
}
.fi-sr-screencast:before {
content: "\fb83";
}
.fi-sr-screw-alt:before {
content: "\fb84";
}
.fi-sr-screw:before {
content: "\fb85";
}
.fi-sr-screwdriver:before {
content: "\fb86";
}
.fi-sr-scribble:before {
content: "\fb87";
}
.fi-sr-script:before {
content: "\fb88";
}
.fi-sr-scroll-document-story:before {
content: "\fb89";
}
.fi-sr-scroll-old:before {
content: "\fb8a";
}
.fi-sr-scroll-torah:before {
content: "\fb8b";
}
.fi-sr-scroll:before {
content: "\fb8c";
}
.fi-sr-scrubber:before {
content: "\fb8d";
}
.fi-sr-scythe:before {
content: "\fb8e";
}
.fi-sr-sd-card:before {
content: "\fb8f";
}
.fi-sr-sd-cards:before {
content: "\fb90";
}
.fi-sr-seal-exclamation:before {
content: "\fb91";
}
.fi-sr-seal-question:before {
content: "\fb92";
}
.fi-sr-seal:before {
content: "\fb93";
}
.fi-sr-search-alt:before {
content: "\fb94";
}
.fi-sr-search-dollar:before {
content: "\fb95";
}
.fi-sr-search-heart:before {
content: "\fb96";
}
.fi-sr-search-location:before {
content: "\fb97";
}
.fi-sr-search:before {
content: "\fb98";
}
.fi-sr-seat-airline:before {
content: "\fb99";
}
.fi-sr-seatbelt-safety-driver:before {
content: "\fb9a";
}
.fi-sr-second-award:before {
content: "\fb9b";
}
.fi-sr-second-laurel:before {
content: "\fb9c";
}
.fi-sr-second-medal:before {
content: "\fb9d";
}
.fi-sr-second:before {
content: "\fb9e";
}
.fi-sr-seedling:before {
content: "\fb9f";
}
.fi-sr-select:before {
content: "\fba0";
}
.fi-sr-selection:before {
content: "\fba1";
}
.fi-sr-seller-store:before {
content: "\fba2";
}
.fi-sr-seller:before {
content: "\fba3";
}
.fi-sr-send-back:before {
content: "\fba4";
}
.fi-sr-send-backward:before {
content: "\fba5";
}
.fi-sr-sensor-alert:before {
content: "\fba6";
}
.fi-sr-sensor-fire:before {
content: "\fba7";
}
.fi-sr-sensor-on:before {
content: "\fba8";
}
.fi-sr-sensor-smoke:before {
content: "\fba9";
}
.fi-sr-sensor:before {
content: "\fbaa";
}
.fi-sr-settings-sliders:before {
content: "\fbab";
}
.fi-sr-settings:before {
content: "\fbac";
}
.fi-sr-share-alt-square:before {
content: "\fbad";
}
.fi-sr-share-square:before {
content: "\fbae";
}
.fi-sr-share:before {
content: "\fbaf";
}
.fi-sr-sheep:before {
content: "\fbb0";
}
.fi-sr-shekel-sign:before {
content: "\fbb1";
}
.fi-sr-shelves:before {
content: "\fbb2";
}
.fi-sr-shield-alt:before {
content: "\fbb3";
}
.fi-sr-shield-cat:before {
content: "\fbb4";
}
.fi-sr-shield-check:before {
content: "\fbb5";
}
.fi-sr-shield-cross:before {
content: "\fbb6";
}
.fi-sr-shield-dog:before {
content: "\fbb7";
}
.fi-sr-shield-exclamation:before {
content: "\fbb8";
}
.fi-sr-shield-interrogation:before {
content: "\fbb9";
}
.fi-sr-shield-keyhole:before {
content: "\fbba";
}
.fi-sr-shield-minus:before {
content: "\fbbb";
}
.fi-sr-shield-plus:before {
content: "\fbbc";
}
.fi-sr-shield-security-risk:before {
content: "\fbbd";
}
.fi-sr-shield-slash:before {
content: "\fbbe";
}
.fi-sr-shield-trust:before {
content: "\fbbf";
}
.fi-sr-shield-virus:before {
content: "\fbc0";
}
.fi-sr-shield-xmark:before {
content: "\fbc1";
}
.fi-sr-shield:before {
content: "\fbc2";
}
.fi-sr-ship-side:before {
content: "\fbc3";
}
.fi-sr-ship:before {
content: "\fbc4";
}
.fi-sr-shipping-fast:before {
content: "\fbc5";
}
.fi-sr-shipping-timed:before {
content: "\fbc6";
}
.fi-sr-shirt-long-sleeve:before {
content: "\fbc7";
}
.fi-sr-shirt-running:before {
content: "\fbc8";
}
.fi-sr-shirt-tank-top:before {
content: "\fbc9";
}
.fi-sr-shirt:before {
content: "\fbca";
}
.fi-sr-shish-kebab:before {
content: "\fbcb";
}
.fi-sr-shoe-prints:before {
content: "\fbcc";
}
.fi-sr-shop-lock:before {
content: "\fbcd";
}
.fi-sr-shop-slash:before {
content: "\fbce";
}
.fi-sr-shop:before {
content: "\fbcf";
}
.fi-sr-shopping-bag-add:before {
content: "\fbd0";
}
.fi-sr-shopping-bag:before {
content: "\fbd1";
}
.fi-sr-shopping-basket:before {
content: "\fbd2";
}
.fi-sr-shopping-cart-add:before {
content: "\fbd3";
}
.fi-sr-shopping-cart-buyer:before {
content: "\fbd4";
}
.fi-sr-shopping-cart-check:before {
content: "\fbd5";
}
.fi-sr-shopping-cart:before {
content: "\fbd6";
}
.fi-sr-shovel-snow:before {
content: "\fbd7";
}
.fi-sr-shovel:before {
content: "\fbd8";
}
.fi-sr-shower-down:before {
content: "\fbd9";
}
.fi-sr-shower:before {
content: "\fbda";
}
.fi-sr-shredder:before {
content: "\fbdb";
}
.fi-sr-shrimp:before {
content: "\fbdc";
}
.fi-sr-shuffle:before {
content: "\fbdd";
}
.fi-sr-shuttle-van:before {
content: "\fbde";
}
.fi-sr-shuttlecock:before {
content: "\fbdf";
}
.fi-sr-Sickle:before {
content: "\fbe0";
}
.fi-sr-sidebar-flip:before {
content: "\fbe1";
}
.fi-sr-sidebar:before {
content: "\fbe2";
}
.fi-sr-sigma:before {
content: "\fbe3";
}
.fi-sr-sign-hanging:before {
content: "\fbe4";
}
.fi-sr-sign-in-alt:before {
content: "\fbe5";
}
.fi-sr-sign-out-alt:before {
content: "\fbe6";
}
.fi-sr-sign-posts-wrench:before {
content: "\fbe7";
}
.fi-sr-sign-posts:before {
content: "\fbe8";
}
.fi-sr-sign-up:before {
content: "\fbe9";
}
.fi-sr-signal-alt-1:before {
content: "\fbea";
}
.fi-sr-signal-alt-2:before {
content: "\fbeb";
}
.fi-sr-signal-alt-slash:before {
content: "\fbec";
}
.fi-sr-signal-alt:before {
content: "\fbed";
}
.fi-sr-signal-bars-fair:before {
content: "\fbee";
}
.fi-sr-signal-bars-good:before {
content: "\fbef";
}
.fi-sr-signal-bars-weak:before {
content: "\fbf0";
}
.fi-sr-signal-stream-slash:before {
content: "\fbf1";
}
.fi-sr-signal-stream:before {
content: "\fbf2";
}
.fi-sr-signature-lock:before {
content: "\fbf3";
}
.fi-sr-signature-slash:before {
content: "\fbf4";
}
.fi-sr-signature:before {
content: "\fbf5";
}
.fi-sr-sim-card:before {
content: "\fbf6";
}
.fi-sr-sim-cards:before {
content: "\fbf7";
}
.fi-sr-sink:before {
content: "\fbf8";
}
.fi-sr-siren-on:before {
content: "\fbf9";
}
.fi-sr-Siren:before {
content: "\fbfa";
}
.fi-sr-site-alt:before {
content: "\fbfb";
}
.fi-sr-site-browser:before {
content: "\fbfc";
}
.fi-sr-site:before {
content: "\fbfd";
}
.fi-sr-sitemap:before {
content: "\fbfe";
}
.fi-sr-skateboard:before {
content: "\fbff";
}
.fi-sr-skating:before {
content: "\fc00";
}
.fi-sr-skeleton-ribs:before {
content: "\fc01";
}
.fi-sr-skeleton:before {
content: "\fc02";
}
.fi-sr-skewer:before {
content: "\fc03";
}
.fi-sr-ski-boot-ski:before {
content: "\fc04";
}
.fi-sr-ski-jump:before {
content: "\fc05";
}
.fi-sr-ski-lift:before {
content: "\fc06";
}
.fi-sr-skiing-nordic:before {
content: "\fc07";
}
.fi-sr-skiing:before {
content: "\fc08";
}
.fi-sr-skill-alt:before {
content: "\fc09";
}
.fi-sr-skill-user:before {
content: "\fc0a";
}
.fi-sr-skill:before {
content: "\fc0b";
}
.fi-sr-skin-arrow:before {
content: "\fc0c";
}
.fi-sr-skin-drop:before {
content: "\fc0d";
}
.fi-sr-skin-hair:before {
content: "\fc0e";
}
.fi-sr-skin:before {
content: "\fc0f";
}
.fi-sr-skip-15-seconds:before {
content: "\fc10";
}
.fi-sr-skull-cow:before {
content: "\fc11";
}
.fi-sr-skull-crossbones:before {
content: "\fc12";
}
.fi-sr-skull:before {
content: "\fc13";
}
.fi-sr-slash:before {
content: "\fc14";
}
.fi-sr-sledding:before {
content: "\fc15";
}
.fi-sr-sleeping-bag:before {
content: "\fc16";
}
.fi-sr-sleigh:before {
content: "\fc17";
}
.fi-sr-sliders-h-square:before {
content: "\fc18";
}
.fi-sr-sliders-v-square:before {
content: "\fc19";
}
.fi-sr-sliders-v:before {
content: "\fc1a";
}
.fi-sr-slot-machine:before {
content: "\fc1b";
}
.fi-sr-smart-home-alt:before {
content: "\fc1c";
}
.fi-sr-smart-home:before {
content: "\fc1d";
}
.fi-sr-smartphone:before {
content: "\fc1e";
}
.fi-sr-smile-beam:before {
content: "\fc1f";
}
.fi-sr-smile-plus:before {
content: "\fc20";
}
.fi-sr-smile-wink:before {
content: "\fc21";
}
.fi-sr-smile:before {
content: "\fc22";
}
.fi-sr-smiley-comment-alt:before {
content: "\fc23";
}
.fi-sr-smog:before {
content: "\fc24";
}
.fi-sr-smoke:before {
content: "\fc25";
}
.fi-sr-smoking-ban:before {
content: "\fc26";
}
.fi-sr-smoking:before {
content: "\fc27";
}
.fi-sr-snake:before {
content: "\fc28";
}
.fi-sr-snap:before {
content: "\fc29";
}
.fi-sr-snooze:before {
content: "\fc2a";
}
.fi-sr-snow-blowing:before {
content: "\fc2b";
}
.fi-sr-snowboarding:before {
content: "\fc2c";
}
.fi-sr-snowflake-droplets:before {
content: "\fc2d";
}
.fi-sr-snowflake:before {
content: "\fc2e";
}
.fi-sr-snowflakes:before {
content: "\fc2f";
}
.fi-sr-snowman-alt:before {
content: "\fc30";
}
.fi-sr-snowman-head:before {
content: "\fc31";
}
.fi-sr-snowmobile:before {
content: "\fc32";
}
.fi-sr-snowplow:before {
content: "\fc33";
}
.fi-sr-soap-alt:before {
content: "\fc34";
}
.fi-sr-soap:before {
content: "\fc35";
}
.fi-sr-socks:before {
content: "\fc36";
}
.fi-sr-sofa-size:before {
content: "\fc37";
}
.fi-sr-sofa:before {
content: "\fc38";
}
.fi-sr-solar-panel-sun:before {
content: "\fc39";
}
.fi-sr-solar-panel:before {
content: "\fc3a";
}
.fi-sr-solar-system:before {
content: "\fc3b";
}
.fi-sr-sold-house:before {
content: "\fc3c";
}
.fi-sr-sold-signal:before {
content: "\fc3d";
}
.fi-sr-sort-alpha-down-alt:before {
content: "\fc3e";
}
.fi-sr-sort-alpha-down:before {
content: "\fc3f";
}
.fi-sr-sort-alpha-up-alt:before {
content: "\fc40";
}
.fi-sr-sort-alpha-up:before {
content: "\fc41";
}
.fi-sr-sort-alt:before {
content: "\fc42";
}
.fi-sr-sort-amount-down-alt:before {
content: "\fc43";
}
.fi-sr-sort-amount-down:before {
content: "\fc44";
}
.fi-sr-sort-amount-up-alt:before {
content: "\fc45";
}
.fi-sr-sort-amount-up:before {
content: "\fc46";
}
.fi-sr-sort-circle-down:before {
content: "\fc47";
}
.fi-sr-sort-circle-up:before {
content: "\fc48";
}
.fi-sr-sort-circle:before {
content: "\fc49";
}
.fi-sr-sort-down:before {
content: "\fc4a";
}
.fi-sr-sort-numeric-down-alt:before {
content: "\fc4b";
}
.fi-sr-sort-numeric-down:before {
content: "\fc4c";
}
.fi-sr-sort-shapes-down:before {
content: "\fc4d";
}
.fi-sr-sort-shapes-up:before {
content: "\fc4e";
}
.fi-sr-sort-size-down:before {
content: "\fc4f";
}
.fi-sr-sort-size-up:before {
content: "\fc50";
}
.fi-sr-sort:before {
content: "\fc51";
}
.fi-sr-soup:before {
content: "\fc52";
}
.fi-sr-source-data:before {
content: "\fc53";
}
.fi-sr-source-document-alt:before {
content: "\fc54";
}
.fi-sr-source-document:before {
content: "\fc55";
}
.fi-sr-spa:before {
content: "\fc56";
}
.fi-sr-space-shuttle:before {
content: "\fc57";
}
.fi-sr-space-station-moon-alt:before {
content: "\fc58";
}
.fi-sr-space-station-moon:before {
content: "\fc59";
}
.fi-sr-spade:before {
content: "\fc5a";
}
.fi-sr-spaghetti-monster-flying:before {
content: "\fc5b";
}
.fi-sr-spain-map:before {
content: "\fc5c";
}
.fi-sr-sparkles:before {
content: "\fc5d";
}
.fi-sr-spartan-helmet:before {
content: "\fc5e";
}
.fi-sr-speaker:before {
content: "\fc5f";
}
.fi-sr-speakers:before {
content: "\fc60";
}
.fi-sr-speech-bubble-story:before {
content: "\fc61";
}
.fi-sr-speedometer-arrow:before {
content: "\fc62";
}
.fi-sr-speedometer-kpi:before {
content: "\fc63";
}
.fi-sr-sphere:before {
content: "\fc64";
}
.fi-sr-spider-black-widow:before {
content: "\fc65";
}
.fi-sr-spider-web:before {
content: "\fc66";
}
.fi-sr-spider:before {
content: "\fc67";
}
.fi-sr-spinner:before {
content: "\fc68";
}
.fi-sr-split-up-relation:before {
content: "\fc69";
}
.fi-sr-split:before {
content: "\fc6a";
}
.fi-sr-splotch:before {
content: "\fc6b";
}
.fi-sr-spoon:before {
content: "\fc6c";
}
.fi-sr-spray-can-sparkles:before {
content: "\fc6d";
}
.fi-sr-spray-can:before {
content: "\fc6e";
}
.fi-sr-spring-calendar:before {
content: "\fc6f";
}
.fi-sr-sprinkler:before {
content: "\fc70";
}
.fi-sr-spy:before {
content: "\fc71";
}
.fi-sr-square-0:before {
content: "\fc72";
}
.fi-sr-square-1:before {
content: "\fc73";
}
.fi-sr-square-2:before {
content: "\fc74";
}
.fi-sr-square-3:before {
content: "\fc75";
}
.fi-sr-square-4:before {
content: "\fc76";
}
.fi-sr-square-5:before {
content: "\fc77";
}
.fi-sr-square-6:before {
content: "\fc78";
}
.fi-sr-square-7:before {
content: "\fc79";
}
.fi-sr-square-8:before {
content: "\fc7a";
}
.fi-sr-square-9:before {
content: "\fc7b";
}
.fi-sr-square-a:before {
content: "\fc7c";
}
.fi-sr-square-b:before {
content: "\fc7d";
}
.fi-sr-square-bolt:before {
content: "\fc7e";
}
.fi-sr-square-c:before {
content: "\fc7f";
}
.fi-sr-square-code:before {
content: "\fc80";
}
.fi-sr-square-d:before {
content: "\fc81";
}
.fi-sr-square-dashed-circle-plus:before {
content: "\fc82";
}
.fi-sr-square-dashed:before {
content: "\fc83";
}
.fi-sr-square-divide:before {
content: "\fc84";
}
.fi-sr-square-e:before {
content: "\fc85";
}
.fi-sr-square-ellipsis-vertical:before {
content: "\fc86";
}
.fi-sr-square-ellipsis:before {
content: "\fc87";
}
.fi-sr-square-exclamation:before {
content: "\fc88";
}
.fi-sr-square-f:before {
content: "\fc89";
}
.fi-sr-square-g:before {
content: "\fc8a";
}
.fi-sr-square-h:before {
content: "\fc8b";
}
.fi-sr-square-heart:before {
content: "\fc8c";
}
.fi-sr-square-i:before {
content: "\fc8d";
}
.fi-sr-square-info:before {
content: "\fc8e";
}
.fi-sr-square-j:before {
content: "\fc8f";
}
.fi-sr-square-k:before {
content: "\fc90";
}
.fi-sr-square-kanban:before {
content: "\fc91";
}
.fi-sr-square-l:before {
content: "\fc92";
}
.fi-sr-square-m:before {
content: "\fc93";
}
.fi-sr-square-minus:before {
content: "\fc94";
}
.fi-sr-square-n:before {
content: "\fc95";
}
.fi-sr-square-o:before {
content: "\fc96";
}
.fi-sr-square-p:before {
content: "\fc97";
}
.fi-sr-square-phone-hangup:before {
content: "\fc98";
}
.fi-sr-square-plus:before {
content: "\fc99";
}
.fi-sr-square-poll-horizontal:before {
content: "\fc9a";
}
.fi-sr-square-poll-vertical:before {
content: "\fc9b";
}
.fi-sr-square-q:before {
content: "\fc9c";
}
.fi-sr-square-quote:before {
content: "\fc9d";
}
.fi-sr-square-r:before {
content: "\fc9e";
}
.fi-sr-square-root:before {
content: "\fc9f";
}
.fi-sr-square-s:before {
content: "\fca0";
}
.fi-sr-square-small:before {
content: "\fca1";
}
.fi-sr-square-star:before {
content: "\fca2";
}
.fi-sr-square-t:before {
content: "\fca3";
}
.fi-sr-square-terminal:before {
content: "\fca4";
}
.fi-sr-square-u:before {
content: "\fca5";
}
.fi-sr-square-up-right:before {
content: "\fca6";
}
.fi-sr-square-v:before {
content: "\fca7";
}
.fi-sr-square-w:before {
content: "\fca8";
}
.fi-sr-square-x:before {
content: "\fca9";
}
.fi-sr-square-y:before {
content: "\fcaa";
}
.fi-sr-square-z:before {
content: "\fcab";
}
.fi-sr-square:before {
content: "\fcac";
}
.fi-sr-squid:before {
content: "\fcad";
}
.fi-sr-squircle:before {
content: "\fcae";
}
.fi-sr-squirrel:before {
content: "\fcaf";
}
.fi-sr-staff:before {
content: "\fcb0";
}
.fi-sr-stage-concert:before {
content: "\fcb1";
}
.fi-sr-stage-theatre:before {
content: "\fcb2";
}
.fi-sr-stage:before {
content: "\fcb3";
}
.fi-sr-stairs:before {
content: "\fcb4";
}
.fi-sr-stamp:before {
content: "\fcb5";
}
.fi-sr-standard-definition:before {
content: "\fcb6";
}
.fi-sr-star-and-crescent:before {
content: "\fcb7";
}
.fi-sr-star-christmas:before {
content: "\fcb8";
}
.fi-sr-star-comment-alt:before {
content: "\fcb9";
}
.fi-sr-star-exclamation:before {
content: "\fcba";
}
.fi-sr-star-octogram:before {
content: "\fcbb";
}
.fi-sr-star-of-david:before {
content: "\fcbc";
}
.fi-sr-star-rating-call:before {
content: "\fcbd";
}
.fi-sr-star-sharp-half-stroke:before {
content: "\fcbe";
}
.fi-sr-star-sharp-half:before {
content: "\fcbf";
}
.fi-sr-star-shooting:before {
content: "\fcc0";
}
.fi-sr-star:before {
content: "\fcc1";
}
.fi-sr-starfighter:before {
content: "\fcc2";
}
.fi-sr-stars:before {
content: "\fcc3";
}
.fi-sr-state-country:before {
content: "\fcc4";
}
.fi-sr-stationary-bike:before {
content: "\fcc5";
}
.fi-sr-stats:before {
content: "\fcc6";
}
.fi-sr-steak:before {
content: "\fcc7";
}
.fi-sr-steering-wheel:before {
content: "\fcc8";
}
.fi-sr-step-backward:before {
content: "\fcc9";
}
.fi-sr-step-forward:before {
content: "\fcca";
}
.fi-sr-sterling-sign:before {
content: "\fccb";
}
.fi-sr-stethoscope:before {
content: "\fccc";
}
.fi-sr-sticker:before {
content: "\fccd";
}
.fi-sr-stocking:before {
content: "\fcce";
}
.fi-sr-stomach:before {
content: "\fccf";
}
.fi-sr-stop-circle:before {
content: "\fcd0";
}
.fi-sr-stop-square:before {
content: "\fcd1";
}
.fi-sr-stop:before {
content: "\fcd2";
}
.fi-sr-stopwatch:before {
content: "\fcd3";
}
.fi-sr-store-alt:before {
content: "\fcd4";
}
.fi-sr-store-buyer:before {
content: "\fcd5";
}
.fi-sr-store-lock:before {
content: "\fcd6";
}
.fi-sr-store-slash:before {
content: "\fcd7";
}
.fi-sr-story-book:before {
content: "\fcd8";
}
.fi-sr-story-fairy-tale:before {
content: "\fcd9";
}
.fi-sr-story-fantasy:before {
content: "\fcda";
}
.fi-sr-strategy-chess-risk:before {
content: "\fcdb";
}
.fi-sr-strawberry:before {
content: "\fcdc";
}
.fi-sr-street-view:before {
content: "\fcdd";
}
.fi-sr-stretcher:before {
content: "\fcde";
}
.fi-sr-strikethrough:before {
content: "\fcdf";
}
.fi-sr-stroopwafel:before {
content: "\fce0";
}
.fi-sr-student-alt:before {
content: "\fce1";
}
.fi-sr-student:before {
content: "\fce2";
}
.fi-sr-subscript:before {
content: "\fce3";
}
.fi-sr-subscription-alt:before {
content: "\fce4";
}
.fi-sr-subscription:before {
content: "\fce5";
}
.fi-sr-subtitles-slash:before {
content: "\fce6";
}
.fi-sr-subtitles:before {
content: "\fce7";
}
.fi-sr-subway:before {
content: "\fce8";
}
.fi-sr-suitcase-alt:before {
content: "\fce9";
}
.fi-sr-summary-check:before {
content: "\fcea";
}
.fi-sr-summer:before {
content: "\fceb";
}
.fi-sr-sun-dust:before {
content: "\fcec";
}
.fi-sr-sun-plant-wilt:before {
content: "\fced";
}
.fi-sr-sun-salutation-yoga:before {
content: "\fcee";
}
.fi-sr-sun:before {
content: "\fcef";
}
.fi-sr-sunday:before {
content: "\fcf0";
}
.fi-sr-sunglasses-alt:before {
content: "\fcf1";
}
.fi-sr-sunglasses:before {
content: "\fcf2";
}
.fi-sr-sunrise-alt:before {
content: "\fcf3";
}
.fi-sr-sunrise:before {
content: "\fcf4";
}
.fi-sr-sunset:before {
content: "\fcf5";
}
.fi-sr-superscript:before {
content: "\fcf6";
}
.fi-sr-surfing:before {
content: "\fcf7";
}
.fi-sr-surprise:before {
content: "\fcf8";
}
.fi-sr-surveillance-camera:before {
content: "\fcf9";
}
.fi-sr-survey-xmark:before {
content: "\fcfa";
}
.fi-sr-sushi-alt:before {
content: "\fcfb";
}
.fi-sr-sushi-roll:before {
content: "\fcfc";
}
.fi-sr-sushi:before {
content: "\fcfd";
}
.fi-sr-svg:before {
content: "\fcfe";
}
.fi-sr-swap:before {
content: "\fcff";
}
.fi-sr-swatchbook:before {
content: "\fd00";
}
.fi-sr-swimmer:before {
content: "\fd01";
}
.fi-sr-swimming-pool:before {
content: "\fd02";
}
.fi-sr-swing:before {
content: "\fd03";
}
.fi-sr-swipe-down:before {
content: "\fd04";
}
.fi-sr-swipe-left:before {
content: "\fd05";
}
.fi-sr-swipe-right:before {
content: "\fd06";
}
.fi-sr-swipe-up:before {
content: "\fd07";
}
.fi-sr-sword:before {
content: "\fd08";
}
.fi-sr-symbol:before {
content: "\fd09";
}
.fi-sr-symbols:before {
content: "\fd0a";
}
.fi-sr-synagogue:before {
content: "\fd0b";
}
.fi-sr-syringe:before {
content: "\fd0c";
}
.fi-sr-system-cloud:before {
content: "\fd0d";
}
.fi-sr-t:before {
content: "\fd0e";
}
.fi-sr-tab-folder:before {
content: "\fd0f";
}
.fi-sr-table-columns:before {
content: "\fd10";
}
.fi-sr-table-layout:before {
content: "\fd11";
}
.fi-sr-table-list:before {
content: "\fd12";
}
.fi-sr-table-picnic:before {
content: "\fd13";
}
.fi-sr-table-pivot:before {
content: "\fd14";
}
.fi-sr-table-rows:before {
content: "\fd15";
}
.fi-sr-table-tree:before {
content: "\fd16";
}
.fi-sr-table:before {
content: "\fd17";
}
.fi-sr-tablet-android-alt:before {
content: "\fd18";
}
.fi-sr-tablet-android:before {
content: "\fd19";
}
.fi-sr-tablet-rugged:before {
content: "\fd1a";
}
.fi-sr-tablet:before {
content: "\fd1b";
}
.fi-sr-tachometer-alt-average:before {
content: "\fd1c";
}
.fi-sr-tachometer-alt-fastest:before {
content: "\fd1d";
}
.fi-sr-tachometer-alt-slow:before {
content: "\fd1e";
}
.fi-sr-tachometer-alt-slowest:before {
content: "\fd1f";
}
.fi-sr-tachometer-average:before {
content: "\fd20";
}
.fi-sr-tachometer-fast:before {
content: "\fd21";
}
.fi-sr-tachometer-fastest:before {
content: "\fd22";
}
.fi-sr-tachometer-slow:before {
content: "\fd23";
}
.fi-sr-tachometer-slowest:before {
content: "\fd24";
}
.fi-sr-tachometer:before {
content: "\fd25";
}
.fi-sr-taco:before {
content: "\fd26";
}
.fi-sr-tags:before {
content: "\fd27";
}
.fi-sr-talent-alt:before {
content: "\fd28";
}
.fi-sr-talent-hand:before {
content: "\fd29";
}
.fi-sr-talent:before {
content: "\fd2a";
}
.fi-sr-tally-1:before {
content: "\fd2b";
}
.fi-sr-tally-2:before {
content: "\fd2c";
}
.fi-sr-tally-3:before {
content: "\fd2d";
}
.fi-sr-tally-4:before {
content: "\fd2e";
}
.fi-sr-tally:before {
content: "\fd2f";
}
.fi-sr-tamale:before {
content: "\fd30";
}
.fi-sr-tank-water:before {
content: "\fd31";
}
.fi-sr-tap:before {
content: "\fd32";
}
.fi-sr-tape:before {
content: "\fd33";
}
.fi-sr-target-audience:before {
content: "\fd34";
}
.fi-sr-target:before {
content: "\fd35";
}
.fi-sr-tax-alt:before {
content: "\fd36";
}
.fi-sr-tax:before {
content: "\fd37";
}
.fi-sr-taxi-bus:before {
content: "\fd38";
}
.fi-sr-taxi:before {
content: "\fd39";
}
.fi-sr-team-check-alt:before {
content: "\fd3a";
}
.fi-sr-team-check:before {
content: "\fd3b";
}
.fi-sr-teddy-bear:before {
content: "\fd3c";
}
.fi-sr-teeth-open:before {
content: "\fd3d";
}
.fi-sr-telescope:before {
content: "\fd3e";
}
.fi-sr-temperature-down:before {
content: "\fd3f";
}
.fi-sr-temperature-frigid:before {
content: "\fd40";
}
.fi-sr-temperature-high:before {
content: "\fd41";
}
.fi-sr-temperature-list:before {
content: "\fd42";
}
.fi-sr-temperature-low:before {
content: "\fd43";
}
.fi-sr-temperature-up:before {
content: "\fd44";
}
.fi-sr-template-alt:before {
content: "\fd45";
}
.fi-sr-template:before {
content: "\fd46";
}
.fi-sr-tenge:before {
content: "\fd47";
}
.fi-sr-tennis:before {
content: "\fd48";
}
.fi-sr-tent-arrow-down-to-line:before {
content: "\fd49";
}
.fi-sr-tent-arrow-left-right:before {
content: "\fd4a";
}
.fi-sr-tent-arrow-turn-left:before {
content: "\fd4b";
}
.fi-sr-tent-arrows-down:before {
content: "\fd4c";
}
.fi-sr-tents:before {
content: "\fd4d";
}
.fi-sr-terminal:before {
content: "\fd4e";
}
.fi-sr-terrace:before {
content: "\fd4f";
}
.fi-sr-test-tube:before {
content: "\fd50";
}
.fi-sr-test:before {
content: "\fd51";
}
.fi-sr-text-box-dots:before {
content: "\fd52";
}
.fi-sr-text-box-edit:before {
content: "\fd53";
}
.fi-sr-text-box:before {
content: "\fd54";
}
.fi-sr-text-check:before {
content: "\fd55";
}
.fi-sr-text-height:before {
content: "\fd56";
}
.fi-sr-text-shadow:before {
content: "\fd57";
}
.fi-sr-text-size:before {
content: "\fd58";
}
.fi-sr-text-slash:before {
content: "\fd59";
}
.fi-sr-text-width:before {
content: "\fd5a";
}
.fi-sr-text:before {
content: "\fd5b";
}
.fi-sr-theater-masks:before {
content: "\fd5c";
}
.fi-sr-thermometer-alt:before {
content: "\fd5d";
}
.fi-sr-thermometer-empty:before {
content: "\fd5e";
}
.fi-sr-thermometer-full:before {
content: "\fd5f";
}
.fi-sr-thermometer-half:before {
content: "\fd60";
}
.fi-sr-thermometer-quarter:before {
content: "\fd61";
}
.fi-sr-thermometer-three-quarters:before {
content: "\fd62";
}
.fi-sr-theta:before {
content: "\fd63";
}
.fi-sr-third-award:before {
content: "\fd64";
}
.fi-sr-third-laurel:before {
content: "\fd65";
}
.fi-sr-third-medal:before {
content: "\fd66";
}
.fi-sr-third:before {
content: "\fd67";
}
.fi-sr-thought-bubble:before {
content: "\fd68";
}
.fi-sr-three-leaf-clover:before {
content: "\fd69";
}
.fi-sr-thumbs-down:before {
content: "\fd6a";
}
.fi-sr-thumbs-up-trust:before {
content: "\fd6b";
}
.fi-sr-thumbs-up:before {
content: "\fd6c";
}
.fi-sr-thumbtack:before {
content: "\fd6d";
}
.fi-sr-thunderstorm-moon:before {
content: "\fd6e";
}
.fi-sr-thunderstorm-risk:before {
content: "\fd6f";
}
.fi-sr-thunderstorm-sun:before {
content: "\fd70";
}
.fi-sr-thunderstorm:before {
content: "\fd71";
}
.fi-sr-thursday:before {
content: "\fd72";
}
.fi-sr-ticket-airline:before {
content: "\fd73";
}
.fi-sr-ticket-alt:before {
content: "\fd74";
}
.fi-sr-ticket:before {
content: "\fd75";
}
.fi-sr-tickets-airline:before {
content: "\fd76";
}
.fi-sr-tie:before {
content: "\fd77";
}
.fi-sr-tilde:before {
content: "\fd78";
}
.fi-sr-time-add:before {
content: "\fd79";
}
.fi-sr-time-check:before {
content: "\fd7a";
}
.fi-sr-time-delete:before {
content: "\fd7b";
}
.fi-sr-time-fast:before {
content: "\fd7c";
}
.fi-sr-time-forward-sixty:before {
content: "\fd7d";
}
.fi-sr-time-forward-ten:before {
content: "\fd7e";
}
.fi-sr-time-forward:before {
content: "\fd7f";
}
.fi-sr-time-half-past:before {
content: "\fd80";
}
.fi-sr-time-oclock:before {
content: "\fd81";
}
.fi-sr-time-past:before {
content: "\fd82";
}
.fi-sr-time-quarter-past:before {
content: "\fd83";
}
.fi-sr-time-quarter-to:before {
content: "\fd84";
}
.fi-sr-time-twenty-four:before {
content: "\fd85";
}
.fi-sr-time-watch-calendar:before {
content: "\fd86";
}
.fi-sr-timer-clock-call:before {
content: "\fd87";
}
.fi-sr-times-hexagon:before {
content: "\fd88";
}
.fi-sr-tint-slash:before {
content: "\fd89";
}
.fi-sr-tip-coin:before {
content: "\fd8a";
}
.fi-sr-tire-flat:before {
content: "\fd8b";
}
.fi-sr-tire-pressure-warning:before {
content: "\fd8c";
}
.fi-sr-tire-rugged:before {
content: "\fd8d";
}
.fi-sr-tire:before {
content: "\fd8e";
}
.fi-sr-tired:before {
content: "\fd8f";
}
.fi-sr-to-do-alt:before {
content: "\fd90";
}
.fi-sr-to-do:before {
content: "\fd91";
}
.fi-sr-together-people:before {
content: "\fd92";
}
.fi-sr-toggle-off:before {
content: "\fd93";
}
.fi-sr-toggle-on:before {
content: "\fd94";
}
.fi-sr-toilet-paper-blank-under:before {
content: "\fd95";
}
.fi-sr-toilet-paper-blank:before {
content: "\fd96";
}
.fi-sr-toilet-paper-slash:before {
content: "\fd97";
}
.fi-sr-toilet-paper-under-slash:before {
content: "\fd98";
}
.fi-sr-toilet-paper-under:before {
content: "\fd99";
}
.fi-sr-toilet:before {
content: "\fd9a";
}
.fi-sr-toilets-portable:before {
content: "\fd9b";
}
.fi-sr-token:before {
content: "\fd9c";
}
.fi-sr-tomato:before {
content: "\fd9d";
}
.fi-sr-tombstone-alt:before {
content: "\fd9e";
}
.fi-sr-tombstone:before {
content: "\fd9f";
}
.fi-sr-tool-box:before {
content: "\fda0";
}
.fi-sr-tool-crop:before {
content: "\fda1";
}
.fi-sr-tool-marquee:before {
content: "\fda2";
}
.fi-sr-tools:before {
content: "\fda3";
}
.fi-sr-tooth:before {
content: "\fda4";
}
.fi-sr-toothbrush:before {
content: "\fda5";
}
.fi-sr-torch-inspiration-leader:before {
content: "\fda6";
}
.fi-sr-torii-gate:before {
content: "\fda7";
}
.fi-sr-tornado:before {
content: "\fda8";
}
.fi-sr-total:before {
content: "\fda9";
}
.fi-sr-tour-guide-people:before {
content: "\fdaa";
}
.fi-sr-tour-virtual:before {
content: "\fdab";
}
.fi-sr-tower-control:before {
content: "\fdac";
}
.fi-sr-track:before {
content: "\fdad";
}
.fi-sr-tractor:before {
content: "\fdae";
}
.fi-sr-trademark:before {
content: "\fdaf";
}
.fi-sr-traffic-cone:before {
content: "\fdb0";
}
.fi-sr-traffic-light-go:before {
content: "\fdb1";
}
.fi-sr-traffic-light-slow:before {
content: "\fdb2";
}
.fi-sr-traffic-light-stop:before {
content: "\fdb3";
}
.fi-sr-traffic-light:before {
content: "\fdb4";
}
.fi-sr-trailer:before {
content: "\fdb5";
}
.fi-sr-train-journey:before {
content: "\fdb6";
}
.fi-sr-train-side:before {
content: "\fdb7";
}
.fi-sr-train-station-building:before {
content: "\fdb8";
}
.fi-sr-train-station:before {
content: "\fdb9";
}
.fi-sr-train-subway-tunnel:before {
content: "\fdba";
}
.fi-sr-train-track:before {
content: "\fdbb";
}
.fi-sr-train-tram:before {
content: "\fdbc";
}
.fi-sr-train:before {
content: "\fdbd";
}
.fi-sr-tram:before {
content: "\fdbe";
}
.fi-sr-transform:before {
content: "\fdbf";
}
.fi-sr-transformation-block:before {
content: "\fdc0";
}
.fi-sr-transformation-circle:before {
content: "\fdc1";
}
.fi-sr-transformation-design:before {
content: "\fdc2";
}
.fi-sr-transformation-shapes:before {
content: "\fdc3";
}
.fi-sr-transformer-bolt:before {
content: "\fdc4";
}
.fi-sr-transgender:before {
content: "\fdc5";
}
.fi-sr-transporter-1:before {
content: "\fdc6";
}
.fi-sr-transporter-2:before {
content: "\fdc7";
}
.fi-sr-transporter-3:before {
content: "\fdc8";
}
.fi-sr-transporter-4:before {
content: "\fdc9";
}
.fi-sr-transporter-5:before {
content: "\fdca";
}
.fi-sr-transporter-6:before {
content: "\fdcb";
}
.fi-sr-transporter-7:before {
content: "\fdcc";
}
.fi-sr-transporter-empty:before {
content: "\fdcd";
}
.fi-sr-transporter:before {
content: "\fdce";
}
.fi-sr-trash-can-check:before {
content: "\fdcf";
}
.fi-sr-trash-can-clock:before {
content: "\fdd0";
}
.fi-sr-trash-can-list:before {
content: "\fdd1";
}
.fi-sr-trash-can-plus:before {
content: "\fdd2";
}
.fi-sr-trash-can-slash:before {
content: "\fdd3";
}
.fi-sr-trash-check:before {
content: "\fdd4";
}
.fi-sr-trash-clock:before {
content: "\fdd5";
}
.fi-sr-trash-empty:before {
content: "\fdd6";
}
.fi-sr-trash-list:before {
content: "\fdd7";
}
.fi-sr-trash-plus:before {
content: "\fdd8";
}
.fi-sr-trash-restore-alt:before {
content: "\fdd9";
}
.fi-sr-trash-restore:before {
content: "\fdda";
}
.fi-sr-trash-slash:before {
content: "\fddb";
}
.fi-sr-trash-undo-alt:before {
content: "\fddc";
}
.fi-sr-trash-undo:before {
content: "\fddd";
}
.fi-sr-trash-xmark:before {
content: "\fdde";
}
.fi-sr-trash:before {
content: "\fddf";
}
.fi-sr-treadmill:before {
content: "\fde0";
}
.fi-sr-treasure-chest:before {
content: "\fde1";
}
.fi-sr-treatment:before {
content: "\fde2";
}
.fi-sr-tree-alt:before {
content: "\fde3";
}
.fi-sr-tree-christmas:before {
content: "\fde4";
}
.fi-sr-tree-deciduous:before {
content: "\fde5";
}
.fi-sr-tree:before {
content: "\fde6";
}
.fi-sr-trees-alt:before {
content: "\fde7";
}
.fi-sr-trees:before {
content: "\fde8";
}
.fi-sr-triangle-music:before {
content: "\fde9";
}
.fi-sr-triangle-person-digging:before {
content: "\fdea";
}
.fi-sr-triangle-warning:before {
content: "\fdeb";
}
.fi-sr-triangle:before {
content: "\fdec";
}
.fi-sr-tricycle:before {
content: "\fded";
}
.fi-sr-trillium:before {
content: "\fdee";
}
.fi-sr-trophy-achievement-skill:before {
content: "\fdef";
}
.fi-sr-trophy-star:before {
content: "\fdf0";
}
.fi-sr-trophy:before {
content: "\fdf1";
}
.fi-sr-truck-arrow-left:before {
content: "\fdf2";
}
.fi-sr-truck-arrow-right:before {
content: "\fdf3";
}
.fi-sr-truck-bolt:before {
content: "\fdf4";
}
.fi-sr-truck-box:before {
content: "\fdf5";
}
.fi-sr-truck-check:before {
content: "\fdf6";
}
.fi-sr-truck-container-empty:before {
content: "\fdf7";
}
.fi-sr-truck-container:before {
content: "\fdf8";
}
.fi-sr-truck-couch:before {
content: "\fdf9";
}
.fi-sr-truck-fire:before {
content: "\fdfa";
}
.fi-sr-truck-flatbed:before {
content: "\fdfb";
}
.fi-sr-truck-front:before {
content: "\fdfc";
}
.fi-sr-truck-ladder:before {
content: "\fdfd";
}
.fi-sr-truck-loading:before {
content: "\fdfe";
}
.fi-sr-truck-medical:before {
content: "\fdff";
}
.fi-sr-truck-monster:before {
content: "\fe10";
}
.fi-sr-truck-moving:before {
content: "\fe11";
}
.fi-sr-truck-pickup:before {
content: "\fe12";
}
.fi-sr-truck-plow:before {
content: "\fe13";
}
.fi-sr-truck-ramp:before {
content: "\fe14";
}
.fi-sr-truck-side:before {
content: "\fe15";
}
.fi-sr-truck-tow:before {
content: "\fe16";
}
.fi-sr-truck-utensils:before {
content: "\fe17";
}
.fi-sr-trumpet:before {
content: "\fe18";
}
.fi-sr-trust-alt:before {
content: "\fe19";
}
.fi-sr-trust:before {
content: "\fe1a";
}
.fi-sr-tshirt:before {
content: "\fe1b";
}
.fi-sr-tty-answer:before {
content: "\fe1c";
}
.fi-sr-tty:before {
content: "\fe1d";
}
.fi-sr-tubes:before {
content: "\fe1e";
}
.fi-sr-tuesday:before {
content: "\fe1f";
}
.fi-sr-tugrik-sign:before {
content: "\fe30";
}
.fi-sr-turkey:before {
content: "\fe31";
}
.fi-sr-turn-left-down:before {
content: "\fe32";
}
.fi-sr-turn-left:before {
content: "\fe33";
}
.fi-sr-turn-right:before {
content: "\fe34";
}
.fi-sr-turntable:before {
content: "\fe35";
}
.fi-sr-turtle:before {
content: "\fe36";
}
.fi-sr-tv-music:before {
content: "\fe37";
}
.fi-sr-tv-retro:before {
content: "\fe38";
}
.fi-sr-typewriter:before {
content: "\fe39";
}
.fi-sr-u:before {
content: "\fe3a";
}
.fi-sr-ufo-beam:before {
content: "\fe3b";
}
.fi-sr-ufo:before {
content: "\fe3c";
}
.fi-sr-ui-ux:before {
content: "\fe3d";
}
.fi-sr-umbrella-beach:before {
content: "\fe3e";
}
.fi-sr-umbrella:before {
content: "\fe3f";
}
.fi-sr-under-construction:before {
content: "\fe40";
}
.fi-sr-underline:before {
content: "\fe41";
}
.fi-sr-undo-alt:before {
content: "\fe42";
}
.fi-sr-undo:before {
content: "\fe43";
}
.fi-sr-unicorn:before {
content: "\fe44";
}
.fi-sr-uniform-martial-arts:before {
content: "\fe45";
}
.fi-sr-universal-access:before {
content: "\fe46";
}
.fi-sr-unlock:before {
content: "\fe47";
}
.fi-sr-up-from-bracket:before {
content: "\fe48";
}
.fi-sr-up-left:before {
content: "\fe49";
}
.fi-sr-up-right-from-square:before {
content: "\fe4a";
}
.fi-sr-up-right:before {
content: "\fe4b";
}
.fi-sr-up:before {
content: "\fe4c";
}
.fi-sr-upload:before {
content: "\fe4d";
}
.fi-sr-url:before {
content: "\fe4e";
}
.fi-sr-usb-pendrive:before {
content: "\fe4f";
}
.fi-sr-usd-circle:before {
content: "\fe50";
}
.fi-sr-usd-square:before {
content: "\fe51";
}
.fi-sr-user-add:before {
content: "\fe52";
}
.fi-sr-user-alien:before {
content: "\fe53";
}
.fi-sr-user-astronaut:before {
content: "\fe54";
}
.fi-sr-user-check:before {
content: "\fe55";
}
.fi-sr-user-chef:before {
content: "\fe56";
}
.fi-sr-user-coach:before {
content: "\fe57";
}
.fi-sr-user-cowboy:before {
content: "\fe58";
}
.fi-sr-user-crown:before {
content: "\fe59";
}
.fi-sr-user-gear:before {
content: "\fe5a";
}
.fi-sr-user-graduate:before {
content: "\fe5b";
}
.fi-sr-user-headset:before {
content: "\fe5c";
}
.fi-sr-user-helmet-safety:before {
content: "\fe5d";
}
.fi-sr-user-injured:before {
content: "\fe5e";
}
.fi-sr-user-interface-ui:before {
content: "\fe5f";
}
.fi-sr-user-key:before {
content: "\fe60";
}
.fi-sr-user-lock:before {
content: "\fe61";
}
.fi-sr-user-md-chat:before {
content: "\fe62";
}
.fi-sr-user-md:before {
content: "\fe63";
}
.fi-sr-user-minus:before {
content: "\fe64";
}
.fi-sr-user-music:before {
content: "\fe65";
}
.fi-sr-user-ninja:before {
content: "\fe66";
}
.fi-sr-user-nurse:before {
content: "\fe67";
}
.fi-sr-user-pen:before {
content: "\fe68";
}
.fi-sr-user-pilot-tie:before {
content: "\fe69";
}
.fi-sr-user-pilot:before {
content: "\fe6a";
}
.fi-sr-user-police:before {
content: "\fe6b";
}
.fi-sr-user-robot-xmarks:before {
content: "\fe6c";
}
.fi-sr-user-robot:before {
content: "\fe6d";
}
.fi-sr-user-salary:before {
content: "\fe6e";
}
.fi-sr-user-shield:before {
content: "\fe6f";
}
.fi-sr-user-skill-gear:before {
content: "\fe70";
}
.fi-sr-user-slash:before {
content: "\fe71";
}
.fi-sr-user-tag:before {
content: "\fe72";
}
.fi-sr-user-time:before {
content: "\fe73";
}
.fi-sr-user-trust:before {
content: "\fe74";
}
.fi-sr-user-unlock:before {
content: "\fe75";
}
.fi-sr-user-visor:before {
content: "\fe76";
}
.fi-sr-user-xmark:before {
content: "\fe77";
}
.fi-sr-user:before {
content: "\fe78";
}
.fi-sr-users-alt:before {
content: "\fe79";
}
.fi-sr-users-class:before {
content: "\fe7a";
}
.fi-sr-users-gear:before {
content: "\fe7b";
}
.fi-sr-users-medical:before {
content: "\fe7c";
}
.fi-sr-users-slash:before {
content: "\fe7d";
}
.fi-sr-users:before {
content: "\fe7e";
}
.fi-sr-utensils-slash:before {
content: "\fe7f";
}
.fi-sr-utensils:before {
content: "\fe80";
}
.fi-sr-utility-pole-double:before {
content: "\fe81";
}
.fi-sr-utility-pole:before {
content: "\fe82";
}
.fi-sr-ux-browser:before {
content: "\fe83";
}
.fi-sr-ux:before {
content: "\fe84";
}
.fi-sr-v:before {
content: "\fe85";
}
.fi-sr-vacuum-robot:before {
content: "\fe86";
}
.fi-sr-vacuum:before {
content: "\fe87";
}
.fi-sr-value-absolute:before {
content: "\fe88";
}
.fi-sr-vault:before {
content: "\fe89";
}
.fi-sr-vector-alt:before {
content: "\fe8a";
}
.fi-sr-vector-circle:before {
content: "\fe8b";
}
.fi-sr-vector-polygon:before {
content: "\fe8c";
}
.fi-sr-vector:before {
content: "\fe8d";
}
.fi-sr-venus-double:before {
content: "\fe8e";
}
.fi-sr-venus-mars:before {
content: "\fe8f";
}
.fi-sr-venus:before {
content: "\fe90";
}
.fi-sr-vest-patches:before {
content: "\fe91";
}
.fi-sr-vest:before {
content: "\fe92";
}
.fi-sr-video-arrow-down-left:before {
content: "\fe93";
}
.fi-sr-video-arrow-up-right:before {
content: "\fe94";
}
.fi-sr-video-camera-alt:before {
content: "\fe95";
}
.fi-sr-video-camera:before {
content: "\fe96";
}
.fi-sr-video-duration:before {
content: "\fe97";
}
.fi-sr-video-plus:before {
content: "\fe98";
}
.fi-sr-video-slash:before {
content: "\fe99";
}
.fi-sr-videoconference:before {
content: "\fe9a";
}
.fi-sr-vihara:before {
content: "\fe9b";
}
.fi-sr-violin:before {
content: "\fe9c";
}
.fi-sr-virus-slash:before {
content: "\fe9d";
}
.fi-sr-virus:before {
content: "\fe9e";
}
.fi-sr-viruses:before {
content: "\fe9f";
}
.fi-sr-visit:before {
content: "\fea0";
}
.fi-sr-voicemail:before {
content: "\fea1";
}
.fi-sr-volcano:before {
content: "\fea2";
}
.fi-sr-volleyball:before {
content: "\fea3";
}
.fi-sr-volume-down:before {
content: "\fea4";
}
.fi-sr-volume-mute:before {
content: "\fea5";
}
.fi-sr-volume-off:before {
content: "\fea6";
}
.fi-sr-volume-slash:before {
content: "\fea7";
}
.fi-sr-volume:before {
content: "\fea8";
}
.fi-sr-vote-nay:before {
content: "\fea9";
}
.fi-sr-vote-yea:before {
content: "\feaa";
}
.fi-sr-vr-cardboard:before {
content: "\feab";
}
.fi-sr-w:before {
content: "\feac";
}
.fi-sr-waffle:before {
content: "\fead";
}
.fi-sr-wagon-covered:before {
content: "\feae";
}
.fi-sr-walker:before {
content: "\feaf";
}
.fi-sr-walkie-talkie:before {
content: "\feb0";
}
.fi-sr-walking:before {
content: "\feb1";
}
.fi-sr-wallet-arrow:before {
content: "\feb2";
}
.fi-sr-wallet-buyer:before {
content: "\feb3";
}
.fi-sr-wallet:before {
content: "\feb4";
}
.fi-sr-warehouse-alt:before {
content: "\feb5";
}
.fi-sr-washer:before {
content: "\feb6";
}
.fi-sr-waste-pollution:before {
content: "\feb7";
}
.fi-sr-waste:before {
content: "\feb8";
}
.fi-sr-watch-calculator:before {
content: "\feb9";
}
.fi-sr-watch-fitness:before {
content: "\feba";
}
.fi-sr-watch-smart:before {
content: "\febb";
}
.fi-sr-watch:before {
content: "\febc";
}
.fi-sr-water-bottle:before {
content: "\febd";
}
.fi-sr-water-ladder:before {
content: "\febe";
}
.fi-sr-water-lower:before {
content: "\febf";
}
.fi-sr-water-rise:before {
content: "\fec0";
}
.fi-sr-water:before {
content: "\fec1";
}
.fi-sr-watermelon:before {
content: "\fec2";
}
.fi-sr-wave-sine:before {
content: "\fec3";
}
.fi-sr-wave-square:before {
content: "\fec4";
}
.fi-sr-wave-triangle:before {
content: "\fec5";
}
.fi-sr-wave:before {
content: "\fec6";
}
.fi-sr-waveform-path:before {
content: "\fec7";
}
.fi-sr-waveform:before {
content: "\fec8";
}
.fi-sr-web-design:before {
content: "\fec9";
}
.fi-sr-webcam-slash:before {
content: "\feca";
}
.fi-sr-webcam:before {
content: "\fecb";
}
.fi-sr-webhook:before {
content: "\fecc";
}
.fi-sr-wednesday:before {
content: "\fecd";
}
.fi-sr-whale:before {
content: "\fece";
}
.fi-sr-wheat-awn-circle-exclamation:before {
content: "\fecf";
}
.fi-sr-wheat-awn-slash:before {
content: "\fed0";
}
.fi-sr-wheat-awn:before {
content: "\fed1";
}
.fi-sr-wheat-slash:before {
content: "\fed2";
}
.fi-sr-wheat:before {
content: "\fed3";
}
.fi-sr-wheelchair-move:before {
content: "\fed4";
}
.fi-sr-wheelchair-sleeping:before {
content: "\fed5";
}
.fi-sr-wheelchair:before {
content: "\fed6";
}
.fi-sr-whistle:before {
content: "\fed7";
}
.fi-sr-white-space:before {
content: "\fed8";
}
.fi-sr-wifi-1:before {
content: "\fed9";
}
.fi-sr-wifi-2:before {
content: "\feda";
}
.fi-sr-wifi-alt:before {
content: "\fedb";
}
.fi-sr-wifi-exclamation:before {
content: "\fedc";
}
.fi-sr-wifi-slash:before {
content: "\fedd";
}
.fi-sr-wifi:before {
content: "\fede";
}
.fi-sr-wind-turbine:before {
content: "\fedf";
}
.fi-sr-wind-warning:before {
content: "\fee0";
}
.fi-sr-wind:before {
content: "\fee1";
}
.fi-sr-window-alt:before {
content: "\fee2";
}
.fi-sr-window-frame-open:before {
content: "\fee3";
}
.fi-sr-window-frame:before {
content: "\fee4";
}
.fi-sr-window-maximize:before {
content: "\fee5";
}
.fi-sr-window-minimize:before {
content: "\fee6";
}
.fi-sr-window-restore:before {
content: "\fee7";
}
.fi-sr-windsock:before {
content: "\fee8";
}
.fi-sr-wine-bottle:before {
content: "\fee9";
}
.fi-sr-wine-glass-crack:before {
content: "\feea";
}
.fi-sr-wine-glass-empty:before {
content: "\feeb";
}
.fi-sr-wishlist-heart:before {
content: "\feec";
}
.fi-sr-wishlist-star:before {
content: "\feed";
}
.fi-sr-woman-head:before {
content: "\feee";
}
.fi-sr-woman-scientist:before {
content: "\feef";
}
.fi-sr-won-sign:before {
content: "\fef0";
}
.fi-sr-workflow-alt:before {
content: "\fef1";
}
.fi-sr-workflow-setting-alt:before {
content: "\fef2";
}
.fi-sr-workflow-setting:before {
content: "\fef3";
}
.fi-sr-workflow:before {
content: "\fef4";
}
.fi-sr-workshop:before {
content: "\fef5";
}
.fi-sr-world:before {
content: "\fef6";
}
.fi-sr-worm:before {
content: "\fef7";
}
.fi-sr-wreath:before {
content: "\fef8";
}
.fi-sr-wrench-alt:before {
content: "\fef9";
}
.fi-sr-wrench-simple:before {
content: "\fefa";
}
.fi-sr-x-ray:before {
content: "\fefb";
}
.fi-sr-x:before {
content: "\fefc";
}
.fi-sr-y:before {
content: "\fefd";
}
.fi-sr-yen:before {
content: "\fefe";
}
.fi-sr-yin-yang:before {
content: "\ff00";
}
.fi-sr-z:before {
content: "\ff01";
}
.fi-sr-zip-file:before {
content: "\ff02";
}
.fi-sr-zoom-in:before {
content: "\ff03";
}
.fi-sr-zoom-out:before {
content: "\ff04";
}@font-face {
font-family: "uicons-regular-rounded";
src: url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-regular-rounded.woff2) format("woff2"),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-regular-rounded.woff) format("woff"),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-regular-rounded.eot#iefix) format("embedded-opentype");
font-display: swap;
}
i[class^="fi-rr-"]:before, i[class*=" fi-rr-"]:before, span[class^="fi-rr-"]:before, span[class*="fi-rr-"]:before {
font-family: uicons-regular-rounded !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.variable-selector-00:before {
content: "\fe00";
}
.variable-selector-01:before {
content: "\fe01";
}
.variable-selector-02:before {
content: "\fe02";
}
.variable-selector-03:before {
content: "\fe03";
}
.variable-selector-04:before {
content: "\fe04";
}
.variable-selector-05:before {
content: "\fe05";
}
.variable-selector-06:before {
content: "\fe06";
}
.variable-selector-07:before {
content: "\fe07";
}
.variable-selector-08:before {
content: "\fe08";
}
.variable-selector-09:before {
content: "\fe09";
}
.variable-selector-0a:before {
content: "\fe0a";
}
.variable-selector-0b:before {
content: "\fe0b";
}
.variable-selector-0c:before {
content: "\fe0c";
}
.variable-selector-0d:before {
content: "\fe0d";
}
.variable-selector-0e:before {
content: "\fe0e";
}
.variable-selector-0f:before {
content: "\fe0f";
}
.combining-half-marks-00:before {
content: "\fe20";
}
.combining-half-marks-01:before {
content: "\fe21";
}
.combining-half-marks-02:before {
content: "\fe22";
}
.combining-half-marks-03:before {
content: "\fe23";
}
.combining-half-marks-04:before {
content: "\fe24";
}
.combining-half-marks-05:before {
content: "\fe25";
}
.combining-half-marks-06:before {
content: "\fe26";
}
.combining-half-marks-07:before {
content: "\fe27";
}
.combining-half-marks-08:before {
content: "\fe28";
}
.combining-half-marks-09:before {
content: "\fe29";
}
.combining-half-marks-0a:before {
content: "\fe2a";
}
.combining-half-marks-0b:before {
content: "\fe2b";
}
.combining-half-marks-0c:before {
content: "\fe2c";
}
.combining-half-marks-0d:before {
content: "\fe2d";
}
.combining-half-marks-0e:before {
content: "\fe2e";
}
.combining-half-marks-0f:before {
content: "\fe2f";
}
.zero-width-no-break-space-0f:before {
content: "\feff";
}
.fi-rr-0:before {
content: "\f101";
}
.fi-rr-00s-music-disc:before {
content: "\f102";
}
.fi-rr-1:before {
content: "\f103";
}
.fi-rr-2:before {
content: "\f104";
}
.fi-rr-3:before {
content: "\f105";
}
.fi-rr-360-degrees:before {
content: "\f106";
}
.fi-rr-4:before {
content: "\f107";
}
.fi-rr-404:before {
content: "\f108";
}
.fi-rr-5:before {
content: "\f109";
}
.fi-rr-6:before {
content: "\f10a";
}
.fi-rr-60s-music-disc:before {
content: "\f10b";
}
.fi-rr-7:before {
content: "\f10c";
}
.fi-rr-70s-music-disc:before {
content: "\f10d";
}
.fi-rr-8:before {
content: "\f10e";
}
.fi-rr-80s-music-disc:before {
content: "\f10f";
}
.fi-rr-9:before {
content: "\f110";
}
.fi-rr-90s-music-disc:before {
content: "\f111";
}
.fi-rr-a:before {
content: "\f112";
}
.fi-rr-accident:before {
content: "\f113";
}
.fi-rr-acorn:before {
content: "\f114";
}
.fi-rr-ad-paid:before {
content: "\f115";
}
.fi-rr-ad:before {
content: "\f116";
}
.fi-rr-add-document:before {
content: "\f117";
}
.fi-rr-add-folder:before {
content: "\f118";
}
.fi-rr-add-image:before {
content: "\f119";
}
.fi-rr-add:before {
content: "\f11a";
}
.fi-rr-address-book:before {
content: "\f11b";
}
.fi-rr-address-card:before {
content: "\f11c";
}
.fi-rr-admin-alt:before {
content: "\f11d";
}
.fi-rr-admin:before {
content: "\f11e";
}
.fi-rr-age-alt:before {
content: "\f11f";
}
.fi-rr-age-restriction-eighteen:before {
content: "\f120";
}
.fi-rr-age-restriction-seven:before {
content: "\f121";
}
.fi-rr-age-restriction-six:before {
content: "\f122";
}
.fi-rr-age-restriction-sixteen:before {
content: "\f123";
}
.fi-rr-age-restriction-thirteen:before {
content: "\f124";
}
.fi-rr-age-restriction-three:before {
content: "\f125";
}
.fi-rr-age-restriction-twelve:before {
content: "\f126";
}
.fi-rr-age-restriction-twenty-one:before {
content: "\f127";
}
.fi-rr-age-restriction-zero:before {
content: "\f128";
}
.fi-rr-age:before {
content: "\f129";
}
.fi-rr-air-conditioner:before {
content: "\f12a";
}
.fi-rr-air-freshener:before {
content: "\f12b";
}
.fi-rr-air-pollution:before {
content: "\f12c";
}
.fi-rr-airplane-journey:before {
content: "\f12d";
}
.fi-rr-airplane-window-open:before {
content: "\f12e";
}
.fi-rr-airplay:before {
content: "\f12f";
}
.fi-rr-alarm-clock:before {
content: "\f130";
}
.fi-rr-alarm-exclamation:before {
content: "\f131";
}
.fi-rr-alarm-plus:before {
content: "\f132";
}
.fi-rr-alarm-snooze:before {
content: "\f133";
}
.fi-rr-album-circle-plus:before {
content: "\f134";
}
.fi-rr-album-circle-user:before {
content: "\f135";
}
.fi-rr-album-collection:before {
content: "\f136";
}
.fi-rr-album:before {
content: "\f137";
}
.fi-rr-algorithm:before {
content: "\f138";
}
.fi-rr-alicorn:before {
content: "\f139";
}
.fi-rr-alien:before {
content: "\f13a";
}
.fi-rr-align-center:before {
content: "\f13b";
}
.fi-rr-align-justify:before {
content: "\f13c";
}
.fi-rr-align-left:before {
content: "\f13d";
}
.fi-rr-align-slash:before {
content: "\f13e";
}
.fi-rr-ambulance:before {
content: "\f13f";
}
.fi-rr-analyse-alt:before {
content: "\f140";
}
.fi-rr-analyse:before {
content: "\f141";
}
.fi-rr-anatomical-heart:before {
content: "\f142";
}
.fi-rr-anchor:before {
content: "\f143";
}
.fi-rr-angel:before {
content: "\f144";
}
.fi-rr-angle-90:before {
content: "\f145";
}
.fi-rr-angle-circle-down:before {
content: "\f146";
}
.fi-rr-angle-circle-left:before {
content: "\f147";
}
.fi-rr-angle-circle-right:before {
content: "\f148";
}
.fi-rr-angle-circle-up:before {
content: "\f149";
}
.fi-rr-angle-double-left:before {
content: "\f14a";
}
.fi-rr-angle-double-right:before {
content: "\f14b";
}
.fi-rr-angle-double-small-down:before {
content: "\f14c";
}
.fi-rr-angle-double-small-left:before {
content: "\f14d";
}
.fi-rr-angle-double-small-right:before {
content: "\f14e";
}
.fi-rr-angle-double-small-up:before {
content: "\f14f";
}
.fi-rr-angle-down:before {
content: "\f150";
}
.fi-rr-angle-left:before {
content: "\f151";
}
.fi-rr-angle-right:before {
content: "\f152";
}
.fi-rr-angle-small-down:before {
content: "\f153";
}
.fi-rr-angle-small-left:before {
content: "\f154";
}
.fi-rr-angle-small-right:before {
content: "\f155";
}
.fi-rr-angle-small-up:before {
content: "\f156";
}
.fi-rr-angle-square-down:before {
content: "\f157";
}
.fi-rr-angle-square-left:before {
content: "\f158";
}
.fi-rr-angle-square-right:before {
content: "\f159";
}
.fi-rr-angle-square-up:before {
content: "\f15a";
}
.fi-rr-angle-up:before {
content: "\f15b";
}
.fi-rr-angle:before {
content: "\f15c";
}
.fi-rr-angles-up-down:before {
content: "\f15d";
}
.fi-rr-angry:before {
content: "\f15e";
}
.fi-rr-animated-icon:before {
content: "\f15f";
}
.fi-rr-ankh:before {
content: "\f160";
}
.fi-rr-answer-alt:before {
content: "\f161";
}
.fi-rr-answer:before {
content: "\f162";
}
.fi-rr-apartment:before {
content: "\f163";
}
.fi-rr-aperture:before {
content: "\f164";
}
.fi-rr-api:before {
content: "\f165";
}
.fi-rr-apple-core:before {
content: "\f166";
}
.fi-rr-apple-crate:before {
content: "\f167";
}
.fi-rr-apple-whole:before {
content: "\f168";
}
.fi-rr-apps-add:before {
content: "\f169";
}
.fi-rr-apps-delete:before {
content: "\f16a";
}
.fi-rr-apps-sort:before {
content: "\f16b";
}
.fi-rr-apps:before {
content: "\f16c";
}
.fi-rr-archive:before {
content: "\f16d";
}
.fi-rr-archway:before {
content: "\f16e";
}
.fi-rr-arrow-alt-circle-down:before {
content: "\f16f";
}
.fi-rr-arrow-alt-circle-left:before {
content: "\f170";
}
.fi-rr-arrow-alt-circle-right:before {
content: "\f171";
}
.fi-rr-arrow-alt-circle-up:before {
content: "\f172";
}
.fi-rr-arrow-alt-down:before {
content: "\f173";
}
.fi-rr-arrow-alt-from-bottom:before {
content: "\f174";
}
.fi-rr-arrow-alt-from-left:before {
content: "\f175";
}
.fi-rr-arrow-alt-from-right:before {
content: "\f176";
}
.fi-rr-arrow-alt-from-top:before {
content: "\f177";
}
.fi-rr-arrow-alt-left:before {
content: "\f178";
}
.fi-rr-arrow-alt-right:before {
content: "\f179";
}
.fi-rr-arrow-alt-square-down:before {
content: "\f17a";
}
.fi-rr-arrow-alt-square-left:before {
content: "\f17b";
}
.fi-rr-arrow-alt-square-right:before {
content: "\f17c";
}
.fi-rr-arrow-alt-square-up:before {
content: "\f17d";
}
.fi-rr-arrow-alt-to-bottom:before {
content: "\f17e";
}
.fi-rr-arrow-alt-to-left:before {
content: "\f17f";
}
.fi-rr-arrow-alt-to-right:before {
content: "\f180";
}
.fi-rr-arrow-alt-to-top:before {
content: "\f181";
}
.fi-rr-arrow-alt-up:before {
content: "\f182";
}
.fi-rr-arrow-circle-down:before {
content: "\f183";
}
.fi-rr-arrow-circle-left:before {
content: "\f184";
}
.fi-rr-arrow-circle-right:before {
content: "\f185";
}
.fi-rr-arrow-circle-up:before {
content: "\f186";
}
.fi-rr-arrow-comparison:before {
content: "\f187";
}
.fi-rr-arrow-down-from-arc:before {
content: "\f188";
}
.fi-rr-arrow-down-from-dotted-line:before {
content: "\f189";
}
.fi-rr-arrow-down-left:before {
content: "\f18a";
}
.fi-rr-arrow-down-small-big:before {
content: "\f18b";
}
.fi-rr-arrow-down-to-dotted-line:before {
content: "\f18c";
}
.fi-rr-arrow-down-to-square:before {
content: "\f18d";
}
.fi-rr-arrow-down-triangle-square:before {
content: "\f18e";
}
.fi-rr-arrow-down:before {
content: "\f18f";
}
.fi-rr-arrow-from-bottom:before {
content: "\f190";
}
.fi-rr-arrow-from-left:before {
content: "\f191";
}
.fi-rr-arrow-from-right:before {
content: "\f192";
}
.fi-rr-arrow-from-top:before {
content: "\f193";
}
.fi-rr-arrow-left-from-arc:before {
content: "\f194";
}
.fi-rr-arrow-left-from-line:before {
content: "\f195";
}
.fi-rr-arrow-left-to-arc:before {
content: "\f196";
}
.fi-rr-arrow-left:before {
content: "\f197";
}
.fi-rr-arrow-progress-alt:before {
content: "\f198";
}
.fi-rr-arrow-progress:before {
content: "\f199";
}
.fi-rr-arrow-right-to-bracket:before {
content: "\f19a";
}
.fi-rr-arrow-right:before {
content: "\f19b";
}
.fi-rr-arrow-small-down:before {
content: "\f19c";
}
.fi-rr-arrow-small-left:before {
content: "\f19d";
}
.fi-rr-arrow-small-right:before {
content: "\f19e";
}
.fi-rr-arrow-small-up:before {
content: "\f19f";
}
.fi-rr-arrow-square-down:before {
content: "\f1a0";
}
.fi-rr-arrow-square-left:before {
content: "\f1a1";
}
.fi-rr-arrow-square-right:before {
content: "\f1a2";
}
.fi-rr-arrow-square-up:before {
content: "\f1a3";
}
.fi-rr-arrow-to-bottom:before {
content: "\f1a4";
}
.fi-rr-arrow-to-left:before {
content: "\f1a5";
}
.fi-rr-arrow-to-right:before {
content: "\f1a6";
}
.fi-rr-arrow-to-top:before {
content: "\f1a7";
}
.fi-rr-arrow-trend-down:before {
content: "\f1a8";
}
.fi-rr-arrow-trend-up:before {
content: "\f1a9";
}
.fi-rr-arrow-turn-down-left:before {
content: "\f1aa";
}
.fi-rr-arrow-turn-down-right:before {
content: "\f1ab";
}
.fi-rr-arrow-turn-left-up:before {
content: "\f1ac";
}
.fi-rr-arrow-up-from-dotted-line:before {
content: "\f1ad";
}
.fi-rr-arrow-up-from-ground-water:before {
content: "\f1ae";
}
.fi-rr-arrow-up-from-square:before {
content: "\f1af";
}
.fi-rr-arrow-up-left-from-circle:before {
content: "\f1b0";
}
.fi-rr-arrow-up-left:before {
content: "\f1b1";
}
.fi-rr-arrow-up-right-and-arrow-down-left-from-center:before {
content: "\f1b2";
}
.fi-rr-arrow-up-right-from-square:before {
content: "\f1b3";
}
.fi-rr-arrow-up-right:before {
content: "\f1b4";
}
.fi-rr-arrow-up-small-big:before {
content: "\f1b5";
}
.fi-rr-arrow-up-square-triangle:before {
content: "\f1b6";
}
.fi-rr-arrow-up-to-arc:before {
content: "\f1b7";
}
.fi-rr-arrow-up-to-dotted-line:before {
content: "\f1b8";
}
.fi-rr-arrow-up:before {
content: "\f1b9";
}
.fi-rr-arrow-upward-growth-crypto:before {
content: "\f1ba";
}
.fi-rr-arrows-alt-h:before {
content: "\f1bb";
}
.fi-rr-arrows-alt-v:before {
content: "\f1bc";
}
.fi-rr-arrows-alt:before {
content: "\f1bd";
}
.fi-rr-arrows-cross:before {
content: "\f1be";
}
.fi-rr-arrows-from-dotted-line:before {
content: "\f1bf";
}
.fi-rr-arrows-from-line:before {
content: "\f1c0";
}
.fi-rr-arrows-h-copy:before {
content: "\f1c1";
}
.fi-rr-arrows-h:before {
content: "\f1c2";
}
.fi-rr-arrows-repeat-1:before {
content: "\f1c3";
}
.fi-rr-arrows-repeat:before {
content: "\f1c4";
}
.fi-rr-arrows-retweet:before {
content: "\f1c5";
}
.fi-rr-arrows-split-right-and-left:before {
content: "\f1c6";
}
.fi-rr-arrows-split-up-and-left:before {
content: "\f1c7";
}
.fi-rr-arrows-to-circle:before {
content: "\f1c8";
}
.fi-rr-arrows-to-dotted-line:before {
content: "\f1c9";
}
.fi-rr-arrows-to-eye:before {
content: "\f1ca";
}
.fi-rr-arrows-to-line:before {
content: "\f1cb";
}
.fi-rr-arrows:before {
content: "\f1cc";
}
.fi-rr-artificial-intelligence:before {
content: "\f1cd";
}
.fi-rr-assept-document:before {
content: "\f1ce";
}
.fi-rr-assessment-alt:before {
content: "\f1cf";
}
.fi-rr-assessment:before {
content: "\f1d0";
}
.fi-rr-assign:before {
content: "\f1d1";
}
.fi-rr-assistive-listening-systems:before {
content: "\f1d2";
}
.fi-rr-asterik:before {
content: "\f1d3";
}
.fi-rr-at:before {
content: "\f1d4";
}
.fi-rr-attribution-pen:before {
content: "\f1d5";
}
.fi-rr-attribution-pencil:before {
content: "\f1d6";
}
.fi-rr-aubergine:before {
content: "\f1d7";
}
.fi-rr-auction:before {
content: "\f1d8";
}
.fi-rr-audience-megaphone:before {
content: "\f1d9";
}
.fi-rr-audio-description-slash:before {
content: "\f1da";
}
.fi-rr-audit-alt:before {
content: "\f1db";
}
.fi-rr-audit:before {
content: "\f1dc";
}
.fi-rr-austral-sign:before {
content: "\f1dd";
}
.fi-rr-avocado:before {
content: "\f1de";
}
.fi-rr-award:before {
content: "\f1df";
}
.fi-rr-axe-battle:before {
content: "\f1e0";
}
.fi-rr-axe:before {
content: "\f1e1";
}
.fi-rr-b:before {
content: "\f1e2";
}
.fi-rr-baby-carriage:before {
content: "\f1e3";
}
.fi-rr-baby:before {
content: "\f1e4";
}
.fi-rr-back-up:before {
content: "\f1e5";
}
.fi-rr-background:before {
content: "\f1e6";
}
.fi-rr-backpack:before {
content: "\f1e7";
}
.fi-rr-bacon:before {
content: "\f1e8";
}
.fi-rr-bacteria:before {
content: "\f1e9";
}
.fi-rr-bacterium:before {
content: "\f1ea";
}
.fi-rr-badge-check:before {
content: "\f1eb";
}
.fi-rr-badge-dollar:before {
content: "\f1ec";
}
.fi-rr-badge-leaf:before {
content: "\f1ed";
}
.fi-rr-badge-percent:before {
content: "\f1ee";
}
.fi-rr-badge-sheriff:before {
content: "\f1ef";
}
.fi-rr-badge:before {
content: "\f1f0";
}
.fi-rr-badger-honey:before {
content: "\f1f1";
}
.fi-rr-badget-check-alt:before {
content: "\f1f2";
}
.fi-rr-badminton:before {
content: "\f1f3";
}
.fi-rr-bag-map-pin:before {
content: "\f1f4";
}
.fi-rr-bag-seedling:before {
content: "\f1f5";
}
.fi-rr-bag-shopping-minus:before {
content: "\f1f6";
}
.fi-rr-bags-shopping:before {
content: "\f1f7";
}
.fi-rr-baguette:before {
content: "\f1f8";
}
.fi-rr-bahai:before {
content: "\f1f9";
}
.fi-rr-baht-sign:before {
content: "\f1fa";
}
.fi-rr-balance-scale-left:before {
content: "\f1fb";
}
.fi-rr-balance-scale-right:before {
content: "\f1fc";
}
.fi-rr-ball-pile:before {
content: "\f1fd";
}
.fi-rr-ball:before {
content: "\f1fe";
}
.fi-rr-ballet-dance:before {
content: "\f1ff";
}
.fi-rr-balloon:before {
content: "\f200";
}
.fi-rr-balloons:before {
content: "\f201";
}
.fi-rr-ballot-check:before {
content: "\f202";
}
.fi-rr-ballot:before {
content: "\f203";
}
.fi-rr-ban-bug:before {
content: "\f204";
}
.fi-rr-ban:before {
content: "\f205";
}
.fi-rr-banana:before {
content: "\f206";
}
.fi-rr-band-aid:before {
content: "\f207";
}
.fi-rr-bangladeshi-taka-sign:before {
content: "\f208";
}
.fi-rr-banjo:before {
content: "\f209";
}
.fi-rr-bank:before {
content: "\f20a";
}
.fi-rr-banner-2:before {
content: "\f20b";
}
.fi-rr-banner-3:before {
content: "\f20c";
}
.fi-rr-banner-4:before {
content: "\f20d";
}
.fi-rr-banner-5:before {
content: "\f20e";
}
.fi-rr-banner:before {
content: "\f20f";
}
.fi-rr-barber-pole:before {
content: "\f210";
}
.fi-rr-barber-shop:before {
content: "\f211";
}
.fi-rr-barcode-read:before {
content: "\f212";
}
.fi-rr-barcode-scan:before {
content: "\f213";
}
.fi-rr-barcode:before {
content: "\f214";
}
.fi-rr-bars-filter:before {
content: "\f215";
}
.fi-rr-bars-progress:before {
content: "\f216";
}
.fi-rr-bars-sort:before {
content: "\f217";
}
.fi-rr-bars-staggered:before {
content: "\f218";
}
.fi-rr-baseball-alt:before {
content: "\f219";
}
.fi-rr-baseball:before {
content: "\f21a";
}
.fi-rr-basket-shopping-minus:before {
content: "\f21b";
}
.fi-rr-basket-shopping-plus:before {
content: "\f21c";
}
.fi-rr-basket-shopping-simple:before {
content: "\f21d";
}
.fi-rr-basket:before {
content: "\f21e";
}
.fi-rr-basketball:before {
content: "\f21f";
}
.fi-rr-bat:before {
content: "\f220";
}
.fi-rr-bath:before {
content: "\f221";
}
.fi-rr-battery-bolt:before {
content: "\f222";
}
.fi-rr-battery-empty:before {
content: "\f223";
}
.fi-rr-battery-exclamation:before {
content: "\f224";
}
.fi-rr-battery-full:before {
content: "\f225";
}
.fi-rr-battery-half:before {
content: "\f226";
}
.fi-rr-battery-quarter:before {
content: "\f227";
}
.fi-rr-battery-slash:before {
content: "\f228";
}
.fi-rr-battery-three-quarters:before {
content: "\f229";
}
.fi-rr-beacon:before {
content: "\f22a";
}
.fi-rr-bed-alt:before {
content: "\f22b";
}
.fi-rr-bed-bunk:before {
content: "\f22c";
}
.fi-rr-bed-empty:before {
content: "\f22d";
}
.fi-rr-bed:before {
content: "\f22e";
}
.fi-rr-bee:before {
content: "\f22f";
}
.fi-rr-beer-mug-empty:before {
content: "\f230";
}
.fi-rr-beer:before {
content: "\f231";
}
.fi-rr-bell-concierge:before {
content: "\f232";
}
.fi-rr-bell-notification-call:before {
content: "\f233";
}
.fi-rr-bell-notification-social-media:before {
content: "\f234";
}
.fi-rr-bell-ring:before {
content: "\f235";
}
.fi-rr-bell-school-slash:before {
content: "\f236";
}
.fi-rr-bell-school:before {
content: "\f237";
}
.fi-rr-bell-slash:before {
content: "\f238";
}
.fi-rr-bell:before {
content: "\f239";
}
.fi-rr-bells:before {
content: "\f23a";
}
.fi-rr-bench-tree:before {
content: "\f23b";
}
.fi-rr-benefit-diamond-alt:before {
content: "\f23c";
}
.fi-rr-benefit-diamond:before {
content: "\f23d";
}
.fi-rr-benefit-hand:before {
content: "\f23e";
}
.fi-rr-benefit-increase:before {
content: "\f23f";
}
.fi-rr-benefit-porcent:before {
content: "\f240";
}
.fi-rr-benefit:before {
content: "\f241";
}
.fi-rr-betamax:before {
content: "\f242";
}
.fi-rr-bible:before {
content: "\f243";
}
.fi-rr-bicycle-journey:before {
content: "\f244";
}
.fi-rr-bike:before {
content: "\f245";
}
.fi-rr-biking-mountain:before {
content: "\f246";
}
.fi-rr-biking:before {
content: "\f247";
}
.fi-rr-bill-arrow:before {
content: "\f248";
}
.fi-rr-billiard:before {
content: "\f249";
}
.fi-rr-bin-bottles:before {
content: "\f24a";
}
.fi-rr-binary-circle-check:before {
content: "\f24b";
}
.fi-rr-binary-lock:before {
content: "\f24c";
}
.fi-rr-binary-slash:before {
content: "\f24d";
}
.fi-rr-binary:before {
content: "\f24e";
}
.fi-rr-binoculars:before {
content: "\f24f";
}
.fi-rr-bio-leaves:before {
content: "\f250";
}
.fi-rr-bio:before {
content: "\f251";
}
.fi-rr-biohazard:before {
content: "\f252";
}
.fi-rr-bird:before {
content: "\f253";
}
.fi-rr-bitcoin-sign:before {
content: "\f254";
}
.fi-rr-blanket:before {
content: "\f255";
}
.fi-rr-blender-phone:before {
content: "\f256";
}
.fi-rr-blender:before {
content: "\f257";
}
.fi-rr-blinds-open:before {
content: "\f258";
}
.fi-rr-blinds-raised:before {
content: "\f259";
}
.fi-rr-blinds:before {
content: "\f25a";
}
.fi-rr-block-brick:before {
content: "\f25b";
}
.fi-rr-block-microphone:before {
content: "\f25c";
}
.fi-rr-block-question:before {
content: "\f25d";
}
.fi-rr-block-quote:before {
content: "\f25e";
}
.fi-rr-block:before {
content: "\f25f";
}
.fi-rr-blockchain-3:before {
content: "\f260";
}
.fi-rr-blog-pencil:before {
content: "\f261";
}
.fi-rr-blog-text:before {
content: "\f262";
}
.fi-rr-blood-dropper:before {
content: "\f263";
}
.fi-rr-blood-test-tube-alt:before {
content: "\f264";
}
.fi-rr-blood-test-tube:before {
content: "\f265";
}
.fi-rr-blood:before {
content: "\f266";
}
.fi-rr-blueberries:before {
content: "\f267";
}
.fi-rr-blueprint:before {
content: "\f268";
}
.fi-rr-bold:before {
content: "\f269";
}
.fi-rr-bolt-auto:before {
content: "\f26a";
}
.fi-rr-bolt-slash:before {
content: "\f26b";
}
.fi-rr-bolt:before {
content: "\f26c";
}
.fi-rr-bomb:before {
content: "\f26d";
}
.fi-rr-bone-break:before {
content: "\f26e";
}
.fi-rr-bone:before {
content: "\f26f";
}
.fi-rr-bong:before {
content: "\f270";
}
.fi-rr-bonus-alt:before {
content: "\f271";
}
.fi-rr-bonus-star:before {
content: "\f272";
}
.fi-rr-bonus:before {
content: "\f273";
}
.fi-rr-book-alt:before {
content: "\f274";
}
.fi-rr-book-arrow-right:before {
content: "\f275";
}
.fi-rr-book-arrow-up:before {
content: "\f276";
}
.fi-rr-book-atlas:before {
content: "\f277";
}
.fi-rr-book-bookmark:before {
content: "\f278";
}
.fi-rr-book-circle-arrow-right:before {
content: "\f279";
}
.fi-rr-book-circle-arrow-up:before {
content: "\f27a";
}
.fi-rr-book-copy:before {
content: "\f27b";
}
.fi-rr-book-dead:before {
content: "\f27c";
}
.fi-rr-book-font:before {
content: "\f27d";
}
.fi-rr-book-heart:before {
content: "\f27e";
}
.fi-rr-book-medical:before {
content: "\f27f";
}
.fi-rr-book-open-cover:before {
content: "\f280";
}
.fi-rr-book-open-reader:before {
content: "\f281";
}
.fi-rr-book-plus:before {
content: "\f282";
}
.fi-rr-book-quran:before {
content: "\f283";
}
.fi-rr-book-section:before {
content: "\f284";
}
.fi-rr-book-spells:before {
content: "\f285";
}
.fi-rr-book-tanakh:before {
content: "\f286";
}
.fi-rr-book-user:before {
content: "\f287";
}
.fi-rr-book:before {
content: "\f288";
}
.fi-rr-Booking:before {
content: "\f289";
}
.fi-rr-bookmark-slash:before {
content: "\f28a";
}
.fi-rr-bookmark:before {
content: "\f28b";
}
.fi-rr-books-medical:before {
content: "\f28c";
}
.fi-rr-books:before {
content: "\f28d";
}
.fi-rr-boot-heeled:before {
content: "\f28e";
}
.fi-rr-boot:before {
content: "\f28f";
}
.fi-rr-booth-curtain:before {
content: "\f290";
}
.fi-rr-border-all:before {
content: "\f291";
}
.fi-rr-border-bottom:before {
content: "\f292";
}
.fi-rr-border-center-h:before {
content: "\f293";
}
.fi-rr-border-center-v:before {
content: "\f294";
}
.fi-rr-border-inner:before {
content: "\f295";
}
.fi-rr-border-left:before {
content: "\f296";
}
.fi-rr-border-none:before {
content: "\f297";
}
.fi-rr-border-outer:before {
content: "\f298";
}
.fi-rr-border-right:before {
content: "\f299";
}
.fi-rr-border-style-alt:before {
content: "\f29a";
}
.fi-rr-border-style:before {
content: "\f29b";
}
.fi-rr-border-top:before {
content: "\f29c";
}
.fi-rr-boss:before {
content: "\f29d";
}
.fi-rr-bottle-droplet:before {
content: "\f29e";
}
.fi-rr-bottle:before {
content: "\f29f";
}
.fi-rr-bow-arrow:before {
content: "\f2a0";
}
.fi-rr-bowl-chopsticks-noodles:before {
content: "\f2a1";
}
.fi-rr-bowl-chopsticks:before {
content: "\f2a2";
}
.fi-rr-bowl-rice:before {
content: "\f2a3";
}
.fi-rr-bowl-scoop:before {
content: "\f2a4";
}
.fi-rr-bowl-scoops:before {
content: "\f2a5";
}
.fi-rr-bowl-soft-serve:before {
content: "\f2a6";
}
.fi-rr-bowl-spoon:before {
content: "\f2a7";
}
.fi-rr-bowling-ball:before {
content: "\f2a8";
}
.fi-rr-bowling-pins:before {
content: "\f2a9";
}
.fi-rr-bowling:before {
content: "\f2aa";
}
.fi-rr-box-alt:before {
content: "\f2ab";
}
.fi-rr-box-ballot:before {
content: "\f2ac";
}
.fi-rr-box-check:before {
content: "\f2ad";
}
.fi-rr-box-circle-check:before {
content: "\f2ae";
}
.fi-rr-box-dollar:before {
content: "\f2af";
}
.fi-rr-box-fragile:before {
content: "\f2b0";
}
.fi-rr-box-heart:before {
content: "\f2b1";
}
.fi-rr-box-open-full:before {
content: "\f2b2";
}
.fi-rr-box-open:before {
content: "\f2b3";
}
.fi-rr-box-tissue:before {
content: "\f2b4";
}
.fi-rr-box-up:before {
content: "\f2b5";
}
.fi-rr-box:before {
content: "\f2b6";
}
.fi-rr-boxes:before {
content: "\f2b7";
}
.fi-rr-boxing-glove:before {
content: "\f2b8";
}
.fi-rr-bracket-curly-right:before {
content: "\f2b9";
}
.fi-rr-bracket-curly:before {
content: "\f2ba";
}
.fi-rr-bracket-round-right:before {
content: "\f2bb";
}
.fi-rr-bracket-round:before {
content: "\f2bc";
}
.fi-rr-bracket-square-right:before {
content: "\f2bd";
}
.fi-rr-bracket-square:before {
content: "\f2be";
}
.fi-rr-brackets-curly:before {
content: "\f2bf";
}
.fi-rr-brackets-round:before {
content: "\f2c0";
}
.fi-rr-brackets-square:before {
content: "\f2c1";
}
.fi-rr-braille-a:before {
content: "\f2c2";
}
.fi-rr-braille-b:before {
content: "\f2c3";
}
.fi-rr-braille-c:before {
content: "\f2c4";
}
.fi-rr-braille-d:before {
content: "\f2c5";
}
.fi-rr-braille-e:before {
content: "\f2c6";
}
.fi-rr-braille-g:before {
content: "\f2c7";
}
.fi-rr-braille-h:before {
content: "\f2c8";
}
.fi-rr-braille-i:before {
content: "\f2c9";
}
.fi-rr-braille-j:before {
content: "\f2ca";
}
.fi-rr-braille-k:before {
content: "\f2cb";
}
.fi-rr-braille-l:before {
content: "\f2cc";
}
.fi-rr-braille-m:before {
content: "\f2cd";
}
.fi-rr-braille-n-alt:before {
content: "\f2ce";
}
.fi-rr-braille-n:before {
content: "\f2cf";
}
.fi-rr-braille-o:before {
content: "\f2d0";
}
.fi-rr-braille-p:before {
content: "\f2d1";
}
.fi-rr-braille-q:before {
content: "\f2d2";
}
.fi-rr-braille-r:before {
content: "\f2d3";
}
.fi-rr-braille-s:before {
content: "\f2d4";
}
.fi-rr-braille-t:before {
content: "\f2d5";
}
.fi-rr-braille-u:before {
content: "\f2d6";
}
.fi-rr-braille-v:before {
content: "\f2d7";
}
.fi-rr-braille-w:before {
content: "\f2d8";
}
.fi-rr-braille-x:before {
content: "\f2d9";
}
.fi-rr-braille-y:before {
content: "\f2da";
}
.fi-rr-braille-z:before {
content: "\f2db";
}
.fi-rr-braille:before {
content: "\f2dc";
}
.fi-rr-brain-circuit:before {
content: "\f2dd";
}
.fi-rr-brain:before {
content: "\f2de";
}
.fi-rr-brake-warning:before {
content: "\f2df";
}
.fi-rr-branching:before {
content: "\f2e0";
}
.fi-rr-brand:before {
content: "\f2e1";
}
.fi-rr-branding:before {
content: "\f2e2";
}
.fi-rr-bread-loaf:before {
content: "\f2e3";
}
.fi-rr-bread-slice-butter:before {
content: "\f2e4";
}
.fi-rr-bread-slice:before {
content: "\f2e5";
}
.fi-rr-bread:before {
content: "\f2e6";
}
.fi-rr-briefcase-arrow-right:before {
content: "\f2e7";
}
.fi-rr-briefcase-blank:before {
content: "\f2e8";
}
.fi-rr-briefcase:before {
content: "\f2e9";
}
.fi-rr-brightness-low:before {
content: "\f2ea";
}
.fi-rr-brightness:before {
content: "\f2eb";
}
.fi-rr-bring-forward:before {
content: "\f2ec";
}
.fi-rr-bring-front:before {
content: "\f2ed";
}
.fi-rr-broadcast-tower:before {
content: "\f2ee";
}
.fi-rr-broccoli:before {
content: "\f2ef";
}
.fi-rr-broken-chain-link-wrong:before {
content: "\f2f0";
}
.fi-rr-broken-image:before {
content: "\f2f1";
}
.fi-rr-broom-ball:before {
content: "\f2f2";
}
.fi-rr-broom:before {
content: "\f2f3";
}
.fi-rr-browser-ui:before {
content: "\f2f4";
}
.fi-rr-browser:before {
content: "\f2f5";
}
.fi-rr-browsers:before {
content: "\f2f6";
}
.fi-rr-brush:before {
content: "\f2f7";
}
.fi-rr-bucket:before {
content: "\f2f8";
}
.fi-rr-budget-alt:before {
content: "\f2f9";
}
.fi-rr-budget:before {
content: "\f2fa";
}
.fi-rr-bug-slash:before {
content: "\f2fb";
}
.fi-rr-bug:before {
content: "\f2fc";
}
.fi-rr-bugs:before {
content: "\f2fd";
}
.fi-rr-build-alt:before {
content: "\f2fe";
}
.fi-rr-build:before {
content: "\f2ff";
}
.fi-rr-builder:before {
content: "\f300";
}
.fi-rr-building-circle-arrow-right:before {
content: "\f301";
}
.fi-rr-building-ngo:before {
content: "\f302";
}
.fi-rr-building:before {
content: "\f303";
}
.fi-rr-bulb:before {
content: "\f304";
}
.fi-rr-bullet:before {
content: "\f305";
}
.fi-rr-bullhorn:before {
content: "\f306";
}
.fi-rr-bullseye-arrow:before {
content: "\f307";
}
.fi-rr-bullseye-pointer:before {
content: "\f308";
}
.fi-rr-bullseye:before {
content: "\f309";
}
.fi-rr-burger-alt:before {
content: "\f30a";
}
.fi-rr-burger-fries:before {
content: "\f30b";
}
.fi-rr-burger-glass:before {
content: "\f30c";
}
.fi-rr-burrito:before {
content: "\f30d";
}
.fi-rr-burst:before {
content: "\f30e";
}
.fi-rr-bus-alt:before {
content: "\f30f";
}
.fi-rr-bus:before {
content: "\f310";
}
.fi-rr-business-time:before {
content: "\f311";
}
.fi-rr-Butter:before {
content: "\f312";
}
.fi-rr-butterfly:before {
content: "\f313";
}
.fi-rr-c:before {
content: "\f314";
}
.fi-rr-cabin:before {
content: "\f315";
}
.fi-rr-cactus:before {
content: "\f316";
}
.fi-rr-cage-empty:before {
content: "\f317";
}
.fi-rr-cake-birthday:before {
content: "\f318";
}
.fi-rr-cake-slice:before {
content: "\f319";
}
.fi-rr-cake-wedding:before {
content: "\f31a";
}
.fi-rr-calculator-bill:before {
content: "\f31b";
}
.fi-rr-calculator-math-tax:before {
content: "\f31c";
}
.fi-rr-calculator-money:before {
content: "\f31d";
}
.fi-rr-calculator-simple:before {
content: "\f31e";
}
.fi-rr-calculator:before {
content: "\f31f";
}
.fi-rr-calendar-arrow-down:before {
content: "\f320";
}
.fi-rr-calendar-arrow-up:before {
content: "\f321";
}
.fi-rr-calendar-birhtday-cake:before {
content: "\f322";
}
.fi-rr-calendar-call:before {
content: "\f323";
}
.fi-rr-calendar-check:before {
content: "\f324";
}
.fi-rr-calendar-clock:before {
content: "\f325";
}
.fi-rr-calendar-day:before {
content: "\f326";
}
.fi-rr-calendar-days:before {
content: "\f327";
}
.fi-rr-calendar-event-tax:before {
content: "\f328";
}
.fi-rr-calendar-exclamation:before {
content: "\f329";
}
.fi-rr-calendar-gavel-legal:before {
content: "\f32a";
}
.fi-rr-calendar-heart:before {
content: "\f32b";
}
.fi-rr-calendar-image:before {
content: "\f32c";
}
.fi-rr-calendar-lines-pen:before {
content: "\f32d";
}
.fi-rr-calendar-lines:before {
content: "\f32e";
}
.fi-rr-calendar-minus:before {
content: "\f32f";
}
.fi-rr-calendar-payment-loan:before {
content: "\f330";
}
.fi-rr-calendar-pen:before {
content: "\f331";
}
.fi-rr-calendar-plus:before {
content: "\f332";
}
.fi-rr-calendar-salary:before {
content: "\f333";
}
.fi-rr-calendar-shift-swap:before {
content: "\f334";
}
.fi-rr-calendar-star:before {
content: "\f335";
}
.fi-rr-calendar-swap:before {
content: "\f336";
}
.fi-rr-calendar-week:before {
content: "\f337";
}
.fi-rr-calendar-xmark:before {
content: "\f338";
}
.fi-rr-calendar:before {
content: "\f339";
}
.fi-rr-calendars:before {
content: "\f33a";
}
.fi-rr-call-duration:before {
content: "\f33b";
}
.fi-rr-call-history:before {
content: "\f33c";
}
.fi-rr-call-incoming:before {
content: "\f33d";
}
.fi-rr-call-missed:before {
content: "\f33e";
}
.fi-rr-call-outgoing:before {
content: "\f33f";
}
.fi-rr-camcorder:before {
content: "\f340";
}
.fi-rr-camera-cctv:before {
content: "\f341";
}
.fi-rr-camera-movie:before {
content: "\f342";
}
.fi-rr-camera-retro:before {
content: "\f343";
}
.fi-rr-camera-rotate:before {
content: "\f344";
}
.fi-rr-camera-security:before {
content: "\f345";
}
.fi-rr-camera-slash:before {
content: "\f346";
}
.fi-rr-camera-viewfinder:before {
content: "\f347";
}
.fi-rr-camera:before {
content: "\f348";
}
.fi-rr-campfire:before {
content: "\f349";
}
.fi-rr-camping:before {
content: "\f34a";
}
.fi-rr-can-food:before {
content: "\f34b";
}
.fi-rr-candle-holder:before {
content: "\f34c";
}
.fi-rr-candle-lotus-yoga:before {
content: "\f34d";
}
.fi-rr-candle-pose-yoga:before {
content: "\f34e";
}
.fi-rr-candy-alt:before {
content: "\f34f";
}
.fi-rr-candy-bar:before {
content: "\f350";
}
.fi-rr-candy-cane:before {
content: "\f351";
}
.fi-rr-candy-corn:before {
content: "\f352";
}
.fi-rr-candy-sweet:before {
content: "\f353";
}
.fi-rr-candy:before {
content: "\f354";
}
.fi-rr-Cannabis:before {
content: "\f355";
}
.fi-rr-canned-food:before {
content: "\f356";
}
.fi-rr-capsules:before {
content: "\f357";
}
.fi-rr-car-alt:before {
content: "\f358";
}
.fi-rr-car-battery:before {
content: "\f359";
}
.fi-rr-car-bolt:before {
content: "\f35a";
}
.fi-rr-car-building:before {
content: "\f35b";
}
.fi-rr-car-bump:before {
content: "\f35c";
}
.fi-rr-car-bus:before {
content: "\f35d";
}
.fi-rr-car-circle-bolt:before {
content: "\f35e";
}
.fi-rr-car-crash:before {
content: "\f35f";
}
.fi-rr-car-garage:before {
content: "\f360";
}
.fi-rr-car-journey:before {
content: "\f361";
}
.fi-rr-car-mechanic:before {
content: "\f362";
}
.fi-rr-car-rear:before {
content: "\f363";
}
.fi-rr-car-side-bolt:before {
content: "\f364";
}
.fi-rr-car-side:before {
content: "\f365";
}
.fi-rr-car-tilt:before {
content: "\f366";
}
.fi-rr-car-tunnel:before {
content: "\f367";
}
.fi-rr-car-wash:before {
content: "\f368";
}
.fi-rr-car:before {
content: "\f369";
}
.fi-rr-caravan-alt:before {
content: "\f36a";
}
.fi-rr-caravan:before {
content: "\f36b";
}
.fi-rr-card-club:before {
content: "\f36c";
}
.fi-rr-card-diamond:before {
content: "\f36d";
}
.fi-rr-card-heart:before {
content: "\f36e";
}
.fi-rr-card-spade:before {
content: "\f36f";
}
.fi-rr-cardinal-compass:before {
content: "\f370";
}
.fi-rr-career-growth:before {
content: "\f371";
}
.fi-rr-career-path:before {
content: "\f372";
}
.fi-rr-caret-circle-down:before {
content: "\f373";
}
.fi-rr-caret-circle-right:before {
content: "\f374";
}
.fi-rr-caret-circle-up:before {
content: "\f375";
}
.fi-rr-caret-down:before {
content: "\f376";
}
.fi-rr-caret-left:before {
content: "\f377";
}
.fi-rr-caret-quare-up:before {
content: "\f378";
}
.fi-rr-caret-right:before {
content: "\f379";
}
.fi-rr-caret-square-down:before {
content: "\f37a";
}
.fi-rr-caret-square-left_1:before {
content: "\f37b";
}
.fi-rr-caret-square-left:before {
content: "\f37c";
}
.fi-rr-caret-square-right:before {
content: "\f37d";
}
.fi-rr-caret-up:before {
content: "\f37e";
}
.fi-rr-carrot:before {
content: "\f37f";
}
.fi-rr-cars-crash:before {
content: "\f380";
}
.fi-rr-cars:before {
content: "\f381";
}
.fi-rr-cart-arrow-down:before {
content: "\f382";
}
.fi-rr-cart-minus:before {
content: "\f383";
}
.fi-rr-cart-shopping-fast:before {
content: "\f384";
}
.fi-rr-cash-register:before {
content: "\f385";
}
.fi-rr-cassette-tape:before {
content: "\f386";
}
.fi-rr-cassette-vhs:before {
content: "\f387";
}
.fi-rr-castle:before {
content: "\f388";
}
.fi-rr-cat-head:before {
content: "\f389";
}
.fi-rr-cat-space:before {
content: "\f38a";
}
.fi-rr-cat:before {
content: "\f38b";
}
.fi-rr-catalog-alt:before {
content: "\f38c";
}
.fi-rr-catalog-magazine:before {
content: "\f38d";
}
.fi-rr-catalog:before {
content: "\f38e";
}
.fi-rr-category-alt:before {
content: "\f38f";
}
.fi-rr-category:before {
content: "\f390";
}
.fi-rr-cauldron:before {
content: "\f391";
}
.fi-rr-cedi-sign:before {
content: "\f392";
}
.fi-rr-cello:before {
content: "\f393";
}
.fi-rr-cent-sign:before {
content: "\f394";
}
.fi-rr-chair-office:before {
content: "\f395";
}
.fi-rr-chair:before {
content: "\f396";
}
.fi-rr-chalkboard-user:before {
content: "\f397";
}
.fi-rr-chalkboard:before {
content: "\f398";
}
.fi-rr-challenge-alt:before {
content: "\f399";
}
.fi-rr-challenge:before {
content: "\f39a";
}
.fi-rr-channel:before {
content: "\f39b";
}
.fi-rr-charging-station:before {
content: "\f39c";
}
.fi-rr-chart-area:before {
content: "\f39d";
}
.fi-rr-chart-bullet:before {
content: "\f39e";
}
.fi-rr-chart-candlestick:before {
content: "\f39f";
}
.fi-rr-chart-connected:before {
content: "\f3a0";
}
.fi-rr-chart-gantt:before {
content: "\f3a1";
}
.fi-rr-chart-histogram:before {
content: "\f3a2";
}
.fi-rr-chart-kanban:before {
content: "\f3a3";
}
.fi-rr-chart-line-up-down:before {
content: "\f3a4";
}
.fi-rr-chart-line-up:before {
content: "\f3a5";
}
.fi-rr-chart-mixed-up-circle-currency:before {
content: "\f3a6";
}
.fi-rr-chart-mixed-up-circle-dollar:before {
content: "\f3a7";
}
.fi-rr-chart-mixed:before {
content: "\f3a8";
}
.fi-rr-chart-network:before {
content: "\f3a9";
}
.fi-rr-chart-pie-alt:before {
content: "\f3aa";
}
.fi-rr-chart-pie-simple-circle-currency:before {
content: "\f3ab";
}
.fi-rr-chart-pie-simple-circle-dollar:before {
content: "\f3ac";
}
.fi-rr-chart-pie:before {
content: "\f3ad";
}
.fi-rr-chart-pyramid:before {
content: "\f3ae";
}
.fi-rr-chart-radar:before {
content: "\f3af";
}
.fi-rr-chart-scatter-3d:before {
content: "\f3b0";
}
.fi-rr-chart-scatter-bubble:before {
content: "\f3b1";
}
.fi-rr-chart-scatter:before {
content: "\f3b2";
}
.fi-rr-chart-set-theory:before {
content: "\f3b3";
}
.fi-rr-chart-simple-horizontal:before {
content: "\f3b4";
}
.fi-rr-chart-simple:before {
content: "\f3b5";
}
.fi-rr-chart-tree-map:before {
content: "\f3b6";
}
.fi-rr-chart-tree:before {
content: "\f3b7";
}
.fi-rr-chart-user:before {
content: "\f3b8";
}
.fi-rr-chart-waterfall:before {
content: "\f3b9";
}
.fi-rr-chat-arrow-down:before {
content: "\f3ba";
}
.fi-rr-chat-arrow-grow:before {
content: "\f3bb";
}
.fi-rr-chat-bubble-call:before {
content: "\f3bc";
}
.fi-rr-chatbot-speech-bubble:before {
content: "\f3bd";
}
.fi-rr-chatbot:before {
content: "\f3be";
}
.fi-rr-cheap-bill:before {
content: "\f3bf";
}
.fi-rr-cheap-dollar:before {
content: "\f3c0";
}
.fi-rr-cheap-stack-dollar:before {
content: "\f3c1";
}
.fi-rr-cheap-stack:before {
content: "\f3c2";
}
.fi-rr-cheap:before {
content: "\f3c3";
}
.fi-rr-check-circle:before {
content: "\f3c4";
}
.fi-rr-check-double:before {
content: "\f3c5";
}
.fi-rr-check-in-calendar:before {
content: "\f3c6";
}
.fi-rr-check-out-calendar:before {
content: "\f3c7";
}
.fi-rr-check:before {
content: "\f3c8";
}
.fi-rr-checkbox:before {
content: "\f3c9";
}
.fi-rr-checklist-task-budget:before {
content: "\f3ca";
}
.fi-rr-cheese-alt:before {
content: "\f3cb";
}
.fi-rr-cheese:before {
content: "\f3cc";
}
.fi-rr-cheeseburger:before {
content: "\f3cd";
}
.fi-rr-cherry:before {
content: "\f3ce";
}
.fi-rr-chess-bishop:before {
content: "\f3cf";
}
.fi-rr-chess-board:before {
content: "\f3d0";
}
.fi-rr-chess-clock-alt:before {
content: "\f3d1";
}
.fi-rr-chess-clock:before {
content: "\f3d2";
}
.fi-rr-chess-king-alt:before {
content: "\f3d3";
}
.fi-rr-chess-king:before {
content: "\f3d4";
}
.fi-rr-chess-knight-alt:before {
content: "\f3d5";
}
.fi-rr-chess-knight:before {
content: "\f3d6";
}
.fi-rr-chess-pawn-alt:before {
content: "\f3d7";
}
.fi-rr-chess-piece:before {
content: "\f3d8";
}
.fi-rr-chess-queen-alt:before {
content: "\f3d9";
}
.fi-rr-chess-queen:before {
content: "\f3da";
}
.fi-rr-chess-rook-alt:before {
content: "\f3db";
}
.fi-rr-chess-rook:before {
content: "\f3dc";
}
.fi-rr-chess:before {
content: "\f3dd";
}
.fi-rr-chevron-double-down:before {
content: "\f3de";
}
.fi-rr-chevron-double-up:before {
content: "\f3df";
}
.fi-rr-child-head:before {
content: "\f3e0";
}
.fi-rr-child:before {
content: "\f3e1";
}
.fi-rr-chimney:before {
content: "\f3e2";
}
.fi-rr-chip:before {
content: "\f3e3";
}
.fi-rr-chocolate:before {
content: "\f3e4";
}
.fi-rr-choir-singing:before {
content: "\f3e5";
}
.fi-rr-choose-alt:before {
content: "\f3e6";
}
.fi-rr-choose:before {
content: "\f3e7";
}
.fi-rr-church:before {
content: "\f3e8";
}
.fi-rr-circle-0:before {
content: "\f3e9";
}
.fi-rr-circle-1:before {
content: "\f3ea";
}
.fi-rr-circle-2:before {
content: "\f3eb";
}
.fi-rr-circle-3:before {
content: "\f3ec";
}
.fi-rr-circle-4:before {
content: "\f3ed";
}
.fi-rr-circle-5:before {
content: "\f3ee";
}
.fi-rr-circle-6:before {
content: "\f3ef";
}
.fi-rr-circle-7:before {
content: "\f3f0";
}
.fi-rr-circle-8:before {
content: "\f3f1";
}
.fi-rr-circle-9:before {
content: "\f3f2";
}
.fi-rr-circle-a:before {
content: "\f3f3";
}
.fi-rr-circle-b:before {
content: "\f3f4";
}
.fi-rr-circle-bolt:before {
content: "\f3f5";
}
.fi-rr-circle-book-open:before {
content: "\f3f6";
}
.fi-rr-circle-bookmark:before {
content: "\f3f7";
}
.fi-rr-circle-c:before {
content: "\f3f8";
}
.fi-rr-circle-calendar:before {
content: "\f3f9";
}
.fi-rr-circle-camera:before {
content: "\f3fa";
}
.fi-rr-circle-d:before {
content: "\f3fb";
}
.fi-rr-circle-dashed:before {
content: "\f3fc";
}
.fi-rr-circle-divide:before {
content: "\f3fd";
}
.fi-rr-circle-e:before {
content: "\f3fe";
}
.fi-rr-circle-ellipsis-vertical:before {
content: "\f3ff";
}
.fi-rr-circle-ellipsis:before {
content: "\f400";
}
.fi-rr-circle-envelope:before {
content: "\f401";
}
.fi-rr-circle-exclamation-check:before {
content: "\f402";
}
.fi-rr-circle-f:before {
content: "\f403";
}
.fi-rr-circle-g:before {
content: "\f404";
}
.fi-rr-circle-h:before {
content: "\f405";
}
.fi-rr-circle-half-stroke:before {
content: "\f406";
}
.fi-rr-circle-half:before {
content: "\f407";
}
.fi-rr-circle-heart:before {
content: "\f408";
}
.fi-rr-circle-i:before {
content: "\f409";
}
.fi-rr-circle-j:before {
content: "\f40a";
}
.fi-rr-circle-k:before {
content: "\f40b";
}
.fi-rr-circle-l:before {
content: "\f40c";
}
.fi-rr-circle-m:before {
content: "\f40d";
}
.fi-rr-circle-microphone-lines:before {
content: "\f40e";
}
.fi-rr-circle-microphone:before {
content: "\f40f";
}
.fi-rr-circle-n:before {
content: "\f410";
}
.fi-rr-circle-nodes:before {
content: "\f411";
}
.fi-rr-circle-o:before {
content: "\f412";
}
.fi-rr-circle-overlap:before {
content: "\f413";
}
.fi-rr-circle-p:before {
content: "\f414";
}
.fi-rr-circle-phone-flip:before {
content: "\f415";
}
.fi-rr-circle-phone-hangup:before {
content: "\f416";
}
.fi-rr-circle-phone:before {
content: "\f417";
}
.fi-rr-circle-q:before {
content: "\f418";
}
.fi-rr-circle-quarter:before {
content: "\f419";
}
.fi-rr-circle-quarters-alt:before {
content: "\f41a";
}
.fi-rr-circle-r:before {
content: "\f41b";
}
.fi-rr-circle-s:before {
content: "\f41c";
}
.fi-rr-circle-small:before {
content: "\f41d";
}
.fi-rr-circle-star:before {
content: "\f41e";
}
.fi-rr-circle-t:before {
content: "\f41f";
}
.fi-rr-circle-three-quarters:before {
content: "\f420";
}
.fi-rr-circle-trash:before {
content: "\f421";
}
.fi-rr-circle-u:before {
content: "\f422";
}
.fi-rr-circle-user:before {
content: "\f423";
}
.fi-rr-circle-v:before {
content: "\f424";
}
.fi-rr-circle-video:before {
content: "\f425";
}
.fi-rr-circle-w:before {
content: "\f426";
}
.fi-rr-circle-waveform-lines:before {
content: "\f427";
}
.fi-rr-circle-x:before {
content: "\f428";
}
.fi-rr-circle-xmark:before {
content: "\f429";
}
.fi-rr-circle-y:before {
content: "\f42a";
}
.fi-rr-circle-z:before {
content: "\f42b";
}
.fi-rr-circle:before {
content: "\f42c";
}
.fi-rr-citrus-slice:before {
content: "\f42d";
}
.fi-rr-citrus:before {
content: "\f42e";
}
.fi-rr-city:before {
content: "\f42f";
}
.fi-rr-clapperboard-play:before {
content: "\f430";
}
.fi-rr-clapperboard:before {
content: "\f431";
}
.fi-rr-clarinet:before {
content: "\f432";
}
.fi-rr-claw-marks:before {
content: "\f433";
}
.fi-rr-clear-alt:before {
content: "\f434";
}
.fi-rr-clip-file:before {
content: "\f435";
}
.fi-rr-clip-mail:before {
content: "\f436";
}
.fi-rr-clip:before {
content: "\f437";
}
.fi-rr-clipboard-check:before {
content: "\f438";
}
.fi-rr-clipboard-exclamation:before {
content: "\f439";
}
.fi-rr-clipboard-list-check:before {
content: "\f43a";
}
.fi-rr-clipboard-list:before {
content: "\f43b";
}
.fi-rr-clipboard-prescription:before {
content: "\f43c";
}
.fi-rr-clipboard-question:before {
content: "\f43d";
}
.fi-rr-clipboard-user:before {
content: "\f43e";
}
.fi-rr-clipboard:before {
content: "\f43f";
}
.fi-rr-clipoard-wrong:before {
content: "\f440";
}
.fi-rr-clock-desk:before {
content: "\f441";
}
.fi-rr-clock-eight-thirty:before {
content: "\f442";
}
.fi-rr-clock-eleven-thirty:before {
content: "\f443";
}
.fi-rr-clock-eleven:before {
content: "\f444";
}
.fi-rr-clock-five-thirty:before {
content: "\f445";
}
.fi-rr-clock-five:before {
content: "\f446";
}
.fi-rr-clock-four-thirty:before {
content: "\f447";
}
.fi-rr-clock-nine-thirty:before {
content: "\f448";
}
.fi-rr-clock-nine:before {
content: "\f449";
}
.fi-rr-clock-one-thirty:before {
content: "\f44a";
}
.fi-rr-clock-one:before {
content: "\f44b";
}
.fi-rr-clock-seven-thirty:before {
content: "\f44c";
}
.fi-rr-clock-seven:before {
content: "\f44d";
}
.fi-rr-clock-six-thirty:before {
content: "\f44e";
}
.fi-rr-clock-six:before {
content: "\f44f";
}
.fi-rr-clock-ten-thirty:before {
content: "\f450";
}
.fi-rr-clock-ten:before {
content: "\f451";
}
.fi-rr-clock-three-thirty:before {
content: "\f452";
}
.fi-rr-clock-three:before {
content: "\f453";
}
.fi-rr-clock-time-tracking:before {
content: "\f454";
}
.fi-rr-clock-twelve-thirty:before {
content: "\f455";
}
.fi-rr-clock-twelve:before {
content: "\f456";
}
.fi-rr-clock-two-thirty:before {
content: "\f457";
}
.fi-rr-clock-two:before {
content: "\f458";
}
.fi-rr-clock-up-arrow:before {
content: "\f459";
}
.fi-rr-clock:before {
content: "\f45a";
}
.fi-rr-clone:before {
content: "\f45b";
}
.fi-rr-closed-captioning-slash:before {
content: "\f45c";
}
.fi-rr-clothes-hanger:before {
content: "\f45d";
}
.fi-rr-cloud-back-up-alt:before {
content: "\f45e";
}
.fi-rr-cloud-back-up:before {
content: "\f45f";
}
.fi-rr-cloud-check:before {
content: "\f460";
}
.fi-rr-cloud-code:before {
content: "\f461";
}
.fi-rr-cloud-disabled:before {
content: "\f462";
}
.fi-rr-cloud-download-alt:before {
content: "\f463";
}
.fi-rr-cloud-download:before {
content: "\f464";
}
.fi-rr-cloud-drizzle:before {
content: "\f465";
}
.fi-rr-cloud-exclamation:before {
content: "\f466";
}
.fi-rr-cloud-gear-automation:before {
content: "\f467";
}
.fi-rr-cloud-hail-mixed:before {
content: "\f468";
}
.fi-rr-cloud-hail:before {
content: "\f469";
}
.fi-rr-cloud-meatball:before {
content: "\f46a";
}
.fi-rr-cloud-moon-rain:before {
content: "\f46b";
}
.fi-rr-cloud-moon:before {
content: "\f46c";
}
.fi-rr-cloud-question:before {
content: "\f46d";
}
.fi-rr-cloud-rain:before {
content: "\f46e";
}
.fi-rr-cloud-rainbow:before {
content: "\f46f";
}
.fi-rr-cloud-share:before {
content: "\f470";
}
.fi-rr-cloud-showers-heavy:before {
content: "\f471";
}
.fi-rr-cloud-showers:before {
content: "\f472";
}
.fi-rr-cloud-sleet:before {
content: "\f473";
}
.fi-rr-cloud-snow:before {
content: "\f474";
}
.fi-rr-cloud-sun-rain:before {
content: "\f475";
}
.fi-rr-cloud-sun:before {
content: "\f476";
}
.fi-rr-cloud-upload-alt:before {
content: "\f477";
}
.fi-rr-cloud-upload:before {
content: "\f478";
}
.fi-rr-cloud:before {
content: "\f479";
}
.fi-rr-clouds-moon:before {
content: "\f47a";
}
.fi-rr-clouds-sun:before {
content: "\f47b";
}
.fi-rr-clouds:before {
content: "\f47c";
}
.fi-rr-clover-alt:before {
content: "\f47d";
}
.fi-rr-club:before {
content: "\f47e";
}
.fi-rr-cocktail-alt:before {
content: "\f47f";
}
.fi-rr-cocktail:before {
content: "\f480";
}
.fi-rr-coconut:before {
content: "\f481";
}
.fi-rr-code-branch:before {
content: "\f482";
}
.fi-rr-code-commit:before {
content: "\f483";
}
.fi-rr-code-compare:before {
content: "\f484";
}
.fi-rr-code-fork:before {
content: "\f485";
}
.fi-rr-code-merge:before {
content: "\f486";
}
.fi-rr-code-pull-request-closed:before {
content: "\f487";
}
.fi-rr-code-pull-request-draft:before {
content: "\f488";
}
.fi-rr-code-pull-request:before {
content: "\f489";
}
.fi-rr-code-simple:before {
content: "\f48a";
}
.fi-rr-coffee-bean:before {
content: "\f48b";
}
.fi-rr-coffee-beans:before {
content: "\f48c";
}
.fi-rr-coffee-heart:before {
content: "\f48d";
}
.fi-rr-coffee-pot:before {
content: "\f48e";
}
.fi-rr-coffee:before {
content: "\f48f";
}
.fi-rr-coffin-cross:before {
content: "\f490";
}
.fi-rr-coffin:before {
content: "\f491";
}
.fi-rr-coin-up-arrow:before {
content: "\f492";
}
.fi-rr-coin:before {
content: "\f493";
}
.fi-rr-coins:before {
content: "\f494";
}
.fi-rr-colon-sign:before {
content: "\f495";
}
.fi-rr-columns-3:before {
content: "\f496";
}
.fi-rr-comet:before {
content: "\f497";
}
.fi-rr-command:before {
content: "\f498";
}
.fi-rr-comment-alt-check:before {
content: "\f499";
}
.fi-rr-comment-alt-dots:before {
content: "\f49a";
}
.fi-rr-comment-alt-edit:before {
content: "\f49b";
}
.fi-rr-comment-alt-medical:before {
content: "\f49c";
}
.fi-rr-comment-alt-middle-top:before {
content: "\f49d";
}
.fi-rr-comment-alt-middle:before {
content: "\f49e";
}
.fi-rr-comment-alt-minus:before {
content: "\f49f";
}
.fi-rr-comment-alt-music:before {
content: "\f4a0";
}
.fi-rr-comment-alt:before {
content: "\f4a1";
}
.fi-rr-comment-arrow-down:before {
content: "\f4a2";
}
.fi-rr-comment-arrow-up-right:before {
content: "\f4a3";
}
.fi-rr-comment-arrow-up:before {
content: "\f4a4";
}
.fi-rr-comment-check:before {
content: "\f4a5";
}
.fi-rr-comment-code:before {
content: "\f4a6";
}
.fi-rr-comment-dollar:before {
content: "\f4a7";
}
.fi-rr-comment-dots:before {
content: "\f4a8";
}
.fi-rr-comment-exclamation:before {
content: "\f4a9";
}
.fi-rr-comment-heart:before {
content: "\f4aa";
}
.fi-rr-comment-image:before {
content: "\f4ab";
}
.fi-rr-comment-info:before {
content: "\f4ac";
}
.fi-rr-comment-medical:before {
content: "\f4ad";
}
.fi-rr-comment-minus:before {
content: "\f4ae";
}
.fi-rr-comment-pen:before {
content: "\f4af";
}
.fi-rr-comment-question:before {
content: "\f4b0";
}
.fi-rr-comment-quote:before {
content: "\f4b1";
}
.fi-rr-comment-slash:before {
content: "\f4b2";
}
.fi-rr-comment-smile:before {
content: "\f4b3";
}
.fi-rr-comment-sms:before {
content: "\f4b4";
}
.fi-rr-comment-text:before {
content: "\f4b5";
}
.fi-rr-comment-user:before {
content: "\f4b6";
}
.fi-rr-comment-xmark:before {
content: "\f4b7";
}
.fi-rr-comment:before {
content: "\f4b8";
}
.fi-rr-comments-dollar:before {
content: "\f4b9";
}
.fi-rr-comments-question-check:before {
content: "\f4ba";
}
.fi-rr-comments-question:before {
content: "\f4bb";
}
.fi-rr-comments:before {
content: "\f4bc";
}
.fi-rr-compass-alt:before {
content: "\f4bd";
}
.fi-rr-compass-east:before {
content: "\f4be";
}
.fi-rr-compass-north:before {
content: "\f4bf";
}
.fi-rr-compass-slash:before {
content: "\f4c0";
}
.fi-rr-compass-south:before {
content: "\f4c1";
}
.fi-rr-compass-west:before {
content: "\f4c2";
}
.fi-rr-completed:before {
content: "\f4c3";
}
.fi-rr-compliance-clipboard:before {
content: "\f4c4";
}
.fi-rr-compliance-document:before {
content: "\f4c5";
}
.fi-rr-compliance:before {
content: "\f4c6";
}
.fi-rr-compress-alt:before {
content: "\f4c7";
}
.fi-rr-compress:before {
content: "\f4c8";
}
.fi-rr-computer-classic:before {
content: "\f4c9";
}
.fi-rr-computer-mouse:before {
content: "\f4ca";
}
.fi-rr-computer-speaker:before {
content: "\f4cb";
}
.fi-rr-computer:before {
content: "\f4cc";
}
.fi-rr-concierge-bell:before {
content: "\f4cd";
}
.fi-rr-condition-alt:before {
content: "\f4ce";
}
.fi-rr-condition:before {
content: "\f4cf";
}
.fi-rr-confetti:before {
content: "\f4d0";
}
.fi-rr-constellation:before {
content: "\f4d1";
}
.fi-rr-container-storage:before {
content: "\f4d2";
}
.fi-rr-convert-document:before {
content: "\f4d3";
}
.fi-rr-convert-shapes:before {
content: "\f4d4";
}
.fi-rr-conveyor-belt-alt:before {
content: "\f4d5";
}
.fi-rr-conveyor-belt-arm:before {
content: "\f4d6";
}
.fi-rr-conveyor-belt-empty:before {
content: "\f4d7";
}
.fi-rr-conveyor-belt:before {
content: "\f4d8";
}
.fi-rr-cookie-alt:before {
content: "\f4d9";
}
.fi-rr-cookie:before {
content: "\f4da";
}
.fi-rr-copy-alt:before {
content: "\f4db";
}
.fi-rr-copy-image:before {
content: "\f4dc";
}
.fi-rr-copy:before {
content: "\f4dd";
}
.fi-rr-copyright:before {
content: "\f4de";
}
.fi-rr-corn:before {
content: "\f4df";
}
.fi-rr-corporate-alt:before {
content: "\f4e0";
}
.fi-rr-corporate:before {
content: "\f4e1";
}
.fi-rr-couch:before {
content: "\f4e2";
}
.fi-rr-court-sport:before {
content: "\f4e3";
}
.fi-rr-cow-alt:before {
content: "\f4e4";
}
.fi-rr-cow:before {
content: "\f4e5";
}
.fi-rr-cowbell-circle-plus:before {
content: "\f4e6";
}
.fi-rr-cowbell-more:before {
content: "\f4e7";
}
.fi-rr-cowbell:before {
content: "\f4e8";
}
.fi-rr-crab:before {
content: "\f4e9";
}
.fi-rr-crate-empty:before {
content: "\f4ea";
}
.fi-rr-cream:before {
content: "\f4eb";
}
.fi-rr-credit-card-buyer:before {
content: "\f4ec";
}
.fi-rr-credit-card-eye:before {
content: "\f4ed";
}
.fi-rr-credit-card:before {
content: "\f4ee";
}
.fi-rr-cricket:before {
content: "\f4ef";
}
.fi-rr-crm-alt:before {
content: "\f4f0";
}
.fi-rr-crm-computer:before {
content: "\f4f1";
}
.fi-rr-CRM:before {
content: "\f4f2";
}
.fi-rr-croissant:before {
content: "\f4f3";
}
.fi-rr-cross-circle:before {
content: "\f4f4";
}
.fi-rr-cross-religion:before {
content: "\f4f5";
}
.fi-rr-cross-small:before {
content: "\f4f6";
}
.fi-rr-cross:before {
content: "\f4f7";
}
.fi-rr-crow:before {
content: "\f4f8";
}
.fi-rr-crown:before {
content: "\f4f9";
}
.fi-rr-crutch:before {
content: "\f4fa";
}
.fi-rr-crutches:before {
content: "\f4fb";
}
.fi-rr-cruzeiro-sign:before {
content: "\f4fc";
}
.fi-rr-crypto-calendar:before {
content: "\f4fd";
}
.fi-rr-cryptocurrency:before {
content: "\f4fe";
}
.fi-rr-crystal-ball:before {
content: "\f4ff";
}
.fi-rr-cube:before {
content: "\f500";
}
.fi-rr-cubes-stacked:before {
content: "\f501";
}
.fi-rr-cubes:before {
content: "\f502";
}
.fi-rr-cucumber:before {
content: "\f503";
}
.fi-rr-cup-straw-swoosh:before {
content: "\f504";
}
.fi-rr-cup-straw:before {
content: "\f505";
}
.fi-rr-cup-togo:before {
content: "\f506";
}
.fi-rr-cupcake-alt:before {
content: "\f507";
}
.fi-rr-cupcake:before {
content: "\f508";
}
.fi-rr-curling:before {
content: "\f509";
}
.fi-rr-cursor-finger:before {
content: "\f50a";
}
.fi-rr-cursor-plus:before {
content: "\f50b";
}
.fi-rr-cursor-text-alt:before {
content: "\f50c";
}
.fi-rr-cursor-text:before {
content: "\f50d";
}
.fi-rr-cursor:before {
content: "\f50e";
}
.fi-rr-curve-alt:before {
content: "\f50f";
}
.fi-rr-curve-arrow:before {
content: "\f510";
}
.fi-rr-curve:before {
content: "\f511";
}
.fi-rr-custard:before {
content: "\f512";
}
.fi-rr-customer-care:before {
content: "\f513";
}
.fi-rr-customer-service:before {
content: "\f514";
}
.fi-rr-customization-cogwheel:before {
content: "\f515";
}
.fi-rr-customization:before {
content: "\f516";
}
.fi-rr-customize-computer:before {
content: "\f517";
}
.fi-rr-customize-edit:before {
content: "\f518";
}
.fi-rr-customize:before {
content: "\f519";
}
.fi-rr-CV:before {
content: "\f51a";
}
.fi-rr-cvv-card:before {
content: "\f51b";
}
.fi-rr-d:before {
content: "\f51c";
}
.fi-rr-dagger:before {
content: "\f51d";
}
.fi-rr-daily-calendar:before {
content: "\f51e";
}
.fi-rr-damage:before {
content: "\f51f";
}
.fi-rr-dart:before {
content: "\f520";
}
.fi-rr-dashboard-monitor:before {
content: "\f521";
}
.fi-rr-dashboard-panel:before {
content: "\f522";
}
.fi-rr-dashboard:before {
content: "\f523";
}
.fi-rr-data-transfer:before {
content: "\f524";
}
.fi-rr-database:before {
content: "\f525";
}
.fi-rr-debt:before {
content: "\f526";
}
.fi-rr-deer-rudolph:before {
content: "\f527";
}
.fi-rr-deer:before {
content: "\f528";
}
.fi-rr-delete-document:before {
content: "\f529";
}
.fi-rr-delete-right:before {
content: "\f52a";
}
.fi-rr-delete-user:before {
content: "\f52b";
}
.fi-rr-delete:before {
content: "\f52c";
}
.fi-rr-democrat:before {
content: "\f52d";
}
.fi-rr-department-structure:before {
content: "\f52e";
}
.fi-rr-department:before {
content: "\f52f";
}
.fi-rr-deposit-alt:before {
content: "\f530";
}
.fi-rr-deposit:before {
content: "\f531";
}
.fi-rr-description-alt:before {
content: "\f532";
}
.fi-rr-description:before {
content: "\f533";
}
.fi-rr-desk:before {
content: "\f534";
}
.fi-rr-desktop-arrow-down:before {
content: "\f535";
}
.fi-rr-desktop-wallpaper:before {
content: "\f536";
}
.fi-rr-devices:before {
content: "\f537";
}
.fi-rr-dewpoint:before {
content: "\f538";
}
.fi-rr-dharmachakra:before {
content: "\f539";
}
.fi-rr-diagram-cells:before {
content: "\f53a";
}
.fi-rr-diagram-lean-canvas:before {
content: "\f53b";
}
.fi-rr-diagram-nested:before {
content: "\f53c";
}
.fi-rr-diagram-next:before {
content: "\f53d";
}
.fi-rr-diagram-predecessor:before {
content: "\f53e";
}
.fi-rr-diagram-previous:before {
content: "\f53f";
}
.fi-rr-diagram-project:before {
content: "\f540";
}
.fi-rr-diagram-sankey:before {
content: "\f541";
}
.fi-rr-diagram-subtask:before {
content: "\f542";
}
.fi-rr-diagram-successor:before {
content: "\f543";
}
.fi-rr-diagram-venn:before {
content: "\f544";
}
.fi-rr-dial-high:before {
content: "\f545";
}
.fi-rr-dial-low:before {
content: "\f546";
}
.fi-rr-dial-max:before {
content: "\f547";
}
.fi-rr-dial-med-low:before {
content: "\f548";
}
.fi-rr-dial-med:before {
content: "\f549";
}
.fi-rr-dial-min:before {
content: "\f54a";
}
.fi-rr-dial-off:before {
content: "\f54b";
}
.fi-rr-dial:before {
content: "\f54c";
}
.fi-rr-diamond-exclamation:before {
content: "\f54d";
}
.fi-rr-diamond-turn-right:before {
content: "\f54e";
}
.fi-rr-diamond:before {
content: "\f54f";
}
.fi-rr-diary-bookmark-down:before {
content: "\f550";
}
.fi-rr-diary-bookmarks:before {
content: "\f551";
}
.fi-rr-diary-clasp:before {
content: "\f552";
}
.fi-rr-dice-alt:before {
content: "\f553";
}
.fi-rr-dice-d10:before {
content: "\f554";
}
.fi-rr-dice-d12:before {
content: "\f555";
}
.fi-rr-dice-d20:before {
content: "\f556";
}
.fi-rr-dice-d4:before {
content: "\f557";
}
.fi-rr-dice-d6:before {
content: "\f558";
}
.fi-rr-dice-d8:before {
content: "\f559";
}
.fi-rr-dice-four:before {
content: "\f55a";
}
.fi-rr-dice-one:before {
content: "\f55b";
}
.fi-rr-dice-six:before {
content: "\f55c";
}
.fi-rr-dice-three:before {
content: "\f55d";
}
.fi-rr-dice-two:before {
content: "\f55e";
}
.fi-rr-dice:before {
content: "\f55f";
}
.fi-rr-digging:before {
content: "\f560";
}
.fi-rr-digital-tachograph:before {
content: "\f561";
}
.fi-rr-dinner:before {
content: "\f562";
}
.fi-rr-diploma:before {
content: "\f563";
}
.fi-rr-direction-signal-arrow:before {
content: "\f564";
}
.fi-rr-direction-signal:before {
content: "\f565";
}
.fi-rr-disc-drive:before {
content: "\f566";
}
.fi-rr-disco-ball:before {
content: "\f567";
}
.fi-rr-discover:before {
content: "\f568";
}
.fi-rr-disease:before {
content: "\f569";
}
.fi-rr-disk:before {
content: "\f56a";
}
.fi-rr-display-arrow-down:before {
content: "\f56b";
}
.fi-rr-display-chart-up:before {
content: "\f56c";
}
.fi-rr-display-code:before {
content: "\f56d";
}
.fi-rr-display-medical:before {
content: "\f56e";
}
.fi-rr-display-slash:before {
content: "\f56f";
}
.fi-rr-distribute-spacing-horizontal:before {
content: "\f570";
}
.fi-rr-distribute-spacing-vertical:before {
content: "\f571";
}
.fi-rr-divide:before {
content: "\f572";
}
.fi-rr-dizzy:before {
content: "\f573";
}
.fi-rr-dna:before {
content: "\f574";
}
.fi-rr-do-not-enter:before {
content: "\f575";
}
.fi-rr-doctor:before {
content: "\f576";
}
.fi-rr-document-circle-wrong:before {
content: "\f577";
}
.fi-rr-document-paid:before {
content: "\f578";
}
.fi-rr-document-signed:before {
content: "\f579";
}
.fi-rr-document:before {
content: "\f57a";
}
.fi-rr-dog-leashed:before {
content: "\f57b";
}
.fi-rr-dog:before {
content: "\f57c";
}
.fi-rr-dollar:before {
content: "\f57d";
}
.fi-rr-dolly-flatbed-alt:before {
content: "\f57e";
}
.fi-rr-dolly-flatbed-empty:before {
content: "\f57f";
}
.fi-rr-dolly-flatbed:before {
content: "\f580";
}
.fi-rr-dolphin:before {
content: "\f581";
}
.fi-rr-domino-effect:before {
content: "\f582";
}
.fi-rr-donate:before {
content: "\f583";
}
.fi-rr-dong-sign:before {
content: "\f584";
}
.fi-rr-donut:before {
content: "\f585";
}
.fi-rr-door-closed:before {
content: "\f586";
}
.fi-rr-door-open:before {
content: "\f587";
}
.fi-rr-dot-circle:before {
content: "\f588";
}
.fi-rr-dot-pending:before {
content: "\f589";
}
.fi-rr-dove:before {
content: "\f58a";
}
.fi-rr-down-from-bracket:before {
content: "\f58b";
}
.fi-rr-down-left-and-up-right-to-center:before {
content: "\f58c";
}
.fi-rr-down-left:before {
content: "\f58d";
}
.fi-rr-down-right:before {
content: "\f58e";
}
.fi-rr-down-to-line:before {
content: "\f58f";
}
.fi-rr-down:before {
content: "\f590";
}
.fi-rr-download:before {
content: "\f591";
}
.fi-rr-drafting-compass:before {
content: "\f592";
}
.fi-rr-dragon:before {
content: "\f593";
}
.fi-rr-draw-polygon:before {
content: "\f594";
}
.fi-rr-draw-square:before {
content: "\f595";
}
.fi-rr-drawer-alt:before {
content: "\f596";
}
.fi-rr-drawer-empty:before {
content: "\f597";
}
.fi-rr-drawer:before {
content: "\f598";
}
.fi-rr-dreidel:before {
content: "\f599";
}
.fi-rr-drink-alt:before {
content: "\f59a";
}
.fi-rr-driver-man:before {
content: "\f59b";
}
.fi-rr-driver-woman:before {
content: "\f59c";
}
.fi-rr-drone-alt:before {
content: "\f59d";
}
.fi-rr-drone-front:before {
content: "\f59e";
}
.fi-rr-drone:before {
content: "\f59f";
}
.fi-rr-drop-down:before {
content: "\f5a0";
}
.fi-rr-dropdown-select:before {
content: "\f5a1";
}
.fi-rr-dropdown:before {
content: "\f5a2";
}
.fi-rr-drum-steelpan:before {
content: "\f5a3";
}
.fi-rr-drum:before {
content: "\f5a4";
}
.fi-rr-drumstick-bite:before {
content: "\f5a5";
}
.fi-rr-drumstick:before {
content: "\f5a6";
}
.fi-rr-dryer-alt:before {
content: "\f5a7";
}
.fi-rr-dryer:before {
content: "\f5a8";
}
.fi-rr-duck:before {
content: "\f5a9";
}
.fi-rr-dumbbell-fitness:before {
content: "\f5aa";
}
.fi-rr-dumbbell-horizontal:before {
content: "\f5ab";
}
.fi-rr-dumbbell-ray:before {
content: "\f5ac";
}
.fi-rr-dumbbell-weightlifting:before {
content: "\f5ad";
}
.fi-rr-dumpster-fire:before {
content: "\f5ae";
}
.fi-rr-dumpster:before {
content: "\f5af";
}
.fi-rr-dungeon:before {
content: "\f5b0";
}
.fi-rr-duplicate:before {
content: "\f5b1";
}
.fi-rr-duration-alt:before {
content: "\f5b2";
}
.fi-rr-duration:before {
content: "\f5b3";
}
.fi-rr-e-learning:before {
content: "\f5b4";
}
.fi-rr-e:before {
content: "\f5b5";
}
.fi-rr-ear-deaf:before {
content: "\f5b6";
}
.fi-rr-ear-muffs:before {
content: "\f5b7";
}
.fi-rr-ear:before {
content: "\f5b8";
}
.fi-rr-earnings:before {
content: "\f5b9";
}
.fi-rr-earth-africa:before {
content: "\f5ba";
}
.fi-rr-earth-americas:before {
content: "\f5bb";
}
.fi-rr-earth-asia:before {
content: "\f5bc";
}
.fi-rr-earth-europa:before {
content: "\f5bd";
}
.fi-rr-eclipse-alt:before {
content: "\f5be";
}
.fi-rr-eclipse:before {
content: "\f5bf";
}
.fi-rr-edit-alt:before {
content: "\f5c0";
}
.fi-rr-edit:before {
content: "\f5c1";
}
.fi-rr-effect:before {
content: "\f5c2";
}
.fi-rr-egg-fried:before {
content: "\f5c3";
}
.fi-rr-egg:before {
content: "\f5c4";
}
.fi-rr-eject:before {
content: "\f5c5";
}
.fi-rr-elephant:before {
content: "\f5c6";
}
.fi-rr-elevator:before {
content: "\f5c7";
}
.fi-rr-email-pending:before {
content: "\f5c8";
}
.fi-rr-employee-alt:before {
content: "\f5c9";
}
.fi-rr-employee-handbook:before {
content: "\f5ca";
}
.fi-rr-employee-man-alt:before {
content: "\f5cb";
}
.fi-rr-employee-man:before {
content: "\f5cc";
}
.fi-rr-employees-woman-man:before {
content: "\f5cd";
}
.fi-rr-employees:before {
content: "\f5ce";
}
.fi-rr-empty-set:before {
content: "\f5cf";
}
.fi-rr-endless-loop:before {
content: "\f5d0";
}
.fi-rr-engine-warning:before {
content: "\f5d1";
}
.fi-rr-engine:before {
content: "\f5d2";
}
.fi-rr-enter:before {
content: "\f5d3";
}
.fi-rr-envelope-ban:before {
content: "\f5d4";
}
.fi-rr-envelope-bulk:before {
content: "\f5d5";
}
.fi-rr-envelope-dot:before {
content: "\f5d6";
}
.fi-rr-envelope-download:before {
content: "\f5d7";
}
.fi-rr-envelope-heart:before {
content: "\f5d8";
}
.fi-rr-envelope-marker:before {
content: "\f5d9";
}
.fi-rr-envelope-open-dollar:before {
content: "\f5da";
}
.fi-rr-envelope-open-text:before {
content: "\f5db";
}
.fi-rr-envelope-open:before {
content: "\f5dc";
}
.fi-rr-envelope-plus:before {
content: "\f5dd";
}
.fi-rr-envelope:before {
content: "\f5de";
}
.fi-rr-envelopes:before {
content: "\f5df";
}
.fi-rr-equality:before {
content: "\f5e0";
}
.fi-rr-equals:before {
content: "\f5e1";
}
.fi-rr-eraser:before {
content: "\f5e2";
}
.fi-rr-error-camera:before {
content: "\f5e3";
}
.fi-rr-escalator:before {
content: "\f5e4";
}
.fi-rr-ethernet:before {
content: "\f5e5";
}
.fi-rr-euro:before {
content: "\f5e6";
}
.fi-rr-excavator:before {
content: "\f5e7";
}
.fi-rr-exchange-alt:before {
content: "\f5e8";
}
.fi-rr-exchange-cryptocurrency:before {
content: "\f5e9";
}
.fi-rr-exchange:before {
content: "\f5ea";
}
.fi-rr-exclamation:before {
content: "\f5eb";
}
.fi-rr-exit-alt:before {
content: "\f5ec";
}
.fi-rr-exit:before {
content: "\f5ed";
}
.fi-rr-expand-arrows-alt:before {
content: "\f5ee";
}
.fi-rr-expand-arrows:before {
content: "\f5ef";
}
.fi-rr-expand:before {
content: "\f5f0";
}
.fi-rr-expense-bill:before {
content: "\f5f1";
}
.fi-rr-expense:before {
content: "\f5f2";
}
.fi-rr-external-hard-drive:before {
content: "\f5f3";
}
.fi-rr-external-world:before {
content: "\f5f4";
}
.fi-rr-eye-crossed:before {
content: "\f5f5";
}
.fi-rr-eye-dropper-half:before {
content: "\f5f6";
}
.fi-rr-eye-dropper:before {
content: "\f5f7";
}
.fi-rr-eye:before {
content: "\f5f8";
}
.fi-rr-eyes:before {
content: "\f5f9";
}
.fi-rr-f:before {
content: "\f5fa";
}
.fi-rr-fabric:before {
content: "\f5fb";
}
.fi-rr-face-angry-horns:before {
content: "\f5fc";
}
.fi-rr-face-anguished:before {
content: "\f5fd";
}
.fi-rr-face-anxious-sweat:before {
content: "\f5fe";
}
.fi-rr-face-astonished:before {
content: "\f5ff";
}
.fi-rr-face-awesome:before {
content: "\f600";
}
.fi-rr-face-beam-hand-over-mouth:before {
content: "\f601";
}
.fi-rr-face-confounded:before {
content: "\f602";
}
.fi-rr-face-confused:before {
content: "\f603";
}
.fi-rr-face-cowboy-hat:before {
content: "\f604";
}
.fi-rr-face-disappointed:before {
content: "\f605";
}
.fi-rr-face-disguise:before {
content: "\f606";
}
.fi-rr-face-downcast-sweat:before {
content: "\f607";
}
.fi-rr-face-drooling:before {
content: "\f608";
}
.fi-rr-face-explode:before {
content: "\f609";
}
.fi-rr-face-expressionless:before {
content: "\f60a";
}
.fi-rr-face-eyes-xmarks:before {
content: "\f60b";
}
.fi-rr-face-fearful:before {
content: "\f60c";
}
.fi-rr-face-glasses:before {
content: "\f60d";
}
.fi-rr-face-grin-tongue-wink:before {
content: "\f60e";
}
.fi-rr-face-hand-yawn:before {
content: "\f60f";
}
.fi-rr-face-head-bandage:before {
content: "\f610";
}
.fi-rr-face-hushed:before {
content: "\f611";
}
.fi-rr-face-icicles:before {
content: "\f612";
}
.fi-rr-face-lying:before {
content: "\f613";
}
.fi-rr-face-mask:before {
content: "\f614";
}
.fi-rr-face-monocle:before {
content: "\f615";
}
.fi-rr-face-nauseated:before {
content: "\f616";
}
.fi-rr-face-nose-steam:before {
content: "\f617";
}
.fi-rr-face-party:before {
content: "\f618";
}
.fi-rr-face-pensive:before {
content: "\f619";
}
.fi-rr-face-persevering:before {
content: "\f61a";
}
.fi-rr-face-pleading:before {
content: "\f61b";
}
.fi-rr-face-raised-eyebrow:before {
content: "\f61c";
}
.fi-rr-face-relieved:before {
content: "\f61d";
}
.fi-rr-face-sad-sweat:before {
content: "\f61e";
}
.fi-rr-face-scream:before {
content: "\f61f";
}
.fi-rr-face-shush:before {
content: "\f620";
}
.fi-rr-face-sleeping:before {
content: "\f621";
}
.fi-rr-face-sleepy:before {
content: "\f622";
}
.fi-rr-face-smile-halo:before {
content: "\f623";
}
.fi-rr-face-smile-hearts:before {
content: "\f624";
}
.fi-rr-face-smile-horns:before {
content: "\f625";
}
.fi-rr-face-smile-tear:before {
content: "\f626";
}
.fi-rr-face-smile-tongue:before {
content: "\f627";
}
.fi-rr-face-smile-upside-down:before {
content: "\f628";
}
.fi-rr-face-smiling-hands:before {
content: "\f629";
}
.fi-rr-face-smirking:before {
content: "\f62a";
}
.fi-rr-face-sunglasses-alt:before {
content: "\f62b";
}
.fi-rr-face-sunglasses:before {
content: "\f62c";
}
.fi-rr-face-swear:before {
content: "\f62d";
}
.fi-rr-face-thermometer:before {
content: "\f62e";
}
.fi-rr-face-thinking:before {
content: "\f62f";
}
.fi-rr-face-tissue:before {
content: "\f630";
}
.fi-rr-face-tongue-money:before {
content: "\f631";
}
.fi-rr-face-tongue-sweat:before {
content: "\f632";
}
.fi-rr-face-unamused:before {
content: "\f633";
}
.fi-rr-face-viewfinder:before {
content: "\f634";
}
.fi-rr-face-vomit:before {
content: "\f635";
}
.fi-rr-face-weary:before {
content: "\f636";
}
.fi-rr-face-woozy:before {
content: "\f637";
}
.fi-rr-face-worried:before {
content: "\f638";
}
.fi-rr-face-zany:before {
content: "\f639";
}
.fi-rr-face-zipper:before {
content: "\f63a";
}
.fi-rr-fail:before {
content: "\f63b";
}
.fi-rr-falafel:before {
content: "\f63c";
}
.fi-rr-family-dress:before {
content: "\f63d";
}
.fi-rr-family-pants:before {
content: "\f63e";
}
.fi-rr-family:before {
content: "\f63f";
}
.fi-rr-fan-table:before {
content: "\f640";
}
.fi-rr-fan:before {
content: "\f641";
}
.fi-rr-farm:before {
content: "\f642";
}
.fi-rr-faucet-drip:before {
content: "\f643";
}
.fi-rr-faucet:before {
content: "\f644";
}
.fi-rr-fax:before {
content: "\f645";
}
.fi-rr-feather-pointed:before {
content: "\f646";
}
.fi-rr-feather:before {
content: "\f647";
}
.fi-rr-features-alt:before {
content: "\f648";
}
.fi-rr-features:before {
content: "\f649";
}
.fi-rr-fee-receipt:before {
content: "\f64a";
}
.fi-rr-fee:before {
content: "\f64b";
}
.fi-rr-feedback-alt:before {
content: "\f64c";
}
.fi-rr-feedback-cycle-loop:before {
content: "\f64d";
}
.fi-rr-feedback-hand:before {
content: "\f64e";
}
.fi-rr-feedback-review:before {
content: "\f64f";
}
.fi-rr-feedback:before {
content: "\f650";
}
.fi-rr-fence:before {
content: "\f651";
}
.fi-rr-ferris-wheel:before {
content: "\f652";
}
.fi-rr-fighter-jet:before {
content: "\f653";
}
.fi-rr-file-ai:before {
content: "\f654";
}
.fi-rr-file-audio:before {
content: "\f655";
}
.fi-rr-file-binary:before {
content: "\f656";
}
.fi-rr-file-chart-line:before {
content: "\f657";
}
.fi-rr-file-chart-pie:before {
content: "\f658";
}
.fi-rr-file-circle-info:before {
content: "\f659";
}
.fi-rr-file-cloud:before {
content: "\f65a";
}
.fi-rr-file-code:before {
content: "\f65b";
}
.fi-rr-file-csv:before {
content: "\f65c";
}
.fi-rr-file-download:before {
content: "\f65d";
}
.fi-rr-file-edit:before {
content: "\f65e";
}
.fi-rr-file-eps:before {
content: "\f65f";
}
.fi-rr-file-excel:before {
content: "\f660";
}
.fi-rr-file-exclamation:before {
content: "\f661";
}
.fi-rr-file-export:before {
content: "\f662";
}
.fi-rr-file-image:before {
content: "\f663";
}
.fi-rr-file-import:before {
content: "\f664";
}
.fi-rr-file-invoice-dollar:before {
content: "\f665";
}
.fi-rr-file-invoice:before {
content: "\f666";
}
.fi-rr-file-medical-alt:before {
content: "\f667";
}
.fi-rr-file-medical:before {
content: "\f668";
}
.fi-rr-file-minus:before {
content: "\f669";
}
.fi-rr-file-pdf:before {
content: "\f66a";
}
.fi-rr-file-powerpoint:before {
content: "\f66b";
}
.fi-rr-file-prescription:before {
content: "\f66c";
}
.fi-rr-file-psd:before {
content: "\f66d";
}
.fi-rr-file-signature:before {
content: "\f66e";
}
.fi-rr-file-spreadsheet:before {
content: "\f66f";
}
.fi-rr-file-upload:before {
content: "\f670";
}
.fi-rr-file-user:before {
content: "\f671";
}
.fi-rr-file-video:before {
content: "\f672";
}
.fi-rr-file-word:before {
content: "\f673";
}
.fi-rr-file-zipper:before {
content: "\f674";
}
.fi-rr-file:before {
content: "\f675";
}
.fi-rr-files-medical:before {
content: "\f676";
}
.fi-rr-fill:before {
content: "\f677";
}
.fi-rr-film-canister:before {
content: "\f678";
}
.fi-rr-film-slash:before {
content: "\f679";
}
.fi-rr-film:before {
content: "\f67a";
}
.fi-rr-films:before {
content: "\f67b";
}
.fi-rr-filter-list:before {
content: "\f67c";
}
.fi-rr-filter-slash:before {
content: "\f67d";
}
.fi-rr-filter:before {
content: "\f67e";
}
.fi-rr-filters:before {
content: "\f67f";
}
.fi-rr-fingerprint-security-risk:before {
content: "\f680";
}
.fi-rr-fingerprint:before {
content: "\f681";
}
.fi-rr-fire-burner:before {
content: "\f682";
}
.fi-rr-fire-extinguisher:before {
content: "\f683";
}
.fi-rr-fire-flame-curved:before {
content: "\f684";
}
.fi-rr-fire-flame-simple:before {
content: "\f685";
}
.fi-rr-fire-hydrant:before {
content: "\f686";
}
.fi-rr-fire-smoke:before {
content: "\f687";
}
.fi-rr-fireplace:before {
content: "\f688";
}
.fi-rr-first-award:before {
content: "\f689";
}
.fi-rr-first-laurel:before {
content: "\f68a";
}
.fi-rr-first-medal:before {
content: "\f68b";
}
.fi-rr-first:before {
content: "\f68c";
}
.fi-rr-fish-bones:before {
content: "\f68d";
}
.fi-rr-fish-cooked:before {
content: "\f68e";
}
.fi-rr-fish:before {
content: "\f68f";
}
.fi-rr-fishing-rod:before {
content: "\f690";
}
.fi-rr-fist-move:before {
content: "\f691";
}
.fi-rr-flag-alt:before {
content: "\f692";
}
.fi-rr-flag-checkered:before {
content: "\f693";
}
.fi-rr-flag-usa:before {
content: "\f694";
}
.fi-rr-flag:before {
content: "\f695";
}
.fi-rr-flame:before {
content: "\f696";
}
.fi-rr-flashlight:before {
content: "\f697";
}
.fi-rr-flask-gear:before {
content: "\f698";
}
.fi-rr-flask-poison:before {
content: "\f699";
}
.fi-rr-flask-potion:before {
content: "\f69a";
}
.fi-rr-flask:before {
content: "\f69b";
}
.fi-rr-flatbread-stuffed:before {
content: "\f69c";
}
.fi-rr-flatbread:before {
content: "\f69d";
}
.fi-rr-flip-horizontal:before {
content: "\f69e";
}
.fi-rr-floor-alt:before {
content: "\f69f";
}
.fi-rr-floor-layer:before {
content: "\f6a0";
}
.fi-rr-floor:before {
content: "\f6a1";
}
.fi-rr-floppy-disk-circle-arrow-right:before {
content: "\f6a2";
}
.fi-rr-floppy-disk-circle-xmark:before {
content: "\f6a3";
}
.fi-rr-floppy-disk-pen:before {
content: "\f6a4";
}
.fi-rr-floppy-disks:before {
content: "\f6a5";
}
.fi-rr-florin-sign:before {
content: "\f6a6";
}
.fi-rr-flower-bouquet:before {
content: "\f6a7";
}
.fi-rr-flower-butterfly:before {
content: "\f6a8";
}
.fi-rr-flower-daffodil:before {
content: "\f6a9";
}
.fi-rr-flower-tulip:before {
content: "\f6aa";
}
.fi-rr-flower:before {
content: "\f6ab";
}
.fi-rr-flushed:before {
content: "\f6ac";
}
.fi-rr-flute:before {
content: "\f6ad";
}
.fi-rr-flux-capacitor:before {
content: "\f6ae";
}
.fi-rr-fly-insect:before {
content: "\f6af";
}
.fi-rr-flying-disc:before {
content: "\f6b0";
}
.fi-rr-fog:before {
content: "\f6b1";
}
.fi-rr-folder-download:before {
content: "\f6b2";
}
.fi-rr-folder-fire:before {
content: "\f6b3";
}
.fi-rr-folder-minus:before {
content: "\f6b4";
}
.fi-rr-folder-open:before {
content: "\f6b5";
}
.fi-rr-folder-times:before {
content: "\f6b6";
}
.fi-rr-folder-tree:before {
content: "\f6b7";
}
.fi-rr-folder-upload:before {
content: "\f6b8";
}
.fi-rr-folder-xmark:before {
content: "\f6b9";
}
.fi-rr-folder:before {
content: "\f6ba";
}
.fi-rr-folders:before {
content: "\f6bb";
}
.fi-rr-follow-folder:before {
content: "\f6bc";
}
.fi-rr-followcollection:before {
content: "\f6bd";
}
.fi-rr-following:before {
content: "\f6be";
}
.fi-rr-fondue-pot:before {
content: "\f6bf";
}
.fi-rr-football:before {
content: "\f6c0";
}
.fi-rr-foreign-language-audio:before {
content: "\f6c1";
}
.fi-rr-fork:before {
content: "\f6c2";
}
.fi-rr-forklift:before {
content: "\f6c3";
}
.fi-rr-form:before {
content: "\f6c4";
}
.fi-rr-fort:before {
content: "\f6c5";
}
.fi-rr-forward-fast:before {
content: "\f6c6";
}
.fi-rr-forward:before {
content: "\f6c7";
}
.fi-rr-fox:before {
content: "\f6c8";
}
.fi-rr-frame:before {
content: "\f6c9";
}
.fi-rr-franc-sign:before {
content: "\f6ca";
}
.fi-rr-free-delivery:before {
content: "\f6cb";
}
.fi-rr-free:before {
content: "\f6cc";
}
.fi-rr-french-fries:before {
content: "\f6cd";
}
.fi-rr-friday:before {
content: "\f6ce";
}
.fi-rr-frog:before {
content: "\f6cf";
}
.fi-rr-frown:before {
content: "\f6d0";
}
.fi-rr-ftp:before {
content: "\f6d1";
}
.fi-rr-fuel-gauge:before {
content: "\f6d2";
}
.fi-rr-function-process:before {
content: "\f6d3";
}
.fi-rr-function-square:before {
content: "\f6d4";
}
.fi-rr-function:before {
content: "\f6d5";
}
.fi-rr-funnel-dollar:before {
content: "\f6d6";
}
.fi-rr-g:before {
content: "\f6d7";
}
.fi-rr-galaxy-alt:before {
content: "\f6d8";
}
.fi-rr-galaxy-planet:before {
content: "\f6d9";
}
.fi-rr-galaxy-star:before {
content: "\f6da";
}
.fi-rr-galaxy:before {
content: "\f6db";
}
.fi-rr-gallery-thumbnails:before {
content: "\f6dc";
}
.fi-rr-gallery:before {
content: "\f6dd";
}
.fi-rr-game-board-alt:before {
content: "\f6de";
}
.fi-rr-gamepad:before {
content: "\f6df";
}
.fi-rr-garage-car:before {
content: "\f6e0";
}
.fi-rr-garage-open:before {
content: "\f6e1";
}
.fi-rr-garage:before {
content: "\f6e2";
}
.fi-rr-garlic-alt:before {
content: "\f6e3";
}
.fi-rr-garlic:before {
content: "\f6e4";
}
.fi-rr-gas-pump-alt:before {
content: "\f6e5";
}
.fi-rr-gas-pump-slash:before {
content: "\f6e6";
}
.fi-rr-gas-pump:before {
content: "\f6e7";
}
.fi-rr-gauge-circle-bolt:before {
content: "\f6e8";
}
.fi-rr-gauge-circle-minus:before {
content: "\f6e9";
}
.fi-rr-gauge-circle-plus:before {
content: "\f6ea";
}
.fi-rr-gavel:before {
content: "\f6eb";
}
.fi-rr-gay-couple:before {
content: "\f6ec";
}
.fi-rr-gears:before {
content: "\f6ed";
}
.fi-rr-gem:before {
content: "\f6ee";
}
.fi-rr-general:before {
content: "\f6ef";
}
.fi-rr-ghost:before {
content: "\f6f0";
}
.fi-rr-gif-square:before {
content: "\f6f1";
}
.fi-rr-gif:before {
content: "\f6f2";
}
.fi-rr-gift-box-benefits:before {
content: "\f6f3";
}
.fi-rr-gift-card:before {
content: "\f6f4";
}
.fi-rr-gift:before {
content: "\f6f5";
}
.fi-rr-gifts:before {
content: "\f6f6";
}
.fi-rr-gingerbread-man:before {
content: "\f6f7";
}
.fi-rr-glass-champagne:before {
content: "\f6f8";
}
.fi-rr-glass-cheers:before {
content: "\f6f9";
}
.fi-rr-glass-citrus:before {
content: "\f6fa";
}
.fi-rr-glass-empty:before {
content: "\f6fb";
}
.fi-rr-glass-half:before {
content: "\f6fc";
}
.fi-rr-glass-water-droplet:before {
content: "\f6fd";
}
.fi-rr-glass-whiskey-rocks:before {
content: "\f6fe";
}
.fi-rr-glass-whiskey:before {
content: "\f6ff";
}
.fi-rr-glass:before {
content: "\f700";
}
.fi-rr-glasses:before {
content: "\f701";
}
.fi-rr-globe-alt:before {
content: "\f702";
}
.fi-rr-globe-pointer:before {
content: "\f703";
}
.fi-rr-globe-snow:before {
content: "\f704";
}
.fi-rr-globe:before {
content: "\f705";
}
.fi-rr-goal-net:before {
content: "\f706";
}
.fi-rr-golf-ball:before {
content: "\f707";
}
.fi-rr-golf-hole:before {
content: "\f708";
}
.fi-rr-golf:before {
content: "\f709";
}
.fi-rr-gopuram:before {
content: "\f70a";
}
.fi-rr-government-budget:before {
content: "\f70b";
}
.fi-rr-government-flag:before {
content: "\f70c";
}
.fi-rr-government-user:before {
content: "\f70d";
}
.fi-rr-gps-navigation:before {
content: "\f70e";
}
.fi-rr-graduation-cap:before {
content: "\f70f";
}
.fi-rr-gramophone:before {
content: "\f710";
}
.fi-rr-grape:before {
content: "\f711";
}
.fi-rr-graph-curve:before {
content: "\f712";
}
.fi-rr-graphic-style:before {
content: "\f713";
}
.fi-rr-graphic-tablet:before {
content: "\f714";
}
.fi-rr-grate-droplet:before {
content: "\f715";
}
.fi-rr-grate:before {
content: "\f716";
}
.fi-rr-greater-than-equal:before {
content: "\f717";
}
.fi-rr-greater-than:before {
content: "\f718";
}
.fi-rr-greek-helmet:before {
content: "\f719";
}
.fi-rr-grid-alt:before {
content: "\f71a";
}
.fi-rr-grid-dividers:before {
content: "\f71b";
}
.fi-rr-grid:before {
content: "\f71c";
}
.fi-rr-grill-hot-alt:before {
content: "\f71d";
}
.fi-rr-grill:before {
content: "\f71e";
}
.fi-rr-grimace:before {
content: "\f71f";
}
.fi-rr-grin-alt:before {
content: "\f720";
}
.fi-rr-grin-beam-sweat:before {
content: "\f721";
}
.fi-rr-grin-beam:before {
content: "\f722";
}
.fi-rr-grin-hearts:before {
content: "\f723";
}
.fi-rr-grin-squint-tears:before {
content: "\f724";
}
.fi-rr-grin-squint:before {
content: "\f725";
}
.fi-rr-grin-stars:before {
content: "\f726";
}
.fi-rr-grin-tears:before {
content: "\f727";
}
.fi-rr-grin-tongue-squint:before {
content: "\f728";
}
.fi-rr-grin-tongue-wink:before {
content: "\f729";
}
.fi-rr-grin-tongue:before {
content: "\f72a";
}
.fi-rr-grin-wink:before {
content: "\f72b";
}
.fi-rr-grin:before {
content: "\f72c";
}
.fi-rr-grip-dots-vertical:before {
content: "\f72d";
}
.fi-rr-grip-dots:before {
content: "\f72e";
}
.fi-rr-grip-horizontal:before {
content: "\f72f";
}
.fi-rr-grip-lines-vertical:before {
content: "\f730";
}
.fi-rr-grip-lines:before {
content: "\f731";
}
.fi-rr-grip-vertical:before {
content: "\f732";
}
.fi-rr-grocery-bag:before {
content: "\f733";
}
.fi-rr-grocery-basket:before {
content: "\f734";
}
.fi-rr-group-arrows-rotate:before {
content: "\f735";
}
.fi-rr-group-call:before {
content: "\f736";
}
.fi-rr-group-community-social-media:before {
content: "\f737";
}
.fi-rr-growth-chart-invest:before {
content: "\f738";
}
.fi-rr-guarani-sign:before {
content: "\f739";
}
.fi-rr-guide-alt:before {
content: "\f73a";
}
.fi-rr-guide:before {
content: "\f73b";
}
.fi-rr-guitar-electric:before {
content: "\f73c";
}
.fi-rr-guitar:before {
content: "\f73d";
}
.fi-rr-guitars:before {
content: "\f73e";
}
.fi-rr-gun-squirt:before {
content: "\f73f";
}
.fi-rr-gym:before {
content: "\f740";
}
.fi-rr-h-square:before {
content: "\f741";
}
.fi-rr-h:before {
content: "\f742";
}
.fi-rr-h1:before {
content: "\f743";
}
.fi-rr-h2:before {
content: "\f744";
}
.fi-rr-h3:before {
content: "\f745";
}
.fi-rr-h4:before {
content: "\f746";
}
.fi-rr-hair-clipper:before {
content: "\f747";
}
.fi-rr-hamburger-soda:before {
content: "\f748";
}
.fi-rr-hamburger:before {
content: "\f749";
}
.fi-rr-hammer-crash:before {
content: "\f74a";
}
.fi-rr-hammer-war:before {
content: "\f74b";
}
.fi-rr-hammer:before {
content: "\f74c";
}
.fi-rr-hamsa:before {
content: "\f74d";
}
.fi-rr-hand-back-fist:before {
content: "\f74e";
}
.fi-rr-hand-back-point-down:before {
content: "\f74f";
}
.fi-rr-hand-back-point-left:before {
content: "\f750";
}
.fi-rr-hand-back-point-ribbon:before {
content: "\f751";
}
.fi-rr-hand-back-point-right:before {
content: "\f752";
}
.fi-rr-hand-bill:before {
content: "\f753";
}
.fi-rr-hand-dots:before {
content: "\f754";
}
.fi-rr-hand-fingers-crossed:before {
content: "\f755";
}
.fi-rr-hand-fist:before {
content: "\f756";
}
.fi-rr-hand-heart:before {
content: "\f757";
}
.fi-rr-hand-holding-box:before {
content: "\f758";
}
.fi-rr-hand-holding-droplet:before {
content: "\f759";
}
.fi-rr-hand-holding-heart:before {
content: "\f75a";
}
.fi-rr-hand-holding-magic:before {
content: "\f75b";
}
.fi-rr-hand-holding-medical:before {
content: "\f75c";
}
.fi-rr-hand-holding-seeding:before {
content: "\f75d";
}
.fi-rr-hand-holding-skull:before {
content: "\f75e";
}
.fi-rr-hand-holding-usd:before {
content: "\f75f";
}
.fi-rr-hand-holding-water:before {
content: "\f760";
}
.fi-rr-hand-horns:before {
content: "\f761";
}
.fi-rr-hand-lizard:before {
content: "\f762";
}
.fi-rr-hand-love:before {
content: "\f763";
}
.fi-rr-hand-middle-finger:before {
content: "\f764";
}
.fi-rr-hand-paper:before {
content: "\f765";
}
.fi-rr-hand-peace:before {
content: "\f766";
}
.fi-rr-hand-point-ribbon:before {
content: "\f767";
}
.fi-rr-hand-scissors:before {
content: "\f768";
}
.fi-rr-hand-sparkles:before {
content: "\f769";
}
.fi-rr-hand-spock:before {
content: "\f76a";
}
.fi-rr-hand-wave:before {
content: "\f76b";
}
.fi-rr-hand:before {
content: "\f76c";
}
.fi-rr-handmade:before {
content: "\f76d";
}
.fi-rr-hands-bubbles:before {
content: "\f76e";
}
.fi-rr-hands-clapping:before {
content: "\f76f";
}
.fi-rr-hands-heart:before {
content: "\f770";
}
.fi-rr-hands-holding-diamond:before {
content: "\f771";
}
.fi-rr-hands-holding:before {
content: "\f772";
}
.fi-rr-hands-usd:before {
content: "\f773";
}
.fi-rr-handshake-angle:before {
content: "\f774";
}
.fi-rr-handshake-deal-loan:before {
content: "\f775";
}
.fi-rr-handshake-house:before {
content: "\f776";
}
.fi-rr-handshake-simple-slash:before {
content: "\f777";
}
.fi-rr-handshake-trust:before {
content: "\f778";
}
.fi-rr-handshake:before {
content: "\f779";
}
.fi-rr-hard-hat:before {
content: "\f77a";
}
.fi-rr-hashtag-lock:before {
content: "\f77b";
}
.fi-rr-hastag:before {
content: "\f77c";
}
.fi-rr-hat-beach:before {
content: "\f77d";
}
.fi-rr-hat-birthday:before {
content: "\f77e";
}
.fi-rr-hat-chef:before {
content: "\f77f";
}
.fi-rr-hat-cowboy-side:before {
content: "\f780";
}
.fi-rr-hat-cowboy:before {
content: "\f781";
}
.fi-rr-hat-santa:before {
content: "\f782";
}
.fi-rr-hat-winter:before {
content: "\f783";
}
.fi-rr-hat-witch:before {
content: "\f784";
}
.fi-rr-hat-wizard:before {
content: "\f785";
}
.fi-rr-hdd:before {
content: "\f786";
}
.fi-rr-head-side-brain:before {
content: "\f787";
}
.fi-rr-head-side-cough-slash:before {
content: "\f788";
}
.fi-rr-head-side-cough:before {
content: "\f789";
}
.fi-rr-head-side-headphones:before {
content: "\f78a";
}
.fi-rr-head-side-heart:before {
content: "\f78b";
}
.fi-rr-head-side-mask:before {
content: "\f78c";
}
.fi-rr-head-side-medical:before {
content: "\f78d";
}
.fi-rr-head-side-thinking:before {
content: "\f78e";
}
.fi-rr-head-side-virus:before {
content: "\f78f";
}
.fi-rr-head-side:before {
content: "\f790";
}
.fi-rr-head-vr:before {
content: "\f791";
}
.fi-rr-heading:before {
content: "\f792";
}
.fi-rr-headphones:before {
content: "\f793";
}
.fi-rr-headset:before {
content: "\f794";
}
.fi-rr-heart-arrow:before {
content: "\f795";
}
.fi-rr-heart-brain:before {
content: "\f796";
}
.fi-rr-heart-crack:before {
content: "\f797";
}
.fi-rr-heart-half-stroke:before {
content: "\f798";
}
.fi-rr-heart-half:before {
content: "\f799";
}
.fi-rr-heart-health-muscle:before {
content: "\f79a";
}
.fi-rr-heart-lock:before {
content: "\f79b";
}
.fi-rr-heart-partner-handshake:before {
content: "\f79c";
}
.fi-rr-heart-rate:before {
content: "\f79d";
}
.fi-rr-heart-slash:before {
content: "\f79e";
}
.fi-rr-heart-upside-down:before {
content: "\f79f";
}
.fi-rr-heart:before {
content: "\f7a0";
}
.fi-rr-heat:before {
content: "\f7a1";
}
.fi-rr-helicopter-side:before {
content: "\f7a2";
}
.fi-rr-helmet-battle:before {
content: "\f7a3";
}
.fi-rr-hexagon-check:before {
content: "\f7a4";
}
.fi-rr-hexagon-divide:before {
content: "\f7a5";
}
.fi-rr-hexagon-exclamation:before {
content: "\f7a6";
}
.fi-rr-hexagon:before {
content: "\f7a7";
}
.fi-rr-high-definition:before {
content: "\f7a8";
}
.fi-rr-high-five-celebration-yes:before {
content: "\f7a9";
}
.fi-rr-high-five:before {
content: "\f7aa";
}
.fi-rr-highlighter-line:before {
content: "\f7ab";
}
.fi-rr-highlighter:before {
content: "\f7ac";
}
.fi-rr-hiking:before {
content: "\f7ad";
}
.fi-rr-hippo:before {
content: "\f7ae";
}
.fi-rr-hockey-puck:before {
content: "\f7af";
}
.fi-rr-hockey-stick-puck:before {
content: "\f7b0";
}
.fi-rr-hockey-sticks:before {
content: "\f7b1";
}
.fi-rr-holding-hand-gear:before {
content: "\f7b2";
}
.fi-rr-holding-hand-revenue:before {
content: "\f7b3";
}
.fi-rr-holly-berry:before {
content: "\f7b4";
}
.fi-rr-home-heart:before {
content: "\f7b5";
}
.fi-rr-home-location-alt:before {
content: "\f7b6";
}
.fi-rr-home-location:before {
content: "\f7b7";
}
.fi-rr-home:before {
content: "\f7b8";
}
.fi-rr-honey-pot:before {
content: "\f7b9";
}
.fi-rr-hood-cloak:before {
content: "\f7ba";
}
.fi-rr-horizontal-rule:before {
content: "\f7bb";
}
.fi-rr-horse-head:before {
content: "\f7bc";
}
.fi-rr-horse-saddle:before {
content: "\f7bd";
}
.fi-rr-horse:before {
content: "\f7be";
}
.fi-rr-horseshoe-broken:before {
content: "\f7bf";
}
.fi-rr-horseshoe:before {
content: "\f7c0";
}
.fi-rr-hose-reel:before {
content: "\f7c1";
}
.fi-rr-hose:before {
content: "\f7c2";
}
.fi-rr-hospital-symbol:before {
content: "\f7c3";
}
.fi-rr-hospital-user:before {
content: "\f7c4";
}
.fi-rr-hospital:before {
content: "\f7c5";
}
.fi-rr-hospitals:before {
content: "\f7c6";
}
.fi-rr-hot-tub:before {
content: "\f7c7";
}
.fi-rr-hotdog:before {
content: "\f7c8";
}
.fi-rr-hotel:before {
content: "\f7c9";
}
.fi-rr-hourglass-end:before {
content: "\f7ca";
}
.fi-rr-hourglass-start:before {
content: "\f7cb";
}
.fi-rr-hourglass:before {
content: "\f7cc";
}
.fi-rr-house-blank:before {
content: "\f7cd";
}
.fi-rr-house-building:before {
content: "\f7ce";
}
.fi-rr-house-chimney-blank:before {
content: "\f7cf";
}
.fi-rr-house-chimney-crack:before {
content: "\f7d0";
}
.fi-rr-house-chimney-heart:before {
content: "\f7d1";
}
.fi-rr-house-chimney-medical:before {
content: "\f7d2";
}
.fi-rr-house-chimney-user:before {
content: "\f7d3";
}
.fi-rr-house-chimney-window:before {
content: "\f7d4";
}
.fi-rr-house-chimney:before {
content: "\f7d5";
}
.fi-rr-house-circle-check:before {
content: "\f7d6";
}
.fi-rr-house-circle-exclamation:before {
content: "\f7d7";
}
.fi-rr-house-circle-xmark:before {
content: "\f7d8";
}
.fi-rr-house-crack-alt:before {
content: "\f7d9";
}
.fi-rr-house-crack:before {
content: "\f7da";
}
.fi-rr-house-day:before {
content: "\f7db";
}
.fi-rr-house-fire:before {
content: "\f7dc";
}
.fi-rr-house-flag:before {
content: "\f7dd";
}
.fi-rr-house-flood:before {
content: "\f7de";
}
.fi-rr-house-laptop:before {
content: "\f7df";
}
.fi-rr-house-leave:before {
content: "\f7e0";
}
.fi-rr-house-lock:before {
content: "\f7e1";
}
.fi-rr-house-medical:before {
content: "\f7e2";
}
.fi-rr-house-night:before {
content: "\f7e3";
}
.fi-rr-house-return:before {
content: "\f7e4";
}
.fi-rr-house-signal:before {
content: "\f7e5";
}
.fi-rr-house-tree:before {
content: "\f7e6";
}
.fi-rr-house-tsunami:before {
content: "\f7e7";
}
.fi-rr-house-turret:before {
content: "\f7e8";
}
.fi-rr-house-user:before {
content: "\f7e9";
}
.fi-rr-house-window:before {
content: "\f7ea";
}
.fi-rr-hr-group:before {
content: "\f7eb";
}
.fi-rr-hr-person:before {
content: "\f7ec";
}
.fi-rr-hr:before {
content: "\f7ed";
}
.fi-rr-hryvnia:before {
content: "\f7ee";
}
.fi-rr-humidity:before {
content: "\f7ef";
}
.fi-rr-hundred-points:before {
content: "\f7f0";
}
.fi-rr-hurricane:before {
content: "\f7f1";
}
.fi-rr-i:before {
content: "\f7f2";
}
.fi-rr-ice-cream:before {
content: "\f7f3";
}
.fi-rr-ice-skate:before {
content: "\f7f4";
}
.fi-rr-icicles:before {
content: "\f7f5";
}
.fi-rr-icon-star:before {
content: "\f7f6";
}
.fi-rr-id-badge:before {
content: "\f7f7";
}
.fi-rr-id-card-clip-alt:before {
content: "\f7f8";
}
.fi-rr-igloo:before {
content: "\f7f9";
}
.fi-rr-image-slash:before {
content: "\f7fa";
}
.fi-rr-images-user:before {
content: "\f7fb";
}
.fi-rr-images:before {
content: "\f7fc";
}
.fi-rr-improve-user:before {
content: "\f7fd";
}
.fi-rr-inbox-full:before {
content: "\f7fe";
}
.fi-rr-inbox-in:before {
content: "\f7ff";
}
.fi-rr-inbox-out:before {
content: "\f800";
}
.fi-rr-inbox:before {
content: "\f801";
}
.fi-rr-inboxes:before {
content: "\f802";
}
.fi-rr-incense-sticks-yoga:before {
content: "\f803";
}
.fi-rr-incognito:before {
content: "\f804";
}
.fi-rr-indent:before {
content: "\f805";
}
.fi-rr-indian-rupee-sign:before {
content: "\f806";
}
.fi-rr-industry-alt:before {
content: "\f807";
}
.fi-rr-industry-windows:before {
content: "\f808";
}
.fi-rr-infinity:before {
content: "\f809";
}
.fi-rr-info-guide:before {
content: "\f80a";
}
.fi-rr-info:before {
content: "\f80b";
}
.fi-rr-information:before {
content: "\f80c";
}
.fi-rr-inhaler:before {
content: "\f80d";
}
.fi-rr-input-numeric:before {
content: "\f80e";
}
.fi-rr-input-pipe:before {
content: "\f80f";
}
.fi-rr-input-text:before {
content: "\f810";
}
.fi-rr-insert-alt:before {
content: "\f811";
}
.fi-rr-insert-arrows:before {
content: "\f812";
}
.fi-rr-insert-button-circle:before {
content: "\f813";
}
.fi-rr-insert-credit-card:before {
content: "\f814";
}
.fi-rr-insert-square:before {
content: "\f815";
}
.fi-rr-insert:before {
content: "\f816";
}
.fi-rr-insight-alt:before {
content: "\f817";
}
.fi-rr-insight-head:before {
content: "\f818";
}
.fi-rr-insight:before {
content: "\f819";
}
.fi-rr-integral:before {
content: "\f81a";
}
.fi-rr-interactive:before {
content: "\f81b";
}
.fi-rr-interlining:before {
content: "\f81c";
}
.fi-rr-internet-speed-wifi:before {
content: "\f81d";
}
.fi-rr-interrogation:before {
content: "\f81e";
}
.fi-rr-intersection:before {
content: "\f81f";
}
.fi-rr-introduction-handshake:before {
content: "\f820";
}
.fi-rr-introduction:before {
content: "\f821";
}
.fi-rr-inventory-alt:before {
content: "\f822";
}
.fi-rr-invest:before {
content: "\f823";
}
.fi-rr-investment:before {
content: "\f824";
}
.fi-rr-invite-alt:before {
content: "\f825";
}
.fi-rr-invite:before {
content: "\f826";
}
.fi-rr-iot-alt:before {
content: "\f827";
}
.fi-rr-iot:before {
content: "\f828";
}
.fi-rr-ip-address:before {
content: "\f829";
}
.fi-rr-island-tropical:before {
content: "\f82a";
}
.fi-rr-issue-loupe:before {
content: "\f82b";
}
.fi-rr-it-alt:before {
content: "\f82c";
}
.fi-rr-it-computer:before {
content: "\f82d";
}
.fi-rr-it:before {
content: "\f82e";
}
.fi-rr-italian-lira-sign:before {
content: "\f82f";
}
.fi-rr-italic:before {
content: "\f830";
}
.fi-rr-j:before {
content: "\f831";
}
.fi-rr-jam:before {
content: "\f832";
}
.fi-rr-jar-alt:before {
content: "\f833";
}
.fi-rr-jar-wheat:before {
content: "\f834";
}
.fi-rr-javascript:before {
content: "\f835";
}
.fi-rr-joint:before {
content: "\f836";
}
.fi-rr-joker:before {
content: "\f837";
}
.fi-rr-journal-alt:before {
content: "\f838";
}
.fi-rr-journal:before {
content: "\f839";
}
.fi-rr-journey:before {
content: "\f83a";
}
.fi-rr-joystick:before {
content: "\f83b";
}
.fi-rr-jpg:before {
content: "\f83c";
}
.fi-rr-jug-alt:before {
content: "\f83d";
}
.fi-rr-jug-bottle:before {
content: "\f83e";
}
.fi-rr-jug:before {
content: "\f83f";
}
.fi-rr-jumping-rope:before {
content: "\f840";
}
.fi-rr-k:before {
content: "\f841";
}
.fi-rr-kaaba:before {
content: "\f842";
}
.fi-rr-kazoo:before {
content: "\f843";
}
.fi-rr-kerning:before {
content: "\f844";
}
.fi-rr-key-lock-crypto:before {
content: "\f845";
}
.fi-rr-key-skeleton-left-right:before {
content: "\f846";
}
.fi-rr-key:before {
content: "\f847";
}
.fi-rr-keyboard-brightness-low:before {
content: "\f848";
}
.fi-rr-keyboard-brightness:before {
content: "\f849";
}
.fi-rr-keyboard-down:before {
content: "\f84a";
}
.fi-rr-keyboard-left:before {
content: "\f84b";
}
.fi-rr-keyboard:before {
content: "\f84c";
}
.fi-rr-keynote:before {
content: "\f84d";
}
.fi-rr-kidneys:before {
content: "\f84e";
}
.fi-rr-kip-sign:before {
content: "\f84f";
}
.fi-rr-kiss-beam:before {
content: "\f850";
}
.fi-rr-kiss-wink-heart:before {
content: "\f851";
}
.fi-rr-kiss:before {
content: "\f852";
}
.fi-rr-kite:before {
content: "\f853";
}
.fi-rr-kiwi-bird:before {
content: "\f854";
}
.fi-rr-kiwi-fruit:before {
content: "\f855";
}
.fi-rr-knife-kitchen:before {
content: "\f856";
}
.fi-rr-knife:before {
content: "\f857";
}
.fi-rr-knitting:before {
content: "\f858";
}
.fi-rr-kpi-evaluation:before {
content: "\f859";
}
.fi-rr-kpi:before {
content: "\f85a";
}
.fi-rr-l:before {
content: "\f85b";
}
.fi-rr-label:before {
content: "\f85c";
}
.fi-rr-lacrosse-stick-ball:before {
content: "\f85d";
}
.fi-rr-lacrosse-stick:before {
content: "\f85e";
}
.fi-rr-lambda:before {
content: "\f85f";
}
.fi-rr-lamp-desk:before {
content: "\f860";
}
.fi-rr-lamp-floor:before {
content: "\f861";
}
.fi-rr-lamp-street:before {
content: "\f862";
}
.fi-rr-lamp:before {
content: "\f863";
}
.fi-rr-land-layer-location:before {
content: "\f864";
}
.fi-rr-land-layers:before {
content: "\f865";
}
.fi-rr-land-location:before {
content: "\f866";
}
.fi-rr-landmark-alt:before {
content: "\f867";
}
.fi-rr-language:before {
content: "\f868";
}
.fi-rr-laptop-arrow-down:before {
content: "\f869";
}
.fi-rr-laptop-binary:before {
content: "\f86a";
}
.fi-rr-laptop-code:before {
content: "\f86b";
}
.fi-rr-laptop-medical:before {
content: "\f86c";
}
.fi-rr-laptop-mobile:before {
content: "\f86d";
}
.fi-rr-laptop-slash:before {
content: "\f86e";
}
.fi-rr-laptop:before {
content: "\f86f";
}
.fi-rr-lari-sign:before {
content: "\f870";
}
.fi-rr-lasso-sparkles:before {
content: "\f871";
}
.fi-rr-lasso:before {
content: "\f872";
}
.fi-rr-last-square:before {
content: "\f873";
}
.fi-rr-laugh-beam:before {
content: "\f874";
}
.fi-rr-laugh-squint:before {
content: "\f875";
}
.fi-rr-laugh-wink:before {
content: "\f876";
}
.fi-rr-laugh:before {
content: "\f877";
}
.fi-rr-lawyer-man:before {
content: "\f878";
}
.fi-rr-lawyer-woman:before {
content: "\f879";
}
.fi-rr-layer-minus:before {
content: "\f87a";
}
.fi-rr-layer-plus:before {
content: "\f87b";
}
.fi-rr-layers:before {
content: "\f87c";
}
.fi-rr-layout-fluid:before {
content: "\f87d";
}
.fi-rr-lead-funnel:before {
content: "\f87e";
}
.fi-rr-lead-management:before {
content: "\f87f";
}
.fi-rr-lead:before {
content: "\f880";
}
.fi-rr-leader-alt:before {
content: "\f881";
}
.fi-rr-leader-speech:before {
content: "\f882";
}
.fi-rr-leader:before {
content: "\f883";
}
.fi-rr-leaderboard-alt:before {
content: "\f884";
}
.fi-rr-leaderboard-trophy:before {
content: "\f885";
}
.fi-rr-leaderboard:before {
content: "\f886";
}
.fi-rr-leadership-alt:before {
content: "\f887";
}
.fi-rr-leadership:before {
content: "\f888";
}
.fi-rr-leaf-heart:before {
content: "\f889";
}
.fi-rr-leaf-maple:before {
content: "\f88a";
}
.fi-rr-leaf-oak:before {
content: "\f88b";
}
.fi-rr-leaf:before {
content: "\f88c";
}
.fi-rr-leafy-green:before {
content: "\f88d";
}
.fi-rr-leave:before {
content: "\f88e";
}
.fi-rr-left-from-bracket:before {
content: "\f88f";
}
.fi-rr-left:before {
content: "\f890";
}
.fi-rr-legal:before {
content: "\f891";
}
.fi-rr-lemon:before {
content: "\f892";
}
.fi-rr-lesbian-couple:before {
content: "\f893";
}
.fi-rr-less-than-equal:before {
content: "\f894";
}
.fi-rr-less-than:before {
content: "\f895";
}
.fi-rr-lesson-class:before {
content: "\f896";
}
.fi-rr-lesson:before {
content: "\f897";
}
.fi-rr-letter-case:before {
content: "\f898";
}
.fi-rr-lettuce:before {
content: "\f899";
}
.fi-rr-level-down-alt:before {
content: "\f89a";
}
.fi-rr-level-down:before {
content: "\f89b";
}
.fi-rr-level-up-alt:before {
content: "\f89c";
}
.fi-rr-level-up:before {
content: "\f89d";
}
.fi-rr-license:before {
content: "\f89e";
}
.fi-rr-life-ring:before {
content: "\f89f";
}
.fi-rr-life:before {
content: "\f8a0";
}
.fi-rr-light-ceiling:before {
content: "\f8a1";
}
.fi-rr-light-emergency-on:before {
content: "\f8a2";
}
.fi-rr-light-emergency:before {
content: "\f8a3";
}
.fi-rr-light-switch-off:before {
content: "\f8a4";
}
.fi-rr-light-switch-on:before {
content: "\f8a5";
}
.fi-rr-light-switch:before {
content: "\f8a6";
}
.fi-rr-lightbulb-cfl-on:before {
content: "\f8a7";
}
.fi-rr-lightbulb-cfl:before {
content: "\f8a8";
}
.fi-rr-lightbulb-dollar:before {
content: "\f8a9";
}
.fi-rr-lightbulb-exclamation:before {
content: "\f8aa";
}
.fi-rr-lightbulb-head:before {
content: "\f8ab";
}
.fi-rr-lightbulb-on:before {
content: "\f8ac";
}
.fi-rr-lightbulb-question:before {
content: "\f8ad";
}
.fi-rr-lightbulb-setting:before {
content: "\f8ae";
}
.fi-rr-lightbulb-slash:before {
content: "\f8af";
}
.fi-rr-lighthouse:before {
content: "\f8b0";
}
.fi-rr-lights-holiday:before {
content: "\f8b1";
}
.fi-rr-limit-hand:before {
content: "\f8b2";
}
.fi-rr-limit-speedometer:before {
content: "\f8b3";
}
.fi-rr-line-width:before {
content: "\f8b4";
}
.fi-rr-link-alt:before {
content: "\f8b5";
}
.fi-rr-link-horizontal-slash:before {
content: "\f8b6";
}
.fi-rr-link-horizontal:before {
content: "\f8b7";
}
.fi-rr-link-slash-alt:before {
content: "\f8b8";
}
.fi-rr-link-slash:before {
content: "\f8b9";
}
.fi-rr-link:before {
content: "\f8ba";
}
.fi-rr-lion-head:before {
content: "\f8bb";
}
.fi-rr-lion:before {
content: "\f8bc";
}
.fi-rr-lips:before {
content: "\f8bd";
}
.fi-rr-lipstick:before {
content: "\f8be";
}
.fi-rr-lira-sign:before {
content: "\f8bf";
}
.fi-rr-list-check:before {
content: "\f8c0";
}
.fi-rr-list-dropdown:before {
content: "\f8c1";
}
.fi-rr-list-music:before {
content: "\f8c2";
}
.fi-rr-list-timeline:before {
content: "\f8c3";
}
.fi-rr-list:before {
content: "\f8c4";
}
.fi-rr-litecoin-sign:before {
content: "\f8c5";
}
.fi-rr-live-alt:before {
content: "\f8c6";
}
.fi-rr-live:before {
content: "\f8c7";
}
.fi-rr-loading:before {
content: "\f8c8";
}
.fi-rr-loan:before {
content: "\f8c9";
}
.fi-rr-lobster:before {
content: "\f8ca";
}
.fi-rr-location-alt:before {
content: "\f8cb";
}
.fi-rr-location-arrow:before {
content: "\f8cc";
}
.fi-rr-location-crosshairs-slash:before {
content: "\f8cd";
}
.fi-rr-location-crosshairs:before {
content: "\f8ce";
}
.fi-rr-location-dot-slash:before {
content: "\f8cf";
}
.fi-rr-location-exclamation:before {
content: "\f8d0";
}
.fi-rr-location-pin-call:before {
content: "\f8d1";
}
.fi-rr-lock-alt:before {
content: "\f8d2";
}
.fi-rr-lock-hashtag:before {
content: "\f8d3";
}
.fi-rr-lock-open-alt:before {
content: "\f8d4";
}
.fi-rr-lock:before {
content: "\f8d5";
}
.fi-rr-locust:before {
content: "\f8d6";
}
.fi-rr-loop-square:before {
content: "\f8d7";
}
.fi-rr-loveseat:before {
content: "\f8d8";
}
.fi-rr-low-vision:before {
content: "\f8d9";
}
.fi-rr-luchador:before {
content: "\f8da";
}
.fi-rr-luggage-cart:before {
content: "\f8db";
}
.fi-rr-luggage-rolling:before {
content: "\f8dc";
}
.fi-rr-lungs-virus:before {
content: "\f8dd";
}
.fi-rr-lungs:before {
content: "\f8de";
}
.fi-rr-m:before {
content: "\f8df";
}
.fi-rr-mace:before {
content: "\f8e0";
}
.fi-rr-magic-wand:before {
content: "\f8e1";
}
.fi-rr-magnet-user:before {
content: "\f8e2";
}
.fi-rr-magnet:before {
content: "\f8e3";
}
.fi-rr-mailbox-envelope:before {
content: "\f8e4";
}
.fi-rr-mailbox-flag-up:before {
content: "\f8e5";
}
.fi-rr-mailbox:before {
content: "\f8e6";
}
.fi-rr-makeup-brush:before {
content: "\f8e7";
}
.fi-rr-man-head:before {
content: "\f8e8";
}
.fi-rr-man-scientist:before {
content: "\f8e9";
}
.fi-rr-manat-sign:before {
content: "\f8ea";
}
.fi-rr-mandolin:before {
content: "\f8eb";
}
.fi-rr-mango:before {
content: "\f8ec";
}
.fi-rr-manhole:before {
content: "\f8ed";
}
.fi-rr-map-location-track:before {
content: "\f8ee";
}
.fi-rr-map-marker-check:before {
content: "\f8ef";
}
.fi-rr-map-marker-cross:before {
content: "\f8f0";
}
.fi-rr-map-marker-edit:before {
content: "\f8f1";
}
.fi-rr-map-marker-home:before {
content: "\f8f2";
}
.fi-rr-map-marker-minus:before {
content: "\f8f3";
}
.fi-rr-map-marker-plus:before {
content: "\f8f4";
}
.fi-rr-map-marker-question:before {
content: "\f8f5";
}
.fi-rr-map-marker-slash:before {
content: "\f8f6";
}
.fi-rr-map-marker-smile:before {
content: "\f8f7";
}
.fi-rr-map-marker:before {
content: "\f8f8";
}
.fi-rr-map-pin:before {
content: "\f8f9";
}
.fi-rr-map-point:before {
content: "\f8fa";
}
.fi-rr-map:before {
content: "\f8fb";
}
.fi-rr-marker-time:before {
content: "\f8fc";
}
.fi-rr-marker:before {
content: "\f8fd";
}
.fi-rr-marketplace-alt:before {
content: "\f8fe";
}
.fi-rr-marketplace-store:before {
content: "\f8ff";
}
.fi-rr-marketplace:before {
content: "\f900";
}
.fi-rr-mars-double:before {
content: "\f901";
}
.fi-rr-mars-stroke-right:before {
content: "\f902";
}
.fi-rr-mars-stroke-up:before {
content: "\f903";
}
.fi-rr-mars:before {
content: "\f904";
}
.fi-rr-martini-glass-citrus:before {
content: "\f905";
}
.fi-rr-martini-glass-empty:before {
content: "\f906";
}
.fi-rr-mask-carnival:before {
content: "\f907";
}
.fi-rr-mask-face:before {
content: "\f908";
}
.fi-rr-mask-snorkel:before {
content: "\f909";
}
.fi-rr-mask:before {
content: "\f90a";
}
.fi-rr-massage:before {
content: "\f90b";
}
.fi-rr-match-fire:before {
content: "\f90c";
}
.fi-rr-mattress-pillow:before {
content: "\f90d";
}
.fi-rr-measuring-tape:before {
content: "\f90e";
}
.fi-rr-meat:before {
content: "\f90f";
}
.fi-rr-medal:before {
content: "\f910";
}
.fi-rr-medical-star:before {
content: "\f911";
}
.fi-rr-medicine:before {
content: "\f912";
}
.fi-rr-meditation:before {
content: "\f913";
}
.fi-rr-meeting-alt:before {
content: "\f914";
}
.fi-rr-meeting:before {
content: "\f915";
}
.fi-rr-megaphone-announcement-leader:before {
content: "\f916";
}
.fi-rr-megaphone:before {
content: "\f917";
}
.fi-rr-meh-blank:before {
content: "\f918";
}
.fi-rr-meh-rolling-eyes:before {
content: "\f919";
}
.fi-rr-meh:before {
content: "\f91a";
}
.fi-rr-melon-alt:before {
content: "\f91b";
}
.fi-rr-melon:before {
content: "\f91c";
}
.fi-rr-member-list:before {
content: "\f91d";
}
.fi-rr-member-search:before {
content: "\f91e";
}
.fi-rr-membership-vip:before {
content: "\f91f";
}
.fi-rr-membership:before {
content: "\f920";
}
.fi-rr-memo-circle-check:before {
content: "\f921";
}
.fi-rr-memo-pad:before {
content: "\f922";
}
.fi-rr-memo:before {
content: "\f923";
}
.fi-rr-memory:before {
content: "\f924";
}
.fi-rr-menu-burger:before {
content: "\f925";
}
.fi-rr-menu-dots-vertical:before {
content: "\f926";
}
.fi-rr-menu-dots:before {
content: "\f927";
}
.fi-rr-mercury:before {
content: "\f928";
}
.fi-rr-message-arrow-down:before {
content: "\f929";
}
.fi-rr-message-arrow-up-right:before {
content: "\f92a";
}
.fi-rr-message-arrow-up:before {
content: "\f92b";
}
.fi-rr-message-bot:before {
content: "\f92c";
}
.fi-rr-message-code:before {
content: "\f92d";
}
.fi-rr-message-dollar:before {
content: "\f92e";
}
.fi-rr-message-heart:before {
content: "\f92f";
}
.fi-rr-message-image:before {
content: "\f930";
}
.fi-rr-message-question:before {
content: "\f931";
}
.fi-rr-message-quote:before {
content: "\f932";
}
.fi-rr-message-slash:before {
content: "\f933";
}
.fi-rr-message-sms:before {
content: "\f934";
}
.fi-rr-message-text:before {
content: "\f935";
}
.fi-rr-message-xmark:before {
content: "\f936";
}
.fi-rr-messages-dollar:before {
content: "\f937";
}
.fi-rr-messages-question:before {
content: "\f938";
}
.fi-rr-messages:before {
content: "\f939";
}
.fi-rr-meteor:before {
content: "\f93a";
}
.fi-rr-meter-bolt:before {
content: "\f93b";
}
.fi-rr-meter-droplet:before {
content: "\f93c";
}
.fi-rr-meter-fire:before {
content: "\f93d";
}
.fi-rr-meter:before {
content: "\f93e";
}
.fi-rr-method:before {
content: "\f93f";
}
.fi-rr-microchip-ai:before {
content: "\f940";
}
.fi-rr-microchip:before {
content: "\f941";
}
.fi-rr-microphone-alt:before {
content: "\f942";
}
.fi-rr-microphone-slash:before {
content: "\f943";
}
.fi-rr-microphone:before {
content: "\f944";
}
.fi-rr-microscope:before {
content: "\f945";
}
.fi-rr-microwave:before {
content: "\f946";
}
.fi-rr-milk-alt:before {
content: "\f947";
}
.fi-rr-milk:before {
content: "\f948";
}
.fi-rr-mill-sign:before {
content: "\f949";
}
.fi-rr-mind-share:before {
content: "\f94a";
}
.fi-rr-minus-circle:before {
content: "\f94b";
}
.fi-rr-minus-hexagon:before {
content: "\f94c";
}
.fi-rr-minus-small:before {
content: "\f94d";
}
.fi-rr-minus:before {
content: "\f94e";
}
.fi-rr-mistletoe:before {
content: "\f94f";
}
.fi-rr-mix:before {
content: "\f950";
}
.fi-rr-mobile-button:before {
content: "\f951";
}
.fi-rr-mobile-notch:before {
content: "\f952";
}
.fi-rr-mobile:before {
content: "\f953";
}
.fi-rr-mockup:before {
content: "\f954";
}
.fi-rr-mode-alt:before {
content: "\f955";
}
.fi-rr-mode-landscape:before {
content: "\f956";
}
.fi-rr-mode-portrait:before {
content: "\f957";
}
.fi-rr-mode:before {
content: "\f958";
}
.fi-rr-model-cube-arrows:before {
content: "\f959";
}
.fi-rr-model-cube-space:before {
content: "\f95a";
}
.fi-rr-model-cube:before {
content: "\f95b";
}
.fi-rr-module:before {
content: "\f95c";
}
.fi-rr-monday:before {
content: "\f95d";
}
.fi-rr-money-bill-simple:before {
content: "\f95e";
}
.fi-rr-money-bill-transfer:before {
content: "\f95f";
}
.fi-rr-money-bill-wave-alt:before {
content: "\f960";
}
.fi-rr-money-bill-wave:before {
content: "\f961";
}
.fi-rr-money-bills-simple:before {
content: "\f962";
}
.fi-rr-money-bills:before {
content: "\f963";
}
.fi-rr-money-check-edit-alt:before {
content: "\f964";
}
.fi-rr-money-check-edit:before {
content: "\f965";
}
.fi-rr-money-check:before {
content: "\f966";
}
.fi-rr-money-coin-transfer:before {
content: "\f967";
}
.fi-rr-money-from-bracket:before {
content: "\f968";
}
.fi-rr-money-simple-from-bracket:before {
content: "\f969";
}
.fi-rr-money-transfer-alt:before {
content: "\f96a";
}
.fi-rr-money-transfer-coin-arrow:before {
content: "\f96b";
}
.fi-rr-money-transfer-smartphone:before {
content: "\f96c";
}
.fi-rr-money-wings:before {
content: "\f96d";
}
.fi-rr-money:before {
content: "\f96e";
}
.fi-rr-monkey:before {
content: "\f96f";
}
.fi-rr-monument:before {
content: "\f970";
}
.fi-rr-moon-stars:before {
content: "\f971";
}
.fi-rr-moon:before {
content: "\f972";
}
.fi-rr-moped:before {
content: "\f973";
}
.fi-rr-mortar-pestle:before {
content: "\f974";
}
.fi-rr-mortgage:before {
content: "\f975";
}
.fi-rr-mosque-alt:before {
content: "\f976";
}
.fi-rr-mosque-moon:before {
content: "\f977";
}
.fi-rr-mosque:before {
content: "\f978";
}
.fi-rr-mosquito-net:before {
content: "\f979";
}
.fi-rr-mosquito:before {
content: "\f97a";
}
.fi-rr-motorcycle:before {
content: "\f97b";
}
.fi-rr-mound:before {
content: "\f97c";
}
.fi-rr-mountain-city:before {
content: "\f97d";
}
.fi-rr-mountain:before {
content: "\f97e";
}
.fi-rr-mountains:before {
content: "\f97f";
}
.fi-rr-mouse-field:before {
content: "\f980";
}
.fi-rr-mouse:before {
content: "\f981";
}
.fi-rr-mov-file:before {
content: "\f982";
}
.fi-rr-move-to-folder-2:before {
content: "\f983";
}
.fi-rr-move-to-folder:before {
content: "\f984";
}
.fi-rr-mp3-file:before {
content: "\f985";
}
.fi-rr-mp3-player:before {
content: "\f986";
}
.fi-rr-mp4-file:before {
content: "\f987";
}
.fi-rr-mug-alt:before {
content: "\f988";
}
.fi-rr-mug-hot-alt:before {
content: "\f989";
}
.fi-rr-mug-hot:before {
content: "\f98a";
}
.fi-rr-mug-marshmallows:before {
content: "\f98b";
}
.fi-rr-mug-tea-saucer:before {
content: "\f98c";
}
.fi-rr-mug-tea:before {
content: "\f98d";
}
.fi-rr-mug:before {
content: "\f98e";
}
.fi-rr-multiple-alt:before {
content: "\f98f";
}
.fi-rr-multiple:before {
content: "\f990";
}
.fi-rr-muscle:before {
content: "\f991";
}
.fi-rr-mushroom-alt:before {
content: "\f992";
}
.fi-rr-mushroom:before {
content: "\f993";
}
.fi-rr-music-alt:before {
content: "\f994";
}
.fi-rr-music-file:before {
content: "\f995";
}
.fi-rr-music-note-slash:before {
content: "\f996";
}
.fi-rr-music-note:before {
content: "\f997";
}
.fi-rr-music-slash:before {
content: "\f998";
}
.fi-rr-music:before {
content: "\f999";
}
.fi-rr-n:before {
content: "\f99a";
}
.fi-rr-naira-sign:before {
content: "\f99b";
}
.fi-rr-narwhal:before {
content: "\f99c";
}
.fi-rr-navigation:before {
content: "\f99d";
}
.fi-rr-nesting-dolls:before {
content: "\f99e";
}
.fi-rr-network-analytic:before {
content: "\f99f";
}
.fi-rr-network-cloud:before {
content: "\f9a0";
}
.fi-rr-network:before {
content: "\f9a1";
}
.fi-rr-neuter:before {
content: "\f9a2";
}
.fi-rr-newsletter-subscribe:before {
content: "\f9a3";
}
.fi-rr-newspaper-open:before {
content: "\f9a4";
}
.fi-rr-newspaper:before {
content: "\f9a5";
}
.fi-rr-nfc-lock:before {
content: "\f9a6";
}
.fi-rr-nfc-magnifying-glass:before {
content: "\f9a7";
}
.fi-rr-nfc-pen:before {
content: "\f9a8";
}
.fi-rr-nfc-slash:before {
content: "\f9a9";
}
.fi-rr-nfc-trash:before {
content: "\f9aa";
}
.fi-rr-nfc:before {
content: "\f9ab";
}
.fi-rr-night-day:before {
content: "\f9ac";
}
.fi-rr-no-fee:before {
content: "\f9ad";
}
.fi-rr-no-people:before {
content: "\f9ae";
}
.fi-rr-noodles:before {
content: "\f9af";
}
.fi-rr-nose:before {
content: "\f9b0";
}
.fi-rr-not-equal:before {
content: "\f9b1";
}
.fi-rr-not-found-alt:before {
content: "\f9b2";
}
.fi-rr-not-found-magnifying-glass:before {
content: "\f9b3";
}
.fi-rr-not-found:before {
content: "\f9b4";
}
.fi-rr-notdef:before {
content: "\f9b5";
}
.fi-rr-note-medical:before {
content: "\f9b6";
}
.fi-rr-note-sticky:before {
content: "\f9b7";
}
.fi-rr-note:before {
content: "\f9b8";
}
.fi-rr-notebook-alt:before {
content: "\f9b9";
}
.fi-rr-notebook:before {
content: "\f9ba";
}
.fi-rr-notes-medical:before {
content: "\f9bb";
}
.fi-rr-notes:before {
content: "\f9bc";
}
.fi-rr-o:before {
content: "\f9bd";
}
.fi-rr-object-exclude:before {
content: "\f9be";
}
.fi-rr-object-group:before {
content: "\f9bf";
}
.fi-rr-object-intersect:before {
content: "\f9c0";
}
.fi-rr-object-subtract:before {
content: "\f9c1";
}
.fi-rr-object-ungroup:before {
content: "\f9c2";
}
.fi-rr-object-union:before {
content: "\f9c3";
}
.fi-rr-objects-column:before {
content: "\f9c4";
}
.fi-rr-octagon-check:before {
content: "\f9c5";
}
.fi-rr-octagon-divide:before {
content: "\f9c6";
}
.fi-rr-octagon-exclamation:before {
content: "\f9c7";
}
.fi-rr-octagon-minus:before {
content: "\f9c8";
}
.fi-rr-octagon-plus:before {
content: "\f9c9";
}
.fi-rr-octagon-xmark:before {
content: "\f9ca";
}
.fi-rr-octagon:before {
content: "\f9cb";
}
.fi-rr-oil-can:before {
content: "\f9cc";
}
.fi-rr-oil-temp:before {
content: "\f9cd";
}
.fi-rr-olive-oil:before {
content: "\f9ce";
}
.fi-rr-olive:before {
content: "\f9cf";
}
.fi-rr-olives:before {
content: "\f9d0";
}
.fi-rr-om:before {
content: "\f9d1";
}
.fi-rr-omega:before {
content: "\f9d2";
}
.fi-rr-onboarding:before {
content: "\f9d3";
}
.fi-rr-onion:before {
content: "\f9d4";
}
.fi-rr-opacity:before {
content: "\f9d5";
}
.fi-rr-open-mail-clip:before {
content: "\f9d6";
}
.fi-rr-operating-system-upgrade:before {
content: "\f9d7";
}
.fi-rr-operation:before {
content: "\f9d8";
}
.fi-rr-order-history:before {
content: "\f9d9";
}
.fi-rr-organization-chart:before {
content: "\f9da";
}
.fi-rr-ornament:before {
content: "\f9db";
}
.fi-rr-otp:before {
content: "\f9dc";
}
.fi-rr-otter:before {
content: "\f9dd";
}
.fi-rr-outdent:before {
content: "\f9de";
}
.fi-rr-oval-alt:before {
content: "\f9df";
}
.fi-rr-oval:before {
content: "\f9e0";
}
.fi-rr-oven:before {
content: "\f9e1";
}
.fi-rr-overline:before {
content: "\f9e2";
}
.fi-rr-overview:before {
content: "\f9e3";
}
.fi-rr-p:before {
content: "\f9e4";
}
.fi-rr-package:before {
content: "\f9e5";
}
.fi-rr-padlock-check:before {
content: "\f9e6";
}
.fi-rr-page-break:before {
content: "\f9e7";
}
.fi-rr-pager:before {
content: "\f9e8";
}
.fi-rr-paid:before {
content: "\f9e9";
}
.fi-rr-paint-brush:before {
content: "\f9ea";
}
.fi-rr-paint-roller:before {
content: "\f9eb";
}
.fi-rr-paintbrush-pencil:before {
content: "\f9ec";
}
.fi-rr-palette:before {
content: "\f9ed";
}
.fi-rr-pallet-alt:before {
content: "\f9ee";
}
.fi-rr-pallet:before {
content: "\f9ef";
}
.fi-rr-pan-food:before {
content: "\f9f0";
}
.fi-rr-pan-frying:before {
content: "\f9f1";
}
.fi-rr-pan:before {
content: "\f9f2";
}
.fi-rr-pancakes:before {
content: "\f9f3";
}
.fi-rr-panorama:before {
content: "\f9f4";
}
.fi-rr-paper-plane-launch:before {
content: "\f9f5";
}
.fi-rr-paper-plane-top:before {
content: "\f9f6";
}
.fi-rr-paper-plane:before {
content: "\f9f7";
}
.fi-rr-paperclip-vertical:before {
content: "\f9f8";
}
.fi-rr-parachute-box:before {
content: "\f9f9";
}
.fi-rr-paragraph-left:before {
content: "\f9fa";
}
.fi-rr-paragraph:before {
content: "\f9fb";
}
.fi-rr-parking-circle-slash:before {
content: "\f9fc";
}
.fi-rr-parking-circle:before {
content: "\f9fd";
}
.fi-rr-parking-slash:before {
content: "\f9fe";
}
.fi-rr-parking:before {
content: "\f9ff";
}
.fi-rr-party-bell:before {
content: "\fa00";
}
.fi-rr-party-horn:before {
content: "\fa01";
}
.fi-rr-passport:before {
content: "\fa02";
}
.fi-rr-password-alt:before {
content: "\fa03";
}
.fi-rr-password-computer:before {
content: "\fa04";
}
.fi-rr-password-email:before {
content: "\fa05";
}
.fi-rr-password-smartphone:before {
content: "\fa06";
}
.fi-rr-password:before {
content: "\fa07";
}
.fi-rr-paste:before {
content: "\fa08";
}
.fi-rr-pattern:before {
content: "\fa09";
}
.fi-rr-pause-circle:before {
content: "\fa0a";
}
.fi-rr-pause-square:before {
content: "\fa0b";
}
.fi-rr-pause:before {
content: "\fa0c";
}
.fi-rr-paw-claws:before {
content: "\fa0d";
}
.fi-rr-paw-heart:before {
content: "\fa0e";
}
.fi-rr-paw:before {
content: "\fa0f";
}
.fi-rr-payment-pos:before {
content: "\fa10";
}
.fi-rr-payroll-calendar:before {
content: "\fa11";
}
.fi-rr-payroll-check:before {
content: "\fa12";
}
.fi-rr-payroll:before {
content: "\fa13";
}
.fi-rr-peace:before {
content: "\fa14";
}
.fi-rr-peach:before {
content: "\fa15";
}
.fi-rr-peanut:before {
content: "\fa16";
}
.fi-rr-peanuts:before {
content: "\fa17";
}
.fi-rr-peapod:before {
content: "\fa18";
}
.fi-rr-pear:before {
content: "\fa19";
}
.fi-rr-pedestal:before {
content: "\fa1a";
}
.fi-rr-pen-circle:before {
content: "\fa1b";
}
.fi-rr-pen-clip-slash:before {
content: "\fa1c";
}
.fi-rr-pen-clip:before {
content: "\fa1d";
}
.fi-rr-pen-fancy-slash:before {
content: "\fa1e";
}
.fi-rr-pen-fancy:before {
content: "\fa1f";
}
.fi-rr-pen-field:before {
content: "\fa20";
}
.fi-rr-pen-nib-slash:before {
content: "\fa21";
}
.fi-rr-pen-nib:before {
content: "\fa22";
}
.fi-rr-pen-slash:before {
content: "\fa23";
}
.fi-rr-pen-square:before {
content: "\fa24";
}
.fi-rr-pen-swirl:before {
content: "\fa25";
}
.fi-rr-pencil-paintbrush:before {
content: "\fa26";
}
.fi-rr-pencil-ruler:before {
content: "\fa27";
}
.fi-rr-pencil-slash:before {
content: "\fa28";
}
.fi-rr-pencil:before {
content: "\fa29";
}
.fi-rr-pending:before {
content: "\fa2a";
}
.fi-rr-pennant:before {
content: "\fa2b";
}
.fi-rr-people-arrows-left-right:before {
content: "\fa2c";
}
.fi-rr-people-carry-box:before {
content: "\fa2d";
}
.fi-rr-people-dress:before {
content: "\fa2e";
}
.fi-rr-people-network-partner:before {
content: "\fa2f";
}
.fi-rr-people-pants:before {
content: "\fa30";
}
.fi-rr-people-poll:before {
content: "\fa31";
}
.fi-rr-people-pulling:before {
content: "\fa32";
}
.fi-rr-people-roof:before {
content: "\fa33";
}
.fi-rr-people:before {
content: "\fa34";
}
.fi-rr-pepper-alt:before {
content: "\fa35";
}
.fi-rr-pepper-hot:before {
content: "\fa36";
}
.fi-rr-pepper:before {
content: "\fa37";
}
.fi-rr-percent-10:before {
content: "\fa38";
}
.fi-rr-percent-100:before {
content: "\fa39";
}
.fi-rr-percent-20:before {
content: "\fa3a";
}
.fi-rr-percent-25:before {
content: "\fa3b";
}
.fi-rr-percent-30:before {
content: "\fa3c";
}
.fi-rr-percent-40:before {
content: "\fa3d";
}
.fi-rr-percent-50:before {
content: "\fa3e";
}
.fi-rr-percent-60:before {
content: "\fa3f";
}
.fi-rr-percent-70:before {
content: "\fa40";
}
.fi-rr-percent-75:before {
content: "\fa41";
}
.fi-rr-percent-80:before {
content: "\fa42";
}
.fi-rr-percent-90:before {
content: "\fa43";
}
.fi-rr-percentage:before {
content: "\fa44";
}
.fi-rr-person-burst:before {
content: "\fa45";
}
.fi-rr-person-carry-box:before {
content: "\fa46";
}
.fi-rr-person-circle-check:before {
content: "\fa47";
}
.fi-rr-person-circle-exclamation:before {
content: "\fa48";
}
.fi-rr-person-circle-minus:before {
content: "\fa49";
}
.fi-rr-person-circle-plus:before {
content: "\fa4a";
}
.fi-rr-person-circle-question:before {
content: "\fa4b";
}
.fi-rr-person-circle-xmark:before {
content: "\fa4c";
}
.fi-rr-person-cv:before {
content: "\fa4d";
}
.fi-rr-person-dolly-empty:before {
content: "\fa4e";
}
.fi-rr-person-dolly:before {
content: "\fa4f";
}
.fi-rr-person-dress-simple:before {
content: "\fa50";
}
.fi-rr-person-dress:before {
content: "\fa51";
}
.fi-rr-person-luggage:before {
content: "\fa52";
}
.fi-rr-person-lunge:before {
content: "\fa53";
}
.fi-rr-person-pilates:before {
content: "\fa54";
}
.fi-rr-person-praying:before {
content: "\fa55";
}
.fi-rr-person-pregnant:before {
content: "\fa56";
}
.fi-rr-person-seat-reclined:before {
content: "\fa57";
}
.fi-rr-person-seat:before {
content: "\fa58";
}
.fi-rr-person-shelter:before {
content: "\fa59";
}
.fi-rr-person-sign:before {
content: "\fa5a";
}
.fi-rr-person-simple:before {
content: "\fa5b";
}
.fi-rr-person-walking-with-cane:before {
content: "\fa5c";
}
.fi-rr-peseta-sign:before {
content: "\fa5d";
}
.fi-rr-peso-sign:before {
content: "\fa5e";
}
.fi-rr-pets:before {
content: "\fa5f";
}
.fi-rr-pharmacy:before {
content: "\fa60";
}
.fi-rr-phone-call:before {
content: "\fa61";
}
.fi-rr-phone-cross:before {
content: "\fa62";
}
.fi-rr-phone-flip:before {
content: "\fa63";
}
.fi-rr-phone-guide:before {
content: "\fa64";
}
.fi-rr-phone-heart-message:before {
content: "\fa65";
}
.fi-rr-phone-office:before {
content: "\fa66";
}
.fi-rr-phone-pause:before {
content: "\fa67";
}
.fi-rr-phone-plus:before {
content: "\fa68";
}
.fi-rr-phone-rotary:before {
content: "\fa69";
}
.fi-rr-phone-slash:before {
content: "\fa6a";
}
.fi-rr-photo-capture:before {
content: "\fa6b";
}
.fi-rr-photo-film-music:before {
content: "\fa6c";
}
.fi-rr-photo-video:before {
content: "\fa6d";
}
.fi-rr-physics:before {
content: "\fa6e";
}
.fi-rr-Pi:before {
content: "\fa6f";
}
.fi-rr-piano-keyboard:before {
content: "\fa70";
}
.fi-rr-piano:before {
content: "\fa71";
}
.fi-rr-pickaxe:before {
content: "\fa72";
}
.fi-rr-picking-box:before {
content: "\fa73";
}
.fi-rr-picking:before {
content: "\fa74";
}
.fi-rr-picnic:before {
content: "\fa75";
}
.fi-rr-picpeople-filled:before {
content: "\fa76";
}
.fi-rr-picpeople:before {
content: "\fa77";
}
.fi-rr-picture:before {
content: "\fa78";
}
.fi-rr-pie:before {
content: "\fa79";
}
.fi-rr-piece:before {
content: "\fa7a";
}
.fi-rr-pig-bank-bulb:before {
content: "\fa7b";
}
.fi-rr-pig-face:before {
content: "\fa7c";
}
.fi-rr-pig:before {
content: "\fa7d";
}
.fi-rr-piggy-bank-budget:before {
content: "\fa7e";
}
.fi-rr-piggy-bank:before {
content: "\fa7f";
}
.fi-rr-pills:before {
content: "\fa80";
}
.fi-rr-pinata:before {
content: "\fa81";
}
.fi-rr-pineapple-alt:before {
content: "\fa82";
}
.fi-rr-pineapple:before {
content: "\fa83";
}
.fi-rr-ping-pong:before {
content: "\fa84";
}
.fi-rr-pipe-smoking:before {
content: "\fa85";
}
.fi-rr-pizza-slice:before {
content: "\fa86";
}
.fi-rr-place-of-worship:before {
content: "\fa87";
}
.fi-rr-plan-strategy:before {
content: "\fa88";
}
.fi-rr-plan:before {
content: "\fa89";
}
.fi-rr-plane-alt:before {
content: "\fa8a";
}
.fi-rr-plane-arrival:before {
content: "\fa8b";
}
.fi-rr-plane-departure:before {
content: "\fa8c";
}
.fi-rr-plane-prop:before {
content: "\fa8d";
}
.fi-rr-plane-slash:before {
content: "\fa8e";
}
.fi-rr-plane-tail:before {
content: "\fa8f";
}
.fi-rr-plane:before {
content: "\fa90";
}
.fi-rr-planet-moon:before {
content: "\fa91";
}
.fi-rr-planet-ringed:before {
content: "\fa92";
}
.fi-rr-plant-care:before {
content: "\fa93";
}
.fi-rr-plant-growth:before {
content: "\fa94";
}
.fi-rr-plant-seed-invest:before {
content: "\fa95";
}
.fi-rr-plant-wilt:before {
content: "\fa96";
}
.fi-rr-plate-utensils:before {
content: "\fa97";
}
.fi-rr-plate-wheat:before {
content: "\fa98";
}
.fi-rr-plate:before {
content: "\fa99";
}
.fi-rr-play-alt:before {
content: "\fa9a";
}
.fi-rr-play-circle:before {
content: "\fa9b";
}
.fi-rr-play-microphone:before {
content: "\fa9c";
}
.fi-rr-play-pause:before {
content: "\fa9d";
}
.fi-rr-play:before {
content: "\fa9e";
}
.fi-rr-playing-cards:before {
content: "\fa9f";
}
.fi-rr-plug-alt:before {
content: "\faa0";
}
.fi-rr-plug-cable:before {
content: "\faa1";
}
.fi-rr-plug-circle-bolt:before {
content: "\faa2";
}
.fi-rr-plug-circle-check:before {
content: "\faa3";
}
.fi-rr-plug-circle-exclamation:before {
content: "\faa4";
}
.fi-rr-plug-circle-minus:before {
content: "\faa5";
}
.fi-rr-plug-circle-plus:before {
content: "\faa6";
}
.fi-rr-plug-connection:before {
content: "\faa7";
}
.fi-rr-plug:before {
content: "\faa8";
}
.fi-rr-plus-hexagon:before {
content: "\faa9";
}
.fi-rr-plus-minus:before {
content: "\faaa";
}
.fi-rr-plus-small:before {
content: "\faab";
}
.fi-rr-plus:before {
content: "\faac";
}
.fi-rr-png-file:before {
content: "\faad";
}
.fi-rr-podcast:before {
content: "\faae";
}
.fi-rr-podium-star:before {
content: "\faaf";
}
.fi-rr-podium-victory-leader:before {
content: "\fab0";
}
.fi-rr-podium:before {
content: "\fab1";
}
.fi-rr-point-of-sale-bill:before {
content: "\fab2";
}
.fi-rr-point-of-sale-signal:before {
content: "\fab3";
}
.fi-rr-point-of-sale:before {
content: "\fab4";
}
.fi-rr-pointer-loading:before {
content: "\fab5";
}
.fi-rr-pointer-text:before {
content: "\fab6";
}
.fi-rr-poker-chip:before {
content: "\fab7";
}
.fi-rr-police-box:before {
content: "\fab8";
}
.fi-rr-poll-h:before {
content: "\fab9";
}
.fi-rr-pollution:before {
content: "\faba";
}
.fi-rr-pompebled:before {
content: "\fabb";
}
.fi-rr-poo-bolt:before {
content: "\fabc";
}
.fi-rr-poo:before {
content: "\fabd";
}
.fi-rr-pool-8-ball:before {
content: "\fabe";
}
.fi-rr-poop:before {
content: "\fabf";
}
.fi-rr-popcorn:before {
content: "\fac0";
}
.fi-rr-popsicle:before {
content: "\fac1";
}
.fi-rr-portal-enter:before {
content: "\fac2";
}
.fi-rr-portal-exit:before {
content: "\fac3";
}
.fi-rr-portrait:before {
content: "\fac4";
}
.fi-rr-postal-address:before {
content: "\fac5";
}
.fi-rr-pot:before {
content: "\fac6";
}
.fi-rr-potato:before {
content: "\fac7";
}
.fi-rr-pound:before {
content: "\fac8";
}
.fi-rr-power:before {
content: "\fac9";
}
.fi-rr-ppt-file:before {
content: "\faca";
}
.fi-rr-practice:before {
content: "\facb";
}
.fi-rr-praying-hands:before {
content: "\facc";
}
.fi-rr-prescription-bottle-alt:before {
content: "\facd";
}
.fi-rr-prescription-bottle-pill:before {
content: "\face";
}
.fi-rr-prescription-bottle:before {
content: "\facf";
}
.fi-rr-prescription:before {
content: "\fad0";
}
.fi-rr-presentation:before {
content: "\fad1";
}
.fi-rr-preview:before {
content: "\fad2";
}
.fi-rr-previous-square:before {
content: "\fad3";
}
.fi-rr-print-magnifying-glass:before {
content: "\fad4";
}
.fi-rr-print-slash:before {
content: "\fad5";
}
.fi-rr-print:before {
content: "\fad6";
}
.fi-rr-priority-arrow:before {
content: "\fad7";
}
.fi-rr-priority-arrows:before {
content: "\fad8";
}
.fi-rr-priority-importance:before {
content: "\fad9";
}
.fi-rr-problem-solving:before {
content: "\fada";
}
.fi-rr-procedures:before {
content: "\fadb";
}
.fi-rr-process:before {
content: "\fadc";
}
.fi-rr-productivity:before {
content: "\fadd";
}
.fi-rr-progress-complete:before {
content: "\fade";
}
.fi-rr-progress-download:before {
content: "\fadf";
}
.fi-rr-progress-upload:before {
content: "\fae0";
}
.fi-rr-projector:before {
content: "\fae1";
}
.fi-rr-protractor:before {
content: "\fae2";
}
.fi-rr-pulse:before {
content: "\fae3";
}
.fi-rr-pump-medical:before {
content: "\fae4";
}
.fi-rr-pump:before {
content: "\fae5";
}
.fi-rr-pumpkin-alt-2:before {
content: "\fae6";
}
.fi-rr-pumpkin-alt:before {
content: "\fae7";
}
.fi-rr-pumpkin:before {
content: "\fae8";
}
.fi-rr-puzzle-alt:before {
content: "\fae9";
}
.fi-rr-puzzle-piece-integration:before {
content: "\faea";
}
.fi-rr-puzzle-pieces:before {
content: "\faeb";
}
.fi-rr-puzzle:before {
content: "\faec";
}
.fi-rr-pyramid:before {
content: "\faed";
}
.fi-rr-q:before {
content: "\faee";
}
.fi-rr-qr-scan:before {
content: "\faef";
}
.fi-rr-QR:before {
content: "\faf0";
}
.fi-rr-qrcode:before {
content: "\faf1";
}
.fi-rr-question-square:before {
content: "\faf2";
}
.fi-rr-question:before {
content: "\faf3";
}
.fi-rr-queue-alt:before {
content: "\faf4";
}
.fi-rr-queue-line:before {
content: "\faf5";
}
.fi-rr-queue-signal:before {
content: "\faf6";
}
.fi-rr-queue:before {
content: "\faf7";
}
.fi-rr-quill-pen-story:before {
content: "\faf8";
}
.fi-rr-quiz-alt:before {
content: "\faf9";
}
.fi-rr-quiz:before {
content: "\fafa";
}
.fi-rr-quote-right:before {
content: "\fafb";
}
.fi-rr-r:before {
content: "\fafc";
}
.fi-rr-rabbit-fast:before {
content: "\fafd";
}
.fi-rr-rabbit:before {
content: "\fafe";
}
.fi-rr-raccoon:before {
content: "\faff";
}
.fi-rr-racquet:before {
content: "\fb00";
}
.fi-rr-radar-monitoring-track:before {
content: "\fb01";
}
.fi-rr-radar:before {
content: "\fb02";
}
.fi-rr-radiation-alt:before {
content: "\fb03";
}
.fi-rr-radiation:before {
content: "\fb04";
}
.fi-rr-radio-alt:before {
content: "\fb05";
}
.fi-rr-radio-button:before {
content: "\fb06";
}
.fi-rr-radio:before {
content: "\fb07";
}
.fi-rr-radish:before {
content: "\fb08";
}
.fi-rr-rainbow:before {
content: "\fb09";
}
.fi-rr-raindrops:before {
content: "\fb0a";
}
.fi-rr-ram:before {
content: "\fb0b";
}
.fi-rr-ramp-loading:before {
content: "\fb0c";
}
.fi-rr-rank:before {
content: "\fb0d";
}
.fi-rr-ranking-podium-empty:before {
content: "\fb0e";
}
.fi-rr-ranking-podium:before {
content: "\fb0f";
}
.fi-rr-ranking-star:before {
content: "\fb10";
}
.fi-rr-ranking-stars:before {
content: "\fb11";
}
.fi-rr-raygun:before {
content: "\fb12";
}
.fi-rr-razor-barber:before {
content: "\fb13";
}
.fi-rr-react:before {
content: "\fb14";
}
.fi-rr-rec:before {
content: "\fb15";
}
.fi-rr-receipt:before {
content: "\fb16";
}
.fi-rr-recipe-book:before {
content: "\fb17";
}
.fi-rr-recipe:before {
content: "\fb18";
}
.fi-rr-record-vinyl:before {
content: "\fb19";
}
.fi-rr-rectabgle-vertical:before {
content: "\fb1a";
}
.fi-rr-rectangle-barcode:before {
content: "\fb1b";
}
.fi-rr-rectangle-code:before {
content: "\fb1c";
}
.fi-rr-rectangle-history-circle-plus:before {
content: "\fb1d";
}
.fi-rr-rectangle-horizontal:before {
content: "\fb1e";
}
.fi-rr-rectangle-list:before {
content: "\fb1f";
}
.fi-rr-rectangle-panoramic:before {
content: "\fb20";
}
.fi-rr-rectangle-pro:before {
content: "\fb21";
}
.fi-rr-rectangle-vertical-history:before {
content: "\fb22";
}
.fi-rr-rectangle-vertical:before {
content: "\fb23";
}
.fi-rr-rectangle-xmark:before {
content: "\fb24";
}
.fi-rr-rectangles-mixed:before {
content: "\fb25";
}
.fi-rr-recycle-bin:before {
content: "\fb26";
}
.fi-rr-recycle:before {
content: "\fb27";
}
.fi-rr-redo-alt:before {
content: "\fb28";
}
.fi-rr-redo:before {
content: "\fb29";
}
.fi-rr-reel:before {
content: "\fb2a";
}
.fi-rr-refer-arrow:before {
content: "\fb2b";
}
.fi-rr-refer:before {
content: "\fb2c";
}
.fi-rr-referral-alt:before {
content: "\fb2d";
}
.fi-rr-referral-user:before {
content: "\fb2e";
}
.fi-rr-referral:before {
content: "\fb2f";
}
.fi-rr-reflect-horizontal-alt:before {
content: "\fb30";
}
.fi-rr-reflect-horizontal:before {
content: "\fb31";
}
.fi-rr-reflect-vertical:before {
content: "\fb32";
}
.fi-rr-reflect:before {
content: "\fb33";
}
.fi-rr-refresh:before {
content: "\fb34";
}
.fi-rr-refrigerator:before {
content: "\fb35";
}
.fi-rr-refund-alt:before {
content: "\fb36";
}
.fi-rr-refund:before {
content: "\fb37";
}
.fi-rr-region-pin-alt:before {
content: "\fb38";
}
.fi-rr-region-pin:before {
content: "\fb39";
}
.fi-rr-registered:before {
content: "\fb3a";
}
.fi-rr-registration-paper:before {
content: "\fb3b";
}
.fi-rr-remove-folder:before {
content: "\fb3c";
}
.fi-rr-remove-user:before {
content: "\fb3d";
}
.fi-rr-rent-signal:before {
content: "\fb3e";
}
.fi-rr-rent:before {
content: "\fb3f";
}
.fi-rr-replace:before {
content: "\fb40";
}
.fi-rr-replay-10:before {
content: "\fb41";
}
.fi-rr-replay-30:before {
content: "\fb42";
}
.fi-rr-replay-5:before {
content: "\fb43";
}
.fi-rr-reply-all:before {
content: "\fb44";
}
.fi-rr-republican:before {
content: "\fb45";
}
.fi-rr-reservation-smartphone:before {
content: "\fb46";
}
.fi-rr-reservation-table:before {
content: "\fb47";
}
.fi-rr-resistance-band:before {
content: "\fb48";
}
.fi-rr-resize:before {
content: "\fb49";
}
.fi-rr-resources:before {
content: "\fb4a";
}
.fi-rr-restaurant:before {
content: "\fb4b";
}
.fi-rr-restock:before {
content: "\fb4c";
}
.fi-rr-restroom-simple:before {
content: "\fb4d";
}
.fi-rr-resume:before {
content: "\fb4e";
}
.fi-rr-revenue-alt:before {
content: "\fb4f";
}
.fi-rr-revenue-euro:before {
content: "\fb50";
}
.fi-rr-Revenue:before {
content: "\fb51";
}
.fi-rr-review:before {
content: "\fb52";
}
.fi-rr-rewind-button-circle:before {
content: "\fb53";
}
.fi-rr-rewind:before {
content: "\fb54";
}
.fi-rr-rhombus:before {
content: "\fb55";
}
.fi-rr-ribbon:before {
content: "\fb56";
}
.fi-rr-right-from-bracket:before {
content: "\fb57";
}
.fi-rr-right:before {
content: "\fb58";
}
.fi-rr-ring-diamond:before {
content: "\fb59";
}
.fi-rr-ring:before {
content: "\fb5a";
}
.fi-rr-rings-wedding:before {
content: "\fb5b";
}
.fi-rr-risk-alt:before {
content: "\fb5c";
}
.fi-rr-risk:before {
content: "\fb5d";
}
.fi-rr-road-barrier:before {
content: "\fb5e";
}
.fi-rr-road-sign-left:before {
content: "\fb5f";
}
.fi-rr-road:before {
content: "\fb60";
}
.fi-rr-robot:before {
content: "\fb61";
}
.fi-rr-robotic-arm:before {
content: "\fb62";
}
.fi-rr-rocket-lunch:before {
content: "\fb63";
}
.fi-rr-rocket:before {
content: "\fb64";
}
.fi-rr-roller-coaster:before {
content: "\fb65";
}
.fi-rr-room-service:before {
content: "\fb66";
}
.fi-rr-rotate-exclamation:before {
content: "\fb67";
}
.fi-rr-rotate-left:before {
content: "\fb68";
}
.fi-rr-rotate-reverse:before {
content: "\fb69";
}
.fi-rr-rotate-right:before {
content: "\fb6a";
}
.fi-rr-rotate-square:before {
content: "\fb6b";
}
.fi-rr-roulette:before {
content: "\fb6c";
}
.fi-rr-route-highway:before {
content: "\fb6d";
}
.fi-rr-route-interstate:before {
content: "\fb6e";
}
.fi-rr-route:before {
content: "\fb6f";
}
.fi-rr-router:before {
content: "\fb70";
}
.fi-rr-rss-alt:before {
content: "\fb71";
}
.fi-rr-rss:before {
content: "\fb72";
}
.fi-rr-ruble-sign:before {
content: "\fb73";
}
.fi-rr-rugby:before {
content: "\fb74";
}
.fi-rr-ruler-combined:before {
content: "\fb75";
}
.fi-rr-ruler-horizontal:before {
content: "\fb76";
}
.fi-rr-ruler-triangle:before {
content: "\fb77";
}
.fi-rr-ruler-vertical:before {
content: "\fb78";
}
.fi-rr-rules-alt:before {
content: "\fb79";
}
.fi-rr-rules:before {
content: "\fb7a";
}
.fi-rr-running-track:before {
content: "\fb7b";
}
.fi-rr-running:before {
content: "\fb7c";
}
.fi-rr-rupee-sign:before {
content: "\fb7d";
}
.fi-rr-rupiah-sign:before {
content: "\fb7e";
}
.fi-rr-rv:before {
content: "\fb7f";
}
.fi-rr-s:before {
content: "\fb80";
}
.fi-rr-sack-dollar:before {
content: "\fb81";
}
.fi-rr-sack:before {
content: "\fb82";
}
.fi-rr-sad-cry:before {
content: "\fb83";
}
.fi-rr-sad-tear:before {
content: "\fb84";
}
.fi-rr-sad:before {
content: "\fb85";
}
.fi-rr-safe-box:before {
content: "\fb86";
}
.fi-rr-sailboat:before {
content: "\fb87";
}
.fi-rr-salad:before {
content: "\fb88";
}
.fi-rr-salary-alt:before {
content: "\fb89";
}
.fi-rr-salt-pepper:before {
content: "\fb8a";
}
.fi-rr-salt-shaker:before {
content: "\fb8b";
}
.fi-rr-sandwich-alt:before {
content: "\fb8c";
}
.fi-rr-sandwich:before {
content: "\fb8d";
}
.fi-rr-satellite-dish:before {
content: "\fb8e";
}
.fi-rr-satellite:before {
content: "\fb8f";
}
.fi-rr-saturday:before {
content: "\fb90";
}
.fi-rr-sauce:before {
content: "\fb91";
}
.fi-rr-sausage:before {
content: "\fb92";
}
.fi-rr-sax-hot:before {
content: "\fb93";
}
.fi-rr-saxophone:before {
content: "\fb94";
}
.fi-rr-scale-comparison-alt:before {
content: "\fb95";
}
.fi-rr-scale-comparison:before {
content: "\fb96";
}
.fi-rr-scale:before {
content: "\fb97";
}
.fi-rr-scalpel-path:before {
content: "\fb98";
}
.fi-rr-scalpel:before {
content: "\fb99";
}
.fi-rr-scanner-gun:before {
content: "\fb9a";
}
.fi-rr-scanner-image:before {
content: "\fb9b";
}
.fi-rr-scanner-keyboard:before {
content: "\fb9c";
}
.fi-rr-scanner-touchscreen:before {
content: "\fb9d";
}
.fi-rr-scarecrow:before {
content: "\fb9e";
}
.fi-rr-scarf:before {
content: "\fb9f";
}
.fi-rr-school-bus:before {
content: "\fba0";
}
.fi-rr-school:before {
content: "\fba1";
}
.fi-rr-scissors:before {
content: "\fba2";
}
.fi-rr-scooter:before {
content: "\fba3";
}
.fi-rr-screen:before {
content: "\fba4";
}
.fi-rr-screencast:before {
content: "\fba5";
}
.fi-rr-screw-alt:before {
content: "\fba6";
}
.fi-rr-screw:before {
content: "\fba7";
}
.fi-rr-screwdriver:before {
content: "\fba8";
}
.fi-rr-scribble:before {
content: "\fba9";
}
.fi-rr-script:before {
content: "\fbaa";
}
.fi-rr-scroll-document-story:before {
content: "\fbab";
}
.fi-rr-scroll-old:before {
content: "\fbac";
}
.fi-rr-scroll-torah:before {
content: "\fbad";
}
.fi-rr-scroll:before {
content: "\fbae";
}
.fi-rr-scrubber:before {
content: "\fbaf";
}
.fi-rr-scythe:before {
content: "\fbb0";
}
.fi-rr-sd-card:before {
content: "\fbb1";
}
.fi-rr-sd-cards:before {
content: "\fbb2";
}
.fi-rr-seal-exclamation:before {
content: "\fbb3";
}
.fi-rr-seal-question:before {
content: "\fbb4";
}
.fi-rr-seal:before {
content: "\fbb5";
}
.fi-rr-search-alt:before {
content: "\fbb6";
}
.fi-rr-search-dollar:before {
content: "\fbb7";
}
.fi-rr-search-heart:before {
content: "\fbb8";
}
.fi-rr-search-location:before {
content: "\fbb9";
}
.fi-rr-search:before {
content: "\fbba";
}
.fi-rr-seat-airline:before {
content: "\fbbb";
}
.fi-rr-seatbelt-safety-driver:before {
content: "\fbbc";
}
.fi-rr-second-award:before {
content: "\fbbd";
}
.fi-rr-second-laurel:before {
content: "\fbbe";
}
.fi-rr-second-medal:before {
content: "\fbbf";
}
.fi-rr-second:before {
content: "\fbc0";
}
.fi-rr-security:before {
content: "\fbc1";
}
.fi-rr-seedling:before {
content: "\fbc2";
}
.fi-rr-selection:before {
content: "\fbc3";
}
.fi-rr-sell:before {
content: "\fbc4";
}
.fi-rr-seller-store:before {
content: "\fbc5";
}
.fi-rr-seller:before {
content: "\fbc6";
}
.fi-rr-selling:before {
content: "\fbc7";
}
.fi-rr-send-back:before {
content: "\fbc8";
}
.fi-rr-send-backward:before {
content: "\fbc9";
}
.fi-rr-send-money-smartphone:before {
content: "\fbca";
}
.fi-rr-send-money:before {
content: "\fbcb";
}
.fi-rr-sensor-alert:before {
content: "\fbcc";
}
.fi-rr-sensor-fire:before {
content: "\fbcd";
}
.fi-rr-sensor-on:before {
content: "\fbce";
}
.fi-rr-sensor-smoke:before {
content: "\fbcf";
}
.fi-rr-sensor:before {
content: "\fbd0";
}
.fi-rr-settings-sliders:before {
content: "\fbd1";
}
.fi-rr-settings:before {
content: "\fbd2";
}
.fi-rr-share-alt-square:before {
content: "\fbd3";
}
.fi-rr-share-square:before {
content: "\fbd4";
}
.fi-rr-share:before {
content: "\fbd5";
}
.fi-rr-sheep:before {
content: "\fbd6";
}
.fi-rr-shekel-sign:before {
content: "\fbd7";
}
.fi-rr-shelves:before {
content: "\fbd8";
}
.fi-rr-shield-alt:before {
content: "\fbd9";
}
.fi-rr-shield-cat:before {
content: "\fbda";
}
.fi-rr-shield-check:before {
content: "\fbdb";
}
.fi-rr-shield-cross:before {
content: "\fbdc";
}
.fi-rr-shield-dog:before {
content: "\fbdd";
}
.fi-rr-shield-exclamation:before {
content: "\fbde";
}
.fi-rr-shield-interrogation:before {
content: "\fbdf";
}
.fi-rr-shield-keyhole:before {
content: "\fbe0";
}
.fi-rr-shield-minus:before {
content: "\fbe1";
}
.fi-rr-shield-plus:before {
content: "\fbe2";
}
.fi-rr-shield-security-risk:before {
content: "\fbe3";
}
.fi-rr-shield-slash:before {
content: "\fbe4";
}
.fi-rr-shield-trust:before {
content: "\fbe5";
}
.fi-rr-shield-virus:before {
content: "\fbe6";
}
.fi-rr-shield-xmark:before {
content: "\fbe7";
}
.fi-rr-shield:before {
content: "\fbe8";
}
.fi-rr-ship-side:before {
content: "\fbe9";
}
.fi-rr-ship:before {
content: "\fbea";
}
.fi-rr-shipping-fast:before {
content: "\fbeb";
}
.fi-rr-shipping-timed:before {
content: "\fbec";
}
.fi-rr-shirt-long-sleeve:before {
content: "\fbed";
}
.fi-rr-shirt-running:before {
content: "\fbee";
}
.fi-rr-shirt-tank-top:before {
content: "\fbef";
}
.fi-rr-shirt:before {
content: "\fbf0";
}
.fi-rr-shish-kebab:before {
content: "\fbf1";
}
.fi-rr-shoe-prints:before {
content: "\fbf2";
}
.fi-rr-shop-lock:before {
content: "\fbf3";
}
.fi-rr-shop-slash:before {
content: "\fbf4";
}
.fi-rr-shop:before {
content: "\fbf5";
}
.fi-rr-shopping-bag-add:before {
content: "\fbf6";
}
.fi-rr-shopping-bag:before {
content: "\fbf7";
}
.fi-rr-shopping-basket:before {
content: "\fbf8";
}
.fi-rr-shopping-cart-add:before {
content: "\fbf9";
}
.fi-rr-shopping-cart-buyer:before {
content: "\fbfa";
}
.fi-rr-shopping-cart-check:before {
content: "\fbfb";
}
.fi-rr-shopping-cart:before {
content: "\fbfc";
}
.fi-rr-shovel-snow:before {
content: "\fbfd";
}
.fi-rr-shovel:before {
content: "\fbfe";
}
.fi-rr-shower-down:before {
content: "\fbff";
}
.fi-rr-shower:before {
content: "\fc00";
}
.fi-rr-shredder:before {
content: "\fc01";
}
.fi-rr-shrimp:before {
content: "\fc02";
}
.fi-rr-shuffle:before {
content: "\fc03";
}
.fi-rr-shuttle-van:before {
content: "\fc04";
}
.fi-rr-shuttlecock:before {
content: "\fc05";
}
.fi-rr-Sickle:before {
content: "\fc06";
}
.fi-rr-sidebar-flip:before {
content: "\fc07";
}
.fi-rr-sidebar:before {
content: "\fc08";
}
.fi-rr-sigma:before {
content: "\fc09";
}
.fi-rr-sign-hanging:before {
content: "\fc0a";
}
.fi-rr-sign-in-alt:before {
content: "\fc0b";
}
.fi-rr-sign-out-alt:before {
content: "\fc0c";
}
.fi-rr-sign-posts-wrench:before {
content: "\fc0d";
}
.fi-rr-sign-posts:before {
content: "\fc0e";
}
.fi-rr-sign-up:before {
content: "\fc0f";
}
.fi-rr-signal-alt-1:before {
content: "\fc10";
}
.fi-rr-signal-alt-2:before {
content: "\fc11";
}
.fi-rr-signal-alt-slash:before {
content: "\fc12";
}
.fi-rr-signal-alt:before {
content: "\fc13";
}
.fi-rr-signal-bars-fair:before {
content: "\fc14";
}
.fi-rr-signal-bars-good:before {
content: "\fc15";
}
.fi-rr-signal-bars-weak:before {
content: "\fc16";
}
.fi-rr-signal-stream-slash:before {
content: "\fc17";
}
.fi-rr-signal-stream:before {
content: "\fc18";
}
.fi-rr-signature-lock:before {
content: "\fc19";
}
.fi-rr-signature-slash:before {
content: "\fc1a";
}
.fi-rr-signature:before {
content: "\fc1b";
}
.fi-rr-sim-card:before {
content: "\fc1c";
}
.fi-rr-sim-cards:before {
content: "\fc1d";
}
.fi-rr-sink:before {
content: "\fc1e";
}
.fi-rr-siren-on:before {
content: "\fc1f";
}
.fi-rr-Siren:before {
content: "\fc20";
}
.fi-rr-site-alt:before {
content: "\fc21";
}
.fi-rr-site-browser:before {
content: "\fc22";
}
.fi-rr-site:before {
content: "\fc23";
}
.fi-rr-sitemap:before {
content: "\fc24";
}
.fi-rr-skateboard:before {
content: "\fc25";
}
.fi-rr-skating:before {
content: "\fc26";
}
.fi-rr-skeleton-ribs:before {
content: "\fc27";
}
.fi-rr-skeleton:before {
content: "\fc28";
}
.fi-rr-skewer:before {
content: "\fc29";
}
.fi-rr-ski-boot-ski:before {
content: "\fc2a";
}
.fi-rr-ski-jump:before {
content: "\fc2b";
}
.fi-rr-ski-lift:before {
content: "\fc2c";
}
.fi-rr-skiing-nordic:before {
content: "\fc2d";
}
.fi-rr-skiing:before {
content: "\fc2e";
}
.fi-rr-skill-alt:before {
content: "\fc2f";
}
.fi-rr-skill-user:before {
content: "\fc30";
}
.fi-rr-skill:before {
content: "\fc31";
}
.fi-rr-skin-arrow:before {
content: "\fc32";
}
.fi-rr-skin-drop:before {
content: "\fc33";
}
.fi-rr-skin-hair:before {
content: "\fc34";
}
.fi-rr-skin:before {
content: "\fc35";
}
.fi-rr-skip-15-seconds:before {
content: "\fc36";
}
.fi-rr-skull-cow:before {
content: "\fc37";
}
.fi-rr-skull-crossbones:before {
content: "\fc38";
}
.fi-rr-skull:before {
content: "\fc39";
}
.fi-rr-slash:before {
content: "\fc3a";
}
.fi-rr-sledding:before {
content: "\fc3b";
}
.fi-rr-sleeping-bag:before {
content: "\fc3c";
}
.fi-rr-sleigh:before {
content: "\fc3d";
}
.fi-rr-sliders-h-square:before {
content: "\fc3e";
}
.fi-rr-sliders-v-square:before {
content: "\fc3f";
}
.fi-rr-sliders-v:before {
content: "\fc40";
}
.fi-rr-slot-machine:before {
content: "\fc41";
}
.fi-rr-smart-home-alt:before {
content: "\fc42";
}
.fi-rr-smart-home:before {
content: "\fc43";
}
.fi-rr-smartphone:before {
content: "\fc44";
}
.fi-rr-smile-beam:before {
content: "\fc45";
}
.fi-rr-smile-plus:before {
content: "\fc46";
}
.fi-rr-smile-wink:before {
content: "\fc47";
}
.fi-rr-smile:before {
content: "\fc48";
}
.fi-rr-smiley-comment-alt:before {
content: "\fc49";
}
.fi-rr-smog:before {
content: "\fc4a";
}
.fi-rr-smoke:before {
content: "\fc4b";
}
.fi-rr-smoking-ban:before {
content: "\fc4c";
}
.fi-rr-smoking:before {
content: "\fc4d";
}
.fi-rr-snake:before {
content: "\fc4e";
}
.fi-rr-snap:before {
content: "\fc4f";
}
.fi-rr-snooze:before {
content: "\fc50";
}
.fi-rr-snow-blowing:before {
content: "\fc51";
}
.fi-rr-snowboarding:before {
content: "\fc52";
}
.fi-rr-snowflake-droplets:before {
content: "\fc53";
}
.fi-rr-snowflake:before {
content: "\fc54";
}
.fi-rr-snowflakes:before {
content: "\fc55";
}
.fi-rr-snowman-alt:before {
content: "\fc56";
}
.fi-rr-snowman-head:before {
content: "\fc57";
}
.fi-rr-snowmobile:before {
content: "\fc58";
}
.fi-rr-snowplow:before {
content: "\fc59";
}
.fi-rr-soap-alt:before {
content: "\fc5a";
}
.fi-rr-soap:before {
content: "\fc5b";
}
.fi-rr-social-network:before {
content: "\fc5c";
}
.fi-rr-socks:before {
content: "\fc5d";
}
.fi-rr-sofa-size:before {
content: "\fc5e";
}
.fi-rr-sofa:before {
content: "\fc5f";
}
.fi-rr-solar-panel-sun:before {
content: "\fc60";
}
.fi-rr-solar-panel:before {
content: "\fc61";
}
.fi-rr-solar-system:before {
content: "\fc62";
}
.fi-rr-sold-house:before {
content: "\fc63";
}
.fi-rr-sold-signal:before {
content: "\fc64";
}
.fi-rr-sort-alpha-down-alt:before {
content: "\fc65";
}
.fi-rr-sort-alpha-down:before {
content: "\fc66";
}
.fi-rr-sort-alpha-up-alt:before {
content: "\fc67";
}
.fi-rr-sort-alpha-up:before {
content: "\fc68";
}
.fi-rr-sort-alt:before {
content: "\fc69";
}
.fi-rr-sort-amount-down-alt:before {
content: "\fc6a";
}
.fi-rr-sort-amount-down:before {
content: "\fc6b";
}
.fi-rr-sort-amount-up-alt:before {
content: "\fc6c";
}
.fi-rr-sort-amount-up:before {
content: "\fc6d";
}
.fi-rr-sort-circle-down:before {
content: "\fc6e";
}
.fi-rr-sort-circle-up:before {
content: "\fc6f";
}
.fi-rr-sort-circle:before {
content: "\fc70";
}
.fi-rr-sort-down:before {
content: "\fc71";
}
.fi-rr-sort-numeric-down-alt:before {
content: "\fc72";
}
.fi-rr-sort-numeric-down:before {
content: "\fc73";
}
.fi-rr-sort-shapes-down:before {
content: "\fc74";
}
.fi-rr-sort-shapes-up:before {
content: "\fc75";
}
.fi-rr-sort-size-down:before {
content: "\fc76";
}
.fi-rr-sort-size-up:before {
content: "\fc77";
}
.fi-rr-sort:before {
content: "\fc78";
}
.fi-rr-soup:before {
content: "\fc79";
}
.fi-rr-source-data:before {
content: "\fc7a";
}
.fi-rr-source-document-alt:before {
content: "\fc7b";
}
.fi-rr-source-document:before {
content: "\fc7c";
}
.fi-rr-spa:before {
content: "\fc7d";
}
.fi-rr-space-shuttle:before {
content: "\fc7e";
}
.fi-rr-space-station-moon-alt:before {
content: "\fc7f";
}
.fi-rr-space-station-moon:before {
content: "\fc80";
}
.fi-rr-spade:before {
content: "\fc81";
}
.fi-rr-spaghetti-monster-flying:before {
content: "\fc82";
}
.fi-rr-spain-map:before {
content: "\fc83";
}
.fi-rr-sparkles:before {
content: "\fc84";
}
.fi-rr-spartan-helmet:before {
content: "\fc85";
}
.fi-rr-speaker:before {
content: "\fc86";
}
.fi-rr-speakers:before {
content: "\fc87";
}
.fi-rr-speech-bubble-story:before {
content: "\fc88";
}
.fi-rr-speedometer-arrow:before {
content: "\fc89";
}
.fi-rr-speedometer-kpi:before {
content: "\fc8a";
}
.fi-rr-sphere:before {
content: "\fc8b";
}
.fi-rr-spider-black-widow:before {
content: "\fc8c";
}
.fi-rr-spider-web:before {
content: "\fc8d";
}
.fi-rr-spider:before {
content: "\fc8e";
}
.fi-rr-spinner:before {
content: "\fc8f";
}
.fi-rr-split-up-relation:before {
content: "\fc90";
}
.fi-rr-split:before {
content: "\fc91";
}
.fi-rr-splotch:before {
content: "\fc92";
}
.fi-rr-spoon:before {
content: "\fc93";
}
.fi-rr-sport:before {
content: "\fc94";
}
.fi-rr-spray-can-sparkles:before {
content: "\fc95";
}
.fi-rr-spray-can:before {
content: "\fc96";
}
.fi-rr-spring-calendar:before {
content: "\fc97";
}
.fi-rr-sprinkler:before {
content: "\fc98";
}
.fi-rr-spy:before {
content: "\fc99";
}
.fi-rr-square-0:before {
content: "\fc9a";
}
.fi-rr-square-1:before {
content: "\fc9b";
}
.fi-rr-square-2:before {
content: "\fc9c";
}
.fi-rr-square-3:before {
content: "\fc9d";
}
.fi-rr-square-4:before {
content: "\fc9e";
}
.fi-rr-square-5:before {
content: "\fc9f";
}
.fi-rr-square-6:before {
content: "\fca0";
}
.fi-rr-square-7:before {
content: "\fca1";
}
.fi-rr-square-8:before {
content: "\fca2";
}
.fi-rr-square-9:before {
content: "\fca3";
}
.fi-rr-square-a:before {
content: "\fca4";
}
.fi-rr-square-b:before {
content: "\fca5";
}
.fi-rr-square-bolt:before {
content: "\fca6";
}
.fi-rr-square-c:before {
content: "\fca7";
}
.fi-rr-square-code:before {
content: "\fca8";
}
.fi-rr-square-d:before {
content: "\fca9";
}
.fi-rr-square-dashed-circle-plus:before {
content: "\fcaa";
}
.fi-rr-square-dashed:before {
content: "\fcab";
}
.fi-rr-square-divide:before {
content: "\fcac";
}
.fi-rr-square-e:before {
content: "\fcad";
}
.fi-rr-square-ellipsis-vertical:before {
content: "\fcae";
}
.fi-rr-square-ellipsis:before {
content: "\fcaf";
}
.fi-rr-square-exclamation:before {
content: "\fcb0";
}
.fi-rr-square-f:before {
content: "\fcb1";
}
.fi-rr-square-g:before {
content: "\fcb2";
}
.fi-rr-square-h:before {
content: "\fcb3";
}
.fi-rr-square-heart:before {
content: "\fcb4";
}
.fi-rr-square-i:before {
content: "\fcb5";
}
.fi-rr-square-info:before {
content: "\fcb6";
}
.fi-rr-square-j:before {
content: "\fcb7";
}
.fi-rr-square-k:before {
content: "\fcb8";
}
.fi-rr-square-kanban:before {
content: "\fcb9";
}
.fi-rr-square-l:before {
content: "\fcba";
}
.fi-rr-square-m:before {
content: "\fcbb";
}
.fi-rr-square-minus:before {
content: "\fcbc";
}
.fi-rr-square-n:before {
content: "\fcbd";
}
.fi-rr-square-o:before {
content: "\fcbe";
}
.fi-rr-square-p:before {
content: "\fcbf";
}
.fi-rr-square-phone-hangup:before {
content: "\fcc0";
}
.fi-rr-square-plus:before {
content: "\fcc1";
}
.fi-rr-square-poll-horizontal:before {
content: "\fcc2";
}
.fi-rr-square-poll-vertical:before {
content: "\fcc3";
}
.fi-rr-square-q:before {
content: "\fcc4";
}
.fi-rr-square-quote:before {
content: "\fcc5";
}
.fi-rr-square-r:before {
content: "\fcc6";
}
.fi-rr-square-root:before {
content: "\fcc7";
}
.fi-rr-square-s:before {
content: "\fcc8";
}
.fi-rr-square-small:before {
content: "\fcc9";
}
.fi-rr-square-star:before {
content: "\fcca";
}
.fi-rr-square-t:before {
content: "\fccb";
}
.fi-rr-square-terminal:before {
content: "\fccc";
}
.fi-rr-square-u:before {
content: "\fccd";
}
.fi-rr-square-up-right:before {
content: "\fcce";
}
.fi-rr-square-v:before {
content: "\fccf";
}
.fi-rr-square-w:before {
content: "\fcd0";
}
.fi-rr-square-x:before {
content: "\fcd1";
}
.fi-rr-square-y:before {
content: "\fcd2";
}
.fi-rr-square-z:before {
content: "\fcd3";
}
.fi-rr-square:before {
content: "\fcd4";
}
.fi-rr-squid:before {
content: "\fcd5";
}
.fi-rr-squircle:before {
content: "\fcd6";
}
.fi-rr-squirrel:before {
content: "\fcd7";
}
.fi-rr-staff:before {
content: "\fcd8";
}
.fi-rr-stage-concert:before {
content: "\fcd9";
}
.fi-rr-stage-theatre:before {
content: "\fcda";
}
.fi-rr-stage:before {
content: "\fcdb";
}
.fi-rr-stairs:before {
content: "\fcdc";
}
.fi-rr-stamp:before {
content: "\fcdd";
}
.fi-rr-standard-definition:before {
content: "\fcde";
}
.fi-rr-star-and-crescent:before {
content: "\fcdf";
}
.fi-rr-star-christmas:before {
content: "\fce0";
}
.fi-rr-star-comment-alt:before {
content: "\fce1";
}
.fi-rr-star-exclamation:before {
content: "\fce2";
}
.fi-rr-star-octogram:before {
content: "\fce3";
}
.fi-rr-star-of-david:before {
content: "\fce4";
}
.fi-rr-star-rating-call:before {
content: "\fce5";
}
.fi-rr-star-sharp-half-stroke:before {
content: "\fce6";
}
.fi-rr-star-sharp-half:before {
content: "\fce7";
}
.fi-rr-star-shooting:before {
content: "\fce8";
}
.fi-rr-star:before {
content: "\fce9";
}
.fi-rr-starfighter:before {
content: "\fcea";
}
.fi-rr-stars:before {
content: "\fceb";
}
.fi-rr-state-country:before {
content: "\fcec";
}
.fi-rr-stationary-bike:before {
content: "\fced";
}
.fi-rr-stats:before {
content: "\fcee";
}
.fi-rr-steak:before {
content: "\fcef";
}
.fi-rr-steering-wheel:before {
content: "\fcf0";
}
.fi-rr-step-backward:before {
content: "\fcf1";
}
.fi-rr-step-forward:before {
content: "\fcf2";
}
.fi-rr-sterling-sign:before {
content: "\fcf3";
}
.fi-rr-stethoscope:before {
content: "\fcf4";
}
.fi-rr-sticker:before {
content: "\fcf5";
}
.fi-rr-stocking:before {
content: "\fcf6";
}
.fi-rr-stomach:before {
content: "\fcf7";
}
.fi-rr-stop-circle:before {
content: "\fcf8";
}
.fi-rr-stop-square:before {
content: "\fcf9";
}
.fi-rr-stop:before {
content: "\fcfa";
}
.fi-rr-stopwatch:before {
content: "\fcfb";
}
.fi-rr-store-alt:before {
content: "\fcfc";
}
.fi-rr-store-buyer:before {
content: "\fcfd";
}
.fi-rr-store-lock:before {
content: "\fcfe";
}
.fi-rr-store-slash:before {
content: "\fcff";
}
.fi-rr-story-book:before {
content: "\fd00";
}
.fi-rr-story-fairy-tale:before {
content: "\fd01";
}
.fi-rr-story-fantasy:before {
content: "\fd02";
}
.fi-rr-strategy-chess-risk:before {
content: "\fd03";
}
.fi-rr-strawberry:before {
content: "\fd04";
}
.fi-rr-street-view:before {
content: "\fd05";
}
.fi-rr-stretcher:before {
content: "\fd06";
}
.fi-rr-strikethrough:before {
content: "\fd07";
}
.fi-rr-stroopwafel:before {
content: "\fd08";
}
.fi-rr-student-alt:before {
content: "\fd09";
}
.fi-rr-student:before {
content: "\fd0a";
}
.fi-rr-subscript:before {
content: "\fd0b";
}
.fi-rr-subscription-alt:before {
content: "\fd0c";
}
.fi-rr-subscription:before {
content: "\fd0d";
}
.fi-rr-subtitles-slash:before {
content: "\fd0e";
}
.fi-rr-subtitles:before {
content: "\fd0f";
}
.fi-rr-subway:before {
content: "\fd10";
}
.fi-rr-suitcase-alt:before {
content: "\fd11";
}
.fi-rr-summary-check:before {
content: "\fd12";
}
.fi-rr-summer:before {
content: "\fd13";
}
.fi-rr-sun-dust:before {
content: "\fd14";
}
.fi-rr-sun-plant-wilt:before {
content: "\fd15";
}
.fi-rr-sun-salutation-yoga:before {
content: "\fd16";
}
.fi-rr-sun:before {
content: "\fd17";
}
.fi-rr-sunday:before {
content: "\fd18";
}
.fi-rr-sunglasses-alt:before {
content: "\fd19";
}
.fi-rr-sunglasses:before {
content: "\fd1a";
}
.fi-rr-sunrise-alt:before {
content: "\fd1b";
}
.fi-rr-sunrise:before {
content: "\fd1c";
}
.fi-rr-sunset:before {
content: "\fd1d";
}
.fi-rr-superscript:before {
content: "\fd1e";
}
.fi-rr-supplier-alt:before {
content: "\fd1f";
}
.fi-rr-supplier:before {
content: "\fd20";
}
.fi-rr-surfing:before {
content: "\fd21";
}
.fi-rr-surprise:before {
content: "\fd22";
}
.fi-rr-surveillance-camera:before {
content: "\fd23";
}
.fi-rr-survey-xmark:before {
content: "\fd24";
}
.fi-rr-sushi-alt:before {
content: "\fd25";
}
.fi-rr-sushi-roll:before {
content: "\fd26";
}
.fi-rr-sushi:before {
content: "\fd27";
}
.fi-rr-svg:before {
content: "\fd28";
}
.fi-rr-swap:before {
content: "\fd29";
}
.fi-rr-swatchbook:before {
content: "\fd2a";
}
.fi-rr-swimmer:before {
content: "\fd2b";
}
.fi-rr-swimming-pool:before {
content: "\fd2c";
}
.fi-rr-swing:before {
content: "\fd2d";
}
.fi-rr-swipe-down:before {
content: "\fd2e";
}
.fi-rr-swipe-left:before {
content: "\fd2f";
}
.fi-rr-swipe-right:before {
content: "\fd30";
}
.fi-rr-swipe-up:before {
content: "\fd31";
}
.fi-rr-sword:before {
content: "\fd32";
}
.fi-rr-symbol:before {
content: "\fd33";
}
.fi-rr-symbols:before {
content: "\fd34";
}
.fi-rr-synagogue:before {
content: "\fd35";
}
.fi-rr-syringe:before {
content: "\fd36";
}
.fi-rr-system-cloud:before {
content: "\fd37";
}
.fi-rr-t:before {
content: "\fd38";
}
.fi-rr-tab-folder:before {
content: "\fd39";
}
.fi-rr-table-columns:before {
content: "\fd3a";
}
.fi-rr-table-layout:before {
content: "\fd3b";
}
.fi-rr-table-list:before {
content: "\fd3c";
}
.fi-rr-table-picnic:before {
content: "\fd3d";
}
.fi-rr-table-pivot:before {
content: "\fd3e";
}
.fi-rr-table-rows:before {
content: "\fd3f";
}
.fi-rr-table-tree:before {
content: "\fd40";
}
.fi-rr-table:before {
content: "\fd41";
}
.fi-rr-tablet-android-alt:before {
content: "\fd42";
}
.fi-rr-tablet-android:before {
content: "\fd43";
}
.fi-rr-tablet-rugged:before {
content: "\fd44";
}
.fi-rr-tablet:before {
content: "\fd45";
}
.fi-rr-tachometer-alt-average:before {
content: "\fd46";
}
.fi-rr-tachometer-alt-fastest:before {
content: "\fd47";
}
.fi-rr-tachometer-alt-slow:before {
content: "\fd48";
}
.fi-rr-tachometer-alt-slowest:before {
content: "\fd49";
}
.fi-rr-tachometer-average:before {
content: "\fd4a";
}
.fi-rr-tachometer-fast:before {
content: "\fd4b";
}
.fi-rr-tachometer-fastest:before {
content: "\fd4c";
}
.fi-rr-tachometer-slow:before {
content: "\fd4d";
}
.fi-rr-tachometer-slowest:before {
content: "\fd4e";
}
.fi-rr-tachometer:before {
content: "\fd4f";
}
.fi-rr-taco:before {
content: "\fd50";
}
.fi-rr-tags:before {
content: "\fd51";
}
.fi-rr-talent-alt:before {
content: "\fd52";
}
.fi-rr-talent-hand:before {
content: "\fd53";
}
.fi-rr-talent:before {
content: "\fd54";
}
.fi-rr-tally-1:before {
content: "\fd55";
}
.fi-rr-tally-2:before {
content: "\fd56";
}
.fi-rr-tally-3:before {
content: "\fd57";
}
.fi-rr-tally-4:before {
content: "\fd58";
}
.fi-rr-tally:before {
content: "\fd59";
}
.fi-rr-tamale:before {
content: "\fd5a";
}
.fi-rr-tank-water:before {
content: "\fd5b";
}
.fi-rr-tap:before {
content: "\fd5c";
}
.fi-rr-tape:before {
content: "\fd5d";
}
.fi-rr-target-audience:before {
content: "\fd5e";
}
.fi-rr-target:before {
content: "\fd5f";
}
.fi-rr-tax-alt:before {
content: "\fd60";
}
.fi-rr-tax:before {
content: "\fd61";
}
.fi-rr-taxi-bus:before {
content: "\fd62";
}
.fi-rr-taxi:before {
content: "\fd63";
}
.fi-rr-team-check-alt:before {
content: "\fd64";
}
.fi-rr-team-check:before {
content: "\fd65";
}
.fi-rr-teddy-bear:before {
content: "\fd66";
}
.fi-rr-teeth-open:before {
content: "\fd67";
}
.fi-rr-telescope:before {
content: "\fd68";
}
.fi-rr-temperature-down:before {
content: "\fd69";
}
.fi-rr-temperature-frigid:before {
content: "\fd6a";
}
.fi-rr-temperature-high:before {
content: "\fd6b";
}
.fi-rr-temperature-list:before {
content: "\fd6c";
}
.fi-rr-temperature-low:before {
content: "\fd6d";
}
.fi-rr-temperature-up:before {
content: "\fd6e";
}
.fi-rr-template-alt:before {
content: "\fd6f";
}
.fi-rr-template:before {
content: "\fd70";
}
.fi-rr-tenge:before {
content: "\fd71";
}
.fi-rr-tennis:before {
content: "\fd72";
}
.fi-rr-tent-arrow-down-to-line:before {
content: "\fd73";
}
.fi-rr-tent-arrow-left-right:before {
content: "\fd74";
}
.fi-rr-tent-arrow-turn-left:before {
content: "\fd75";
}
.fi-rr-tent-arrows-down:before {
content: "\fd76";
}
.fi-rr-tents:before {
content: "\fd77";
}
.fi-rr-terminal:before {
content: "\fd78";
}
.fi-rr-terrace:before {
content: "\fd79";
}
.fi-rr-test-tube:before {
content: "\fd7a";
}
.fi-rr-test:before {
content: "\fd7b";
}
.fi-rr-text-box-dots:before {
content: "\fd7c";
}
.fi-rr-text-box-edit:before {
content: "\fd7d";
}
.fi-rr-text-box:before {
content: "\fd7e";
}
.fi-rr-text-check:before {
content: "\fd7f";
}
.fi-rr-text-height:before {
content: "\fd80";
}
.fi-rr-text-shadow:before {
content: "\fd81";
}
.fi-rr-text-size:before {
content: "\fd82";
}
.fi-rr-text-slash:before {
content: "\fd83";
}
.fi-rr-text-width:before {
content: "\fd84";
}
.fi-rr-text:before {
content: "\fd85";
}
.fi-rr-theater-masks:before {
content: "\fd86";
}
.fi-rr-thermometer-alt:before {
content: "\fd87";
}
.fi-rr-thermometer-empty:before {
content: "\fd88";
}
.fi-rr-thermometer-full:before {
content: "\fd89";
}
.fi-rr-thermometer-half:before {
content: "\fd8a";
}
.fi-rr-thermometer-quarter:before {
content: "\fd8b";
}
.fi-rr-thermometer-three-quarters:before {
content: "\fd8c";
}
.fi-rr-theta:before {
content: "\fd8d";
}
.fi-rr-third-award:before {
content: "\fd8e";
}
.fi-rr-third-laurel:before {
content: "\fd8f";
}
.fi-rr-third-medal:before {
content: "\fd90";
}
.fi-rr-third:before {
content: "\fd91";
}
.fi-rr-thought-bubble:before {
content: "\fd92";
}
.fi-rr-three-leaf-clover:before {
content: "\fd93";
}
.fi-rr-thumbs-up-trust:before {
content: "\fd94";
}
.fi-rr-thumbtack:before {
content: "\fd95";
}
.fi-rr-thunderstorm-moon:before {
content: "\fd96";
}
.fi-rr-thunderstorm-risk:before {
content: "\fd97";
}
.fi-rr-thunderstorm-sun:before {
content: "\fd98";
}
.fi-rr-thunderstorm:before {
content: "\fd99";
}
.fi-rr-thursday:before {
content: "\fd9a";
}
.fi-rr-ticket-airline:before {
content: "\fd9b";
}
.fi-rr-ticket-alt:before {
content: "\fd9c";
}
.fi-rr-ticket:before {
content: "\fd9d";
}
.fi-rr-tickets-airline:before {
content: "\fd9e";
}
.fi-rr-tie:before {
content: "\fd9f";
}
.fi-rr-tilde:before {
content: "\fda0";
}
.fi-rr-time-add:before {
content: "\fda1";
}
.fi-rr-time-check:before {
content: "\fda2";
}
.fi-rr-time-delete:before {
content: "\fda3";
}
.fi-rr-time-fast:before {
content: "\fda4";
}
.fi-rr-time-forward-sixty:before {
content: "\fda5";
}
.fi-rr-time-forward-ten:before {
content: "\fda6";
}
.fi-rr-time-forward:before {
content: "\fda7";
}
.fi-rr-time-half-past:before {
content: "\fda8";
}
.fi-rr-time-oclock:before {
content: "\fda9";
}
.fi-rr-time-past:before {
content: "\fdaa";
}
.fi-rr-time-quarter-past:before {
content: "\fdab";
}
.fi-rr-time-quarter-to:before {
content: "\fdac";
}
.fi-rr-time-twenty-four:before {
content: "\fdad";
}
.fi-rr-time-watch-calendar:before {
content: "\fdae";
}
.fi-rr-timer-clock-call:before {
content: "\fdaf";
}
.fi-rr-times-hexagon:before {
content: "\fdb0";
}
.fi-rr-tint-slash:before {
content: "\fdb1";
}
.fi-rr-tip-coin:before {
content: "\fdb2";
}
.fi-rr-tire-flat:before {
content: "\fdb3";
}
.fi-rr-tire-pressure-warning:before {
content: "\fdb4";
}
.fi-rr-tire-rugged:before {
content: "\fdb5";
}
.fi-rr-tire:before {
content: "\fdb6";
}
.fi-rr-tired:before {
content: "\fdb7";
}
.fi-rr-to-do-alt:before {
content: "\fdb8";
}
.fi-rr-to-do:before {
content: "\fdb9";
}
.fi-rr-together-people:before {
content: "\fdba";
}
.fi-rr-toggle-off:before {
content: "\fdbb";
}
.fi-rr-toggle-on:before {
content: "\fdbc";
}
.fi-rr-toilet-paper-blank-under:before {
content: "\fdbd";
}
.fi-rr-toilet-paper-blank:before {
content: "\fdbe";
}
.fi-rr-toilet-paper-slash:before {
content: "\fdbf";
}
.fi-rr-toilet-paper-under-slash:before {
content: "\fdc0";
}
.fi-rr-toilet-paper-under:before {
content: "\fdc1";
}
.fi-rr-toilet:before {
content: "\fdc2";
}
.fi-rr-toilets-portable:before {
content: "\fdc3";
}
.fi-rr-token:before {
content: "\fdc4";
}
.fi-rr-tomato:before {
content: "\fdc5";
}
.fi-rr-tombstone-alt:before {
content: "\fdc6";
}
.fi-rr-tombstone:before {
content: "\fdc7";
}
.fi-rr-tool-box:before {
content: "\fdc8";
}
.fi-rr-tool-crop:before {
content: "\fdc9";
}
.fi-rr-tool-marquee:before {
content: "\fdca";
}
.fi-rr-tools:before {
content: "\fdcb";
}
.fi-rr-tooth:before {
content: "\fdcc";
}
.fi-rr-toothbrush:before {
content: "\fdcd";
}
.fi-rr-torch-inspiration-leader:before {
content: "\fdce";
}
.fi-rr-torii-gate:before {
content: "\fdcf";
}
.fi-rr-tornado:before {
content: "\fdd0";
}
.fi-rr-total:before {
content: "\fdd1";
}
.fi-rr-tour-guide-people:before {
content: "\fdd2";
}
.fi-rr-tour-virtual:before {
content: "\fdd3";
}
.fi-rr-tower-control:before {
content: "\fdd4";
}
.fi-rr-track:before {
content: "\fdd5";
}
.fi-rr-tractor:before {
content: "\fdd6";
}
.fi-rr-trademark:before {
content: "\fdd7";
}
.fi-rr-traffic-cone:before {
content: "\fdd8";
}
.fi-rr-traffic-light-go:before {
content: "\fdd9";
}
.fi-rr-traffic-light-slow:before {
content: "\fdda";
}
.fi-rr-traffic-light-stop:before {
content: "\fddb";
}
.fi-rr-traffic-light:before {
content: "\fddc";
}
.fi-rr-trailer:before {
content: "\fddd";
}
.fi-rr-train-journey:before {
content: "\fdde";
}
.fi-rr-train-side:before {
content: "\fddf";
}
.fi-rr-train-station-building:before {
content: "\fde0";
}
.fi-rr-train-station:before {
content: "\fde1";
}
.fi-rr-train-subway-tunnel:before {
content: "\fde2";
}
.fi-rr-train-track:before {
content: "\fde3";
}
.fi-rr-train-tram:before {
content: "\fde4";
}
.fi-rr-train:before {
content: "\fde5";
}
.fi-rr-tram:before {
content: "\fde6";
}
.fi-rr-transform:before {
content: "\fde7";
}
.fi-rr-transformation-block:before {
content: "\fde8";
}
.fi-rr-transformation-circle:before {
content: "\fde9";
}
.fi-rr-transformation-design:before {
content: "\fdea";
}
.fi-rr-transformation-shapes:before {
content: "\fdeb";
}
.fi-rr-transformer-bolt:before {
content: "\fdec";
}
.fi-rr-transgender:before {
content: "\fded";
}
.fi-rr-transporter-1:before {
content: "\fdee";
}
.fi-rr-transporter-2:before {
content: "\fdef";
}
.fi-rr-transporter-3:before {
content: "\fdf0";
}
.fi-rr-transporter-4:before {
content: "\fdf1";
}
.fi-rr-transporter-5:before {
content: "\fdf2";
}
.fi-rr-transporter-6:before {
content: "\fdf3";
}
.fi-rr-transporter-7:before {
content: "\fdf4";
}
.fi-rr-transporter-empty:before {
content: "\fdf5";
}
.fi-rr-transporter:before {
content: "\fdf6";
}
.fi-rr-trash-can-check:before {
content: "\fdf7";
}
.fi-rr-trash-can-clock:before {
content: "\fdf8";
}
.fi-rr-trash-can-list:before {
content: "\fdf9";
}
.fi-rr-trash-can-plus:before {
content: "\fdfa";
}
.fi-rr-trash-can-slash:before {
content: "\fdfb";
}
.fi-rr-trash-check:before {
content: "\fdfc";
}
.fi-rr-trash-clock:before {
content: "\fdfd";
}
.fi-rr-trash-empty:before {
content: "\fdfe";
}
.fi-rr-trash-list:before {
content: "\fdff";
}
.fi-rr-trash-plus:before {
content: "\fe10";
}
.fi-rr-trash-restore-alt:before {
content: "\fe11";
}
.fi-rr-trash-restore:before {
content: "\fe12";
}
.fi-rr-trash-slash:before {
content: "\fe13";
}
.fi-rr-trash-undo-alt:before {
content: "\fe14";
}
.fi-rr-trash-undo:before {
content: "\fe15";
}
.fi-rr-trash-xmark:before {
content: "\fe16";
}
.fi-rr-trash:before {
content: "\fe17";
}
.fi-rr-treadmill:before {
content: "\fe18";
}
.fi-rr-treasure-chest:before {
content: "\fe19";
}
.fi-rr-treatment:before {
content: "\fe1a";
}
.fi-rr-tree-alt:before {
content: "\fe1b";
}
.fi-rr-tree-christmas:before {
content: "\fe1c";
}
.fi-rr-tree-deciduous:before {
content: "\fe1d";
}
.fi-rr-tree:before {
content: "\fe1e";
}
.fi-rr-trees-alt:before {
content: "\fe1f";
}
.fi-rr-trees:before {
content: "\fe30";
}
.fi-rr-triangle-music:before {
content: "\fe31";
}
.fi-rr-triangle-person-digging:before {
content: "\fe32";
}
.fi-rr-triangle-warning:before {
content: "\fe33";
}
.fi-rr-triangle:before {
content: "\fe34";
}
.fi-rr-tricycle:before {
content: "\fe35";
}
.fi-rr-trillium:before {
content: "\fe36";
}
.fi-rr-trophy-achievement-skill:before {
content: "\fe37";
}
.fi-rr-trophy-star:before {
content: "\fe38";
}
.fi-rr-trophy:before {
content: "\fe39";
}
.fi-rr-truck-arrow-left:before {
content: "\fe3a";
}
.fi-rr-truck-arrow-right:before {
content: "\fe3b";
}
.fi-rr-truck-bolt:before {
content: "\fe3c";
}
.fi-rr-truck-box:before {
content: "\fe3d";
}
.fi-rr-truck-check:before {
content: "\fe3e";
}
.fi-rr-truck-container-empty:before {
content: "\fe3f";
}
.fi-rr-truck-container:before {
content: "\fe40";
}
.fi-rr-truck-couch:before {
content: "\fe41";
}
.fi-rr-truck-fire:before {
content: "\fe42";
}
.fi-rr-truck-flatbed:before {
content: "\fe43";
}
.fi-rr-truck-front:before {
content: "\fe44";
}
.fi-rr-truck-ladder:before {
content: "\fe45";
}
.fi-rr-truck-loading:before {
content: "\fe46";
}
.fi-rr-truck-medical:before {
content: "\fe47";
}
.fi-rr-truck-monster:before {
content: "\fe48";
}
.fi-rr-truck-moving:before {
content: "\fe49";
}
.fi-rr-truck-pickup:before {
content: "\fe4a";
}
.fi-rr-truck-plow:before {
content: "\fe4b";
}
.fi-rr-truck-ramp:before {
content: "\fe4c";
}
.fi-rr-truck-side:before {
content: "\fe4d";
}
.fi-rr-truck-tow:before {
content: "\fe4e";
}
.fi-rr-truck-utensils:before {
content: "\fe4f";
}
.fi-rr-trumpet:before {
content: "\fe50";
}
.fi-rr-trust-alt:before {
content: "\fe51";
}
.fi-rr-trust:before {
content: "\fe52";
}
.fi-rr-tshirt:before {
content: "\fe53";
}
.fi-rr-tty-answer:before {
content: "\fe54";
}
.fi-rr-tty:before {
content: "\fe55";
}
.fi-rr-tubes:before {
content: "\fe56";
}
.fi-rr-tuesday:before {
content: "\fe57";
}
.fi-rr-tugrik-sign:before {
content: "\fe58";
}
.fi-rr-turkey:before {
content: "\fe59";
}
.fi-rr-turn-left-down:before {
content: "\fe5a";
}
.fi-rr-turn-left:before {
content: "\fe5b";
}
.fi-rr-turn-right:before {
content: "\fe5c";
}
.fi-rr-turntable:before {
content: "\fe5d";
}
.fi-rr-turtle:before {
content: "\fe5e";
}
.fi-rr-tv-music:before {
content: "\fe5f";
}
.fi-rr-tv-retro:before {
content: "\fe60";
}
.fi-rr-typewriter:before {
content: "\fe61";
}
.fi-rr-u:before {
content: "\fe62";
}
.fi-rr-ufo-beam:before {
content: "\fe63";
}
.fi-rr-ufo:before {
content: "\fe64";
}
.fi-rr-ui-ux:before {
content: "\fe65";
}
.fi-rr-umbrella-beach:before {
content: "\fe66";
}
.fi-rr-umbrella:before {
content: "\fe67";
}
.fi-rr-under-construction:before {
content: "\fe68";
}
.fi-rr-underline:before {
content: "\fe69";
}
.fi-rr-undo-alt:before {
content: "\fe6a";
}
.fi-rr-undo:before {
content: "\fe6b";
}
.fi-rr-unicorn:before {
content: "\fe6c";
}
.fi-rr-uniform-martial-arts:before {
content: "\fe6d";
}
.fi-rr-universal-access:before {
content: "\fe6e";
}
.fi-rr-unlock:before {
content: "\fe6f";
}
.fi-rr-up-from-bracket:before {
content: "\fe70";
}
.fi-rr-up-left:before {
content: "\fe71";
}
.fi-rr-up-right-from-square:before {
content: "\fe72";
}
.fi-rr-up-right:before {
content: "\fe73";
}
.fi-rr-up:before {
content: "\fe74";
}
.fi-rr-upload:before {
content: "\fe75";
}
.fi-rr-url:before {
content: "\fe76";
}
.fi-rr-usb-pendrive:before {
content: "\fe77";
}
.fi-rr-usd-circle:before {
content: "\fe78";
}
.fi-rr-usd-square:before {
content: "\fe79";
}
.fi-rr-user-add:before {
content: "\fe7a";
}
.fi-rr-user-alien:before {
content: "\fe7b";
}
.fi-rr-user-astronaut:before {
content: "\fe7c";
}
.fi-rr-user-check:before {
content: "\fe7d";
}
.fi-rr-user-chef:before {
content: "\fe7e";
}
.fi-rr-user-coach:before {
content: "\fe7f";
}
.fi-rr-user-cowboy:before {
content: "\fe80";
}
.fi-rr-user-crown:before {
content: "\fe81";
}
.fi-rr-user-gear:before {
content: "\fe82";
}
.fi-rr-user-graduate:before {
content: "\fe83";
}
.fi-rr-user-headset:before {
content: "\fe84";
}
.fi-rr-user-helmet-safety:before {
content: "\fe85";
}
.fi-rr-user-injured:before {
content: "\fe86";
}
.fi-rr-user-interface-ui:before {
content: "\fe87";
}
.fi-rr-user-key:before {
content: "\fe88";
}
.fi-rr-user-lock:before {
content: "\fe89";
}
.fi-rr-user-md-chat:before {
content: "\fe8a";
}
.fi-rr-user-md:before {
content: "\fe8b";
}
.fi-rr-user-minus:before {
content: "\fe8c";
}
.fi-rr-user-music:before {
content: "\fe8d";
}
.fi-rr-user-ninja:before {
content: "\fe8e";
}
.fi-rr-user-nurse:before {
content: "\fe8f";
}
.fi-rr-user-pen:before {
content: "\fe90";
}
.fi-rr-user-pilot-tie:before {
content: "\fe91";
}
.fi-rr-user-pilot:before {
content: "\fe92";
}
.fi-rr-user-police:before {
content: "\fe93";
}
.fi-rr-user-robot-xmarks:before {
content: "\fe94";
}
.fi-rr-user-robot:before {
content: "\fe95";
}
.fi-rr-user-salary:before {
content: "\fe96";
}
.fi-rr-user-shield:before {
content: "\fe97";
}
.fi-rr-user-skill-gear:before {
content: "\fe98";
}
.fi-rr-user-slash:before {
content: "\fe99";
}
.fi-rr-user-tag:before {
content: "\fe9a";
}
.fi-rr-user-time:before {
content: "\fe9b";
}
.fi-rr-user-trust:before {
content: "\fe9c";
}
.fi-rr-user-unlock:before {
content: "\fe9d";
}
.fi-rr-user-visor:before {
content: "\fe9e";
}
.fi-rr-user-xmark:before {
content: "\fe9f";
}
.fi-rr-user:before {
content: "\fea0";
}
.fi-rr-users-alt:before {
content: "\fea1";
}
.fi-rr-users-class:before {
content: "\fea2";
}
.fi-rr-users-gear:before {
content: "\fea3";
}
.fi-rr-users-medical:before {
content: "\fea4";
}
.fi-rr-users-slash:before {
content: "\fea5";
}
.fi-rr-users:before {
content: "\fea6";
}
.fi-rr-utensils-slash:before {
content: "\fea7";
}
.fi-rr-utensils:before {
content: "\fea8";
}
.fi-rr-utility-pole-double:before {
content: "\fea9";
}
.fi-rr-utility-pole:before {
content: "\feaa";
}
.fi-rr-ux-browser:before {
content: "\feab";
}
.fi-rr-ux:before {
content: "\feac";
}
.fi-rr-v:before {
content: "\fead";
}
.fi-rr-vacuum-robot:before {
content: "\feae";
}
.fi-rr-vacuum:before {
content: "\feaf";
}
.fi-rr-value-absolute:before {
content: "\feb0";
}
.fi-rr-vault:before {
content: "\feb1";
}
.fi-rr-vector-alt:before {
content: "\feb2";
}
.fi-rr-vector-circle:before {
content: "\feb3";
}
.fi-rr-vector-polygon:before {
content: "\feb4";
}
.fi-rr-vector:before {
content: "\feb5";
}
.fi-rr-venus-double:before {
content: "\feb6";
}
.fi-rr-venus-mars:before {
content: "\feb7";
}
.fi-rr-venus:before {
content: "\feb8";
}
.fi-rr-vest-patches:before {
content: "\feb9";
}
.fi-rr-vest:before {
content: "\feba";
}
.fi-rr-video-arrow-down-left:before {
content: "\febb";
}
.fi-rr-video-arrow-up-right:before {
content: "\febc";
}
.fi-rr-video-camera-alt:before {
content: "\febd";
}
.fi-rr-video-camera:before {
content: "\febe";
}
.fi-rr-video-duration:before {
content: "\febf";
}
.fi-rr-video-plus:before {
content: "\fec0";
}
.fi-rr-video-slash:before {
content: "\fec1";
}
.fi-rr-videoconference:before {
content: "\fec2";
}
.fi-rr-vihara:before {
content: "\fec3";
}
.fi-rr-violin:before {
content: "\fec4";
}
.fi-rr-virus-slash:before {
content: "\fec5";
}
.fi-rr-virus:before {
content: "\fec6";
}
.fi-rr-viruses:before {
content: "\fec7";
}
.fi-rr-visit:before {
content: "\fec8";
}
.fi-rr-voicemail:before {
content: "\fec9";
}
.fi-rr-volcano:before {
content: "\feca";
}
.fi-rr-volleyball:before {
content: "\fecb";
}
.fi-rr-volume-down:before {
content: "\fecc";
}
.fi-rr-volume-mute:before {
content: "\fecd";
}
.fi-rr-volume-off:before {
content: "\fece";
}
.fi-rr-volume-slash:before {
content: "\fecf";
}
.fi-rr-volume:before {
content: "\fed0";
}
.fi-rr-vote-nay:before {
content: "\fed1";
}
.fi-rr-vote-yea:before {
content: "\fed2";
}
.fi-rr-vr-cardboard:before {
content: "\fed3";
}
.fi-rr-w:before {
content: "\fed4";
}
.fi-rr-waffle:before {
content: "\fed5";
}
.fi-rr-wagon-covered:before {
content: "\fed6";
}
.fi-rr-walker:before {
content: "\fed7";
}
.fi-rr-walkie-talkie:before {
content: "\fed8";
}
.fi-rr-walking:before {
content: "\fed9";
}
.fi-rr-wallet-arrow:before {
content: "\feda";
}
.fi-rr-wallet-buyer:before {
content: "\fedb";
}
.fi-rr-wallet:before {
content: "\fedc";
}
.fi-rr-warehouse-alt:before {
content: "\fedd";
}
.fi-rr-warranty:before {
content: "\fede";
}
.fi-rr-washer:before {
content: "\fedf";
}
.fi-rr-waste-pollution:before {
content: "\fee0";
}
.fi-rr-waste:before {
content: "\fee1";
}
.fi-rr-watch-calculator:before {
content: "\fee2";
}
.fi-rr-watch-fitness:before {
content: "\fee3";
}
.fi-rr-watch-smart:before {
content: "\fee4";
}
.fi-rr-watch:before {
content: "\fee5";
}
.fi-rr-water-bottle:before {
content: "\fee6";
}
.fi-rr-water-ladder:before {
content: "\fee7";
}
.fi-rr-water-lower:before {
content: "\fee8";
}
.fi-rr-water-rise:before {
content: "\fee9";
}
.fi-rr-water:before {
content: "\feea";
}
.fi-rr-watermelon:before {
content: "\feeb";
}
.fi-rr-wave-sine:before {
content: "\feec";
}
.fi-rr-wave-square:before {
content: "\feed";
}
.fi-rr-wave-triangle:before {
content: "\feee";
}
.fi-rr-wave:before {
content: "\feef";
}
.fi-rr-waveform-path:before {
content: "\fef0";
}
.fi-rr-waveform:before {
content: "\fef1";
}
.fi-rr-web-design:before {
content: "\fef2";
}
.fi-rr-webcam-slash:before {
content: "\fef3";
}
.fi-rr-webcam:before {
content: "\fef4";
}
.fi-rr-webhook:before {
content: "\fef5";
}
.fi-rr-wednesday:before {
content: "\fef6";
}
.fi-rr-whale:before {
content: "\fef7";
}
.fi-rr-wheat-awn-circle-exclamation:before {
content: "\fef8";
}
.fi-rr-wheat-awn-slash:before {
content: "\fef9";
}
.fi-rr-wheat-awn:before {
content: "\fefa";
}
.fi-rr-wheat-slash:before {
content: "\fefb";
}
.fi-rr-wheat:before {
content: "\fefc";
}
.fi-rr-wheelchair-move:before {
content: "\fefd";
}
.fi-rr-wheelchair-sleeping:before {
content: "\fefe";
}
.fi-rr-wheelchair:before {
content: "\ff00";
}
.fi-rr-whistle:before {
content: "\ff01";
}
.fi-rr-white-space:before {
content: "\ff02";
}
.fi-rr-wifi-1:before {
content: "\ff03";
}
.fi-rr-wifi-2:before {
content: "\ff04";
}
.fi-rr-wifi-alt:before {
content: "\ff05";
}
.fi-rr-wifi-exclamation:before {
content: "\ff06";
}
.fi-rr-wifi-slash:before {
content: "\ff07";
}
.fi-rr-wifi:before {
content: "\ff08";
}
.fi-rr-wind-turbine:before {
content: "\ff09";
}
.fi-rr-wind-warning:before {
content: "\ff0a";
}
.fi-rr-wind:before {
content: "\ff0b";
}
.fi-rr-window-alt:before {
content: "\ff0c";
}
.fi-rr-window-frame-open:before {
content: "\ff0d";
}
.fi-rr-window-frame:before {
content: "\ff0e";
}
.fi-rr-window-maximize:before {
content: "\ff0f";
}
.fi-rr-window-minimize:before {
content: "\ff10";
}
.fi-rr-window-restore:before {
content: "\ff11";
}
.fi-rr-windsock:before {
content: "\ff12";
}
.fi-rr-wine-bottle:before {
content: "\ff13";
}
.fi-rr-wine-glass-crack:before {
content: "\ff14";
}
.fi-rr-wine-glass-empty:before {
content: "\ff15";
}
.fi-rr-wishlist-heart:before {
content: "\ff16";
}
.fi-rr-wishlist-star:before {
content: "\ff17";
}
.fi-rr-woman-head:before {
content: "\ff18";
}
.fi-rr-woman-scientist:before {
content: "\ff19";
}
.fi-rr-won-sign:before {
content: "\ff1a";
}
.fi-rr-work-in-progress:before {
content: "\ff1b";
}
.fi-rr-workflow-alt:before {
content: "\ff1c";
}
.fi-rr-workflow-setting-alt:before {
content: "\ff1d";
}
.fi-rr-workflow-setting:before {
content: "\ff1e";
}
.fi-rr-workflow:before {
content: "\ff1f";
}
.fi-rr-workshop:before {
content: "\ff20";
}
.fi-rr-world:before {
content: "\ff21";
}
.fi-rr-worm:before {
content: "\ff22";
}
.fi-rr-wreath:before {
content: "\ff23";
}
.fi-rr-wrench-alt:before {
content: "\ff24";
}
.fi-rr-wrench-simple:before {
content: "\ff25";
}
.fi-rr-x-ray:before {
content: "\ff26";
}
.fi-rr-x:before {
content: "\ff27";
}
.fi-rr-y:before {
content: "\ff28";
}
.fi-rr-yen:before {
content: "\ff29";
}
.fi-rr-yin-yang:before {
content: "\ff2a";
}
.fi-rr-z:before {
content: "\ff2b";
}
.fi-rr-zip-file:before {
content: "\ff2c";
}
.fi-rr-zoom-in:before {
content: "\ff2d";
}
.fi-rr-zoom-out:before {
content: "\ff2e";
}@font-face {
font-family: "uicons-solid-rounded";
src: url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-solid-rounded.woff2) format("woff2"),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-solid-rounded.woff) format("woff"),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/uicons-solid-rounded.eot#iefix) format("embedded-opentype");
font-display: swap;
}
i[class^="fi-sr-"]:before, i[class*=" fi-sr-"]:before, span[class^="fi-sr-"]:before, span[class*="fi-sr-"]:before {
font-family: uicons-solid-rounded !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.variable-selector-00:before {
content: "\fe00";
}
.variable-selector-01:before {
content: "\fe01";
}
.variable-selector-02:before {
content: "\fe02";
}
.variable-selector-03:before {
content: "\fe03";
}
.variable-selector-04:before {
content: "\fe04";
}
.variable-selector-05:before {
content: "\fe05";
}
.variable-selector-06:before {
content: "\fe06";
}
.variable-selector-07:before {
content: "\fe07";
}
.variable-selector-08:before {
content: "\fe08";
}
.variable-selector-09:before {
content: "\fe09";
}
.variable-selector-0a:before {
content: "\fe0a";
}
.variable-selector-0b:before {
content: "\fe0b";
}
.variable-selector-0c:before {
content: "\fe0c";
}
.variable-selector-0d:before {
content: "\fe0d";
}
.variable-selector-0e:before {
content: "\fe0e";
}
.variable-selector-0f:before {
content: "\fe0f";
}
.combining-half-marks-00:before {
content: "\fe20";
}
.combining-half-marks-01:before {
content: "\fe21";
}
.combining-half-marks-02:before {
content: "\fe22";
}
.combining-half-marks-03:before {
content: "\fe23";
}
.combining-half-marks-04:before {
content: "\fe24";
}
.combining-half-marks-05:before {
content: "\fe25";
}
.combining-half-marks-06:before {
content: "\fe26";
}
.combining-half-marks-07:before {
content: "\fe27";
}
.combining-half-marks-08:before {
content: "\fe28";
}
.combining-half-marks-09:before {
content: "\fe29";
}
.combining-half-marks-0a:before {
content: "\fe2a";
}
.combining-half-marks-0b:before {
content: "\fe2b";
}
.combining-half-marks-0c:before {
content: "\fe2c";
}
.combining-half-marks-0d:before {
content: "\fe2d";
}
.combining-half-marks-0e:before {
content: "\fe2e";
}
.combining-half-marks-0f:before {
content: "\fe2f";
}
.zero-width-no-break-space-0f:before {
content: "\feff";
}
.fi-sr-0:before {
content: "\f101";
}
.fi-sr-00s-music-disc:before {
content: "\f102";
}
.fi-sr-1:before {
content: "\f103";
}
.fi-sr-2:before {
content: "\f104";
}
.fi-sr-3:before {
content: "\f105";
}
.fi-sr-360-degrees:before {
content: "\f106";
}
.fi-sr-4:before {
content: "\f107";
}
.fi-sr-404:before {
content: "\f108";
}
.fi-sr-5:before {
content: "\f109";
}
.fi-sr-6:before {
content: "\f10a";
}
.fi-sr-60s-music-disc:before {
content: "\f10b";
}
.fi-sr-7:before {
content: "\f10c";
}
.fi-sr-70s-music-disc:before {
content: "\f10d";
}
.fi-sr-8:before {
content: "\f10e";
}
.fi-sr-80s-music-disc:before {
content: "\f10f";
}
.fi-sr-9:before {
content: "\f110";
}
.fi-sr-90s-music-disc:before {
content: "\f111";
}
.fi-sr-a:before {
content: "\f112";
}
.fi-sr-accident:before {
content: "\f113";
}
.fi-sr-acorn:before {
content: "\f114";
}
.fi-sr-ad-paid:before {
content: "\f115";
}
.fi-sr-ad:before {
content: "\f116";
}
.fi-sr-add-document:before {
content: "\f117";
}
.fi-sr-add-folder:before {
content: "\f118";
}
.fi-sr-add-image:before {
content: "\f119";
}
.fi-sr-add:before {
content: "\f11a";
}
.fi-sr-address-book:before {
content: "\f11b";
}
.fi-sr-address-card:before {
content: "\f11c";
}
.fi-sr-admin-alt:before {
content: "\f11d";
}
.fi-sr-admin:before {
content: "\f11e";
}
.fi-sr-age-alt:before {
content: "\f11f";
}
.fi-sr-age-restriction-eighteen:before {
content: "\f120";
}
.fi-sr-age-restriction-seven:before {
content: "\f121";
}
.fi-sr-age-restriction-six:before {
content: "\f122";
}
.fi-sr-age-restriction-sixteen:before {
content: "\f123";
}
.fi-sr-age-restriction-thirteen:before {
content: "\f124";
}
.fi-sr-age-restriction-three:before {
content: "\f125";
}
.fi-sr-age-restriction-twelve:before {
content: "\f126";
}
.fi-sr-age-restriction-twenty-one:before {
content: "\f127";
}
.fi-sr-age-restriction-zero:before {
content: "\f128";
}
.fi-sr-age:before {
content: "\f129";
}
.fi-sr-air-conditioner:before {
content: "\f12a";
}
.fi-sr-air-freshener:before {
content: "\f12b";
}
.fi-sr-air-pollution:before {
content: "\f12c";
}
.fi-sr-airplane-journey:before {
content: "\f12d";
}
.fi-sr-airplane-window-open:before {
content: "\f12e";
}
.fi-sr-airplay:before {
content: "\f12f";
}
.fi-sr-alarm-clock:before {
content: "\f130";
}
.fi-sr-alarm-exclamation:before {
content: "\f131";
}
.fi-sr-alarm-plus:before {
content: "\f132";
}
.fi-sr-alarm-snooze:before {
content: "\f133";
}
.fi-sr-album-circle-plus:before {
content: "\f134";
}
.fi-sr-album-circle-user:before {
content: "\f135";
}
.fi-sr-album-collection:before {
content: "\f136";
}
.fi-sr-album:before {
content: "\f137";
}
.fi-sr-algorithm:before {
content: "\f138";
}
.fi-sr-alicorn:before {
content: "\f139";
}
.fi-sr-alien:before {
content: "\f13a";
}
.fi-sr-align-center:before {
content: "\f13b";
}
.fi-sr-align-justify:before {
content: "\f13c";
}
.fi-sr-align-left:before {
content: "\f13d";
}
.fi-sr-align-slash:before {
content: "\f13e";
}
.fi-sr-ambulance:before {
content: "\f13f";
}
.fi-sr-amusement-park:before {
content: "\f140";
}
.fi-sr-analyse-alt:before {
content: "\f141";
}
.fi-sr-analyse:before {
content: "\f142";
}
.fi-sr-anatomical-heart:before {
content: "\f143";
}
.fi-sr-anchor:before {
content: "\f144";
}
.fi-sr-angel:before {
content: "\f145";
}
.fi-sr-angle-90:before {
content: "\f146";
}
.fi-sr-angle-circle-down:before {
content: "\f147";
}
.fi-sr-angle-circle-left:before {
content: "\f148";
}
.fi-sr-angle-circle-right:before {
content: "\f149";
}
.fi-sr-angle-circle-up:before {
content: "\f14a";
}
.fi-sr-angle-double-left:before {
content: "\f14b";
}
.fi-sr-angle-double-right:before {
content: "\f14c";
}
.fi-sr-angle-double-small-down:before {
content: "\f14d";
}
.fi-sr-angle-double-small-left:before {
content: "\f14e";
}
.fi-sr-angle-double-small-right:before {
content: "\f14f";
}
.fi-sr-angle-double-small-up:before {
content: "\f150";
}
.fi-sr-angle-down:before {
content: "\f151";
}
.fi-sr-angle-left:before {
content: "\f152";
}
.fi-sr-angle-right:before {
content: "\f153";
}
.fi-sr-angle-small-down:before {
content: "\f154";
}
.fi-sr-angle-small-left:before {
content: "\f155";
}
.fi-sr-angle-small-right:before {
content: "\f156";
}
.fi-sr-angle-small-up:before {
content: "\f157";
}
.fi-sr-angle-square-down:before {
content: "\f158";
}
.fi-sr-angle-square-left:before {
content: "\f159";
}
.fi-sr-angle-square-right:before {
content: "\f15a";
}
.fi-sr-angle-square-up:before {
content: "\f15b";
}
.fi-sr-angle-up:before {
content: "\f15c";
}
.fi-sr-angle:before {
content: "\f15d";
}
.fi-sr-angles-up-down:before {
content: "\f15e";
}
.fi-sr-angry:before {
content: "\f15f";
}
.fi-sr-animated-icon:before {
content: "\f160";
}
.fi-sr-ankh:before {
content: "\f161";
}
.fi-sr-answer-alt:before {
content: "\f162";
}
.fi-sr-answer:before {
content: "\f163";
}
.fi-sr-apartment:before {
content: "\f164";
}
.fi-sr-aperture:before {
content: "\f165";
}
.fi-sr-api:before {
content: "\f166";
}
.fi-sr-apple-core:before {
content: "\f167";
}
.fi-sr-apple-crate:before {
content: "\f168";
}
.fi-sr-apple-whole:before {
content: "\f169";
}
.fi-sr-apps-add:before {
content: "\f16a";
}
.fi-sr-apps-delete:before {
content: "\f16b";
}
.fi-sr-apps-sort:before {
content: "\f16c";
}
.fi-sr-apps:before {
content: "\f16d";
}
.fi-sr-archive:before {
content: "\f16e";
}
.fi-sr-archway:before {
content: "\f16f";
}
.fi-sr-arrow-alt-circle-down:before {
content: "\f170";
}
.fi-sr-arrow-alt-circle-left:before {
content: "\f171";
}
.fi-sr-arrow-alt-circle-right:before {
content: "\f172";
}
.fi-sr-arrow-alt-circle-up:before {
content: "\f173";
}
.fi-sr-arrow-alt-down:before {
content: "\f174";
}
.fi-sr-arrow-alt-from-bottom:before {
content: "\f175";
}
.fi-sr-arrow-alt-from-left:before {
content: "\f176";
}
.fi-sr-arrow-alt-from-right:before {
content: "\f177";
}
.fi-sr-arrow-alt-from-top:before {
content: "\f178";
}
.fi-sr-arrow-alt-left:before {
content: "\f179";
}
.fi-sr-arrow-alt-right:before {
content: "\f17a";
}
.fi-sr-arrow-alt-square-down:before {
content: "\f17b";
}
.fi-sr-arrow-alt-square-left:before {
content: "\f17c";
}
.fi-sr-arrow-alt-square-right:before {
content: "\f17d";
}
.fi-sr-arrow-alt-square-up:before {
content: "\f17e";
}
.fi-sr-arrow-alt-to-bottom:before {
content: "\f17f";
}
.fi-sr-arrow-alt-to-left:before {
content: "\f180";
}
.fi-sr-arrow-alt-to-right:before {
content: "\f181";
}
.fi-sr-arrow-alt-to-top:before {
content: "\f182";
}
.fi-sr-arrow-alt-up:before {
content: "\f183";
}
.fi-sr-arrow-circle-down:before {
content: "\f184";
}
.fi-sr-arrow-circle-left:before {
content: "\f185";
}
.fi-sr-arrow-circle-right:before {
content: "\f186";
}
.fi-sr-arrow-circle-up:before {
content: "\f187";
}
.fi-sr-arrow-comparison:before {
content: "\f188";
}
.fi-sr-arrow-down-from-arc:before {
content: "\f189";
}
.fi-sr-arrow-down-from-dotted-line:before {
content: "\f18a";
}
.fi-sr-arrow-down-left:before {
content: "\f18b";
}
.fi-sr-arrow-down-small-big:before {
content: "\f18c";
}
.fi-sr-arrow-down-to-dotted-line:before {
content: "\f18d";
}
.fi-sr-arrow-down-to-square:before {
content: "\f18e";
}
.fi-sr-arrow-down-triangle-square:before {
content: "\f18f";
}
.fi-sr-arrow-down:before {
content: "\f190";
}
.fi-sr-arrow-from-bottom:before {
content: "\f191";
}
.fi-sr-arrow-from-left:before {
content: "\f192";
}
.fi-sr-arrow-from-right:before {
content: "\f193";
}
.fi-sr-arrow-from-top:before {
content: "\f194";
}
.fi-sr-arrow-left-from-arc:before {
content: "\f195";
}
.fi-sr-arrow-left-from-line:before {
content: "\f196";
}
.fi-sr-arrow-left-to-arc:before {
content: "\f197";
}
.fi-sr-arrow-left:before {
content: "\f198";
}
.fi-sr-arrow-progress-alt:before {
content: "\f199";
}
.fi-sr-arrow-progress:before {
content: "\f19a";
}
.fi-sr-arrow-right-to-bracket:before {
content: "\f19b";
}
.fi-sr-arrow-right:before {
content: "\f19c";
}
.fi-sr-arrow-small-down:before {
content: "\f19d";
}
.fi-sr-arrow-small-left:before {
content: "\f19e";
}
.fi-sr-arrow-small-right:before {
content: "\f19f";
}
.fi-sr-arrow-small-up:before {
content: "\f1a0";
}
.fi-sr-arrow-square-down:before {
content: "\f1a1";
}
.fi-sr-arrow-square-left:before {
content: "\f1a2";
}
.fi-sr-arrow-square-right:before {
content: "\f1a3";
}
.fi-sr-arrow-square-up:before {
content: "\f1a4";
}
.fi-sr-arrow-to-bottom:before {
content: "\f1a5";
}
.fi-sr-arrow-to-left:before {
content: "\f1a6";
}
.fi-sr-arrow-to-right:before {
content: "\f1a7";
}
.fi-sr-arrow-to-top:before {
content: "\f1a8";
}
.fi-sr-arrow-trend-down:before {
content: "\f1a9";
}
.fi-sr-arrow-trend-up:before {
content: "\f1aa";
}
.fi-sr-arrow-turn-down-left:before {
content: "\f1ab";
}
.fi-sr-arrow-turn-down-right:before {
content: "\f1ac";
}
.fi-sr-arrow-turn-left-up:before {
content: "\f1ad";
}
.fi-sr-arrow-up-from-dotted-line:before {
content: "\f1ae";
}
.fi-sr-arrow-up-from-ground-water:before {
content: "\f1af";
}
.fi-sr-arrow-up-from-square:before {
content: "\f1b0";
}
.fi-sr-arrow-up-left-from-circle:before {
content: "\f1b1";
}
.fi-sr-arrow-up-left:before {
content: "\f1b2";
}
.fi-sr-arrow-up-right-and-arrow-down-left-from-center:before {
content: "\f1b3";
}
.fi-sr-arrow-up-right-from-square:before {
content: "\f1b4";
}
.fi-sr-arrow-up-right:before {
content: "\f1b5";
}
.fi-sr-arrow-up-small-big:before {
content: "\f1b6";
}
.fi-sr-arrow-up-square-triangle:before {
content: "\f1b7";
}
.fi-sr-arrow-up-to-arc:before {
content: "\f1b8";
}
.fi-sr-arrow-up-to-dotted-line:before {
content: "\f1b9";
}
.fi-sr-arrow-up:before {
content: "\f1ba";
}
.fi-sr-arrow-upward-growth-crypto:before {
content: "\f1bb";
}
.fi-sr-arrows-alt-h:before {
content: "\f1bc";
}
.fi-sr-arrows-alt-v:before {
content: "\f1bd";
}
.fi-sr-arrows-alt:before {
content: "\f1be";
}
.fi-sr-arrows-cross:before {
content: "\f1bf";
}
.fi-sr-arrows-from-dotted-line:before {
content: "\f1c0";
}
.fi-sr-arrows-from-line:before {
content: "\f1c1";
}
.fi-sr-arrows-h-copy:before {
content: "\f1c2";
}
.fi-sr-arrows-h:before {
content: "\f1c3";
}
.fi-sr-arrows-repeat-1:before {
content: "\f1c4";
}
.fi-sr-arrows-repeat:before {
content: "\f1c5";
}
.fi-sr-arrows-retweet:before {
content: "\f1c6";
}
.fi-sr-arrows-split-right-and-left:before {
content: "\f1c7";
}
.fi-sr-arrows-split-up-and-left:before {
content: "\f1c8";
}
.fi-sr-arrows-to-circle:before {
content: "\f1c9";
}
.fi-sr-arrows-to-dotted-line:before {
content: "\f1ca";
}
.fi-sr-arrows-to-eye:before {
content: "\f1cb";
}
.fi-sr-arrows-to-line:before {
content: "\f1cc";
}
.fi-sr-arrows:before {
content: "\f1cd";
}
.fi-sr-artificial-intelligence:before {
content: "\f1ce";
}
.fi-sr-assept-document:before {
content: "\f1cf";
}
.fi-sr-assessment-alt:before {
content: "\f1d0";
}
.fi-sr-assessment:before {
content: "\f1d1";
}
.fi-sr-assistive-listening-systems:before {
content: "\f1d2";
}
.fi-sr-asterik:before {
content: "\f1d3";
}
.fi-sr-at:before {
content: "\f1d4";
}
.fi-sr-attribution-pen:before {
content: "\f1d5";
}
.fi-sr-attribution-pencil:before {
content: "\f1d6";
}
.fi-sr-aubergine:before {
content: "\f1d7";
}
.fi-sr-auction:before {
content: "\f1d8";
}
.fi-sr-audience-megaphone:before {
content: "\f1d9";
}
.fi-sr-audio-description-slash:before {
content: "\f1da";
}
.fi-sr-audit-alt:before {
content: "\f1db";
}
.fi-sr-audit:before {
content: "\f1dc";
}
.fi-sr-austral-sign:before {
content: "\f1dd";
}
.fi-sr-avocado:before {
content: "\f1de";
}
.fi-sr-award:before {
content: "\f1df";
}
.fi-sr-axe-battle:before {
content: "\f1e0";
}
.fi-sr-axe:before {
content: "\f1e1";
}
.fi-sr-b:before {
content: "\f1e2";
}
.fi-sr-baby-carriage:before {
content: "\f1e3";
}
.fi-sr-baby:before {
content: "\f1e4";
}
.fi-sr-back-up:before {
content: "\f1e5";
}
.fi-sr-background:before {
content: "\f1e6";
}
.fi-sr-backpack:before {
content: "\f1e7";
}
.fi-sr-bacon:before {
content: "\f1e8";
}
.fi-sr-bacteria:before {
content: "\f1e9";
}
.fi-sr-bacterium:before {
content: "\f1ea";
}
.fi-sr-badge-check:before {
content: "\f1eb";
}
.fi-sr-badge-dollar:before {
content: "\f1ec";
}
.fi-sr-badge-leaf:before {
content: "\f1ed";
}
.fi-sr-badge-percent:before {
content: "\f1ee";
}
.fi-sr-badge-sheriff:before {
content: "\f1ef";
}
.fi-sr-badge:before {
content: "\f1f0";
}
.fi-sr-badger-honey:before {
content: "\f1f1";
}
.fi-sr-badminton:before {
content: "\f1f2";
}
.fi-sr-bag-map-pin:before {
content: "\f1f3";
}
.fi-sr-bag-seedling:before {
content: "\f1f4";
}
.fi-sr-bag-shopping-minus:before {
content: "\f1f5";
}
.fi-sr-bags-shopping:before {
content: "\f1f6";
}
.fi-sr-baguette:before {
content: "\f1f7";
}
.fi-sr-bahai:before {
content: "\f1f8";
}
.fi-sr-baht-sign:before {
content: "\f1f9";
}
.fi-sr-balance-scale-left:before {
content: "\f1fa";
}
.fi-sr-balance-scale-right:before {
content: "\f1fb";
}
.fi-sr-ball-pile:before {
content: "\f1fc";
}
.fi-sr-ballet-dance:before {
content: "\f1fd";
}
.fi-sr-balloon:before {
content: "\f1fe";
}
.fi-sr-balloons:before {
content: "\f1ff";
}
.fi-sr-ballot-check:before {
content: "\f200";
}
.fi-sr-ballot:before {
content: "\f201";
}
.fi-sr-ban-bug:before {
content: "\f202";
}
.fi-sr-ban:before {
content: "\f203";
}
.fi-sr-banana:before {
content: "\f204";
}
.fi-sr-band-aid:before {
content: "\f205";
}
.fi-sr-bangladeshi-taka-sign:before {
content: "\f206";
}
.fi-sr-banjo:before {
content: "\f207";
}
.fi-sr-bank:before {
content: "\f208";
}
.fi-sr-banner-2:before {
content: "\f209";
}
.fi-sr-banner-3:before {
content: "\f20a";
}
.fi-sr-banner-4:before {
content: "\f20b";
}
.fi-sr-banner-5:before {
content: "\f20c";
}
.fi-sr-banner:before {
content: "\f20d";
}
.fi-sr-barber-pole:before {
content: "\f20e";
}
.fi-sr-barber-shop:before {
content: "\f20f";
}
.fi-sr-barcode-read:before {
content: "\f210";
}
.fi-sr-barcode-scan:before {
content: "\f211";
}
.fi-sr-barcode:before {
content: "\f212";
}
.fi-sr-bars-filter:before {
content: "\f213";
}
.fi-sr-bars-progress:before {
content: "\f214";
}
.fi-sr-bars-sort:before {
content: "\f215";
}
.fi-sr-bars-staggered:before {
content: "\f216";
}
.fi-sr-baseball-alt:before {
content: "\f217";
}
.fi-sr-baseball:before {
content: "\f218";
}
.fi-sr-basket-shopping-minus:before {
content: "\f219";
}
.fi-sr-basket-shopping-plus:before {
content: "\f21a";
}
.fi-sr-basket-shopping-simple:before {
content: "\f21b";
}
.fi-sr-basketball-hoop:before {
content: "\f21c";
}
.fi-sr-basketball:before {
content: "\f21d";
}
.fi-sr-bat:before {
content: "\f21e";
}
.fi-sr-bath:before {
content: "\f21f";
}
.fi-sr-battery-bolt:before {
content: "\f220";
}
.fi-sr-battery-empty:before {
content: "\f221";
}
.fi-sr-battery-exclamation:before {
content: "\f222";
}
.fi-sr-battery-full:before {
content: "\f223";
}
.fi-sr-battery-half:before {
content: "\f224";
}
.fi-sr-battery-quarter:before {
content: "\f225";
}
.fi-sr-battery-slash:before {
content: "\f226";
}
.fi-sr-battery-three-quarters:before {
content: "\f227";
}
.fi-sr-beacon:before {
content: "\f228";
}
.fi-sr-bed-alt:before {
content: "\f229";
}
.fi-sr-bed-bunk:before {
content: "\f22a";
}
.fi-sr-bed-empty:before {
content: "\f22b";
}
.fi-sr-bed:before {
content: "\f22c";
}
.fi-sr-bee:before {
content: "\f22d";
}
.fi-sr-beer-mug-empty:before {
content: "\f22e";
}
.fi-sr-beer:before {
content: "\f22f";
}
.fi-sr-bell-concierge:before {
content: "\f230";
}
.fi-sr-bell-notification-call:before {
content: "\f231";
}
.fi-sr-bell-notification-social-media:before {
content: "\f232";
}
.fi-sr-bell-ring:before {
content: "\f233";
}
.fi-sr-bell-school-slash:before {
content: "\f234";
}
.fi-sr-bell-school:before {
content: "\f235";
}
.fi-sr-bell-slash:before {
content: "\f236";
}
.fi-sr-bell:before {
content: "\f237";
}
.fi-sr-bells:before {
content: "\f238";
}
.fi-sr-bench-tree:before {
content: "\f239";
}
.fi-sr-benefit-diamond-alt:before {
content: "\f23a";
}
.fi-sr-benefit-diamond:before {
content: "\f23b";
}
.fi-sr-benefit-hand:before {
content: "\f23c";
}
.fi-sr-benefit-increase:before {
content: "\f23d";
}
.fi-sr-benefit-porcent:before {
content: "\f23e";
}
.fi-sr-benefit:before {
content: "\f23f";
}
.fi-sr-betamax:before {
content: "\f240";
}
.fi-sr-bible:before {
content: "\f241";
}
.fi-sr-bicycle-journey:before {
content: "\f242";
}
.fi-sr-bike:before {
content: "\f243";
}
.fi-sr-biking-mountain:before {
content: "\f244";
}
.fi-sr-biking:before {
content: "\f245";
}
.fi-sr-bill-arrow:before {
content: "\f246";
}
.fi-sr-billiard:before {
content: "\f247";
}
.fi-sr-bin-bottles:before {
content: "\f248";
}
.fi-sr-binary-circle-check:before {
content: "\f249";
}
.fi-sr-binary-lock:before {
content: "\f24a";
}
.fi-sr-binary-slash:before {
content: "\f24b";
}
.fi-sr-binary:before {
content: "\f24c";
}
.fi-sr-binoculars:before {
content: "\f24d";
}
.fi-sr-bio-leaves:before {
content: "\f24e";
}
.fi-sr-bio:before {
content: "\f24f";
}
.fi-sr-biohazard:before {
content: "\f250";
}
.fi-sr-bird:before {
content: "\f251";
}
.fi-sr-bitcoin-sign:before {
content: "\f252";
}
.fi-sr-blanket:before {
content: "\f253";
}
.fi-sr-blender-phone:before {
content: "\f254";
}
.fi-sr-blender:before {
content: "\f255";
}
.fi-sr-blinds-open:before {
content: "\f256";
}
.fi-sr-blinds-raised:before {
content: "\f257";
}
.fi-sr-blinds:before {
content: "\f258";
}
.fi-sr-block-brick:before {
content: "\f259";
}
.fi-sr-block-microphone:before {
content: "\f25a";
}
.fi-sr-block-question:before {
content: "\f25b";
}
.fi-sr-block-quote:before {
content: "\f25c";
}
.fi-sr-block:before {
content: "\f25d";
}
.fi-sr-blog-pencil:before {
content: "\f25e";
}
.fi-sr-blog-text:before {
content: "\f25f";
}
.fi-sr-blood-dropper:before {
content: "\f260";
}
.fi-sr-blood-test-tube-alt:before {
content: "\f261";
}
.fi-sr-blood-test-tube:before {
content: "\f262";
}
.fi-sr-blood:before {
content: "\f263";
}
.fi-sr-blossom:before {
content: "\f264";
}
.fi-sr-blueberries:before {
content: "\f265";
}
.fi-sr-blueprint:before {
content: "\f266";
}
.fi-sr-bold:before {
content: "\f267";
}
.fi-sr-bolt-auto:before {
content: "\f268";
}
.fi-sr-bolt-slash:before {
content: "\f269";
}
.fi-sr-bolt:before {
content: "\f26a";
}
.fi-sr-bomb:before {
content: "\f26b";
}
.fi-sr-bone-break:before {
content: "\f26c";
}
.fi-sr-bone:before {
content: "\f26d";
}
.fi-sr-bong:before {
content: "\f26e";
}
.fi-sr-bonus-alt:before {
content: "\f26f";
}
.fi-sr-bonus-star:before {
content: "\f270";
}
.fi-sr-bonus:before {
content: "\f271";
}
.fi-sr-book-alt:before {
content: "\f272";
}
.fi-sr-book-arrow-right:before {
content: "\f273";
}
.fi-sr-book-arrow-up:before {
content: "\f274";
}
.fi-sr-book-atlas:before {
content: "\f275";
}
.fi-sr-book-bookmark:before {
content: "\f276";
}
.fi-sr-book-circle-arrow-right:before {
content: "\f277";
}
.fi-sr-book-circle-arrow-up:before {
content: "\f278";
}
.fi-sr-book-copy:before {
content: "\f279";
}
.fi-sr-book-dead:before {
content: "\f27a";
}
.fi-sr-book-font:before {
content: "\f27b";
}
.fi-sr-book-heart:before {
content: "\f27c";
}
.fi-sr-book-medical:before {
content: "\f27d";
}
.fi-sr-book-open-cover:before {
content: "\f27e";
}
.fi-sr-book-open-reader:before {
content: "\f27f";
}
.fi-sr-book-plus:before {
content: "\f280";
}
.fi-sr-book-quran:before {
content: "\f281";
}
.fi-sr-book-section:before {
content: "\f282";
}
.fi-sr-book-spells:before {
content: "\f283";
}
.fi-sr-book-tanakh:before {
content: "\f284";
}
.fi-sr-book-user:before {
content: "\f285";
}
.fi-sr-book:before {
content: "\f286";
}
.fi-sr-Booking:before {
content: "\f287";
}
.fi-sr-bookmark-slash:before {
content: "\f288";
}
.fi-sr-bookmark:before {
content: "\f289";
}
.fi-sr-books-medical:before {
content: "\f28a";
}
.fi-sr-books:before {
content: "\f28b";
}
.fi-sr-boot-heeled:before {
content: "\f28c";
}
.fi-sr-boot:before {
content: "\f28d";
}
.fi-sr-booth-curtain:before {
content: "\f28e";
}
.fi-sr-border-all:before {
content: "\f28f";
}
.fi-sr-border-bottom:before {
content: "\f290";
}
.fi-sr-border-center-h:before {
content: "\f291";
}
.fi-sr-border-center-v:before {
content: "\f292";
}
.fi-sr-border-inner:before {
content: "\f293";
}
.fi-sr-border-left:before {
content: "\f294";
}
.fi-sr-border-none:before {
content: "\f295";
}
.fi-sr-border-outer:before {
content: "\f296";
}
.fi-sr-border-right:before {
content: "\f297";
}
.fi-sr-border-style-alt:before {
content: "\f298";
}
.fi-sr-border-style:before {
content: "\f299";
}
.fi-sr-border-top:before {
content: "\f29a";
}
.fi-sr-boss:before {
content: "\f29b";
}
.fi-sr-bottle-droplet:before {
content: "\f29c";
}
.fi-sr-bottle:before {
content: "\f29d";
}
.fi-sr-bow-arrow:before {
content: "\f29e";
}
.fi-sr-bowl-chopsticks-noodles:before {
content: "\f29f";
}
.fi-sr-bowl-chopsticks:before {
content: "\f2a0";
}
.fi-sr-bowl-rice:before {
content: "\f2a1";
}
.fi-sr-bowl-scoop:before {
content: "\f2a2";
}
.fi-sr-bowl-scoops:before {
content: "\f2a3";
}
.fi-sr-bowl-soft-serve:before {
content: "\f2a4";
}
.fi-sr-bowl-spoon:before {
content: "\f2a5";
}
.fi-sr-bowling-ball:before {
content: "\f2a6";
}
.fi-sr-bowling-pins:before {
content: "\f2a7";
}
.fi-sr-bowling:before {
content: "\f2a8";
}
.fi-sr-box-alt:before {
content: "\f2a9";
}
.fi-sr-box-ballot:before {
content: "\f2aa";
}
.fi-sr-box-check:before {
content: "\f2ab";
}
.fi-sr-box-circle-check:before {
content: "\f2ac";
}
.fi-sr-box-dollar:before {
content: "\f2ad";
}
.fi-sr-box-fragile:before {
content: "\f2ae";
}
.fi-sr-box-heart:before {
content: "\f2af";
}
.fi-sr-box-open-full:before {
content: "\f2b0";
}
.fi-sr-box-open:before {
content: "\f2b1";
}
.fi-sr-box-tissue:before {
content: "\f2b2";
}
.fi-sr-box-up:before {
content: "\f2b3";
}
.fi-sr-box:before {
content: "\f2b4";
}
.fi-sr-boxes:before {
content: "\f2b5";
}
.fi-sr-boxing-glove:before {
content: "\f2b6";
}
.fi-sr-bracket-curly-right:before {
content: "\f2b7";
}
.fi-sr-bracket-curly:before {
content: "\f2b8";
}
.fi-sr-bracket-round-right:before {
content: "\f2b9";
}
.fi-sr-bracket-round:before {
content: "\f2ba";
}
.fi-sr-bracket-square-right:before {
content: "\f2bb";
}
.fi-sr-bracket-square:before {
content: "\f2bc";
}
.fi-sr-brackets-curly:before {
content: "\f2bd";
}
.fi-sr-brackets-round:before {
content: "\f2be";
}
.fi-sr-brackets-square:before {
content: "\f2bf";
}
.fi-sr-braille-a:before {
content: "\f2c0";
}
.fi-sr-braille-b:before {
content: "\f2c1";
}
.fi-sr-braille-c:before {
content: "\f2c2";
}
.fi-sr-braille-d:before {
content: "\f2c3";
}
.fi-sr-braille-e:before {
content: "\f2c4";
}
.fi-sr-braille-g:before {
content: "\f2c5";
}
.fi-sr-braille-h:before {
content: "\f2c6";
}
.fi-sr-braille-i:before {
content: "\f2c7";
}
.fi-sr-braille-j:before {
content: "\f2c8";
}
.fi-sr-braille-k:before {
content: "\f2c9";
}
.fi-sr-braille-l:before {
content: "\f2ca";
}
.fi-sr-braille-m:before {
content: "\f2cb";
}
.fi-sr-braille-n-alt:before {
content: "\f2cc";
}
.fi-sr-braille-n:before {
content: "\f2cd";
}
.fi-sr-braille-o:before {
content: "\f2ce";
}
.fi-sr-braille-p:before {
content: "\f2cf";
}
.fi-sr-braille-q:before {
content: "\f2d0";
}
.fi-sr-braille-r:before {
content: "\f2d1";
}
.fi-sr-braille-s:before {
content: "\f2d2";
}
.fi-sr-braille-t:before {
content: "\f2d3";
}
.fi-sr-braille-u:before {
content: "\f2d4";
}
.fi-sr-braille-v:before {
content: "\f2d5";
}
.fi-sr-braille-w:before {
content: "\f2d6";
}
.fi-sr-braille-x:before {
content: "\f2d7";
}
.fi-sr-braille-y:before {
content: "\f2d8";
}
.fi-sr-braille-z:before {
content: "\f2d9";
}
.fi-sr-braille:before {
content: "\f2da";
}
.fi-sr-brain-circuit:before {
content: "\f2db";
}
.fi-sr-brain:before {
content: "\f2dc";
}
.fi-sr-brake-warning:before {
content: "\f2dd";
}
.fi-sr-branching:before {
content: "\f2de";
}
.fi-sr-brand:before {
content: "\f2df";
}
.fi-sr-branding:before {
content: "\f2e0";
}
.fi-sr-bread-loaf:before {
content: "\f2e1";
}
.fi-sr-bread-slice-butter:before {
content: "\f2e2";
}
.fi-sr-bread-slice:before {
content: "\f2e3";
}
.fi-sr-bread:before {
content: "\f2e4";
}
.fi-sr-briefcase-arrow-right:before {
content: "\f2e5";
}
.fi-sr-briefcase-blank:before {
content: "\f2e6";
}
.fi-sr-briefcase:before {
content: "\f2e7";
}
.fi-sr-brightness-low:before {
content: "\f2e8";
}
.fi-sr-brightness:before {
content: "\f2e9";
}
.fi-sr-bring-forward:before {
content: "\f2ea";
}
.fi-sr-bring-front:before {
content: "\f2eb";
}
.fi-sr-broadcast-tower:before {
content: "\f2ec";
}
.fi-sr-broccoli:before {
content: "\f2ed";
}
.fi-sr-broken-chain-link-wrong:before {
content: "\f2ee";
}
.fi-sr-broken-image:before {
content: "\f2ef";
}
.fi-sr-broom-ball:before {
content: "\f2f0";
}
.fi-sr-broom:before {
content: "\f2f1";
}
.fi-sr-browser-ui:before {
content: "\f2f2";
}
.fi-sr-browser:before {
content: "\f2f3";
}
.fi-sr-browsers:before {
content: "\f2f4";
}
.fi-sr-brush:before {
content: "\f2f5";
}
.fi-sr-bucket:before {
content: "\f2f6";
}
.fi-sr-budget-alt:before {
content: "\f2f7";
}
.fi-sr-budget:before {
content: "\f2f8";
}
.fi-sr-bug-slash:before {
content: "\f2f9";
}
.fi-sr-bug:before {
content: "\f2fa";
}
.fi-sr-bugs:before {
content: "\f2fb";
}
.fi-sr-build-alt:before {
content: "\f2fc";
}
.fi-sr-build:before {
content: "\f2fd";
}
.fi-sr-building-circle-arrow-right:before {
content: "\f2fe";
}
.fi-sr-building-ngo:before {
content: "\f2ff";
}
.fi-sr-building:before {
content: "\f300";
}
.fi-sr-bulb:before {
content: "\f301";
}
.fi-sr-bullet:before {
content: "\f302";
}
.fi-sr-bullhorn:before {
content: "\f303";
}
.fi-sr-bullseye-arrow:before {
content: "\f304";
}
.fi-sr-bullseye-pointer:before {
content: "\f305";
}
.fi-sr-bullseye:before {
content: "\f306";
}
.fi-sr-burger-alt:before {
content: "\f307";
}
.fi-sr-burger-fries:before {
content: "\f308";
}
.fi-sr-burger-glass:before {
content: "\f309";
}
.fi-sr-burrito:before {
content: "\f30a";
}
.fi-sr-burst:before {
content: "\f30b";
}
.fi-sr-bus-alt:before {
content: "\f30c";
}
.fi-sr-bus:before {
content: "\f30d";
}
.fi-sr-business-time:before {
content: "\f30e";
}
.fi-sr-Butter:before {
content: "\f30f";
}
.fi-sr-butterfly:before {
content: "\f310";
}
.fi-sr-c:before {
content: "\f311";
}
.fi-sr-cabin:before {
content: "\f312";
}
.fi-sr-cactus:before {
content: "\f313";
}
.fi-sr-cage-empty:before {
content: "\f314";
}
.fi-sr-cake-birthday:before {
content: "\f315";
}
.fi-sr-cake-slice:before {
content: "\f316";
}
.fi-sr-cake-wedding:before {
content: "\f317";
}
.fi-sr-calculator-bill:before {
content: "\f318";
}
.fi-sr-calculator-math-tax:before {
content: "\f319";
}
.fi-sr-calculator-money:before {
content: "\f31a";
}
.fi-sr-calculator-simple:before {
content: "\f31b";
}
.fi-sr-calculator:before {
content: "\f31c";
}
.fi-sr-calendar-arrow-down:before {
content: "\f31d";
}
.fi-sr-calendar-arrow-up:before {
content: "\f31e";
}
.fi-sr-calendar-birhtday-cake:before {
content: "\f31f";
}
.fi-sr-calendar-call:before {
content: "\f320";
}
.fi-sr-calendar-check:before {
content: "\f321";
}
.fi-sr-calendar-clock:before {
content: "\f322";
}
.fi-sr-calendar-day:before {
content: "\f323";
}
.fi-sr-calendar-days:before {
content: "\f324";
}
.fi-sr-calendar-event-tax:before {
content: "\f325";
}
.fi-sr-calendar-exclamation:before {
content: "\f326";
}
.fi-sr-calendar-gavel-legal:before {
content: "\f327";
}
.fi-sr-calendar-heart:before {
content: "\f328";
}
.fi-sr-calendar-image:before {
content: "\f329";
}
.fi-sr-calendar-lines-pen:before {
content: "\f32a";
}
.fi-sr-calendar-lines:before {
content: "\f32b";
}
.fi-sr-calendar-minus:before {
content: "\f32c";
}
.fi-sr-calendar-payment-loan:before {
content: "\f32d";
}
.fi-sr-calendar-pen:before {
content: "\f32e";
}
.fi-sr-calendar-plus:before {
content: "\f32f";
}
.fi-sr-calendar-salary:before {
content: "\f330";
}
.fi-sr-calendar-shift-swap:before {
content: "\f331";
}
.fi-sr-calendar-star:before {
content: "\f332";
}
.fi-sr-calendar-swap:before {
content: "\f333";
}
.fi-sr-calendar-week:before {
content: "\f334";
}
.fi-sr-calendar-xmark:before {
content: "\f335";
}
.fi-sr-calendar:before {
content: "\f336";
}
.fi-sr-calendars:before {
content: "\f337";
}
.fi-sr-call-duration:before {
content: "\f338";
}
.fi-sr-call-history:before {
content: "\f339";
}
.fi-sr-call-incoming:before {
content: "\f33a";
}
.fi-sr-call-missed:before {
content: "\f33b";
}
.fi-sr-call-outgoing:before {
content: "\f33c";
}
.fi-sr-camcorder:before {
content: "\f33d";
}
.fi-sr-camera-cctv:before {
content: "\f33e";
}
.fi-sr-camera-movie:before {
content: "\f33f";
}
.fi-sr-camera-retro:before {
content: "\f340";
}
.fi-sr-camera-rotate:before {
content: "\f341";
}
.fi-sr-camera-security:before {
content: "\f342";
}
.fi-sr-camera-slash:before {
content: "\f343";
}
.fi-sr-camera-viewfinder:before {
content: "\f344";
}
.fi-sr-camera:before {
content: "\f345";
}
.fi-sr-campfire:before {
content: "\f346";
}
.fi-sr-camping:before {
content: "\f347";
}
.fi-sr-can-food:before {
content: "\f348";
}
.fi-sr-candle-holder:before {
content: "\f349";
}
.fi-sr-candle-lotus-yoga:before {
content: "\f34a";
}
.fi-sr-candle-pose-yoga:before {
content: "\f34b";
}
.fi-sr-candy-alt:before {
content: "\f34c";
}
.fi-sr-candy-bar:before {
content: "\f34d";
}
.fi-sr-candy-cane:before {
content: "\f34e";
}
.fi-sr-candy-corn:before {
content: "\f34f";
}
.fi-sr-candy-sweet:before {
content: "\f350";
}
.fi-sr-candy:before {
content: "\f351";
}
.fi-sr-Cannabis:before {
content: "\f352";
}
.fi-sr-canned-food:before {
content: "\f353";
}
.fi-sr-capsules:before {
content: "\f354";
}
.fi-sr-car-alt:before {
content: "\f355";
}
.fi-sr-car-battery:before {
content: "\f356";
}
.fi-sr-car-bolt:before {
content: "\f357";
}
.fi-sr-car-building:before {
content: "\f358";
}
.fi-sr-car-bump:before {
content: "\f359";
}
.fi-sr-car-bus:before {
content: "\f35a";
}
.fi-sr-car-circle-bolt:before {
content: "\f35b";
}
.fi-sr-car-crash:before {
content: "\f35c";
}
.fi-sr-car-garage:before {
content: "\f35d";
}
.fi-sr-car-journey:before {
content: "\f35e";
}
.fi-sr-car-mechanic:before {
content: "\f35f";
}
.fi-sr-car-rear:before {
content: "\f360";
}
.fi-sr-car-side-bolt:before {
content: "\f361";
}
.fi-sr-car-side:before {
content: "\f362";
}
.fi-sr-car-tilt:before {
content: "\f363";
}
.fi-sr-car-tunnel:before {
content: "\f364";
}
.fi-sr-car-wash:before {
content: "\f365";
}
.fi-sr-car:before {
content: "\f366";
}
.fi-sr-caravan-alt:before {
content: "\f367";
}
.fi-sr-caravan:before {
content: "\f368";
}
.fi-sr-card-club:before {
content: "\f369";
}
.fi-sr-card-diamond:before {
content: "\f36a";
}
.fi-sr-card-heart:before {
content: "\f36b";
}
.fi-sr-card-spade:before {
content: "\f36c";
}
.fi-sr-cardinal-compass:before {
content: "\f36d";
}
.fi-sr-career-growth:before {
content: "\f36e";
}
.fi-sr-career-path:before {
content: "\f36f";
}
.fi-sr-caret-circle-down:before {
content: "\f370";
}
.fi-sr-caret-circle-right:before {
content: "\f371";
}
.fi-sr-caret-circle-up:before {
content: "\f372";
}
.fi-sr-caret-down:before {
content: "\f373";
}
.fi-sr-caret-left:before {
content: "\f374";
}
.fi-sr-caret-quare-up:before {
content: "\f375";
}
.fi-sr-caret-right:before {
content: "\f376";
}
.fi-sr-caret-square-down:before {
content: "\f377";
}
.fi-sr-caret-square-left_1:before {
content: "\f378";
}
.fi-sr-caret-square-left:before {
content: "\f379";
}
.fi-sr-caret-square-right:before {
content: "\f37a";
}
.fi-sr-caret-up:before {
content: "\f37b";
}
.fi-sr-carrot:before {
content: "\f37c";
}
.fi-sr-cars-crash:before {
content: "\f37d";
}
.fi-sr-cars:before {
content: "\f37e";
}
.fi-sr-cart-arrow-down:before {
content: "\f37f";
}
.fi-sr-cart-minus:before {
content: "\f380";
}
.fi-sr-cart-shopping-fast:before {
content: "\f381";
}
.fi-sr-cash-register:before {
content: "\f382";
}
.fi-sr-cassette-tape:before {
content: "\f383";
}
.fi-sr-cassette-vhs:before {
content: "\f384";
}
.fi-sr-castle:before {
content: "\f385";
}
.fi-sr-cat-head:before {
content: "\f386";
}
.fi-sr-cat-space:before {
content: "\f387";
}
.fi-sr-cat:before {
content: "\f388";
}
.fi-sr-catalog-alt:before {
content: "\f389";
}
.fi-sr-catalog-magazine:before {
content: "\f38a";
}
.fi-sr-catalog:before {
content: "\f38b";
}
.fi-sr-category-alt:before {
content: "\f38c";
}
.fi-sr-category:before {
content: "\f38d";
}
.fi-sr-cauldron:before {
content: "\f38e";
}
.fi-sr-cedi-sign:before {
content: "\f38f";
}
.fi-sr-cello:before {
content: "\f390";
}
.fi-sr-cent-sign:before {
content: "\f391";
}
.fi-sr-chair-office:before {
content: "\f392";
}
.fi-sr-chair:before {
content: "\f393";
}
.fi-sr-chalkboard-user:before {
content: "\f394";
}
.fi-sr-chalkboard:before {
content: "\f395";
}
.fi-sr-challenge-alt:before {
content: "\f396";
}
.fi-sr-challenge:before {
content: "\f397";
}
.fi-sr-channel:before {
content: "\f398";
}
.fi-sr-charging-station:before {
content: "\f399";
}
.fi-sr-chart-area:before {
content: "\f39a";
}
.fi-sr-chart-bullet:before {
content: "\f39b";
}
.fi-sr-chart-candlestick:before {
content: "\f39c";
}
.fi-sr-chart-connected:before {
content: "\f39d";
}
.fi-sr-chart-gantt:before {
content: "\f39e";
}
.fi-sr-chart-histogram:before {
content: "\f39f";
}
.fi-sr-chart-kanban:before {
content: "\f3a0";
}
.fi-sr-chart-line-up-down:before {
content: "\f3a1";
}
.fi-sr-chart-line-up:before {
content: "\f3a2";
}
.fi-sr-chart-mixed-up-circle-currency:before {
content: "\f3a3";
}
.fi-sr-chart-mixed-up-circle-dollar:before {
content: "\f3a4";
}
.fi-sr-chart-mixed:before {
content: "\f3a5";
}
.fi-sr-chart-network:before {
content: "\f3a6";
}
.fi-sr-chart-pie-alt:before {
content: "\f3a7";
}
.fi-sr-chart-pie-simple-circle-currency:before {
content: "\f3a8";
}
.fi-sr-chart-pie-simple-circle-dollar:before {
content: "\f3a9";
}
.fi-sr-chart-pie:before {
content: "\f3aa";
}
.fi-sr-chart-pyramid:before {
content: "\f3ab";
}
.fi-sr-chart-radar:before {
content: "\f3ac";
}
.fi-sr-chart-scatter-3d:before {
content: "\f3ad";
}
.fi-sr-chart-scatter-bubble:before {
content: "\f3ae";
}
.fi-sr-chart-scatter:before {
content: "\f3af";
}
.fi-sr-chart-set-theory:before {
content: "\f3b0";
}
.fi-sr-chart-simple-horizontal:before {
content: "\f3b1";
}
.fi-sr-chart-simple:before {
content: "\f3b2";
}
.fi-sr-chart-tree-map:before {
content: "\f3b3";
}
.fi-sr-chart-tree:before {
content: "\f3b4";
}
.fi-sr-chart-user:before {
content: "\f3b5";
}
.fi-sr-chart-waterfall:before {
content: "\f3b6";
}
.fi-sr-chat-arrow-down:before {
content: "\f3b7";
}
.fi-sr-chat-arrow-grow:before {
content: "\f3b8";
}
.fi-sr-chat-bubble-call:before {
content: "\f3b9";
}
.fi-sr-chatbot-speech-bubble:before {
content: "\f3ba";
}
.fi-sr-chatbot:before {
content: "\f3bb";
}
.fi-sr-check-circle:before {
content: "\f3bc";
}
.fi-sr-check-double:before {
content: "\f3bd";
}
.fi-sr-check-in-calendar:before {
content: "\f3be";
}
.fi-sr-check-out-calendar:before {
content: "\f3bf";
}
.fi-sr-check:before {
content: "\f3c0";
}
.fi-sr-checkbox:before {
content: "\f3c1";
}
.fi-sr-checklist-task-budget:before {
content: "\f3c2";
}
.fi-sr-cheese-alt:before {
content: "\f3c3";
}
.fi-sr-cheese:before {
content: "\f3c4";
}
.fi-sr-cheeseburger:before {
content: "\f3c5";
}
.fi-sr-cherry:before {
content: "\f3c6";
}
.fi-sr-chess-bishop:before {
content: "\f3c7";
}
.fi-sr-chess-board:before {
content: "\f3c8";
}
.fi-sr-chess-clock-alt:before {
content: "\f3c9";
}
.fi-sr-chess-clock:before {
content: "\f3ca";
}
.fi-sr-chess-king-alt:before {
content: "\f3cb";
}
.fi-sr-chess-king:before {
content: "\f3cc";
}
.fi-sr-chess-knight-alt:before {
content: "\f3cd";
}
.fi-sr-chess-knight:before {
content: "\f3ce";
}
.fi-sr-chess-pawn-alt:before {
content: "\f3cf";
}
.fi-sr-chess-pawn:before {
content: "\f3d0";
}
.fi-sr-chess-piece:before {
content: "\f3d1";
}
.fi-sr-chess-queen-alt:before {
content: "\f3d2";
}
.fi-sr-chess-queen:before {
content: "\f3d3";
}
.fi-sr-chess-rook-alt:before {
content: "\f3d4";
}
.fi-sr-chess-rook:before {
content: "\f3d5";
}
.fi-sr-chess:before {
content: "\f3d6";
}
.fi-sr-chevron-double-down:before {
content: "\f3d7";
}
.fi-sr-chevron-double-up:before {
content: "\f3d8";
}
.fi-sr-child-head:before {
content: "\f3d9";
}
.fi-sr-child:before {
content: "\f3da";
}
.fi-sr-chimney:before {
content: "\f3db";
}
.fi-sr-chip:before {
content: "\f3dc";
}
.fi-sr-chocolate:before {
content: "\f3dd";
}
.fi-sr-choir-singing:before {
content: "\f3de";
}
.fi-sr-choose-alt:before {
content: "\f3df";
}
.fi-sr-choose:before {
content: "\f3e0";
}
.fi-sr-church:before {
content: "\f3e1";
}
.fi-sr-circle-0:before {
content: "\f3e2";
}
.fi-sr-circle-1:before {
content: "\f3e3";
}
.fi-sr-circle-2:before {
content: "\f3e4";
}
.fi-sr-circle-3:before {
content: "\f3e5";
}
.fi-sr-circle-4:before {
content: "\f3e6";
}
.fi-sr-circle-5:before {
content: "\f3e7";
}
.fi-sr-circle-6:before {
content: "\f3e8";
}
.fi-sr-circle-7:before {
content: "\f3e9";
}
.fi-sr-circle-8:before {
content: "\f3ea";
}
.fi-sr-circle-9:before {
content: "\f3eb";
}
.fi-sr-circle-a:before {
content: "\f3ec";
}
.fi-sr-circle-b:before {
content: "\f3ed";
}
.fi-sr-circle-bolt:before {
content: "\f3ee";
}
.fi-sr-circle-book-open:before {
content: "\f3ef";
}
.fi-sr-circle-bookmark:before {
content: "\f3f0";
}
.fi-sr-circle-c:before {
content: "\f3f1";
}
.fi-sr-circle-calendar:before {
content: "\f3f2";
}
.fi-sr-circle-camera:before {
content: "\f3f3";
}
.fi-sr-circle-d:before {
content: "\f3f4";
}
.fi-sr-circle-dashed:before {
content: "\f3f5";
}
.fi-sr-circle-divide:before {
content: "\f3f6";
}
.fi-sr-circle-e:before {
content: "\f3f7";
}
.fi-sr-circle-ellipsis-vertical:before {
content: "\f3f8";
}
.fi-sr-circle-ellipsis:before {
content: "\f3f9";
}
.fi-sr-circle-envelope:before {
content: "\f3fa";
}
.fi-sr-circle-exclamation-check:before {
content: "\f3fb";
}
.fi-sr-circle-f:before {
content: "\f3fc";
}
.fi-sr-circle-g:before {
content: "\f3fd";
}
.fi-sr-circle-h:before {
content: "\f3fe";
}
.fi-sr-circle-half-stroke:before {
content: "\f3ff";
}
.fi-sr-circle-half:before {
content: "\f400";
}
.fi-sr-circle-heart:before {
content: "\f401";
}
.fi-sr-circle-i:before {
content: "\f402";
}
.fi-sr-circle-j:before {
content: "\f403";
}
.fi-sr-circle-k:before {
content: "\f404";
}
.fi-sr-circle-l:before {
content: "\f405";
}
.fi-sr-circle-m:before {
content: "\f406";
}
.fi-sr-circle-microphone-lines:before {
content: "\f407";
}
.fi-sr-circle-microphone:before {
content: "\f408";
}
.fi-sr-circle-n:before {
content: "\f409";
}
.fi-sr-circle-nodes:before {
content: "\f40a";
}
.fi-sr-circle-o:before {
content: "\f40b";
}
.fi-sr-circle-overlap:before {
content: "\f40c";
}
.fi-sr-circle-p:before {
content: "\f40d";
}
.fi-sr-circle-phone-flip:before {
content: "\f40e";
}
.fi-sr-circle-phone-hangup:before {
content: "\f40f";
}
.fi-sr-circle-phone:before {
content: "\f410";
}
.fi-sr-circle-q:before {
content: "\f411";
}
.fi-sr-circle-quarter:before {
content: "\f412";
}
.fi-sr-circle-quarters-alt:before {
content: "\f413";
}
.fi-sr-circle-r:before {
content: "\f414";
}
.fi-sr-circle-s:before {
content: "\f415";
}
.fi-sr-circle-small:before {
content: "\f416";
}
.fi-sr-circle-star:before {
content: "\f417";
}
.fi-sr-circle-t:before {
content: "\f418";
}
.fi-sr-circle-three-quarters:before {
content: "\f419";
}
.fi-sr-circle-trash:before {
content: "\f41a";
}
.fi-sr-circle-u:before {
content: "\f41b";
}
.fi-sr-circle-user:before {
content: "\f41c";
}
.fi-sr-circle-v:before {
content: "\f41d";
}
.fi-sr-circle-video:before {
content: "\f41e";
}
.fi-sr-circle-w:before {
content: "\f41f";
}
.fi-sr-circle-waveform-lines:before {
content: "\f420";
}
.fi-sr-circle-x:before {
content: "\f421";
}
.fi-sr-circle-xmark:before {
content: "\f422";
}
.fi-sr-circle-y:before {
content: "\f423";
}
.fi-sr-circle-z:before {
content: "\f424";
}
.fi-sr-circle:before {
content: "\f425";
}
.fi-sr-citrus-slice:before {
content: "\f426";
}
.fi-sr-citrus:before {
content: "\f427";
}
.fi-sr-city:before {
content: "\f428";
}
.fi-sr-clapperboard-play:before {
content: "\f429";
}
.fi-sr-clapperboard:before {
content: "\f42a";
}
.fi-sr-clarinet:before {
content: "\f42b";
}
.fi-sr-claw-marks:before {
content: "\f42c";
}
.fi-sr-clear-alt:before {
content: "\f42d";
}
.fi-sr-clip-file:before {
content: "\f42e";
}
.fi-sr-clip-mail:before {
content: "\f42f";
}
.fi-sr-clip:before {
content: "\f430";
}
.fi-sr-clipboard-check:before {
content: "\f431";
}
.fi-sr-clipboard-list-check:before {
content: "\f432";
}
.fi-sr-clipboard-list:before {
content: "\f433";
}
.fi-sr-clipboard-prescription:before {
content: "\f434";
}
.fi-sr-clipboard-question:before {
content: "\f435";
}
.fi-sr-clipboard-user:before {
content: "\f436";
}
.fi-sr-clipboard:before {
content: "\f437";
}
.fi-sr-clipoard-wrong:before {
content: "\f438";
}
.fi-sr-clock-desk:before {
content: "\f439";
}
.fi-sr-clock-eight-thirty:before {
content: "\f43a";
}
.fi-sr-clock-eleven-thirty:before {
content: "\f43b";
}
.fi-sr-clock-eleven:before {
content: "\f43c";
}
.fi-sr-clock-five-thirty:before {
content: "\f43d";
}
.fi-sr-clock-five:before {
content: "\f43e";
}
.fi-sr-clock-four-thirty:before {
content: "\f43f";
}
.fi-sr-clock-nine-thirty:before {
content: "\f440";
}
.fi-sr-clock-nine:before {
content: "\f441";
}
.fi-sr-clock-one-thirty:before {
content: "\f442";
}
.fi-sr-clock-one:before {
content: "\f443";
}
.fi-sr-clock-seven-thirty:before {
content: "\f444";
}
.fi-sr-clock-seven:before {
content: "\f445";
}
.fi-sr-clock-six-thirty:before {
content: "\f446";
}
.fi-sr-clock-six:before {
content: "\f447";
}
.fi-sr-clock-ten-thirty:before {
content: "\f448";
}
.fi-sr-clock-ten:before {
content: "\f449";
}
.fi-sr-clock-three-thirty:before {
content: "\f44a";
}
.fi-sr-clock-three:before {
content: "\f44b";
}
.fi-sr-clock-time-tracking:before {
content: "\f44c";
}
.fi-sr-clock-twelve-thirty:before {
content: "\f44d";
}
.fi-sr-clock-twelve:before {
content: "\f44e";
}
.fi-sr-clock-two-thirty:before {
content: "\f44f";
}
.fi-sr-clock-two:before {
content: "\f450";
}
.fi-sr-clock-up-arrow:before {
content: "\f451";
}
.fi-sr-clock:before {
content: "\f452";
}
.fi-sr-clone:before {
content: "\f453";
}
.fi-sr-closed-captioning-slash:before {
content: "\f454";
}
.fi-sr-clothes-hanger:before {
content: "\f455";
}
.fi-sr-cloud-back-up-alt:before {
content: "\f456";
}
.fi-sr-cloud-back-up:before {
content: "\f457";
}
.fi-sr-cloud-check:before {
content: "\f458";
}
.fi-sr-cloud-code:before {
content: "\f459";
}
.fi-sr-cloud-disabled:before {
content: "\f45a";
}
.fi-sr-cloud-download-alt:before {
content: "\f45b";
}
.fi-sr-cloud-download:before {
content: "\f45c";
}
.fi-sr-cloud-drizzle:before {
content: "\f45d";
}
.fi-sr-cloud-exclamation:before {
content: "\f45e";
}
.fi-sr-cloud-gear-automation:before {
content: "\f45f";
}
.fi-sr-cloud-hail-mixed:before {
content: "\f460";
}
.fi-sr-cloud-hail:before {
content: "\f461";
}
.fi-sr-cloud-meatball:before {
content: "\f462";
}
.fi-sr-cloud-moon-rain:before {
content: "\f463";
}
.fi-sr-cloud-moon:before {
content: "\f464";
}
.fi-sr-cloud-question:before {
content: "\f465";
}
.fi-sr-cloud-rain:before {
content: "\f466";
}
.fi-sr-cloud-rainbow:before {
content: "\f467";
}
.fi-sr-cloud-share:before {
content: "\f468";
}
.fi-sr-cloud-showers-heavy:before {
content: "\f469";
}
.fi-sr-cloud-showers:before {
content: "\f46a";
}
.fi-sr-cloud-sleet:before {
content: "\f46b";
}
.fi-sr-cloud-snow:before {
content: "\f46c";
}
.fi-sr-cloud-sun-rain:before {
content: "\f46d";
}
.fi-sr-cloud-sun:before {
content: "\f46e";
}
.fi-sr-cloud-upload-alt:before {
content: "\f46f";
}
.fi-sr-cloud-upload:before {
content: "\f470";
}
.fi-sr-cloud:before {
content: "\f471";
}
.fi-sr-clouds-moon:before {
content: "\f472";
}
.fi-sr-clouds-sun:before {
content: "\f473";
}
.fi-sr-clouds:before {
content: "\f474";
}
.fi-sr-clover-alt:before {
content: "\f475";
}
.fi-sr-club:before {
content: "\f476";
}
.fi-sr-cocktail-alt:before {
content: "\f477";
}
.fi-sr-cocktail:before {
content: "\f478";
}
.fi-sr-coconut:before {
content: "\f479";
}
.fi-sr-code-branch:before {
content: "\f47a";
}
.fi-sr-code-commit:before {
content: "\f47b";
}
.fi-sr-code-compare:before {
content: "\f47c";
}
.fi-sr-code-fork:before {
content: "\f47d";
}
.fi-sr-code-merge:before {
content: "\f47e";
}
.fi-sr-code-pull-request-closed:before {
content: "\f47f";
}
.fi-sr-code-pull-request-draft:before {
content: "\f480";
}
.fi-sr-code-pull-request:before {
content: "\f481";
}
.fi-sr-code-simple:before {
content: "\f482";
}
.fi-sr-coffee-bean:before {
content: "\f483";
}
.fi-sr-coffee-beans:before {
content: "\f484";
}
.fi-sr-coffee-heart:before {
content: "\f485";
}
.fi-sr-coffee-pot:before {
content: "\f486";
}
.fi-sr-coffee:before {
content: "\f487";
}
.fi-sr-coffin-cross:before {
content: "\f488";
}
.fi-sr-coffin:before {
content: "\f489";
}
.fi-sr-coin-up-arrow:before {
content: "\f48a";
}
.fi-sr-coin:before {
content: "\f48b";
}
.fi-sr-coins:before {
content: "\f48c";
}
.fi-sr-colon-sign:before {
content: "\f48d";
}
.fi-sr-columns-3:before {
content: "\f48e";
}
.fi-sr-comet:before {
content: "\f48f";
}
.fi-sr-command:before {
content: "\f490";
}
.fi-sr-comment-alt-check:before {
content: "\f491";
}
.fi-sr-comment-alt-dots:before {
content: "\f492";
}
.fi-sr-comment-alt-edit:before {
content: "\f493";
}
.fi-sr-comment-alt-medical:before {
content: "\f494";
}
.fi-sr-comment-alt-middle-top:before {
content: "\f495";
}
.fi-sr-comment-alt-middle:before {
content: "\f496";
}
.fi-sr-comment-alt-minus:before {
content: "\f497";
}
.fi-sr-comment-alt-music:before {
content: "\f498";
}
.fi-sr-comment-alt:before {
content: "\f499";
}
.fi-sr-comment-arrow-down:before {
content: "\f49a";
}
.fi-sr-comment-arrow-up-right:before {
content: "\f49b";
}
.fi-sr-comment-arrow-up:before {
content: "\f49c";
}
.fi-sr-comment-check:before {
content: "\f49d";
}
.fi-sr-comment-code:before {
content: "\f49e";
}
.fi-sr-comment-dollar:before {
content: "\f49f";
}
.fi-sr-comment-dots:before {
content: "\f4a0";
}
.fi-sr-comment-exclamation:before {
content: "\f4a1";
}
.fi-sr-comment-heart:before {
content: "\f4a2";
}
.fi-sr-comment-image:before {
content: "\f4a3";
}
.fi-sr-comment-info:before {
content: "\f4a4";
}
.fi-sr-comment-medical:before {
content: "\f4a5";
}
.fi-sr-comment-minus:before {
content: "\f4a6";
}
.fi-sr-comment-pen:before {
content: "\f4a7";
}
.fi-sr-comment-question:before {
content: "\f4a8";
}
.fi-sr-comment-quote:before {
content: "\f4a9";
}
.fi-sr-comment-slash:before {
content: "\f4aa";
}
.fi-sr-comment-smile:before {
content: "\f4ab";
}
.fi-sr-comment-sms:before {
content: "\f4ac";
}
.fi-sr-comment-text:before {
content: "\f4ad";
}
.fi-sr-comment-user:before {
content: "\f4ae";
}
.fi-sr-comment-xmark:before {
content: "\f4af";
}
.fi-sr-comment:before {
content: "\f4b0";
}
.fi-sr-comments-dollar:before {
content: "\f4b1";
}
.fi-sr-comments-question-check:before {
content: "\f4b2";
}
.fi-sr-comments-question:before {
content: "\f4b3";
}
.fi-sr-comments:before {
content: "\f4b4";
}
.fi-sr-compass-alt:before {
content: "\f4b5";
}
.fi-sr-compass-east:before {
content: "\f4b6";
}
.fi-sr-compass-north:before {
content: "\f4b7";
}
.fi-sr-compass-slash:before {
content: "\f4b8";
}
.fi-sr-compass-south:before {
content: "\f4b9";
}
.fi-sr-compass-west:before {
content: "\f4ba";
}
.fi-sr-completed:before {
content: "\f4bb";
}
.fi-sr-compliance-clipboard:before {
content: "\f4bc";
}
.fi-sr-compliance-document:before {
content: "\f4bd";
}
.fi-sr-compliance:before {
content: "\f4be";
}
.fi-sr-compress-alt:before {
content: "\f4bf";
}
.fi-sr-compress:before {
content: "\f4c0";
}
.fi-sr-computer-classic:before {
content: "\f4c1";
}
.fi-sr-computer-mouse:before {
content: "\f4c2";
}
.fi-sr-computer-speaker:before {
content: "\f4c3";
}
.fi-sr-computer:before {
content: "\f4c4";
}
.fi-sr-concierge-bell:before {
content: "\f4c5";
}
.fi-sr-condition-alt:before {
content: "\f4c6";
}
.fi-sr-condition:before {
content: "\f4c7";
}
.fi-sr-confetti:before {
content: "\f4c8";
}
.fi-sr-constellation:before {
content: "\f4c9";
}
.fi-sr-container-storage:before {
content: "\f4ca";
}
.fi-sr-convert-document:before {
content: "\f4cb";
}
.fi-sr-convert-shapes:before {
content: "\f4cc";
}
.fi-sr-conveyor-belt-alt:before {
content: "\f4cd";
}
.fi-sr-conveyor-belt-arm:before {
content: "\f4ce";
}
.fi-sr-conveyor-belt-empty:before {
content: "\f4cf";
}
.fi-sr-conveyor-belt:before {
content: "\f4d0";
}
.fi-sr-cookie-alt:before {
content: "\f4d1";
}
.fi-sr-cookie:before {
content: "\f4d2";
}
.fi-sr-copy-alt:before {
content: "\f4d3";
}
.fi-sr-copy-image:before {
content: "\f4d4";
}
.fi-sr-copy:before {
content: "\f4d5";
}
.fi-sr-copyright:before {
content: "\f4d6";
}
.fi-sr-corn:before {
content: "\f4d7";
}
.fi-sr-couch:before {
content: "\f4d8";
}
.fi-sr-court-sport:before {
content: "\f4d9";
}
.fi-sr-cow-alt:before {
content: "\f4da";
}
.fi-sr-cow:before {
content: "\f4db";
}
.fi-sr-cowbell-circle-plus:before {
content: "\f4dc";
}
.fi-sr-cowbell-more:before {
content: "\f4dd";
}
.fi-sr-cowbell:before {
content: "\f4de";
}
.fi-sr-crab:before {
content: "\f4df";
}
.fi-sr-crate-empty:before {
content: "\f4e0";
}
.fi-sr-cream:before {
content: "\f4e1";
}
.fi-sr-credit-card-buyer:before {
content: "\f4e2";
}
.fi-sr-credit-card-eye:before {
content: "\f4e3";
}
.fi-sr-credit-card:before {
content: "\f4e4";
}
.fi-sr-cricket:before {
content: "\f4e5";
}
.fi-sr-crm-alt:before {
content: "\f4e6";
}
.fi-sr-crm-computer:before {
content: "\f4e7";
}
.fi-sr-CRM:before {
content: "\f4e8";
}
.fi-sr-croissant:before {
content: "\f4e9";
}
.fi-sr-cross-circle:before {
content: "\f4ea";
}
.fi-sr-cross-religion:before {
content: "\f4eb";
}
.fi-sr-cross-small:before {
content: "\f4ec";
}
.fi-sr-cross:before {
content: "\f4ed";
}
.fi-sr-crow:before {
content: "\f4ee";
}
.fi-sr-crown:before {
content: "\f4ef";
}
.fi-sr-crutch:before {
content: "\f4f0";
}
.fi-sr-crutches:before {
content: "\f4f1";
}
.fi-sr-cruzeiro-sign:before {
content: "\f4f2";
}
.fi-sr-crypto-calendar:before {
content: "\f4f3";
}
.fi-sr-cryptocurrency:before {
content: "\f4f4";
}
.fi-sr-crystal-ball:before {
content: "\f4f5";
}
.fi-sr-cube:before {
content: "\f4f6";
}
.fi-sr-cubes-stacked:before {
content: "\f4f7";
}
.fi-sr-cubes:before {
content: "\f4f8";
}
.fi-sr-cucumber:before {
content: "\f4f9";
}
.fi-sr-cup-straw-swoosh:before {
content: "\f4fa";
}
.fi-sr-cup-straw:before {
content: "\f4fb";
}
.fi-sr-cup-togo:before {
content: "\f4fc";
}
.fi-sr-cupcake-alt:before {
content: "\f4fd";
}
.fi-sr-cupcake:before {
content: "\f4fe";
}
.fi-sr-curling:before {
content: "\f4ff";
}
.fi-sr-cursor-finger:before {
content: "\f500";
}
.fi-sr-cursor-plus:before {
content: "\f501";
}
.fi-sr-cursor-text-alt:before {
content: "\f502";
}
.fi-sr-cursor-text:before {
content: "\f503";
}
.fi-sr-cursor:before {
content: "\f504";
}
.fi-sr-curve-alt:before {
content: "\f505";
}
.fi-sr-curve-arrow:before {
content: "\f506";
}
.fi-sr-curve:before {
content: "\f507";
}
.fi-sr-custard:before {
content: "\f508";
}
.fi-sr-customer-care:before {
content: "\f509";
}
.fi-sr-customer-service:before {
content: "\f50a";
}
.fi-sr-customization-cogwheel:before {
content: "\f50b";
}
.fi-sr-customization:before {
content: "\f50c";
}
.fi-sr-customize-computer:before {
content: "\f50d";
}
.fi-sr-customize-edit:before {
content: "\f50e";
}
.fi-sr-customize:before {
content: "\f50f";
}
.fi-sr-CV:before {
content: "\f510";
}
.fi-sr-cvv-card:before {
content: "\f511";
}
.fi-sr-d:before {
content: "\f512";
}
.fi-sr-dagger:before {
content: "\f513";
}
.fi-sr-daily-calendar:before {
content: "\f514";
}
.fi-sr-damage:before {
content: "\f515";
}
.fi-sr-dart:before {
content: "\f516";
}
.fi-sr-dashboard-monitor:before {
content: "\f517";
}
.fi-sr-dashboard-panel:before {
content: "\f518";
}
.fi-sr-dashboard:before {
content: "\f519";
}
.fi-sr-data-transfer:before {
content: "\f51a";
}
.fi-sr-database:before {
content: "\f51b";
}
.fi-sr-deer-rudolph:before {
content: "\f51c";
}
.fi-sr-deer:before {
content: "\f51d";
}
.fi-sr-delete-document:before {
content: "\f51e";
}
.fi-sr-delete-right:before {
content: "\f51f";
}
.fi-sr-delete-user:before {
content: "\f520";
}
.fi-sr-delete:before {
content: "\f521";
}
.fi-sr-democrat:before {
content: "\f522";
}
.fi-sr-department-structure:before {
content: "\f523";
}
.fi-sr-department:before {
content: "\f524";
}
.fi-sr-deposit-alt:before {
content: "\f525";
}
.fi-sr-deposit:before {
content: "\f526";
}
.fi-sr-description-alt:before {
content: "\f527";
}
.fi-sr-description:before {
content: "\f528";
}
.fi-sr-desk:before {
content: "\f529";
}
.fi-sr-desktop-arrow-down:before {
content: "\f52a";
}
.fi-sr-desktop-wallpaper:before {
content: "\f52b";
}
.fi-sr-devices:before {
content: "\f52c";
}
.fi-sr-dewpoint:before {
content: "\f52d";
}
.fi-sr-dharmachakra:before {
content: "\f52e";
}
.fi-sr-diagram-cells:before {
content: "\f52f";
}
.fi-sr-diagram-lean-canvas:before {
content: "\f530";
}
.fi-sr-diagram-nested:before {
content: "\f531";
}
.fi-sr-diagram-next:before {
content: "\f532";
}
.fi-sr-diagram-predecessor:before {
content: "\f533";
}
.fi-sr-diagram-previous:before {
content: "\f534";
}
.fi-sr-diagram-project:before {
content: "\f535";
}
.fi-sr-diagram-sankey:before {
content: "\f536";
}
.fi-sr-diagram-subtask:before {
content: "\f537";
}
.fi-sr-diagram-successor:before {
content: "\f538";
}
.fi-sr-diagram-venn:before {
content: "\f539";
}
.fi-sr-dial-high:before {
content: "\f53a";
}
.fi-sr-dial-low:before {
content: "\f53b";
}
.fi-sr-dial-max:before {
content: "\f53c";
}
.fi-sr-dial-med-low:before {
content: "\f53d";
}
.fi-sr-dial-med:before {
content: "\f53e";
}
.fi-sr-dial-min:before {
content: "\f53f";
}
.fi-sr-dial-off:before {
content: "\f540";
}
.fi-sr-dial:before {
content: "\f541";
}
.fi-sr-diamond-exclamation:before {
content: "\f542";
}
.fi-sr-diamond-turn-right:before {
content: "\f543";
}
.fi-sr-diamond:before {
content: "\f544";
}
.fi-sr-diary-bookmark-down:before {
content: "\f545";
}
.fi-sr-diary-bookmarks:before {
content: "\f546";
}
.fi-sr-diary-clasp:before {
content: "\f547";
}
.fi-sr-dice-alt:before {
content: "\f548";
}
.fi-sr-dice-d10:before {
content: "\f549";
}
.fi-sr-dice-d12:before {
content: "\f54a";
}
.fi-sr-dice-d20:before {
content: "\f54b";
}
.fi-sr-dice-d4:before {
content: "\f54c";
}
.fi-sr-dice-d6:before {
content: "\f54d";
}
.fi-sr-dice-d8:before {
content: "\f54e";
}
.fi-sr-dice-four:before {
content: "\f54f";
}
.fi-sr-dice-one:before {
content: "\f550";
}
.fi-sr-dice-six:before {
content: "\f551";
}
.fi-sr-dice-three:before {
content: "\f552";
}
.fi-sr-dice-two:before {
content: "\f553";
}
.fi-sr-dice:before {
content: "\f554";
}
.fi-sr-digging:before {
content: "\f555";
}
.fi-sr-digital-tachograph:before {
content: "\f556";
}
.fi-sr-dinner:before {
content: "\f557";
}
.fi-sr-diploma:before {
content: "\f558";
}
.fi-sr-direction-signal-arrow:before {
content: "\f559";
}
.fi-sr-direction-signal:before {
content: "\f55a";
}
.fi-sr-disc-drive:before {
content: "\f55b";
}
.fi-sr-discover:before {
content: "\f55c";
}
.fi-sr-disease:before {
content: "\f55d";
}
.fi-sr-disk:before {
content: "\f55e";
}
.fi-sr-display-arrow-down:before {
content: "\f55f";
}
.fi-sr-display-chart-up:before {
content: "\f560";
}
.fi-sr-display-code:before {
content: "\f561";
}
.fi-sr-display-medical:before {
content: "\f562";
}
.fi-sr-display-slash:before {
content: "\f563";
}
.fi-sr-distribute-spacing-horizontal:before {
content: "\f564";
}
.fi-sr-distribute-spacing-vertical:before {
content: "\f565";
}
.fi-sr-divide:before {
content: "\f566";
}
.fi-sr-dizzy:before {
content: "\f567";
}
.fi-sr-dna:before {
content: "\f568";
}
.fi-sr-do-not-enter:before {
content: "\f569";
}
.fi-sr-doctor:before {
content: "\f56a";
}
.fi-sr-document-circle-wrong:before {
content: "\f56b";
}
.fi-sr-document-paid:before {
content: "\f56c";
}
.fi-sr-document-signed:before {
content: "\f56d";
}
.fi-sr-document:before {
content: "\f56e";
}
.fi-sr-dog-leashed:before {
content: "\f56f";
}
.fi-sr-dog:before {
content: "\f570";
}
.fi-sr-dollar:before {
content: "\f571";
}
.fi-sr-dolly-flatbed-alt:before {
content: "\f572";
}
.fi-sr-dolly-flatbed-empty:before {
content: "\f573";
}
.fi-sr-dolly-flatbed:before {
content: "\f574";
}
.fi-sr-dolphin:before {
content: "\f575";
}
.fi-sr-domino-effect:before {
content: "\f576";
}
.fi-sr-donate:before {
content: "\f577";
}
.fi-sr-dong-sign:before {
content: "\f578";
}
.fi-sr-donut:before {
content: "\f579";
}
.fi-sr-door-closed:before {
content: "\f57a";
}
.fi-sr-door-open:before {
content: "\f57b";
}
.fi-sr-dot-circle:before {
content: "\f57c";
}
.fi-sr-dot-pending:before {
content: "\f57d";
}
.fi-sr-dove:before {
content: "\f57e";
}
.fi-sr-down-from-bracket:before {
content: "\f57f";
}
.fi-sr-down-left-and-up-right-to-center:before {
content: "\f580";
}
.fi-sr-down-left:before {
content: "\f581";
}
.fi-sr-down-right:before {
content: "\f582";
}
.fi-sr-down-to-line:before {
content: "\f583";
}
.fi-sr-down:before {
content: "\f584";
}
.fi-sr-download:before {
content: "\f585";
}
.fi-sr-drafting-compass:before {
content: "\f586";
}
.fi-sr-dragon:before {
content: "\f587";
}
.fi-sr-draw-polygon:before {
content: "\f588";
}
.fi-sr-draw-square:before {
content: "\f589";
}
.fi-sr-drawer-alt:before {
content: "\f58a";
}
.fi-sr-drawer-empty:before {
content: "\f58b";
}
.fi-sr-drawer:before {
content: "\f58c";
}
.fi-sr-dreidel:before {
content: "\f58d";
}
.fi-sr-drink-alt:before {
content: "\f58e";
}
.fi-sr-driver-man:before {
content: "\f58f";
}
.fi-sr-driver-woman:before {
content: "\f590";
}
.fi-sr-drone-alt:before {
content: "\f591";
}
.fi-sr-drone-front:before {
content: "\f592";
}
.fi-sr-drone:before {
content: "\f593";
}
.fi-sr-drop-down:before {
content: "\f594";
}
.fi-sr-dropdown-select:before {
content: "\f595";
}
.fi-sr-dropdown:before {
content: "\f596";
}
.fi-sr-drum-steelpan:before {
content: "\f597";
}
.fi-sr-drum:before {
content: "\f598";
}
.fi-sr-drumstick-bite:before {
content: "\f599";
}
.fi-sr-drumstick:before {
content: "\f59a";
}
.fi-sr-dryer-alt:before {
content: "\f59b";
}
.fi-sr-dryer:before {
content: "\f59c";
}
.fi-sr-duck:before {
content: "\f59d";
}
.fi-sr-dumbbell-fitness:before {
content: "\f59e";
}
.fi-sr-dumbbell-horizontal:before {
content: "\f59f";
}
.fi-sr-dumbbell-ray:before {
content: "\f5a0";
}
.fi-sr-dumbbell-weightlifting:before {
content: "\f5a1";
}
.fi-sr-dumpster-fire:before {
content: "\f5a2";
}
.fi-sr-dumpster:before {
content: "\f5a3";
}
.fi-sr-dungeon:before {
content: "\f5a4";
}
.fi-sr-duplicate:before {
content: "\f5a5";
}
.fi-sr-duration-alt:before {
content: "\f5a6";
}
.fi-sr-duration:before {
content: "\f5a7";
}
.fi-sr-e-learning:before {
content: "\f5a8";
}
.fi-sr-e:before {
content: "\f5a9";
}
.fi-sr-ear-deaf:before {
content: "\f5aa";
}
.fi-sr-ear-muffs:before {
content: "\f5ab";
}
.fi-sr-ear:before {
content: "\f5ac";
}
.fi-sr-earnings:before {
content: "\f5ad";
}
.fi-sr-earth-africa:before {
content: "\f5ae";
}
.fi-sr-earth-americas:before {
content: "\f5af";
}
.fi-sr-earth-asia:before {
content: "\f5b0";
}
.fi-sr-earth-europa:before {
content: "\f5b1";
}
.fi-sr-eclipse-alt:before {
content: "\f5b2";
}
.fi-sr-eclipse:before {
content: "\f5b3";
}
.fi-sr-edit-alt:before {
content: "\f5b4";
}
.fi-sr-edit:before {
content: "\f5b5";
}
.fi-sr-effect:before {
content: "\f5b6";
}
.fi-sr-egg-fried:before {
content: "\f5b7";
}
.fi-sr-egg:before {
content: "\f5b8";
}
.fi-sr-eject:before {
content: "\f5b9";
}
.fi-sr-elephant:before {
content: "\f5ba";
}
.fi-sr-elevator:before {
content: "\f5bb";
}
.fi-sr-email-pending:before {
content: "\f5bc";
}
.fi-sr-employee-alt:before {
content: "\f5bd";
}
.fi-sr-employee-handbook:before {
content: "\f5be";
}
.fi-sr-employee-man-alt:before {
content: "\f5bf";
}
.fi-sr-employee-man:before {
content: "\f5c0";
}
.fi-sr-empty-set:before {
content: "\f5c1";
}
.fi-sr-endless-loop:before {
content: "\f5c2";
}
.fi-sr-engine-warning:before {
content: "\f5c3";
}
.fi-sr-engine:before {
content: "\f5c4";
}
.fi-sr-enter:before {
content: "\f5c5";
}
.fi-sr-entertainment:before {
content: "\f5c6";
}
.fi-sr-envelope-ban:before {
content: "\f5c7";
}
.fi-sr-envelope-bulk:before {
content: "\f5c8";
}
.fi-sr-envelope-dot:before {
content: "\f5c9";
}
.fi-sr-envelope-download:before {
content: "\f5ca";
}
.fi-sr-envelope-heart:before {
content: "\f5cb";
}
.fi-sr-envelope-marker:before {
content: "\f5cc";
}
.fi-sr-envelope-open-dollar:before {
content: "\f5cd";
}
.fi-sr-envelope-open-text:before {
content: "\f5ce";
}
.fi-sr-envelope-open:before {
content: "\f5cf";
}
.fi-sr-envelope-plus:before {
content: "\f5d0";
}
.fi-sr-envelope:before {
content: "\f5d1";
}
.fi-sr-envelopes:before {
content: "\f5d2";
}
.fi-sr-equality:before {
content: "\f5d3";
}
.fi-sr-equals:before {
content: "\f5d4";
}
.fi-sr-equipment:before {
content: "\f5d5";
}
.fi-sr-eraser:before {
content: "\f5d6";
}
.fi-sr-error-camera:before {
content: "\f5d7";
}
.fi-sr-escalator:before {
content: "\f5d8";
}
.fi-sr-ethernet:before {
content: "\f5d9";
}
.fi-sr-euro:before {
content: "\f5da";
}
.fi-sr-excavator:before {
content: "\f5db";
}
.fi-sr-exchange-alt:before {
content: "\f5dc";
}
.fi-sr-exchange-cryptocurrency:before {
content: "\f5dd";
}
.fi-sr-exchange:before {
content: "\f5de";
}
.fi-sr-exclamation:before {
content: "\f5df";
}
.fi-sr-exit-alt:before {
content: "\f5e0";
}
.fi-sr-exit:before {
content: "\f5e1";
}
.fi-sr-expand-arrows-alt:before {
content: "\f5e2";
}
.fi-sr-expand-arrows:before {
content: "\f5e3";
}
.fi-sr-expand:before {
content: "\f5e4";
}
.fi-sr-expense-bill:before {
content: "\f5e5";
}
.fi-sr-expense:before {
content: "\f5e6";
}
.fi-sr-external-hard-drive:before {
content: "\f5e7";
}
.fi-sr-external-world:before {
content: "\f5e8";
}
.fi-sr-eye-crossed:before {
content: "\f5e9";
}
.fi-sr-eye-dropper-half:before {
content: "\f5ea";
}
.fi-sr-eye:before {
content: "\f5eb";
}
.fi-sr-eyes:before {
content: "\f5ec";
}
.fi-sr-f:before {
content: "\f5ed";
}
.fi-sr-fabric:before {
content: "\f5ee";
}
.fi-sr-face-angry-horns:before {
content: "\f5ef";
}
.fi-sr-face-anguished:before {
content: "\f5f0";
}
.fi-sr-face-anxious-sweat:before {
content: "\f5f1";
}
.fi-sr-face-astonished:before {
content: "\f5f2";
}
.fi-sr-face-awesome:before {
content: "\f5f3";
}
.fi-sr-face-beam-hand-over-mouth:before {
content: "\f5f4";
}
.fi-sr-face-confounded:before {
content: "\f5f5";
}
.fi-sr-face-confused:before {
content: "\f5f6";
}
.fi-sr-face-cowboy-hat:before {
content: "\f5f7";
}
.fi-sr-face-disappointed:before {
content: "\f5f8";
}
.fi-sr-face-disguise:before {
content: "\f5f9";
}
.fi-sr-face-downcast-sweat:before {
content: "\f5fa";
}
.fi-sr-face-drooling:before {
content: "\f5fb";
}
.fi-sr-face-explode:before {
content: "\f5fc";
}
.fi-sr-face-expressionless:before {
content: "\f5fd";
}
.fi-sr-face-eyes-xmarks:before {
content: "\f5fe";
}
.fi-sr-face-fearful:before {
content: "\f5ff";
}
.fi-sr-face-glasses:before {
content: "\f600";
}
.fi-sr-face-grin-tongue-wink:before {
content: "\f601";
}
.fi-sr-face-hand-yawn:before {
content: "\f602";
}
.fi-sr-face-head-bandage:before {
content: "\f603";
}
.fi-sr-face-hushed:before {
content: "\f604";
}
.fi-sr-face-icicles:before {
content: "\f605";
}
.fi-sr-face-lying:before {
content: "\f606";
}
.fi-sr-face-mask:before {
content: "\f607";
}
.fi-sr-face-monocle:before {
content: "\f608";
}
.fi-sr-face-nauseated:before {
content: "\f609";
}
.fi-sr-face-nose-steam:before {
content: "\f60a";
}
.fi-sr-face-party:before {
content: "\f60b";
}
.fi-sr-face-pensive:before {
content: "\f60c";
}
.fi-sr-face-persevering:before {
content: "\f60d";
}
.fi-sr-face-pleading:before {
content: "\f60e";
}
.fi-sr-face-raised-eyebrow:before {
content: "\f60f";
}
.fi-sr-face-relieved:before {
content: "\f610";
}
.fi-sr-face-sad-sweat:before {
content: "\f611";
}
.fi-sr-face-scream:before {
content: "\f612";
}
.fi-sr-face-shush:before {
content: "\f613";
}
.fi-sr-face-sleeping:before {
content: "\f614";
}
.fi-sr-face-sleepy:before {
content: "\f615";
}
.fi-sr-face-smile-halo:before {
content: "\f616";
}
.fi-sr-face-smile-hearts:before {
content: "\f617";
}
.fi-sr-face-smile-horns:before {
content: "\f618";
}
.fi-sr-face-smile-tear:before {
content: "\f619";
}
.fi-sr-face-smile-tongue:before {
content: "\f61a";
}
.fi-sr-face-smile-upside-down:before {
content: "\f61b";
}
.fi-sr-face-smiling-hands:before {
content: "\f61c";
}
.fi-sr-face-smirking:before {
content: "\f61d";
}
.fi-sr-face-sunglasses-alt:before {
content: "\f61e";
}
.fi-sr-face-sunglasses:before {
content: "\f61f";
}
.fi-sr-face-swear:before {
content: "\f620";
}
.fi-sr-face-thermometer:before {
content: "\f621";
}
.fi-sr-face-thinking:before {
content: "\f622";
}
.fi-sr-face-tissue:before {
content: "\f623";
}
.fi-sr-face-tongue-money:before {
content: "\f624";
}
.fi-sr-face-tongue-sweat:before {
content: "\f625";
}
.fi-sr-face-unamused:before {
content: "\f626";
}
.fi-sr-face-viewfinder:before {
content: "\f627";
}
.fi-sr-face-vomit:before {
content: "\f628";
}
.fi-sr-face-weary:before {
content: "\f629";
}
.fi-sr-face-woozy:before {
content: "\f62a";
}
.fi-sr-face-worried:before {
content: "\f62b";
}
.fi-sr-face-zany:before {
content: "\f62c";
}
.fi-sr-face-zipper:before {
content: "\f62d";
}
.fi-sr-fail:before {
content: "\f62e";
}
.fi-sr-falafel:before {
content: "\f62f";
}
.fi-sr-family-dress:before {
content: "\f630";
}
.fi-sr-family-pants:before {
content: "\f631";
}
.fi-sr-family:before {
content: "\f632";
}
.fi-sr-fan-table:before {
content: "\f633";
}
.fi-sr-fan:before {
content: "\f634";
}
.fi-sr-farm:before {
content: "\f635";
}
.fi-sr-faucet-drip:before {
content: "\f636";
}
.fi-sr-faucet:before {
content: "\f637";
}
.fi-sr-fax:before {
content: "\f638";
}
.fi-sr-feather-pointed:before {
content: "\f639";
}
.fi-sr-feather:before {
content: "\f63a";
}
.fi-sr-features-alt:before {
content: "\f63b";
}
.fi-sr-features:before {
content: "\f63c";
}
.fi-sr-fee-receipt:before {
content: "\f63d";
}
.fi-sr-fee:before {
content: "\f63e";
}
.fi-sr-feedback-alt:before {
content: "\f63f";
}
.fi-sr-feedback-cycle-loop:before {
content: "\f640";
}
.fi-sr-feedback-hand:before {
content: "\f641";
}
.fi-sr-feedback-review:before {
content: "\f642";
}
.fi-sr-feedback:before {
content: "\f643";
}
.fi-sr-fence:before {
content: "\f644";
}
.fi-sr-field-hockey:before {
content: "\f645";
}
.fi-sr-fighter-jet:before {
content: "\f646";
}
.fi-sr-file-ai:before {
content: "\f647";
}
.fi-sr-file-audio:before {
content: "\f648";
}
.fi-sr-file-binary:before {
content: "\f649";
}
.fi-sr-file-chart-line:before {
content: "\f64a";
}
.fi-sr-file-chart-pie:before {
content: "\f64b";
}
.fi-sr-file-circle-info:before {
content: "\f64c";
}
.fi-sr-file-cloud:before {
content: "\f64d";
}
.fi-sr-file-code:before {
content: "\f64e";
}
.fi-sr-file-csv:before {
content: "\f64f";
}
.fi-sr-file-download:before {
content: "\f650";
}
.fi-sr-file-edit:before {
content: "\f651";
}
.fi-sr-file-eps:before {
content: "\f652";
}
.fi-sr-file-excel:before {
content: "\f653";
}
.fi-sr-file-exclamation:before {
content: "\f654";
}
.fi-sr-file-export:before {
content: "\f655";
}
.fi-sr-file-image:before {
content: "\f656";
}
.fi-sr-file-import:before {
content: "\f657";
}
.fi-sr-file-invoice-dollar:before {
content: "\f658";
}
.fi-sr-file-invoice:before {
content: "\f659";
}
.fi-sr-file-medical-alt:before {
content: "\f65a";
}
.fi-sr-file-medical:before {
content: "\f65b";
}
.fi-sr-file-minus:before {
content: "\f65c";
}
.fi-sr-file-pdf:before {
content: "\f65d";
}
.fi-sr-file-powerpoint:before {
content: "\f65e";
}
.fi-sr-file-prescription:before {
content: "\f65f";
}
.fi-sr-file-psd:before {
content: "\f660";
}
.fi-sr-file-signature:before {
content: "\f661";
}
.fi-sr-file-spreadsheet:before {
content: "\f662";
}
.fi-sr-file-upload:before {
content: "\f663";
}
.fi-sr-file-user:before {
content: "\f664";
}
.fi-sr-file-video:before {
content: "\f665";
}
.fi-sr-file-word:before {
content: "\f666";
}
.fi-sr-file-zipper:before {
content: "\f667";
}
.fi-sr-file:before {
content: "\f668";
}
.fi-sr-files-medical:before {
content: "\f669";
}
.fi-sr-fill:before {
content: "\f66a";
}
.fi-sr-film-canister:before {
content: "\f66b";
}
.fi-sr-film-slash:before {
content: "\f66c";
}
.fi-sr-film:before {
content: "\f66d";
}
.fi-sr-films:before {
content: "\f66e";
}
.fi-sr-filter-list:before {
content: "\f66f";
}
.fi-sr-filter-slash:before {
content: "\f670";
}
.fi-sr-filter:before {
content: "\f671";
}
.fi-sr-filters:before {
content: "\f672";
}
.fi-sr-fingerprint-security-risk:before {
content: "\f673";
}
.fi-sr-fingerprint:before {
content: "\f674";
}
.fi-sr-fire-burner:before {
content: "\f675";
}
.fi-sr-fire-extinguisher:before {
content: "\f676";
}
.fi-sr-fire-flame-curved:before {
content: "\f677";
}
.fi-sr-fire-flame-simple:before {
content: "\f678";
}
.fi-sr-fire-hydrant:before {
content: "\f679";
}
.fi-sr-fire-smoke:before {
content: "\f67a";
}
.fi-sr-fireplace:before {
content: "\f67b";
}
.fi-sr-first-award:before {
content: "\f67c";
}
.fi-sr-first-laurel:before {
content: "\f67d";
}
.fi-sr-first-medal:before {
content: "\f67e";
}
.fi-sr-first:before {
content: "\f67f";
}
.fi-sr-fish-bones:before {
content: "\f680";
}
.fi-sr-fish-cooked:before {
content: "\f681";
}
.fi-sr-fish:before {
content: "\f682";
}
.fi-sr-fishing-rod:before {
content: "\f683";
}
.fi-sr-fist-move:before {
content: "\f684";
}
.fi-sr-flag-alt:before {
content: "\f685";
}
.fi-sr-flag-checkered:before {
content: "\f686";
}
.fi-sr-flag-usa:before {
content: "\f687";
}
.fi-sr-flag:before {
content: "\f688";
}
.fi-sr-flame:before {
content: "\f689";
}
.fi-sr-flashlight:before {
content: "\f68a";
}
.fi-sr-flask-gear:before {
content: "\f68b";
}
.fi-sr-flask-poison:before {
content: "\f68c";
}
.fi-sr-flask-potion:before {
content: "\f68d";
}
.fi-sr-flask:before {
content: "\f68e";
}
.fi-sr-flatbread-stuffed:before {
content: "\f68f";
}
.fi-sr-flatbread:before {
content: "\f690";
}
.fi-sr-flip-horizontal:before {
content: "\f691";
}
.fi-sr-floor-alt:before {
content: "\f692";
}
.fi-sr-floor-layer:before {
content: "\f693";
}
.fi-sr-floor:before {
content: "\f694";
}
.fi-sr-floppy-disk-circle-arrow-right:before {
content: "\f695";
}
.fi-sr-floppy-disk-circle-xmark:before {
content: "\f696";
}
.fi-sr-floppy-disk-pen:before {
content: "\f697";
}
.fi-sr-floppy-disks:before {
content: "\f698";
}
.fi-sr-florin-sign:before {
content: "\f699";
}
.fi-sr-flower-butterfly:before {
content: "\f69a";
}
.fi-sr-flower-daffodil:before {
content: "\f69b";
}
.fi-sr-flower-tulip:before {
content: "\f69c";
}
.fi-sr-flower:before {
content: "\f69d";
}
.fi-sr-flushed:before {
content: "\f69e";
}
.fi-sr-flute:before {
content: "\f69f";
}
.fi-sr-flux-capacitor:before {
content: "\f6a0";
}
.fi-sr-fly-insect:before {
content: "\f6a1";
}
.fi-sr-flying-disc:before {
content: "\f6a2";
}
.fi-sr-fog:before {
content: "\f6a3";
}
.fi-sr-folder-download:before {
content: "\f6a4";
}
.fi-sr-folder-fire:before {
content: "\f6a5";
}
.fi-sr-folder-minus:before {
content: "\f6a6";
}
.fi-sr-folder-open:before {
content: "\f6a7";
}
.fi-sr-folder-times:before {
content: "\f6a8";
}
.fi-sr-folder-tree:before {
content: "\f6a9";
}
.fi-sr-folder-upload:before {
content: "\f6aa";
}
.fi-sr-folder-xmark:before {
content: "\f6ab";
}
.fi-sr-folder:before {
content: "\f6ac";
}
.fi-sr-folders:before {
content: "\f6ad";
}
.fi-sr-follow-folder:before {
content: "\f6ae";
}
.fi-sr-followcollection:before {
content: "\f6af";
}
.fi-sr-following:before {
content: "\f6b0";
}
.fi-sr-fondue-pot:before {
content: "\f6b1";
}
.fi-sr-football:before {
content: "\f6b2";
}
.fi-sr-foreign-language-audio:before {
content: "\f6b3";
}
.fi-sr-fork:before {
content: "\f6b4";
}
.fi-sr-forklift:before {
content: "\f6b5";
}
.fi-sr-form:before {
content: "\f6b6";
}
.fi-sr-fort:before {
content: "\f6b7";
}
.fi-sr-forward-fast:before {
content: "\f6b8";
}
.fi-sr-forward:before {
content: "\f6b9";
}
.fi-sr-fox:before {
content: "\f6ba";
}
.fi-sr-frame:before {
content: "\f6bb";
}
.fi-sr-franc-sign:before {
content: "\f6bc";
}
.fi-sr-free-delivery:before {
content: "\f6bd";
}
.fi-sr-free:before {
content: "\f6be";
}
.fi-sr-french-fries:before {
content: "\f6bf";
}
.fi-sr-friday:before {
content: "\f6c0";
}
.fi-sr-frog:before {
content: "\f6c1";
}
.fi-sr-frown:before {
content: "\f6c2";
}
.fi-sr-ftp:before {
content: "\f6c3";
}
.fi-sr-fuel-gauge:before {
content: "\f6c4";
}
.fi-sr-function-process:before {
content: "\f6c5";
}
.fi-sr-function-square:before {
content: "\f6c6";
}
.fi-sr-function:before {
content: "\f6c7";
}
.fi-sr-funnel-dollar:before {
content: "\f6c8";
}
.fi-sr-g:before {
content: "\f6c9";
}
.fi-sr-galaxy-alt:before {
content: "\f6ca";
}
.fi-sr-galaxy-planet:before {
content: "\f6cb";
}
.fi-sr-galaxy-star:before {
content: "\f6cc";
}
.fi-sr-galaxy:before {
content: "\f6cd";
}
.fi-sr-gallery-thumbnails:before {
content: "\f6ce";
}
.fi-sr-gallery:before {
content: "\f6cf";
}
.fi-sr-game-board-alt:before {
content: "\f6d0";
}
.fi-sr-game:before {
content: "\f6d1";
}
.fi-sr-gamepad:before {
content: "\f6d2";
}
.fi-sr-games:before {
content: "\f6d3";
}
.fi-sr-garage-car:before {
content: "\f6d4";
}
.fi-sr-garage-open:before {
content: "\f6d5";
}
.fi-sr-garage:before {
content: "\f6d6";
}
.fi-sr-garlic-alt:before {
content: "\f6d7";
}
.fi-sr-garlic:before {
content: "\f6d8";
}
.fi-sr-gas-pump-alt:before {
content: "\f6d9";
}
.fi-sr-gas-pump-slash:before {
content: "\f6da";
}
.fi-sr-gas-pump:before {
content: "\f6db";
}
.fi-sr-gauge-circle-bolt:before {
content: "\f6dc";
}
.fi-sr-gauge-circle-minus:before {
content: "\f6dd";
}
.fi-sr-gauge-circle-plus:before {
content: "\f6de";
}
.fi-sr-gavel:before {
content: "\f6df";
}
.fi-sr-gay-couple:before {
content: "\f6e0";
}
.fi-sr-gears:before {
content: "\f6e1";
}
.fi-sr-gem:before {
content: "\f6e2";
}
.fi-sr-general:before {
content: "\f6e3";
}
.fi-sr-ghost:before {
content: "\f6e4";
}
.fi-sr-gif-square:before {
content: "\f6e5";
}
.fi-sr-gif:before {
content: "\f6e6";
}
.fi-sr-gift-box-benefits:before {
content: "\f6e7";
}
.fi-sr-gift-card:before {
content: "\f6e8";
}
.fi-sr-gift:before {
content: "\f6e9";
}
.fi-sr-gifts:before {
content: "\f6ea";
}
.fi-sr-gingerbread-man:before {
content: "\f6eb";
}
.fi-sr-glass-champagne:before {
content: "\f6ec";
}
.fi-sr-glass-cheers:before {
content: "\f6ed";
}
.fi-sr-glass-citrus:before {
content: "\f6ee";
}
.fi-sr-glass-empty:before {
content: "\f6ef";
}
.fi-sr-glass-half:before {
content: "\f6f0";
}
.fi-sr-glass-water-droplet:before {
content: "\f6f1";
}
.fi-sr-glass-whiskey-rocks:before {
content: "\f6f2";
}
.fi-sr-glass-whiskey:before {
content: "\f6f3";
}
.fi-sr-glass:before {
content: "\f6f4";
}
.fi-sr-glasses:before {
content: "\f6f5";
}
.fi-sr-globe-alt:before {
content: "\f6f6";
}
.fi-sr-globe-pointer:before {
content: "\f6f7";
}
.fi-sr-globe-snow:before {
content: "\f6f8";
}
.fi-sr-globe:before {
content: "\f6f9";
}
.fi-sr-goal-net:before {
content: "\f6fa";
}
.fi-sr-golf-ball:before {
content: "\f6fb";
}
.fi-sr-golf-club:before {
content: "\f6fc";
}
.fi-sr-golf-hole:before {
content: "\f6fd";
}
.fi-sr-golf:before {
content: "\f6fe";
}
.fi-sr-gopuram:before {
content: "\f6ff";
}
.fi-sr-government-budget:before {
content: "\f700";
}
.fi-sr-government-flag:before {
content: "\f701";
}
.fi-sr-government-user:before {
content: "\f702";
}
.fi-sr-gps-navigation:before {
content: "\f703";
}
.fi-sr-graduation-cap:before {
content: "\f704";
}
.fi-sr-gramophone:before {
content: "\f705";
}
.fi-sr-grape:before {
content: "\f706";
}
.fi-sr-graph-curve:before {
content: "\f707";
}
.fi-sr-graphic-style:before {
content: "\f708";
}
.fi-sr-graphic-tablet:before {
content: "\f709";
}
.fi-sr-grate-droplet:before {
content: "\f70a";
}
.fi-sr-grate:before {
content: "\f70b";
}
.fi-sr-greater-than-equal:before {
content: "\f70c";
}
.fi-sr-greater-than:before {
content: "\f70d";
}
.fi-sr-greek-helmet:before {
content: "\f70e";
}
.fi-sr-grid-alt:before {
content: "\f70f";
}
.fi-sr-grid-dividers:before {
content: "\f710";
}
.fi-sr-grid:before {
content: "\f711";
}
.fi-sr-grill-hot-alt:before {
content: "\f712";
}
.fi-sr-grill:before {
content: "\f713";
}
.fi-sr-grimace:before {
content: "\f714";
}
.fi-sr-grin-alt:before {
content: "\f715";
}
.fi-sr-grin-beam-sweat:before {
content: "\f716";
}
.fi-sr-grin-beam:before {
content: "\f717";
}
.fi-sr-grin-hearts:before {
content: "\f718";
}
.fi-sr-grin-squint-tears:before {
content: "\f719";
}
.fi-sr-grin-squint:before {
content: "\f71a";
}
.fi-sr-grin-stars:before {
content: "\f71b";
}
.fi-sr-grin-tears:before {
content: "\f71c";
}
.fi-sr-grin-tongue-squint:before {
content: "\f71d";
}
.fi-sr-grin-tongue-wink:before {
content: "\f71e";
}
.fi-sr-grin-tongue:before {
content: "\f71f";
}
.fi-sr-grin-wink:before {
content: "\f720";
}
.fi-sr-grin:before {
content: "\f721";
}
.fi-sr-grip-dots-vertical:before {
content: "\f722";
}
.fi-sr-grip-dots:before {
content: "\f723";
}
.fi-sr-grip-horizontal:before {
content: "\f724";
}
.fi-sr-grip-lines-vertical:before {
content: "\f725";
}
.fi-sr-grip-lines:before {
content: "\f726";
}
.fi-sr-grip-vertical:before {
content: "\f727";
}
.fi-sr-grocery-bag:before {
content: "\f728";
}
.fi-sr-grocery-basket:before {
content: "\f729";
}
.fi-sr-group-arrows-rotate:before {
content: "\f72a";
}
.fi-sr-group-call:before {
content: "\f72b";
}
.fi-sr-group-community-social-media:before {
content: "\f72c";
}
.fi-sr-growth-chart-invest:before {
content: "\f72d";
}
.fi-sr-guarani-sign:before {
content: "\f72e";
}
.fi-sr-guide-alt:before {
content: "\f72f";
}
.fi-sr-guide:before {
content: "\f730";
}
.fi-sr-guitar-electric:before {
content: "\f731";
}
.fi-sr-guitar:before {
content: "\f732";
}
.fi-sr-guitars:before {
content: "\f733";
}
.fi-sr-gun-squirt:before {
content: "\f734";
}
.fi-sr-gym:before {
content: "\f735";
}
.fi-sr-h-square:before {
content: "\f736";
}
.fi-sr-h:before {
content: "\f737";
}
.fi-sr-h1:before {
content: "\f738";
}
.fi-sr-h2:before {
content: "\f739";
}
.fi-sr-h3:before {
content: "\f73a";
}
.fi-sr-h4:before {
content: "\f73b";
}
.fi-sr-hair-clipper:before {
content: "\f73c";
}
.fi-sr-hamburger-soda:before {
content: "\f73d";
}
.fi-sr-hamburger:before {
content: "\f73e";
}
.fi-sr-hammer-crash:before {
content: "\f73f";
}
.fi-sr-hammer-war:before {
content: "\f740";
}
.fi-sr-hammer:before {
content: "\f741";
}
.fi-sr-hamsa:before {
content: "\f742";
}
.fi-sr-hand-back-fist:before {
content: "\f743";
}
.fi-sr-hand-back-point-down:before {
content: "\f744";
}
.fi-sr-hand-back-point-left:before {
content: "\f745";
}
.fi-sr-hand-back-point-ribbon:before {
content: "\f746";
}
.fi-sr-hand-back-point-right:before {
content: "\f747";
}
.fi-sr-hand-bill:before {
content: "\f748";
}
.fi-sr-hand-dots:before {
content: "\f749";
}
.fi-sr-hand-fingers-crossed:before {
content: "\f74a";
}
.fi-sr-hand-fist:before {
content: "\f74b";
}
.fi-sr-hand-heart:before {
content: "\f74c";
}
.fi-sr-hand-holding-box:before {
content: "\f74d";
}
.fi-sr-hand-holding-droplet:before {
content: "\f74e";
}
.fi-sr-hand-holding-heart:before {
content: "\f74f";
}
.fi-sr-hand-holding-magic:before {
content: "\f750";
}
.fi-sr-hand-holding-medical:before {
content: "\f751";
}
.fi-sr-hand-holding-seeding:before {
content: "\f752";
}
.fi-sr-hand-holding-skull:before {
content: "\f753";
}
.fi-sr-hand-holding-usd:before {
content: "\f754";
}
.fi-sr-hand-holding-water:before {
content: "\f755";
}
.fi-sr-hand-horns:before {
content: "\f756";
}
.fi-sr-hand-lizard:before {
content: "\f757";
}
.fi-sr-hand-love:before {
content: "\f758";
}
.fi-sr-hand-middle-finger:before {
content: "\f759";
}
.fi-sr-hand-paper:before {
content: "\f75a";
}
.fi-sr-hand-peace:before {
content: "\f75b";
}
.fi-sr-hand-point-ribbon:before {
content: "\f75c";
}
.fi-sr-hand-scissors:before {
content: "\f75d";
}
.fi-sr-hand-sparkles:before {
content: "\f75e";
}
.fi-sr-hand-spock:before {
content: "\f75f";
}
.fi-sr-hand-wave:before {
content: "\f760";
}
.fi-sr-handmade:before {
content: "\f761";
}
.fi-sr-hands-bubbles:before {
content: "\f762";
}
.fi-sr-hands-clapping:before {
content: "\f763";
}
.fi-sr-hands-heart:before {
content: "\f764";
}
.fi-sr-hands-holding-diamond:before {
content: "\f765";
}
.fi-sr-hands-holding:before {
content: "\f766";
}
.fi-sr-hands-usd:before {
content: "\f767";
}
.fi-sr-handshake-angle:before {
content: "\f768";
}
.fi-sr-handshake-deal-loan:before {
content: "\f769";
}
.fi-sr-handshake-house:before {
content: "\f76a";
}
.fi-sr-handshake-simple-slash:before {
content: "\f76b";
}
.fi-sr-handshake-trust:before {
content: "\f76c";
}
.fi-sr-handshake:before {
content: "\f76d";
}
.fi-sr-hard-hat:before {
content: "\f76e";
}
.fi-sr-hashtag-lock:before {
content: "\f76f";
}
.fi-sr-hastag:before {
content: "\f770";
}
.fi-sr-hat-beach:before {
content: "\f771";
}
.fi-sr-hat-birthday:before {
content: "\f772";
}
.fi-sr-hat-chef:before {
content: "\f773";
}
.fi-sr-hat-cowboy-side:before {
content: "\f774";
}
.fi-sr-hat-cowboy:before {
content: "\f775";
}
.fi-sr-hat-santa:before {
content: "\f776";
}
.fi-sr-hat-winter:before {
content: "\f777";
}
.fi-sr-hat-witch:before {
content: "\f778";
}
.fi-sr-hat-wizard:before {
content: "\f779";
}
.fi-sr-hdd:before {
content: "\f77a";
}
.fi-sr-head-side-brain:before {
content: "\f77b";
}
.fi-sr-head-side-cough-slash:before {
content: "\f77c";
}
.fi-sr-head-side-cough:before {
content: "\f77d";
}
.fi-sr-head-side-headphones:before {
content: "\f77e";
}
.fi-sr-head-side-heart:before {
content: "\f77f";
}
.fi-sr-head-side-mask:before {
content: "\f780";
}
.fi-sr-head-side-medical:before {
content: "\f781";
}
.fi-sr-head-side-thinking:before {
content: "\f782";
}
.fi-sr-head-side-virus:before {
content: "\f783";
}
.fi-sr-head-side:before {
content: "\f784";
}
.fi-sr-head-vr:before {
content: "\f785";
}
.fi-sr-heading:before {
content: "\f786";
}
.fi-sr-headphones:before {
content: "\f787";
}
.fi-sr-headset:before {
content: "\f788";
}
.fi-sr-heart-arrow:before {
content: "\f789";
}
.fi-sr-heart-brain:before {
content: "\f78a";
}
.fi-sr-heart-crack:before {
content: "\f78b";
}
.fi-sr-heart-half-stroke:before {
content: "\f78c";
}
.fi-sr-heart-half:before {
content: "\f78d";
}
.fi-sr-heart-health-muscle:before {
content: "\f78e";
}
.fi-sr-heart-lock:before {
content: "\f78f";
}
.fi-sr-heart-partner-handshake:before {
content: "\f790";
}
.fi-sr-heart-rate:before {
content: "\f791";
}
.fi-sr-heart-slash:before {
content: "\f792";
}
.fi-sr-heart-upside-down:before {
content: "\f793";
}
.fi-sr-heart:before {
content: "\f794";
}
.fi-sr-heat:before {
content: "\f795";
}
.fi-sr-helicopter-side:before {
content: "\f796";
}
.fi-sr-helmet-battle:before {
content: "\f797";
}
.fi-sr-hexagon-check:before {
content: "\f798";
}
.fi-sr-hexagon-divide:before {
content: "\f799";
}
.fi-sr-hexagon-exclamation:before {
content: "\f79a";
}
.fi-sr-hexagon:before {
content: "\f79b";
}
.fi-sr-high-definition:before {
content: "\f79c";
}
.fi-sr-high-five-celebration-yes:before {
content: "\f79d";
}
.fi-sr-high-five:before {
content: "\f79e";
}
.fi-sr-highlighter-line:before {
content: "\f79f";
}
.fi-sr-highlighter:before {
content: "\f7a0";
}
.fi-sr-hiking:before {
content: "\f7a1";
}
.fi-sr-hippo:before {
content: "\f7a2";
}
.fi-sr-hockey-mask:before {
content: "\f7a3";
}
.fi-sr-hockey-puck:before {
content: "\f7a4";
}
.fi-sr-hockey-stick-puck:before {
content: "\f7a5";
}
.fi-sr-hockey-sticks:before {
content: "\f7a6";
}
.fi-sr-holding-hand-gear:before {
content: "\f7a7";
}
.fi-sr-holding-hand-revenue:before {
content: "\f7a8";
}
.fi-sr-holly-berry:before {
content: "\f7a9";
}
.fi-sr-home-heart:before {
content: "\f7aa";
}
.fi-sr-home-location-alt:before {
content: "\f7ab";
}
.fi-sr-home-location:before {
content: "\f7ac";
}
.fi-sr-home:before {
content: "\f7ad";
}
.fi-sr-honey-pot:before {
content: "\f7ae";
}
.fi-sr-hood-cloak:before {
content: "\f7af";
}
.fi-sr-horizontal-rule:before {
content: "\f7b0";
}
.fi-sr-horse-head:before {
content: "\f7b1";
}
.fi-sr-horse-saddle:before {
content: "\f7b2";
}
.fi-sr-horse:before {
content: "\f7b3";
}
.fi-sr-horseshoe-broken:before {
content: "\f7b4";
}
.fi-sr-horseshoe:before {
content: "\f7b5";
}
.fi-sr-hose-reel:before {
content: "\f7b6";
}
.fi-sr-hose:before {
content: "\f7b7";
}
.fi-sr-hospital-symbol:before {
content: "\f7b8";
}
.fi-sr-hospital-user:before {
content: "\f7b9";
}
.fi-sr-hospital:before {
content: "\f7ba";
}
.fi-sr-hospitals:before {
content: "\f7bb";
}
.fi-sr-hot-tub:before {
content: "\f7bc";
}
.fi-sr-hotdog:before {
content: "\f7bd";
}
.fi-sr-hotel:before {
content: "\f7be";
}
.fi-sr-hourglass-end:before {
content: "\f7bf";
}
.fi-sr-hourglass-start:before {
content: "\f7c0";
}
.fi-sr-hourglass:before {
content: "\f7c1";
}
.fi-sr-house-blank:before {
content: "\f7c2";
}
.fi-sr-house-building:before {
content: "\f7c3";
}
.fi-sr-house-chimney-blank:before {
content: "\f7c4";
}
.fi-sr-house-chimney-crack:before {
content: "\f7c5";
}
.fi-sr-house-chimney-heart:before {
content: "\f7c6";
}
.fi-sr-house-chimney-medical:before {
content: "\f7c7";
}
.fi-sr-house-chimney-user:before {
content: "\f7c8";
}
.fi-sr-house-chimney-window:before {
content: "\f7c9";
}
.fi-sr-house-chimney:before {
content: "\f7ca";
}
.fi-sr-house-circle-check:before {
content: "\f7cb";
}
.fi-sr-house-circle-exclamation:before {
content: "\f7cc";
}
.fi-sr-house-circle-xmark:before {
content: "\f7cd";
}
.fi-sr-house-crack-alt:before {
content: "\f7ce";
}
.fi-sr-house-crack:before {
content: "\f7cf";
}
.fi-sr-house-day:before {
content: "\f7d0";
}
.fi-sr-house-fire:before {
content: "\f7d1";
}
.fi-sr-house-flag:before {
content: "\f7d2";
}
.fi-sr-house-flood:before {
content: "\f7d3";
}
.fi-sr-house-laptop:before {
content: "\f7d4";
}
.fi-sr-house-leave:before {
content: "\f7d5";
}
.fi-sr-house-lock:before {
content: "\f7d6";
}
.fi-sr-house-medical:before {
content: "\f7d7";
}
.fi-sr-house-night:before {
content: "\f7d8";
}
.fi-sr-house-return:before {
content: "\f7d9";
}
.fi-sr-house-signal:before {
content: "\f7da";
}
.fi-sr-house-tree:before {
content: "\f7db";
}
.fi-sr-house-tsunami:before {
content: "\f7dc";
}
.fi-sr-house-turret:before {
content: "\f7dd";
}
.fi-sr-house-user:before {
content: "\f7de";
}
.fi-sr-house-window:before {
content: "\f7df";
}
.fi-sr-hr-group:before {
content: "\f7e0";
}
.fi-sr-hr-person:before {
content: "\f7e1";
}
.fi-sr-hr:before {
content: "\f7e2";
}
.fi-sr-hryvnia:before {
content: "\f7e3";
}
.fi-sr-humidity:before {
content: "\f7e4";
}
.fi-sr-hundred-points:before {
content: "\f7e5";
}
.fi-sr-hurricane:before {
content: "\f7e6";
}
.fi-sr-i:before {
content: "\f7e7";
}
.fi-sr-ice-cream:before {
content: "\f7e8";
}
.fi-sr-icicles:before {
content: "\f7e9";
}
.fi-sr-icon-star:before {
content: "\f7ea";
}
.fi-sr-id-badge:before {
content: "\f7eb";
}
.fi-sr-id-card-clip-alt:before {
content: "\f7ec";
}
.fi-sr-igloo:before {
content: "\f7ed";
}
.fi-sr-image-slash:before {
content: "\f7ee";
}
.fi-sr-images-user:before {
content: "\f7ef";
}
.fi-sr-images:before {
content: "\f7f0";
}
.fi-sr-improve-user:before {
content: "\f7f1";
}
.fi-sr-inbox-full:before {
content: "\f7f2";
}
.fi-sr-inbox-in:before {
content: "\f7f3";
}
.fi-sr-inbox-out:before {
content: "\f7f4";
}
.fi-sr-inbox:before {
content: "\f7f5";
}
.fi-sr-inboxes:before {
content: "\f7f6";
}
.fi-sr-incense-sticks-yoga:before {
content: "\f7f7";
}
.fi-sr-incognito:before {
content: "\f7f8";
}
.fi-sr-indent:before {
content: "\f7f9";
}
.fi-sr-indian-rupee-sign:before {
content: "\f7fa";
}
.fi-sr-industry-alt:before {
content: "\f7fb";
}
.fi-sr-industry-windows:before {
content: "\f7fc";
}
.fi-sr-infinity:before {
content: "\f7fd";
}
.fi-sr-info-guide:before {
content: "\f7fe";
}
.fi-sr-info:before {
content: "\f7ff";
}
.fi-sr-information:before {
content: "\f800";
}
.fi-sr-inhaler:before {
content: "\f801";
}
.fi-sr-input-numeric:before {
content: "\f802";
}
.fi-sr-input-pipe:before {
content: "\f803";
}
.fi-sr-input-text:before {
content: "\f804";
}
.fi-sr-insert-alt:before {
content: "\f805";
}
.fi-sr-insert-arrows:before {
content: "\f806";
}
.fi-sr-insert-button-circle:before {
content: "\f807";
}
.fi-sr-insert-credit-card:before {
content: "\f808";
}
.fi-sr-insert-square:before {
content: "\f809";
}
.fi-sr-insert:before {
content: "\f80a";
}
.fi-sr-insight-alt:before {
content: "\f80b";
}
.fi-sr-insight-head:before {
content: "\f80c";
}
.fi-sr-insight:before {
content: "\f80d";
}
.fi-sr-integral:before {
content: "\f80e";
}
.fi-sr-interactive:before {
content: "\f80f";
}
.fi-sr-interlining:before {
content: "\f810";
}
.fi-sr-internet-speed-wifi:before {
content: "\f811";
}
.fi-sr-interrogation:before {
content: "\f812";
}
.fi-sr-intersection:before {
content: "\f813";
}
.fi-sr-introduction-handshake:before {
content: "\f814";
}
.fi-sr-introduction:before {
content: "\f815";
}
.fi-sr-inventory-alt:before {
content: "\f816";
}
.fi-sr-invest:before {
content: "\f817";
}
.fi-sr-investment:before {
content: "\f818";
}
.fi-sr-invite-alt:before {
content: "\f819";
}
.fi-sr-invite:before {
content: "\f81a";
}
.fi-sr-iot-alt:before {
content: "\f81b";
}
.fi-sr-iot:before {
content: "\f81c";
}
.fi-sr-ip-address:before {
content: "\f81d";
}
.fi-sr-island-tropical:before {
content: "\f81e";
}
.fi-sr-it-alt:before {
content: "\f81f";
}
.fi-sr-it-computer:before {
content: "\f820";
}
.fi-sr-it:before {
content: "\f821";
}
.fi-sr-italian-lira-sign:before {
content: "\f822";
}
.fi-sr-italic:before {
content: "\f823";
}
.fi-sr-j:before {
content: "\f824";
}
.fi-sr-jam:before {
content: "\f825";
}
.fi-sr-jar-alt:before {
content: "\f826";
}
.fi-sr-jar-wheat:before {
content: "\f827";
}
.fi-sr-javascript:before {
content: "\f828";
}
.fi-sr-joint:before {
content: "\f829";
}
.fi-sr-joker:before {
content: "\f82a";
}
.fi-sr-journal-alt:before {
content: "\f82b";
}
.fi-sr-journal:before {
content: "\f82c";
}
.fi-sr-journey:before {
content: "\f82d";
}
.fi-sr-joystick:before {
content: "\f82e";
}
.fi-sr-jpg:before {
content: "\f82f";
}
.fi-sr-jug-alt:before {
content: "\f830";
}
.fi-sr-jug-bottle:before {
content: "\f831";
}
.fi-sr-jug:before {
content: "\f832";
}
.fi-sr-jumping-rope:before {
content: "\f833";
}
.fi-sr-k:before {
content: "\f834";
}
.fi-sr-kaaba:before {
content: "\f835";
}
.fi-sr-kazoo:before {
content: "\f836";
}
.fi-sr-kerning:before {
content: "\f837";
}
.fi-sr-key-lock-crypto:before {
content: "\f838";
}
.fi-sr-key-skeleton-left-right:before {
content: "\f839";
}
.fi-sr-key:before {
content: "\f83a";
}
.fi-sr-keyboard-brightness-low:before {
content: "\f83b";
}
.fi-sr-keyboard-brightness:before {
content: "\f83c";
}
.fi-sr-keyboard-down:before {
content: "\f83d";
}
.fi-sr-keyboard-left:before {
content: "\f83e";
}
.fi-sr-keyboard:before {
content: "\f83f";
}
.fi-sr-keynote:before {
content: "\f840";
}
.fi-sr-kidneys:before {
content: "\f841";
}
.fi-sr-kip-sign:before {
content: "\f842";
}
.fi-sr-kiss-beam:before {
content: "\f843";
}
.fi-sr-kiss-wink-heart:before {
content: "\f844";
}
.fi-sr-kiss:before {
content: "\f845";
}
.fi-sr-kite:before {
content: "\f846";
}
.fi-sr-kiwi-bird:before {
content: "\f847";
}
.fi-sr-kiwi-fruit:before {
content: "\f848";
}
.fi-sr-knife-kitchen:before {
content: "\f849";
}
.fi-sr-knife:before {
content: "\f84a";
}
.fi-sr-knitting:before {
content: "\f84b";
}
.fi-sr-kpi-evaluation:before {
content: "\f84c";
}
.fi-sr-kpi:before {
content: "\f84d";
}
.fi-sr-l:before {
content: "\f84e";
}
.fi-sr-label:before {
content: "\f84f";
}
.fi-sr-lacrosse-stick-ball:before {
content: "\f850";
}
.fi-sr-lacrosse-stick:before {
content: "\f851";
}
.fi-sr-lambda:before {
content: "\f852";
}
.fi-sr-lamp-desk:before {
content: "\f853";
}
.fi-sr-lamp-floor:before {
content: "\f854";
}
.fi-sr-lamp-street:before {
content: "\f855";
}
.fi-sr-lamp:before {
content: "\f856";
}
.fi-sr-land-layer-location:before {
content: "\f857";
}
.fi-sr-land-layers:before {
content: "\f858";
}
.fi-sr-land-location:before {
content: "\f859";
}
.fi-sr-landmark-alt:before {
content: "\f85a";
}
.fi-sr-language:before {
content: "\f85b";
}
.fi-sr-laptop-arrow-down:before {
content: "\f85c";
}
.fi-sr-laptop-binary:before {
content: "\f85d";
}
.fi-sr-laptop-code:before {
content: "\f85e";
}
.fi-sr-laptop-medical:before {
content: "\f85f";
}
.fi-sr-laptop-mobile:before {
content: "\f860";
}
.fi-sr-laptop-slash:before {
content: "\f861";
}
.fi-sr-laptop:before {
content: "\f862";
}
.fi-sr-lari-sign:before {
content: "\f863";
}
.fi-sr-lasso-sparkles:before {
content: "\f864";
}
.fi-sr-lasso:before {
content: "\f865";
}
.fi-sr-last-square:before {
content: "\f866";
}
.fi-sr-laugh-beam:before {
content: "\f867";
}
.fi-sr-laugh-squint:before {
content: "\f868";
}
.fi-sr-laugh-wink:before {
content: "\f869";
}
.fi-sr-laugh:before {
content: "\f86a";
}
.fi-sr-lawyer-man:before {
content: "\f86b";
}
.fi-sr-lawyer-woman:before {
content: "\f86c";
}
.fi-sr-layer-minus:before {
content: "\f86d";
}
.fi-sr-layer-plus:before {
content: "\f86e";
}
.fi-sr-layers:before {
content: "\f86f";
}
.fi-sr-layout-fluid:before {
content: "\f870";
}
.fi-sr-lead-funnel:before {
content: "\f871";
}
.fi-sr-lead-management:before {
content: "\f872";
}
.fi-sr-lead:before {
content: "\f873";
}
.fi-sr-leader-alt:before {
content: "\f874";
}
.fi-sr-leader-speech:before {
content: "\f875";
}
.fi-sr-leader:before {
content: "\f876";
}
.fi-sr-leaderboard-alt:before {
content: "\f877";
}
.fi-sr-leaderboard-trophy:before {
content: "\f878";
}
.fi-sr-leaderboard:before {
content: "\f879";
}
.fi-sr-leadership-alt:before {
content: "\f87a";
}
.fi-sr-leadership:before {
content: "\f87b";
}
.fi-sr-leaf-heart:before {
content: "\f87c";
}
.fi-sr-leaf-maple:before {
content: "\f87d";
}
.fi-sr-leaf-oak:before {
content: "\f87e";
}
.fi-sr-leaf:before {
content: "\f87f";
}
.fi-sr-leafy-green:before {
content: "\f880";
}
.fi-sr-leave:before {
content: "\f881";
}
.fi-sr-left-from-bracket:before {
content: "\f882";
}
.fi-sr-left:before {
content: "\f883";
}
.fi-sr-legal:before {
content: "\f884";
}
.fi-sr-lemon:before {
content: "\f885";
}
.fi-sr-lesbian-couple:before {
content: "\f886";
}
.fi-sr-less-than-equal:before {
content: "\f887";
}
.fi-sr-less-than:before {
content: "\f888";
}
.fi-sr-lesson-class:before {
content: "\f889";
}
.fi-sr-lesson:before {
content: "\f88a";
}
.fi-sr-letter-case:before {
content: "\f88b";
}
.fi-sr-lettuce:before {
content: "\f88c";
}
.fi-sr-level-down-alt:before {
content: "\f88d";
}
.fi-sr-level-down:before {
content: "\f88e";
}
.fi-sr-level-up-alt:before {
content: "\f88f";
}
.fi-sr-level-up:before {
content: "\f890";
}
.fi-sr-license:before {
content: "\f891";
}
.fi-sr-life-ring:before {
content: "\f892";
}
.fi-sr-life:before {
content: "\f893";
}
.fi-sr-light-ceiling:before {
content: "\f894";
}
.fi-sr-light-emergency-on:before {
content: "\f895";
}
.fi-sr-light-emergency:before {
content: "\f896";
}
.fi-sr-light-switch-off:before {
content: "\f897";
}
.fi-sr-light-switch-on:before {
content: "\f898";
}
.fi-sr-light-switch:before {
content: "\f899";
}
.fi-sr-lightbulb-cfl-on:before {
content: "\f89a";
}
.fi-sr-lightbulb-cfl:before {
content: "\f89b";
}
.fi-sr-lightbulb-dollar:before {
content: "\f89c";
}
.fi-sr-lightbulb-exclamation:before {
content: "\f89d";
}
.fi-sr-lightbulb-head:before {
content: "\f89e";
}
.fi-sr-lightbulb-on:before {
content: "\f89f";
}
.fi-sr-lightbulb-question:before {
content: "\f8a0";
}
.fi-sr-lightbulb-setting:before {
content: "\f8a1";
}
.fi-sr-lightbulb-slash:before {
content: "\f8a2";
}
.fi-sr-lighthouse:before {
content: "\f8a3";
}
.fi-sr-lights-holiday:before {
content: "\f8a4";
}
.fi-sr-limit-hand:before {
content: "\f8a5";
}
.fi-sr-limit-speedometer:before {
content: "\f8a6";
}
.fi-sr-line-width:before {
content: "\f8a7";
}
.fi-sr-link-alt:before {
content: "\f8a8";
}
.fi-sr-link-horizontal-slash:before {
content: "\f8a9";
}
.fi-sr-link-horizontal:before {
content: "\f8aa";
}
.fi-sr-link-slash-alt:before {
content: "\f8ab";
}
.fi-sr-link-slash:before {
content: "\f8ac";
}
.fi-sr-link:before {
content: "\f8ad";
}
.fi-sr-lion-head:before {
content: "\f8ae";
}
.fi-sr-lion:before {
content: "\f8af";
}
.fi-sr-lips:before {
content: "\f8b0";
}
.fi-sr-lipstick:before {
content: "\f8b1";
}
.fi-sr-lira-sign:before {
content: "\f8b2";
}
.fi-sr-list-check:before {
content: "\f8b3";
}
.fi-sr-list-dropdown:before {
content: "\f8b4";
}
.fi-sr-list-music:before {
content: "\f8b5";
}
.fi-sr-list-timeline:before {
content: "\f8b6";
}
.fi-sr-list:before {
content: "\f8b7";
}
.fi-sr-litecoin-sign:before {
content: "\f8b8";
}
.fi-sr-live-alt:before {
content: "\f8b9";
}
.fi-sr-live:before {
content: "\f8ba";
}
.fi-sr-loading:before {
content: "\f8bb";
}
.fi-sr-loan:before {
content: "\f8bc";
}
.fi-sr-lobster:before {
content: "\f8bd";
}
.fi-sr-location-alt:before {
content: "\f8be";
}
.fi-sr-location-arrow:before {
content: "\f8bf";
}
.fi-sr-location-crosshairs-slash:before {
content: "\f8c0";
}
.fi-sr-location-crosshairs:before {
content: "\f8c1";
}
.fi-sr-location-dot-slash:before {
content: "\f8c2";
}
.fi-sr-location-exclamation:before {
content: "\f8c3";
}
.fi-sr-location-pin-call:before {
content: "\f8c4";
}
.fi-sr-lock-alt:before {
content: "\f8c5";
}
.fi-sr-lock-hashtag:before {
content: "\f8c6";
}
.fi-sr-lock-open-alt:before {
content: "\f8c7";
}
.fi-sr-lock:before {
content: "\f8c8";
}
.fi-sr-locust:before {
content: "\f8c9";
}
.fi-sr-loop-square:before {
content: "\f8ca";
}
.fi-sr-loveseat:before {
content: "\f8cb";
}
.fi-sr-low-vision:before {
content: "\f8cc";
}
.fi-sr-luchador:before {
content: "\f8cd";
}
.fi-sr-luggage-cart:before {
content: "\f8ce";
}
.fi-sr-luggage-rolling:before {
content: "\f8cf";
}
.fi-sr-lungs-virus:before {
content: "\f8d0";
}
.fi-sr-lungs:before {
content: "\f8d1";
}
.fi-sr-m:before {
content: "\f8d2";
}
.fi-sr-mace:before {
content: "\f8d3";
}
.fi-sr-magnet-user:before {
content: "\f8d4";
}
.fi-sr-magnet:before {
content: "\f8d5";
}
.fi-sr-mailbox-envelope:before {
content: "\f8d6";
}
.fi-sr-mailbox-flag-up:before {
content: "\f8d7";
}
.fi-sr-mailbox:before {
content: "\f8d8";
}
.fi-sr-makeup-brush:before {
content: "\f8d9";
}
.fi-sr-man-head:before {
content: "\f8da";
}
.fi-sr-man-scientist:before {
content: "\f8db";
}
.fi-sr-manat-sign:before {
content: "\f8dc";
}
.fi-sr-mandolin:before {
content: "\f8dd";
}
.fi-sr-mango:before {
content: "\f8de";
}
.fi-sr-manhole:before {
content: "\f8df";
}
.fi-sr-map-location-track:before {
content: "\f8e0";
}
.fi-sr-map-marker-check:before {
content: "\f8e1";
}
.fi-sr-map-marker-cross:before {
content: "\f8e2";
}
.fi-sr-map-marker-edit:before {
content: "\f8e3";
}
.fi-sr-map-marker-home:before {
content: "\f8e4";
}
.fi-sr-map-marker-minus:before {
content: "\f8e5";
}
.fi-sr-map-marker-plus:before {
content: "\f8e6";
}
.fi-sr-map-marker-question:before {
content: "\f8e7";
}
.fi-sr-map-marker-slash:before {
content: "\f8e8";
}
.fi-sr-map-marker-smile:before {
content: "\f8e9";
}
.fi-sr-map-marker:before {
content: "\f8ea";
}
.fi-sr-map-pin:before {
content: "\f8eb";
}
.fi-sr-map-point:before {
content: "\f8ec";
}
.fi-sr-map:before {
content: "\f8ed";
}
.fi-sr-marker-time:before {
content: "\f8ee";
}
.fi-sr-marker:before {
content: "\f8ef";
}
.fi-sr-marketplace-alt:before {
content: "\f8f0";
}
.fi-sr-marketplace-store:before {
content: "\f8f1";
}
.fi-sr-marketplace:before {
content: "\f8f2";
}
.fi-sr-mars-double:before {
content: "\f8f3";
}
.fi-sr-mars-stroke-right:before {
content: "\f8f4";
}
.fi-sr-mars-stroke-up:before {
content: "\f8f5";
}
.fi-sr-mars:before {
content: "\f8f6";
}
.fi-sr-martini-glass-citrus:before {
content: "\f8f7";
}
.fi-sr-martini-glass-empty:before {
content: "\f8f8";
}
.fi-sr-mask-carnival:before {
content: "\f8f9";
}
.fi-sr-mask-face:before {
content: "\f8fa";
}
.fi-sr-mask-snorkel:before {
content: "\f8fb";
}
.fi-sr-massage:before {
content: "\f8fc";
}
.fi-sr-match-fire:before {
content: "\f8fd";
}
.fi-sr-mattress-pillow:before {
content: "\f8fe";
}
.fi-sr-measuring-tape:before {
content: "\f8ff";
}
.fi-sr-meat:before {
content: "\f900";
}
.fi-sr-medal:before {
content: "\f901";
}
.fi-sr-medical-star:before {
content: "\f902";
}
.fi-sr-medicine:before {
content: "\f903";
}
.fi-sr-meditation:before {
content: "\f904";
}
.fi-sr-meeting-alt:before {
content: "\f905";
}
.fi-sr-meeting:before {
content: "\f906";
}
.fi-sr-megaphone-announcement-leader:before {
content: "\f907";
}
.fi-sr-megaphone:before {
content: "\f908";
}
.fi-sr-meh-blank:before {
content: "\f909";
}
.fi-sr-meh-rolling-eyes:before {
content: "\f90a";
}
.fi-sr-meh:before {
content: "\f90b";
}
.fi-sr-melon-alt:before {
content: "\f90c";
}
.fi-sr-melon:before {
content: "\f90d";
}
.fi-sr-member-list:before {
content: "\f90e";
}
.fi-sr-member-search:before {
content: "\f90f";
}
.fi-sr-membership-vip:before {
content: "\f910";
}
.fi-sr-membership:before {
content: "\f911";
}
.fi-sr-memo-circle-check:before {
content: "\f912";
}
.fi-sr-memo-pad:before {
content: "\f913";
}
.fi-sr-memo:before {
content: "\f914";
}
.fi-sr-memory:before {
content: "\f915";
}
.fi-sr-menu-burger:before {
content: "\f916";
}
.fi-sr-menu-dots-vertical:before {
content: "\f917";
}
.fi-sr-menu-dots:before {
content: "\f918";
}
.fi-sr-mercury:before {
content: "\f919";
}
.fi-sr-message-arrow-down:before {
content: "\f91a";
}
.fi-sr-message-arrow-up-right:before {
content: "\f91b";
}
.fi-sr-message-arrow-up:before {
content: "\f91c";
}
.fi-sr-message-bot:before {
content: "\f91d";
}
.fi-sr-message-code:before {
content: "\f91e";
}
.fi-sr-message-dollar:before {
content: "\f91f";
}
.fi-sr-message-heart:before {
content: "\f920";
}
.fi-sr-message-image:before {
content: "\f921";
}
.fi-sr-message-question:before {
content: "\f922";
}
.fi-sr-message-quote:before {
content: "\f923";
}
.fi-sr-message-slash:before {
content: "\f924";
}
.fi-sr-message-sms:before {
content: "\f925";
}
.fi-sr-message-text:before {
content: "\f926";
}
.fi-sr-message-xmark:before {
content: "\f927";
}
.fi-sr-messages-dollar:before {
content: "\f928";
}
.fi-sr-messages-question:before {
content: "\f929";
}
.fi-sr-messages:before {
content: "\f92a";
}
.fi-sr-meteor:before {
content: "\f92b";
}
.fi-sr-meter-bolt:before {
content: "\f92c";
}
.fi-sr-meter-droplet:before {
content: "\f92d";
}
.fi-sr-meter-fire:before {
content: "\f92e";
}
.fi-sr-meter:before {
content: "\f92f";
}
.fi-sr-microchip-ai:before {
content: "\f930";
}
.fi-sr-microchip:before {
content: "\f931";
}
.fi-sr-microphone-alt:before {
content: "\f932";
}
.fi-sr-microphone-slash:before {
content: "\f933";
}
.fi-sr-microphone:before {
content: "\f934";
}
.fi-sr-microscope:before {
content: "\f935";
}
.fi-sr-microwave:before {
content: "\f936";
}
.fi-sr-milk-alt:before {
content: "\f937";
}
.fi-sr-milk:before {
content: "\f938";
}
.fi-sr-mill-sign:before {
content: "\f939";
}
.fi-sr-mind-share:before {
content: "\f93a";
}
.fi-sr-minus-circle:before {
content: "\f93b";
}
.fi-sr-minus-hexagon:before {
content: "\f93c";
}
.fi-sr-minus-small:before {
content: "\f93d";
}
.fi-sr-minus:before {
content: "\f93e";
}
.fi-sr-mistletoe:before {
content: "\f93f";
}
.fi-sr-mix:before {
content: "\f940";
}
.fi-sr-mobile-button:before {
content: "\f941";
}
.fi-sr-mobile-notch:before {
content: "\f942";
}
.fi-sr-mobile:before {
content: "\f943";
}
.fi-sr-mockup:before {
content: "\f944";
}
.fi-sr-mode-alt:before {
content: "\f945";
}
.fi-sr-mode-landscape:before {
content: "\f946";
}
.fi-sr-mode-portrait:before {
content: "\f947";
}
.fi-sr-mode:before {
content: "\f948";
}
.fi-sr-model-cube-arrows:before {
content: "\f949";
}
.fi-sr-model-cube-space:before {
content: "\f94a";
}
.fi-sr-model-cube:before {
content: "\f94b";
}
.fi-sr-module:before {
content: "\f94c";
}
.fi-sr-monday:before {
content: "\f94d";
}
.fi-sr-money-bill-simple:before {
content: "\f94e";
}
.fi-sr-money-bill-transfer:before {
content: "\f94f";
}
.fi-sr-money-bill-wave-alt:before {
content: "\f950";
}
.fi-sr-money-bill-wave:before {
content: "\f951";
}
.fi-sr-money-bills-simple:before {
content: "\f952";
}
.fi-sr-money-bills:before {
content: "\f953";
}
.fi-sr-money-check-edit-alt:before {
content: "\f954";
}
.fi-sr-money-check-edit:before {
content: "\f955";
}
.fi-sr-money-check:before {
content: "\f956";
}
.fi-sr-money-coin-transfer:before {
content: "\f957";
}
.fi-sr-money-from-bracket:before {
content: "\f958";
}
.fi-sr-money-simple-from-bracket:before {
content: "\f959";
}
.fi-sr-money-transfer-alt:before {
content: "\f95a";
}
.fi-sr-money-transfer-coin-arrow:before {
content: "\f95b";
}
.fi-sr-money-transfer-smartphone:before {
content: "\f95c";
}
.fi-sr-money-wings:before {
content: "\f95d";
}
.fi-sr-money:before {
content: "\f95e";
}
.fi-sr-monkey:before {
content: "\f95f";
}
.fi-sr-monument:before {
content: "\f960";
}
.fi-sr-moon-stars:before {
content: "\f961";
}
.fi-sr-moon:before {
content: "\f962";
}
.fi-sr-moped:before {
content: "\f963";
}
.fi-sr-mortar-pestle:before {
content: "\f964";
}
.fi-sr-mortgage:before {
content: "\f965";
}
.fi-sr-mosque-alt:before {
content: "\f966";
}
.fi-sr-mosque-moon:before {
content: "\f967";
}
.fi-sr-mosque:before {
content: "\f968";
}
.fi-sr-mosquito-net:before {
content: "\f969";
}
.fi-sr-mosquito:before {
content: "\f96a";
}
.fi-sr-motorcycle:before {
content: "\f96b";
}
.fi-sr-mound:before {
content: "\f96c";
}
.fi-sr-mountain-city:before {
content: "\f96d";
}
.fi-sr-mountain:before {
content: "\f96e";
}
.fi-sr-mountains:before {
content: "\f96f";
}
.fi-sr-mouse-field:before {
content: "\f970";
}
.fi-sr-mouse:before {
content: "\f971";
}
.fi-sr-mov-file:before {
content: "\f972";
}
.fi-sr-move-to-folder-2:before {
content: "\f973";
}
.fi-sr-move-to-folder:before {
content: "\f974";
}
.fi-sr-mp3-file:before {
content: "\f975";
}
.fi-sr-mp3-player:before {
content: "\f976";
}
.fi-sr-mp4-file:before {
content: "\f977";
}
.fi-sr-mug-alt:before {
content: "\f978";
}
.fi-sr-mug-hot-alt:before {
content: "\f979";
}
.fi-sr-mug-hot:before {
content: "\f97a";
}
.fi-sr-mug-marshmallows:before {
content: "\f97b";
}
.fi-sr-mug-tea-saucer:before {
content: "\f97c";
}
.fi-sr-mug-tea:before {
content: "\f97d";
}
.fi-sr-mug:before {
content: "\f97e";
}
.fi-sr-multiple-alt:before {
content: "\f97f";
}
.fi-sr-multiple:before {
content: "\f980";
}
.fi-sr-muscle:before {
content: "\f981";
}
.fi-sr-mushroom-alt:before {
content: "\f982";
}
.fi-sr-mushroom:before {
content: "\f983";
}
.fi-sr-music-alt-slash:before {
content: "\f984";
}
.fi-sr-music-alt:before {
content: "\f985";
}
.fi-sr-music-file:before {
content: "\f986";
}
.fi-sr-music-note:before {
content: "\f987";
}
.fi-sr-music-slash:before {
content: "\f988";
}
.fi-sr-music:before {
content: "\f989";
}
.fi-sr-n:before {
content: "\f98a";
}
.fi-sr-naira-sign:before {
content: "\f98b";
}
.fi-sr-narwhal:before {
content: "\f98c";
}
.fi-sr-navigation:before {
content: "\f98d";
}
.fi-sr-nesting-dolls:before {
content: "\f98e";
}
.fi-sr-network-cloud:before {
content: "\f98f";
}
.fi-sr-network:before {
content: "\f990";
}
.fi-sr-neuter:before {
content: "\f991";
}
.fi-sr-newsletter-subscribe:before {
content: "\f992";
}
.fi-sr-newspaper-open:before {
content: "\f993";
}
.fi-sr-newspaper:before {
content: "\f994";
}
.fi-sr-nfc-lock:before {
content: "\f995";
}
.fi-sr-nfc-magnifying-glass:before {
content: "\f996";
}
.fi-sr-nfc-pen:before {
content: "\f997";
}
.fi-sr-nfc-slash:before {
content: "\f998";
}
.fi-sr-nfc-trash:before {
content: "\f999";
}
.fi-sr-nfc:before {
content: "\f99a";
}
.fi-sr-night-day:before {
content: "\f99b";
}
.fi-sr-no-fee:before {
content: "\f99c";
}
.fi-sr-no-people:before {
content: "\f99d";
}
.fi-sr-noodles:before {
content: "\f99e";
}
.fi-sr-nose:before {
content: "\f99f";
}
.fi-sr-not-equal:before {
content: "\f9a0";
}
.fi-sr-not-found-alt:before {
content: "\f9a1";
}
.fi-sr-not-found-magnifying-glass:before {
content: "\f9a2";
}
.fi-sr-not-found:before {
content: "\f9a3";
}
.fi-sr-notdef:before {
content: "\f9a4";
}
.fi-sr-note-medical:before {
content: "\f9a5";
}
.fi-sr-note-sticky:before {
content: "\f9a6";
}
.fi-sr-note:before {
content: "\f9a7";
}
.fi-sr-notebook-alt:before {
content: "\f9a8";
}
.fi-sr-notebook:before {
content: "\f9a9";
}
.fi-sr-notes-medical:before {
content: "\f9aa";
}
.fi-sr-notes:before {
content: "\f9ab";
}
.fi-sr-o:before {
content: "\f9ac";
}
.fi-sr-object-exclude:before {
content: "\f9ad";
}
.fi-sr-object-group:before {
content: "\f9ae";
}
.fi-sr-object-intersect:before {
content: "\f9af";
}
.fi-sr-object-subtract:before {
content: "\f9b0";
}
.fi-sr-object-ungroup:before {
content: "\f9b1";
}
.fi-sr-object-union:before {
content: "\f9b2";
}
.fi-sr-objects-column:before {
content: "\f9b3";
}
.fi-sr-octagon-check:before {
content: "\f9b4";
}
.fi-sr-octagon-divide:before {
content: "\f9b5";
}
.fi-sr-octagon-exclamation:before {
content: "\f9b6";
}
.fi-sr-octagon-minus:before {
content: "\f9b7";
}
.fi-sr-octagon-plus:before {
content: "\f9b8";
}
.fi-sr-octagon-xmark:before {
content: "\f9b9";
}
.fi-sr-octagon:before {
content: "\f9ba";
}
.fi-sr-oil-can:before {
content: "\f9bb";
}
.fi-sr-oil-temp:before {
content: "\f9bc";
}
.fi-sr-olive-oil:before {
content: "\f9bd";
}
.fi-sr-olive:before {
content: "\f9be";
}
.fi-sr-olives:before {
content: "\f9bf";
}
.fi-sr-om:before {
content: "\f9c0";
}
.fi-sr-omega:before {
content: "\f9c1";
}
.fi-sr-onboarding:before {
content: "\f9c2";
}
.fi-sr-onion:before {
content: "\f9c3";
}
.fi-sr-opacity:before {
content: "\f9c4";
}
.fi-sr-open-mail-clip:before {
content: "\f9c5";
}
.fi-sr-operating-system-upgrade:before {
content: "\f9c6";
}
.fi-sr-operation:before {
content: "\f9c7";
}
.fi-sr-order-history:before {
content: "\f9c8";
}
.fi-sr-organization-chart:before {
content: "\f9c9";
}
.fi-sr-ornament:before {
content: "\f9ca";
}
.fi-sr-otp:before {
content: "\f9cb";
}
.fi-sr-otter:before {
content: "\f9cc";
}
.fi-sr-outdent:before {
content: "\f9cd";
}
.fi-sr-oval-alt:before {
content: "\f9ce";
}
.fi-sr-oval:before {
content: "\f9cf";
}
.fi-sr-oven:before {
content: "\f9d0";
}
.fi-sr-overline:before {
content: "\f9d1";
}
.fi-sr-overview:before {
content: "\f9d2";
}
.fi-sr-p:before {
content: "\f9d3";
}
.fi-sr-package:before {
content: "\f9d4";
}
.fi-sr-padlock-check:before {
content: "\f9d5";
}
.fi-sr-page-break:before {
content: "\f9d6";
}
.fi-sr-pager:before {
content: "\f9d7";
}
.fi-sr-paid:before {
content: "\f9d8";
}
.fi-sr-paint-roller:before {
content: "\f9d9";
}
.fi-sr-paint:before {
content: "\f9da";
}
.fi-sr-paintbrush-pencil:before {
content: "\f9db";
}
.fi-sr-palette:before {
content: "\f9dc";
}
.fi-sr-pallet-alt:before {
content: "\f9dd";
}
.fi-sr-pallet:before {
content: "\f9de";
}
.fi-sr-pan-food:before {
content: "\f9df";
}
.fi-sr-pan-frying:before {
content: "\f9e0";
}
.fi-sr-pan:before {
content: "\f9e1";
}
.fi-sr-pancakes:before {
content: "\f9e2";
}
.fi-sr-panorama:before {
content: "\f9e3";
}
.fi-sr-paper-plane-launch:before {
content: "\f9e4";
}
.fi-sr-paper-plane-top:before {
content: "\f9e5";
}
.fi-sr-paper-plane:before {
content: "\f9e6";
}
.fi-sr-paperclip-vertical:before {
content: "\f9e7";
}
.fi-sr-parachute-box:before {
content: "\f9e8";
}
.fi-sr-paragraph-left:before {
content: "\f9e9";
}
.fi-sr-paragraph:before {
content: "\f9ea";
}
.fi-sr-parking-circle-slash:before {
content: "\f9eb";
}
.fi-sr-parking-circle:before {
content: "\f9ec";
}
.fi-sr-parking-slash:before {
content: "\f9ed";
}
.fi-sr-parking:before {
content: "\f9ee";
}
.fi-sr-party-bell:before {
content: "\f9ef";
}
.fi-sr-party-horn:before {
content: "\f9f0";
}
.fi-sr-party:before {
content: "\f9f1";
}
.fi-sr-passport:before {
content: "\f9f2";
}
.fi-sr-password-alt:before {
content: "\f9f3";
}
.fi-sr-password-computer:before {
content: "\f9f4";
}
.fi-sr-password-email:before {
content: "\f9f5";
}
.fi-sr-password-smartphone:before {
content: "\f9f6";
}
.fi-sr-password:before {
content: "\f9f7";
}
.fi-sr-paste:before {
content: "\f9f8";
}
.fi-sr-pattern:before {
content: "\f9f9";
}
.fi-sr-pause-circle:before {
content: "\f9fa";
}
.fi-sr-pause-square:before {
content: "\f9fb";
}
.fi-sr-pause:before {
content: "\f9fc";
}
.fi-sr-paw-claws:before {
content: "\f9fd";
}
.fi-sr-paw-heart:before {
content: "\f9fe";
}
.fi-sr-paw:before {
content: "\f9ff";
}
.fi-sr-payment-pos:before {
content: "\fa00";
}
.fi-sr-payroll-check:before {
content: "\fa01";
}
.fi-sr-peace:before {
content: "\fa02";
}
.fi-sr-peach:before {
content: "\fa03";
}
.fi-sr-peanut:before {
content: "\fa04";
}
.fi-sr-peanuts:before {
content: "\fa05";
}
.fi-sr-peapod:before {
content: "\fa06";
}
.fi-sr-pear:before {
content: "\fa07";
}
.fi-sr-pedestal:before {
content: "\fa08";
}
.fi-sr-pen-circle:before {
content: "\fa09";
}
.fi-sr-pen-clip-slash:before {
content: "\fa0a";
}
.fi-sr-pen-clip:before {
content: "\fa0b";
}
.fi-sr-pen-fancy-slash:before {
content: "\fa0c";
}
.fi-sr-pen-fancy:before {
content: "\fa0d";
}
.fi-sr-pen-field:before {
content: "\fa0e";
}
.fi-sr-pen-nib-slash:before {
content: "\fa0f";
}
.fi-sr-pen-nib:before {
content: "\fa10";
}
.fi-sr-pen-slash:before {
content: "\fa11";
}
.fi-sr-pen-square:before {
content: "\fa12";
}
.fi-sr-pen-swirl:before {
content: "\fa13";
}
.fi-sr-pencil-paintbrush:before {
content: "\fa14";
}
.fi-sr-pencil-ruler:before {
content: "\fa15";
}
.fi-sr-pencil-slash:before {
content: "\fa16";
}
.fi-sr-pencil:before {
content: "\fa17";
}
.fi-sr-pending:before {
content: "\fa18";
}
.fi-sr-pennant:before {
content: "\fa19";
}
.fi-sr-people-arrows-left-right:before {
content: "\fa1a";
}
.fi-sr-people-carry-box:before {
content: "\fa1b";
}
.fi-sr-people-dress:before {
content: "\fa1c";
}
.fi-sr-people-network-partner:before {
content: "\fa1d";
}
.fi-sr-people-pants:before {
content: "\fa1e";
}
.fi-sr-people-poll:before {
content: "\fa1f";
}
.fi-sr-people-pulling:before {
content: "\fa20";
}
.fi-sr-people-roof:before {
content: "\fa21";
}
.fi-sr-people:before {
content: "\fa22";
}
.fi-sr-pepper-alt:before {
content: "\fa23";
}
.fi-sr-pepper-hot:before {
content: "\fa24";
}
.fi-sr-pepper:before {
content: "\fa25";
}
.fi-sr-percentage:before {
content: "\fa26";
}
.fi-sr-person-burst:before {
content: "\fa27";
}
.fi-sr-person-carry-box:before {
content: "\fa28";
}
.fi-sr-person-circle-check:before {
content: "\fa29";
}
.fi-sr-person-circle-exclamation:before {
content: "\fa2a";
}
.fi-sr-person-circle-minus:before {
content: "\fa2b";
}
.fi-sr-person-circle-plus:before {
content: "\fa2c";
}
.fi-sr-person-circle-question:before {
content: "\fa2d";
}
.fi-sr-person-circle-xmark:before {
content: "\fa2e";
}
.fi-sr-person-cv:before {
content: "\fa2f";
}
.fi-sr-person-dolly-empty:before {
content: "\fa30";
}
.fi-sr-person-dolly:before {
content: "\fa31";
}
.fi-sr-person-dress-simple:before {
content: "\fa32";
}
.fi-sr-person-dress:before {
content: "\fa33";
}
.fi-sr-person-luggage:before {
content: "\fa34";
}
.fi-sr-person-lunge:before {
content: "\fa35";
}
.fi-sr-person-pilates:before {
content: "\fa36";
}
.fi-sr-person-praying:before {
content: "\fa37";
}
.fi-sr-person-pregnant:before {
content: "\fa38";
}
.fi-sr-person-seat-reclined:before {
content: "\fa39";
}
.fi-sr-person-seat:before {
content: "\fa3a";
}
.fi-sr-person-shelter:before {
content: "\fa3b";
}
.fi-sr-person-sign:before {
content: "\fa3c";
}
.fi-sr-person-simple:before {
content: "\fa3d";
}
.fi-sr-person-walking-with-cane:before {
content: "\fa3e";
}
.fi-sr-peseta-sign:before {
content: "\fa3f";
}
.fi-sr-peso-sign:before {
content: "\fa40";
}
.fi-sr-pets:before {
content: "\fa41";
}
.fi-sr-pharmacy:before {
content: "\fa42";
}
.fi-sr-phone-call:before {
content: "\fa43";
}
.fi-sr-phone-cross:before {
content: "\fa44";
}
.fi-sr-phone-flip:before {
content: "\fa45";
}
.fi-sr-phone-guide:before {
content: "\fa46";
}
.fi-sr-phone-heart-message:before {
content: "\fa47";
}
.fi-sr-phone-office:before {
content: "\fa48";
}
.fi-sr-phone-pause:before {
content: "\fa49";
}
.fi-sr-phone-plus:before {
content: "\fa4a";
}
.fi-sr-phone-rotary:before {
content: "\fa4b";
}
.fi-sr-phone-slash:before {
content: "\fa4c";
}
.fi-sr-photo-capture:before {
content: "\fa4d";
}
.fi-sr-photo-film-music:before {
content: "\fa4e";
}
.fi-sr-photo-video:before {
content: "\fa4f";
}
.fi-sr-physics:before {
content: "\fa50";
}
.fi-sr-Pi:before {
content: "\fa51";
}
.fi-sr-piano-keyboard:before {
content: "\fa52";
}
.fi-sr-piano:before {
content: "\fa53";
}
.fi-sr-pickaxe:before {
content: "\fa54";
}
.fi-sr-picking-box:before {
content: "\fa55";
}
.fi-sr-picking:before {
content: "\fa56";
}
.fi-sr-picnic:before {
content: "\fa57";
}
.fi-sr-picpeople-filled:before {
content: "\fa58";
}
.fi-sr-picpeople:before {
content: "\fa59";
}
.fi-sr-picture:before {
content: "\fa5a";
}
.fi-sr-pie:before {
content: "\fa5b";
}
.fi-sr-pig-bank-bulb:before {
content: "\fa5c";
}
.fi-sr-pig-face:before {
content: "\fa5d";
}
.fi-sr-pig:before {
content: "\fa5e";
}
.fi-sr-piggy-bank-budget:before {
content: "\fa5f";
}
.fi-sr-piggy-bank:before {
content: "\fa60";
}
.fi-sr-pills:before {
content: "\fa61";
}
.fi-sr-pinata:before {
content: "\fa62";
}
.fi-sr-pineapple-alt:before {
content: "\fa63";
}
.fi-sr-pineapple:before {
content: "\fa64";
}
.fi-sr-pipe-smoking:before {
content: "\fa65";
}
.fi-sr-pipette:before {
content: "\fa66";
}
.fi-sr-pizza-slice:before {
content: "\fa67";
}
.fi-sr-place-of-worship:before {
content: "\fa68";
}
.fi-sr-plan-strategy:before {
content: "\fa69";
}
.fi-sr-plan:before {
content: "\fa6a";
}
.fi-sr-plane-alt:before {
content: "\fa6b";
}
.fi-sr-plane-arrival:before {
content: "\fa6c";
}
.fi-sr-plane-departure:before {
content: "\fa6d";
}
.fi-sr-plane-prop:before {
content: "\fa6e";
}
.fi-sr-plane-slash:before {
content: "\fa6f";
}
.fi-sr-plane-tail:before {
content: "\fa70";
}
.fi-sr-plane:before {
content: "\fa71";
}
.fi-sr-planet-moon:before {
content: "\fa72";
}
.fi-sr-planet-ringed:before {
content: "\fa73";
}
.fi-sr-plant-care:before {
content: "\fa74";
}
.fi-sr-plant-growth:before {
content: "\fa75";
}
.fi-sr-plant-seed-invest:before {
content: "\fa76";
}
.fi-sr-plant-wilt:before {
content: "\fa77";
}
.fi-sr-plate-utensils:before {
content: "\fa78";
}
.fi-sr-plate-wheat:before {
content: "\fa79";
}
.fi-sr-plate:before {
content: "\fa7a";
}
.fi-sr-play-alt:before {
content: "\fa7b";
}
.fi-sr-play-circle:before {
content: "\fa7c";
}
.fi-sr-play-microphone:before {
content: "\fa7d";
}
.fi-sr-play-pause:before {
content: "\fa7e";
}
.fi-sr-play:before {
content: "\fa7f";
}
.fi-sr-plug-alt:before {
content: "\fa80";
}
.fi-sr-plug-cable:before {
content: "\fa81";
}
.fi-sr-plug-circle-bolt:before {
content: "\fa82";
}
.fi-sr-plug-circle-check:before {
content: "\fa83";
}
.fi-sr-plug-circle-exclamation:before {
content: "\fa84";
}
.fi-sr-plug-circle-minus:before {
content: "\fa85";
}
.fi-sr-plug-circle-plus:before {
content: "\fa86";
}
.fi-sr-plug-connection:before {
content: "\fa87";
}
.fi-sr-plug:before {
content: "\fa88";
}
.fi-sr-plus-hexagon:before {
content: "\fa89";
}
.fi-sr-plus-minus:before {
content: "\fa8a";
}
.fi-sr-plus-small:before {
content: "\fa8b";
}
.fi-sr-plus:before {
content: "\fa8c";
}
.fi-sr-png-file:before {
content: "\fa8d";
}
.fi-sr-podcast:before {
content: "\fa8e";
}
.fi-sr-podium-star:before {
content: "\fa8f";
}
.fi-sr-podium-victory-leader:before {
content: "\fa90";
}
.fi-sr-podium:before {
content: "\fa91";
}
.fi-sr-point-of-sale-bill:before {
content: "\fa92";
}
.fi-sr-point-of-sale-signal:before {
content: "\fa93";
}
.fi-sr-point-of-sale:before {
content: "\fa94";
}
.fi-sr-pointer-loading:before {
content: "\fa95";
}
.fi-sr-pointer-text:before {
content: "\fa96";
}
.fi-sr-police-box:before {
content: "\fa97";
}
.fi-sr-poll-h:before {
content: "\fa98";
}
.fi-sr-pollution:before {
content: "\fa99";
}
.fi-sr-pompebled:before {
content: "\fa9a";
}
.fi-sr-poo-bolt:before {
content: "\fa9b";
}
.fi-sr-poo:before {
content: "\fa9c";
}
.fi-sr-pool-8-ball:before {
content: "\fa9d";
}
.fi-sr-poop:before {
content: "\fa9e";
}
.fi-sr-popcorn:before {
content: "\fa9f";
}
.fi-sr-popsicle:before {
content: "\faa0";
}
.fi-sr-portal-enter:before {
content: "\faa1";
}
.fi-sr-portal-exit:before {
content: "\faa2";
}
.fi-sr-portrait:before {
content: "\faa3";
}
.fi-sr-postal-address:before {
content: "\faa4";
}
.fi-sr-pot:before {
content: "\faa5";
}
.fi-sr-potato:before {
content: "\faa6";
}
.fi-sr-pound:before {
content: "\faa7";
}
.fi-sr-power:before {
content: "\faa8";
}
.fi-sr-ppt-file:before {
content: "\faa9";
}
.fi-sr-practice:before {
content: "\faaa";
}
.fi-sr-praying-hands:before {
content: "\faab";
}
.fi-sr-prescription-bottle-alt:before {
content: "\faac";
}
.fi-sr-prescription-bottle-pill:before {
content: "\faad";
}
.fi-sr-prescription-bottle:before {
content: "\faae";
}
.fi-sr-prescription:before {
content: "\faaf";
}
.fi-sr-presentation:before {
content: "\fab0";
}
.fi-sr-preview:before {
content: "\fab1";
}
.fi-sr-previous-square:before {
content: "\fab2";
}
.fi-sr-print-magnifying-glass:before {
content: "\fab3";
}
.fi-sr-print-slash:before {
content: "\fab4";
}
.fi-sr-print:before {
content: "\fab5";
}
.fi-sr-priority-arrow:before {
content: "\fab6";
}
.fi-sr-priority-arrows:before {
content: "\fab7";
}
.fi-sr-priority-importance:before {
content: "\fab8";
}
.fi-sr-procedures:before {
content: "\fab9";
}
.fi-sr-process:before {
content: "\faba";
}
.fi-sr-productivity:before {
content: "\fabb";
}
.fi-sr-progress-complete:before {
content: "\fabc";
}
.fi-sr-progress-download:before {
content: "\fabd";
}
.fi-sr-progress-upload:before {
content: "\fabe";
}
.fi-sr-projector:before {
content: "\fabf";
}
.fi-sr-protractor:before {
content: "\fac0";
}
.fi-sr-pulse:before {
content: "\fac1";
}
.fi-sr-pump-medical:before {
content: "\fac2";
}
.fi-sr-pump:before {
content: "\fac3";
}
.fi-sr-pumpkin-alt-2:before {
content: "\fac4";
}
.fi-sr-pumpkin-alt:before {
content: "\fac5";
}
.fi-sr-pumpkin:before {
content: "\fac6";
}
.fi-sr-puzzle-alt:before {
content: "\fac7";
}
.fi-sr-puzzle-piece-integration:before {
content: "\fac8";
}
.fi-sr-puzzle-piece:before {
content: "\fac9";
}
.fi-sr-puzzle-pieces:before {
content: "\faca";
}
.fi-sr-pyramid:before {
content: "\facb";
}
.fi-sr-q:before {
content: "\facc";
}
.fi-sr-qr-scan:before {
content: "\facd";
}
.fi-sr-QR:before {
content: "\face";
}
.fi-sr-qrcode:before {
content: "\facf";
}
.fi-sr-question-square:before {
content: "\fad0";
}
.fi-sr-question:before {
content: "\fad1";
}
.fi-sr-queue-alt:before {
content: "\fad2";
}
.fi-sr-queue-line:before {
content: "\fad3";
}
.fi-sr-queue-signal:before {
content: "\fad4";
}
.fi-sr-queue:before {
content: "\fad5";
}
.fi-sr-quill-pen-story:before {
content: "\fad6";
}
.fi-sr-quiz-alt:before {
content: "\fad7";
}
.fi-sr-quiz:before {
content: "\fad8";
}
.fi-sr-quote-right:before {
content: "\fad9";
}
.fi-sr-r:before {
content: "\fada";
}
.fi-sr-rabbit-fast:before {
content: "\fadb";
}
.fi-sr-rabbit:before {
content: "\fadc";
}
.fi-sr-raccoon:before {
content: "\fadd";
}
.fi-sr-racquet:before {
content: "\fade";
}
.fi-sr-radar-monitoring-track:before {
content: "\fadf";
}
.fi-sr-radar:before {
content: "\fae0";
}
.fi-sr-radiation-alt:before {
content: "\fae1";
}
.fi-sr-radiation:before {
content: "\fae2";
}
.fi-sr-radio-alt:before {
content: "\fae3";
}
.fi-sr-radio-button:before {
content: "\fae4";
}
.fi-sr-radio:before {
content: "\fae5";
}
.fi-sr-radish:before {
content: "\fae6";
}
.fi-sr-rainbow:before {
content: "\fae7";
}
.fi-sr-raindrops:before {
content: "\fae8";
}
.fi-sr-ram:before {
content: "\fae9";
}
.fi-sr-ramp-loading:before {
content: "\faea";
}
.fi-sr-rank:before {
content: "\faeb";
}
.fi-sr-ranking-podium-empty:before {
content: "\faec";
}
.fi-sr-ranking-podium:before {
content: "\faed";
}
.fi-sr-ranking-star:before {
content: "\faee";
}
.fi-sr-ranking-stars:before {
content: "\faef";
}
.fi-sr-raygun:before {
content: "\faf0";
}
.fi-sr-razor-barber:before {
content: "\faf1";
}
.fi-sr-react:before {
content: "\faf2";
}
.fi-sr-rec:before {
content: "\faf3";
}
.fi-sr-receipt:before {
content: "\faf4";
}
.fi-sr-recipe-book:before {
content: "\faf5";
}
.fi-sr-recipe:before {
content: "\faf6";
}
.fi-sr-record-vinyl:before {
content: "\faf7";
}
.fi-sr-rectabgle-vertical:before {
content: "\faf8";
}
.fi-sr-rectangle-barcode:before {
content: "\faf9";
}
.fi-sr-rectangle-code:before {
content: "\fafa";
}
.fi-sr-rectangle-history-circle-plus:before {
content: "\fafb";
}
.fi-sr-rectangle-horizontal:before {
content: "\fafc";
}
.fi-sr-rectangle-list:before {
content: "\fafd";
}
.fi-sr-rectangle-panoramic:before {
content: "\fafe";
}
.fi-sr-rectangle-pro:before {
content: "\faff";
}
.fi-sr-rectangle-vertical-history:before {
content: "\fb00";
}
.fi-sr-rectangle-vertical:before {
content: "\fb01";
}
.fi-sr-rectangle-xmark:before {
content: "\fb02";
}
.fi-sr-rectangles-mixed:before {
content: "\fb03";
}
.fi-sr-recycle-bin:before {
content: "\fb04";
}
.fi-sr-recycle:before {
content: "\fb05";
}
.fi-sr-redo-alt:before {
content: "\fb06";
}
.fi-sr-redo:before {
content: "\fb07";
}
.fi-sr-reel:before {
content: "\fb08";
}
.fi-sr-refer-arrow:before {
content: "\fb09";
}
.fi-sr-refer:before {
content: "\fb0a";
}
.fi-sr-referral-alt:before {
content: "\fb0b";
}
.fi-sr-referral-user:before {
content: "\fb0c";
}
.fi-sr-referral:before {
content: "\fb0d";
}
.fi-sr-reflect-horizontal-alt:before {
content: "\fb0e";
}
.fi-sr-reflect-horizontal:before {
content: "\fb0f";
}
.fi-sr-reflect-vertical:before {
content: "\fb10";
}
.fi-sr-reflect:before {
content: "\fb11";
}
.fi-sr-refresh:before {
content: "\fb12";
}
.fi-sr-refrigerator:before {
content: "\fb13";
}
.fi-sr-refund-alt:before {
content: "\fb14";
}
.fi-sr-refund:before {
content: "\fb15";
}
.fi-sr-region-pin-alt:before {
content: "\fb16";
}
.fi-sr-region-pin:before {
content: "\fb17";
}
.fi-sr-registered:before {
content: "\fb18";
}
.fi-sr-registration-paper:before {
content: "\fb19";
}
.fi-sr-remove-folder:before {
content: "\fb1a";
}
.fi-sr-remove-user:before {
content: "\fb1b";
}
.fi-sr-rent-signal:before {
content: "\fb1c";
}
.fi-sr-rent:before {
content: "\fb1d";
}
.fi-sr-replace:before {
content: "\fb1e";
}
.fi-sr-replay-10:before {
content: "\fb1f";
}
.fi-sr-replay-30:before {
content: "\fb20";
}
.fi-sr-replay-5:before {
content: "\fb21";
}
.fi-sr-reply-all:before {
content: "\fb22";
}
.fi-sr-republican:before {
content: "\fb23";
}
.fi-sr-reservation-smartphone:before {
content: "\fb24";
}
.fi-sr-reservation-table:before {
content: "\fb25";
}
.fi-sr-resistance-band:before {
content: "\fb26";
}
.fi-sr-resize:before {
content: "\fb27";
}
.fi-sr-resources:before {
content: "\fb28";
}
.fi-sr-restaurant:before {
content: "\fb29";
}
.fi-sr-restroom-simple:before {
content: "\fb2a";
}
.fi-sr-resume:before {
content: "\fb2b";
}
.fi-sr-revenue-alt:before {
content: "\fb2c";
}
.fi-sr-revenue-euro:before {
content: "\fb2d";
}
.fi-sr-Revenue:before {
content: "\fb2e";
}
.fi-sr-review:before {
content: "\fb2f";
}
.fi-sr-rewind-button-circle:before {
content: "\fb30";
}
.fi-sr-rewind:before {
content: "\fb31";
}
.fi-sr-rhombus:before {
content: "\fb32";
}
.fi-sr-ribbon:before {
content: "\fb33";
}
.fi-sr-right-from-bracket:before {
content: "\fb34";
}
.fi-sr-right:before {
content: "\fb35";
}
.fi-sr-ring-diamond:before {
content: "\fb36";
}
.fi-sr-ring:before {
content: "\fb37";
}
.fi-sr-rings-wedding:before {
content: "\fb38";
}
.fi-sr-risk-alt:before {
content: "\fb39";
}
.fi-sr-risk:before {
content: "\fb3a";
}
.fi-sr-road-barrier:before {
content: "\fb3b";
}
.fi-sr-road-sign-left:before {
content: "\fb3c";
}
.fi-sr-road:before {
content: "\fb3d";
}
.fi-sr-robot:before {
content: "\fb3e";
}
.fi-sr-robotic-arm:before {
content: "\fb3f";
}
.fi-sr-rocket-lunch:before {
content: "\fb40";
}
.fi-sr-rocket:before {
content: "\fb41";
}
.fi-sr-roller-coaster:before {
content: "\fb42";
}
.fi-sr-room-service:before {
content: "\fb43";
}
.fi-sr-rotate-exclamation:before {
content: "\fb44";
}
.fi-sr-rotate-left:before {
content: "\fb45";
}
.fi-sr-rotate-reverse:before {
content: "\fb46";
}
.fi-sr-rotate-right:before {
content: "\fb47";
}
.fi-sr-rotate-square:before {
content: "\fb48";
}
.fi-sr-roulette:before {
content: "\fb49";
}
.fi-sr-route-highway:before {
content: "\fb4a";
}
.fi-sr-route-interstate:before {
content: "\fb4b";
}
.fi-sr-route:before {
content: "\fb4c";
}
.fi-sr-router:before {
content: "\fb4d";
}
.fi-sr-rss-alt:before {
content: "\fb4e";
}
.fi-sr-rss:before {
content: "\fb4f";
}
.fi-sr-ruble-sign:before {
content: "\fb50";
}
.fi-sr-rugby-helmet:before {
content: "\fb51";
}
.fi-sr-rugby:before {
content: "\fb52";
}
.fi-sr-ruler-combined:before {
content: "\fb53";
}
.fi-sr-ruler-horizontal:before {
content: "\fb54";
}
.fi-sr-ruler-triangle:before {
content: "\fb55";
}
.fi-sr-ruler-vertical:before {
content: "\fb56";
}
.fi-sr-rules-alt:before {
content: "\fb57";
}
.fi-sr-rules:before {
content: "\fb58";
}
.fi-sr-running-track:before {
content: "\fb59";
}
.fi-sr-running:before {
content: "\fb5a";
}
.fi-sr-rupee-sign:before {
content: "\fb5b";
}
.fi-sr-rupiah-sign:before {
content: "\fb5c";
}
.fi-sr-rv:before {
content: "\fb5d";
}
.fi-sr-s:before {
content: "\fb5e";
}
.fi-sr-sack-dollar:before {
content: "\fb5f";
}
.fi-sr-sack:before {
content: "\fb60";
}
.fi-sr-sad-cry:before {
content: "\fb61";
}
.fi-sr-sad-tear:before {
content: "\fb62";
}
.fi-sr-sad:before {
content: "\fb63";
}
.fi-sr-safe-box:before {
content: "\fb64";
}
.fi-sr-sailboat:before {
content: "\fb65";
}
.fi-sr-salad:before {
content: "\fb66";
}
.fi-sr-salary-alt:before {
content: "\fb67";
}
.fi-sr-salt-pepper:before {
content: "\fb68";
}
.fi-sr-salt-shaker:before {
content: "\fb69";
}
.fi-sr-sandwich-alt:before {
content: "\fb6a";
}
.fi-sr-sandwich:before {
content: "\fb6b";
}
.fi-sr-satellite-dish:before {
content: "\fb6c";
}
.fi-sr-satellite:before {
content: "\fb6d";
}
.fi-sr-saturday:before {
content: "\fb6e";
}
.fi-sr-sauce:before {
content: "\fb6f";
}
.fi-sr-sausage:before {
content: "\fb70";
}
.fi-sr-sax-hot:before {
content: "\fb71";
}
.fi-sr-saxophone:before {
content: "\fb72";
}
.fi-sr-scale-comparison-alt:before {
content: "\fb73";
}
.fi-sr-scale-comparison:before {
content: "\fb74";
}
.fi-sr-scale:before {
content: "\fb75";
}
.fi-sr-scalpel-path:before {
content: "\fb76";
}
.fi-sr-scalpel:before {
content: "\fb77";
}
.fi-sr-scanner-gun:before {
content: "\fb78";
}
.fi-sr-scanner-image:before {
content: "\fb79";
}
.fi-sr-scanner-keyboard:before {
content: "\fb7a";
}
.fi-sr-scanner-touchscreen:before {
content: "\fb7b";
}
.fi-sr-scarecrow:before {
content: "\fb7c";
}
.fi-sr-scarf:before {
content: "\fb7d";
}
.fi-sr-school-bus:before {
content: "\fb7e";
}
.fi-sr-school:before {
content: "\fb7f";
}
.fi-sr-scissors:before {
content: "\fb80";
}
.fi-sr-scooter:before {
content: "\fb81";
}
.fi-sr-screen:before {
content: "\fb82";
}
.fi-sr-screencast:before {
content: "\fb83";
}
.fi-sr-screw-alt:before {
content: "\fb84";
}
.fi-sr-screw:before {
content: "\fb85";
}
.fi-sr-screwdriver:before {
content: "\fb86";
}
.fi-sr-scribble:before {
content: "\fb87";
}
.fi-sr-script:before {
content: "\fb88";
}
.fi-sr-scroll-document-story:before {
content: "\fb89";
}
.fi-sr-scroll-old:before {
content: "\fb8a";
}
.fi-sr-scroll-torah:before {
content: "\fb8b";
}
.fi-sr-scroll:before {
content: "\fb8c";
}
.fi-sr-scrubber:before {
content: "\fb8d";
}
.fi-sr-scythe:before {
content: "\fb8e";
}
.fi-sr-sd-card:before {
content: "\fb8f";
}
.fi-sr-sd-cards:before {
content: "\fb90";
}
.fi-sr-seal-exclamation:before {
content: "\fb91";
}
.fi-sr-seal-question:before {
content: "\fb92";
}
.fi-sr-seal:before {
content: "\fb93";
}
.fi-sr-search-alt:before {
content: "\fb94";
}
.fi-sr-search-dollar:before {
content: "\fb95";
}
.fi-sr-search-heart:before {
content: "\fb96";
}
.fi-sr-search-location:before {
content: "\fb97";
}
.fi-sr-search:before {
content: "\fb98";
}
.fi-sr-seat-airline:before {
content: "\fb99";
}
.fi-sr-seatbelt-safety-driver:before {
content: "\fb9a";
}
.fi-sr-second-award:before {
content: "\fb9b";
}
.fi-sr-second-laurel:before {
content: "\fb9c";
}
.fi-sr-second-medal:before {
content: "\fb9d";
}
.fi-sr-second:before {
content: "\fb9e";
}
.fi-sr-seedling:before {
content: "\fb9f";
}
.fi-sr-select:before {
content: "\fba0";
}
.fi-sr-selection:before {
content: "\fba1";
}
.fi-sr-seller-store:before {
content: "\fba2";
}
.fi-sr-seller:before {
content: "\fba3";
}
.fi-sr-send-back:before {
content: "\fba4";
}
.fi-sr-send-backward:before {
content: "\fba5";
}
.fi-sr-sensor-alert:before {
content: "\fba6";
}
.fi-sr-sensor-fire:before {
content: "\fba7";
}
.fi-sr-sensor-on:before {
content: "\fba8";
}
.fi-sr-sensor-smoke:before {
content: "\fba9";
}
.fi-sr-sensor:before {
content: "\fbaa";
}
.fi-sr-settings-sliders:before {
content: "\fbab";
}
.fi-sr-settings:before {
content: "\fbac";
}
.fi-sr-share-alt-square:before {
content: "\fbad";
}
.fi-sr-share-square:before {
content: "\fbae";
}
.fi-sr-share:before {
content: "\fbaf";
}
.fi-sr-sheep:before {
content: "\fbb0";
}
.fi-sr-shekel-sign:before {
content: "\fbb1";
}
.fi-sr-shelves:before {
content: "\fbb2";
}
.fi-sr-shield-alt:before {
content: "\fbb3";
}
.fi-sr-shield-cat:before {
content: "\fbb4";
}
.fi-sr-shield-check:before {
content: "\fbb5";
}
.fi-sr-shield-cross:before {
content: "\fbb6";
}
.fi-sr-shield-dog:before {
content: "\fbb7";
}
.fi-sr-shield-exclamation:before {
content: "\fbb8";
}
.fi-sr-shield-interrogation:before {
content: "\fbb9";
}
.fi-sr-shield-keyhole:before {
content: "\fbba";
}
.fi-sr-shield-minus:before {
content: "\fbbb";
}
.fi-sr-shield-plus:before {
content: "\fbbc";
}
.fi-sr-shield-security-risk:before {
content: "\fbbd";
}
.fi-sr-shield-slash:before {
content: "\fbbe";
}
.fi-sr-shield-trust:before {
content: "\fbbf";
}
.fi-sr-shield-virus:before {
content: "\fbc0";
}
.fi-sr-shield-xmark:before {
content: "\fbc1";
}
.fi-sr-shield:before {
content: "\fbc2";
}
.fi-sr-ship-side:before {
content: "\fbc3";
}
.fi-sr-ship:before {
content: "\fbc4";
}
.fi-sr-shipping-fast:before {
content: "\fbc5";
}
.fi-sr-shipping-timed:before {
content: "\fbc6";
}
.fi-sr-shirt-long-sleeve:before {
content: "\fbc7";
}
.fi-sr-shirt-running:before {
content: "\fbc8";
}
.fi-sr-shirt-tank-top:before {
content: "\fbc9";
}
.fi-sr-shirt:before {
content: "\fbca";
}
.fi-sr-shish-kebab:before {
content: "\fbcb";
}
.fi-sr-shoe-prints:before {
content: "\fbcc";
}
.fi-sr-shop-lock:before {
content: "\fbcd";
}
.fi-sr-shop-slash:before {
content: "\fbce";
}
.fi-sr-shop:before {
content: "\fbcf";
}
.fi-sr-shopping-bag-add:before {
content: "\fbd0";
}
.fi-sr-shopping-bag:before {
content: "\fbd1";
}
.fi-sr-shopping-basket:before {
content: "\fbd2";
}
.fi-sr-shopping-cart-add:before {
content: "\fbd3";
}
.fi-sr-shopping-cart-buyer:before {
content: "\fbd4";
}
.fi-sr-shopping-cart-check:before {
content: "\fbd5";
}
.fi-sr-shopping-cart:before {
content: "\fbd6";
}
.fi-sr-shovel-snow:before {
content: "\fbd7";
}
.fi-sr-shovel:before {
content: "\fbd8";
}
.fi-sr-shower-down:before {
content: "\fbd9";
}
.fi-sr-shower:before {
content: "\fbda";
}
.fi-sr-shredder:before {
content: "\fbdb";
}
.fi-sr-shrimp:before {
content: "\fbdc";
}
.fi-sr-shuffle:before {
content: "\fbdd";
}
.fi-sr-shuttle-van:before {
content: "\fbde";
}
.fi-sr-shuttlecock:before {
content: "\fbdf";
}
.fi-sr-Sickle:before {
content: "\fbe0";
}
.fi-sr-sidebar-flip:before {
content: "\fbe1";
}
.fi-sr-sidebar:before {
content: "\fbe2";
}
.fi-sr-sigma:before {
content: "\fbe3";
}
.fi-sr-sign-hanging:before {
content: "\fbe4";
}
.fi-sr-sign-in-alt:before {
content: "\fbe5";
}
.fi-sr-sign-out-alt:before {
content: "\fbe6";
}
.fi-sr-sign-posts-wrench:before {
content: "\fbe7";
}
.fi-sr-sign-posts:before {
content: "\fbe8";
}
.fi-sr-sign-up:before {
content: "\fbe9";
}
.fi-sr-signal-alt-1:before {
content: "\fbea";
}
.fi-sr-signal-alt-2:before {
content: "\fbeb";
}
.fi-sr-signal-alt-slash:before {
content: "\fbec";
}
.fi-sr-signal-alt:before {
content: "\fbed";
}
.fi-sr-signal-bars-fair:before {
content: "\fbee";
}
.fi-sr-signal-bars-good:before {
content: "\fbef";
}
.fi-sr-signal-bars-weak:before {
content: "\fbf0";
}
.fi-sr-signal-stream-slash:before {
content: "\fbf1";
}
.fi-sr-signal-stream:before {
content: "\fbf2";
}
.fi-sr-signature-lock:before {
content: "\fbf3";
}
.fi-sr-signature-slash:before {
content: "\fbf4";
}
.fi-sr-signature:before {
content: "\fbf5";
}
.fi-sr-sim-card:before {
content: "\fbf6";
}
.fi-sr-sim-cards:before {
content: "\fbf7";
}
.fi-sr-sink:before {
content: "\fbf8";
}
.fi-sr-siren-on:before {
content: "\fbf9";
}
.fi-sr-Siren:before {
content: "\fbfa";
}
.fi-sr-site-alt:before {
content: "\fbfb";
}
.fi-sr-site-browser:before {
content: "\fbfc";
}
.fi-sr-site:before {
content: "\fbfd";
}
.fi-sr-sitemap:before {
content: "\fbfe";
}
.fi-sr-skateboard:before {
content: "\fbff";
}
.fi-sr-skating:before {
content: "\fc00";
}
.fi-sr-skeleton-ribs:before {
content: "\fc01";
}
.fi-sr-skeleton:before {
content: "\fc02";
}
.fi-sr-skewer:before {
content: "\fc03";
}
.fi-sr-ski-boot-ski:before {
content: "\fc04";
}
.fi-sr-ski-jump:before {
content: "\fc05";
}
.fi-sr-ski-lift:before {
content: "\fc06";
}
.fi-sr-skiing-nordic:before {
content: "\fc07";
}
.fi-sr-skiing:before {
content: "\fc08";
}
.fi-sr-skill-alt:before {
content: "\fc09";
}
.fi-sr-skill-user:before {
content: "\fc0a";
}
.fi-sr-skill:before {
content: "\fc0b";
}
.fi-sr-skin-arrow:before {
content: "\fc0c";
}
.fi-sr-skin-drop:before {
content: "\fc0d";
}
.fi-sr-skin-hair:before {
content: "\fc0e";
}
.fi-sr-skin:before {
content: "\fc0f";
}
.fi-sr-skip-15-seconds:before {
content: "\fc10";
}
.fi-sr-skull-cow:before {
content: "\fc11";
}
.fi-sr-skull-crossbones:before {
content: "\fc12";
}
.fi-sr-skull:before {
content: "\fc13";
}
.fi-sr-slash:before {
content: "\fc14";
}
.fi-sr-sledding:before {
content: "\fc15";
}
.fi-sr-sleeping-bag:before {
content: "\fc16";
}
.fi-sr-sleigh:before {
content: "\fc17";
}
.fi-sr-sliders-h-square:before {
content: "\fc18";
}
.fi-sr-sliders-v-square:before {
content: "\fc19";
}
.fi-sr-sliders-v:before {
content: "\fc1a";
}
.fi-sr-slot-machine:before {
content: "\fc1b";
}
.fi-sr-smart-home-alt:before {
content: "\fc1c";
}
.fi-sr-smart-home:before {
content: "\fc1d";
}
.fi-sr-smartphone:before {
content: "\fc1e";
}
.fi-sr-smile-beam:before {
content: "\fc1f";
}
.fi-sr-smile-plus:before {
content: "\fc20";
}
.fi-sr-smile-wink:before {
content: "\fc21";
}
.fi-sr-smile:before {
content: "\fc22";
}
.fi-sr-smiley-comment-alt:before {
content: "\fc23";
}
.fi-sr-smog:before {
content: "\fc24";
}
.fi-sr-smoke:before {
content: "\fc25";
}
.fi-sr-smoking-ban:before {
content: "\fc26";
}
.fi-sr-smoking:before {
content: "\fc27";
}
.fi-sr-snake:before {
content: "\fc28";
}
.fi-sr-snap:before {
content: "\fc29";
}
.fi-sr-snooze:before {
content: "\fc2a";
}
.fi-sr-snow-blowing:before {
content: "\fc2b";
}
.fi-sr-snowboarding:before {
content: "\fc2c";
}
.fi-sr-snowflake-droplets:before {
content: "\fc2d";
}
.fi-sr-snowflake:before {
content: "\fc2e";
}
.fi-sr-snowflakes:before {
content: "\fc2f";
}
.fi-sr-snowman-alt:before {
content: "\fc30";
}
.fi-sr-snowman-head:before {
content: "\fc31";
}
.fi-sr-snowmobile:before {
content: "\fc32";
}
.fi-sr-snowplow:before {
content: "\fc33";
}
.fi-sr-soap-alt:before {
content: "\fc34";
}
.fi-sr-soap:before {
content: "\fc35";
}
.fi-sr-socks:before {
content: "\fc36";
}
.fi-sr-sofa-size:before {
content: "\fc37";
}
.fi-sr-sofa:before {
content: "\fc38";
}
.fi-sr-solar-panel-sun:before {
content: "\fc39";
}
.fi-sr-solar-panel:before {
content: "\fc3a";
}
.fi-sr-solar-system:before {
content: "\fc3b";
}
.fi-sr-sold-house:before {
content: "\fc3c";
}
.fi-sr-sold-signal:before {
content: "\fc3d";
}
.fi-sr-sort-alpha-down-alt:before {
content: "\fc3e";
}
.fi-sr-sort-alpha-down:before {
content: "\fc3f";
}
.fi-sr-sort-alpha-up-alt:before {
content: "\fc40";
}
.fi-sr-sort-alpha-up:before {
content: "\fc41";
}
.fi-sr-sort-alt:before {
content: "\fc42";
}
.fi-sr-sort-amount-down-alt:before {
content: "\fc43";
}
.fi-sr-sort-amount-down:before {
content: "\fc44";
}
.fi-sr-sort-amount-up-alt:before {
content: "\fc45";
}
.fi-sr-sort-amount-up:before {
content: "\fc46";
}
.fi-sr-sort-circle-down:before {
content: "\fc47";
}
.fi-sr-sort-circle-up:before {
content: "\fc48";
}
.fi-sr-sort-circle:before {
content: "\fc49";
}
.fi-sr-sort-down:before {
content: "\fc4a";
}
.fi-sr-sort-numeric-down-alt:before {
content: "\fc4b";
}
.fi-sr-sort-numeric-down:before {
content: "\fc4c";
}
.fi-sr-sort-shapes-down:before {
content: "\fc4d";
}
.fi-sr-sort-shapes-up:before {
content: "\fc4e";
}
.fi-sr-sort-size-down:before {
content: "\fc4f";
}
.fi-sr-sort-size-up:before {
content: "\fc50";
}
.fi-sr-sort:before {
content: "\fc51";
}
.fi-sr-soup:before {
content: "\fc52";
}
.fi-sr-source-data:before {
content: "\fc53";
}
.fi-sr-source-document-alt:before {
content: "\fc54";
}
.fi-sr-source-document:before {
content: "\fc55";
}
.fi-sr-spa:before {
content: "\fc56";
}
.fi-sr-space-shuttle:before {
content: "\fc57";
}
.fi-sr-space-station-moon-alt:before {
content: "\fc58";
}
.fi-sr-space-station-moon:before {
content: "\fc59";
}
.fi-sr-spade:before {
content: "\fc5a";
}
.fi-sr-spaghetti-monster-flying:before {
content: "\fc5b";
}
.fi-sr-spain-map:before {
content: "\fc5c";
}
.fi-sr-sparkles:before {
content: "\fc5d";
}
.fi-sr-spartan-helmet:before {
content: "\fc5e";
}
.fi-sr-speaker:before {
content: "\fc5f";
}
.fi-sr-speakers:before {
content: "\fc60";
}
.fi-sr-speech-bubble-story:before {
content: "\fc61";
}
.fi-sr-speedometer-arrow:before {
content: "\fc62";
}
.fi-sr-speedometer-kpi:before {
content: "\fc63";
}
.fi-sr-sphere:before {
content: "\fc64";
}
.fi-sr-spider-black-widow:before {
content: "\fc65";
}
.fi-sr-spider-web:before {
content: "\fc66";
}
.fi-sr-spider:before {
content: "\fc67";
}
.fi-sr-spinner:before {
content: "\fc68";
}
.fi-sr-split-up-relation:before {
content: "\fc69";
}
.fi-sr-split:before {
content: "\fc6a";
}
.fi-sr-splotch:before {
content: "\fc6b";
}
.fi-sr-spoon:before {
content: "\fc6c";
}
.fi-sr-spray-can-sparkles:before {
content: "\fc6d";
}
.fi-sr-spray-can:before {
content: "\fc6e";
}
.fi-sr-spring-calendar:before {
content: "\fc6f";
}
.fi-sr-sprinkler:before {
content: "\fc70";
}
.fi-sr-spy:before {
content: "\fc71";
}
.fi-sr-square-0:before {
content: "\fc72";
}
.fi-sr-square-1:before {
content: "\fc73";
}
.fi-sr-square-2:before {
content: "\fc74";
}
.fi-sr-square-3:before {
content: "\fc75";
}
.fi-sr-square-4:before {
content: "\fc76";
}
.fi-sr-square-5:before {
content: "\fc77";
}
.fi-sr-square-6:before {
content: "\fc78";
}
.fi-sr-square-7:before {
content: "\fc79";
}
.fi-sr-square-8:before {
content: "\fc7a";
}
.fi-sr-square-9:before {
content: "\fc7b";
}
.fi-sr-square-a:before {
content: "\fc7c";
}
.fi-sr-square-b:before {
content: "\fc7d";
}
.fi-sr-square-bolt:before {
content: "\fc7e";
}
.fi-sr-square-c:before {
content: "\fc7f";
}
.fi-sr-square-code:before {
content: "\fc80";
}
.fi-sr-square-d:before {
content: "\fc81";
}
.fi-sr-square-dashed-circle-plus:before {
content: "\fc82";
}
.fi-sr-square-dashed:before {
content: "\fc83";
}
.fi-sr-square-divide:before {
content: "\fc84";
}
.fi-sr-square-e:before {
content: "\fc85";
}
.fi-sr-square-ellipsis-vertical:before {
content: "\fc86";
}
.fi-sr-square-ellipsis:before {
content: "\fc87";
}
.fi-sr-square-exclamation:before {
content: "\fc88";
}
.fi-sr-square-f:before {
content: "\fc89";
}
.fi-sr-square-g:before {
content: "\fc8a";
}
.fi-sr-square-h:before {
content: "\fc8b";
}
.fi-sr-square-heart:before {
content: "\fc8c";
}
.fi-sr-square-i:before {
content: "\fc8d";
}
.fi-sr-square-info:before {
content: "\fc8e";
}
.fi-sr-square-j:before {
content: "\fc8f";
}
.fi-sr-square-k:before {
content: "\fc90";
}
.fi-sr-square-kanban:before {
content: "\fc91";
}
.fi-sr-square-l:before {
content: "\fc92";
}
.fi-sr-square-m:before {
content: "\fc93";
}
.fi-sr-square-minus:before {
content: "\fc94";
}
.fi-sr-square-n:before {
content: "\fc95";
}
.fi-sr-square-o:before {
content: "\fc96";
}
.fi-sr-square-p:before {
content: "\fc97";
}
.fi-sr-square-phone-hangup:before {
content: "\fc98";
}
.fi-sr-square-plus:before {
content: "\fc99";
}
.fi-sr-square-poll-horizontal:before {
content: "\fc9a";
}
.fi-sr-square-poll-vertical:before {
content: "\fc9b";
}
.fi-sr-square-q:before {
content: "\fc9c";
}
.fi-sr-square-quote:before {
content: "\fc9d";
}
.fi-sr-square-r:before {
content: "\fc9e";
}
.fi-sr-square-root:before {
content: "\fc9f";
}
.fi-sr-square-s:before {
content: "\fca0";
}
.fi-sr-square-small:before {
content: "\fca1";
}
.fi-sr-square-star:before {
content: "\fca2";
}
.fi-sr-square-t:before {
content: "\fca3";
}
.fi-sr-square-terminal:before {
content: "\fca4";
}
.fi-sr-square-u:before {
content: "\fca5";
}
.fi-sr-square-up-right:before {
content: "\fca6";
}
.fi-sr-square-v:before {
content: "\fca7";
}
.fi-sr-square-w:before {
content: "\fca8";
}
.fi-sr-square-x:before {
content: "\fca9";
}
.fi-sr-square-y:before {
content: "\fcaa";
}
.fi-sr-square-z:before {
content: "\fcab";
}
.fi-sr-square:before {
content: "\fcac";
}
.fi-sr-squid:before {
content: "\fcad";
}
.fi-sr-squircle:before {
content: "\fcae";
}
.fi-sr-squirrel:before {
content: "\fcaf";
}
.fi-sr-staff:before {
content: "\fcb0";
}
.fi-sr-stage-concert:before {
content: "\fcb1";
}
.fi-sr-stage-theatre:before {
content: "\fcb2";
}
.fi-sr-stage:before {
content: "\fcb3";
}
.fi-sr-stairs:before {
content: "\fcb4";
}
.fi-sr-stamp:before {
content: "\fcb5";
}
.fi-sr-standard-definition:before {
content: "\fcb6";
}
.fi-sr-star-and-crescent:before {
content: "\fcb7";
}
.fi-sr-star-christmas:before {
content: "\fcb8";
}
.fi-sr-star-comment-alt:before {
content: "\fcb9";
}
.fi-sr-star-exclamation:before {
content: "\fcba";
}
.fi-sr-star-octogram:before {
content: "\fcbb";
}
.fi-sr-star-of-david:before {
content: "\fcbc";
}
.fi-sr-star-rating-call:before {
content: "\fcbd";
}
.fi-sr-star-sharp-half-stroke:before {
content: "\fcbe";
}
.fi-sr-star-sharp-half:before {
content: "\fcbf";
}
.fi-sr-star-shooting:before {
content: "\fcc0";
}
.fi-sr-star:before {
content: "\fcc1";
}
.fi-sr-starfighter:before {
content: "\fcc2";
}
.fi-sr-stars:before {
content: "\fcc3";
}
.fi-sr-state-country:before {
content: "\fcc4";
}
.fi-sr-stationary-bike:before {
content: "\fcc5";
}
.fi-sr-stats:before {
content: "\fcc6";
}
.fi-sr-steak:before {
content: "\fcc7";
}
.fi-sr-steering-wheel:before {
content: "\fcc8";
}
.fi-sr-step-backward:before {
content: "\fcc9";
}
.fi-sr-step-forward:before {
content: "\fcca";
}
.fi-sr-sterling-sign:before {
content: "\fccb";
}
.fi-sr-stethoscope:before {
content: "\fccc";
}
.fi-sr-sticker:before {
content: "\fccd";
}
.fi-sr-stocking:before {
content: "\fcce";
}
.fi-sr-stomach:before {
content: "\fccf";
}
.fi-sr-stop-circle:before {
content: "\fcd0";
}
.fi-sr-stop-square:before {
content: "\fcd1";
}
.fi-sr-stop:before {
content: "\fcd2";
}
.fi-sr-stopwatch:before {
content: "\fcd3";
}
.fi-sr-store-alt:before {
content: "\fcd4";
}
.fi-sr-store-buyer:before {
content: "\fcd5";
}
.fi-sr-store-lock:before {
content: "\fcd6";
}
.fi-sr-store-slash:before {
content: "\fcd7";
}
.fi-sr-story-book:before {
content: "\fcd8";
}
.fi-sr-story-fairy-tale:before {
content: "\fcd9";
}
.fi-sr-story-fantasy:before {
content: "\fcda";
}
.fi-sr-strategy-chess-risk:before {
content: "\fcdb";
}
.fi-sr-strawberry:before {
content: "\fcdc";
}
.fi-sr-street-view:before {
content: "\fcdd";
}
.fi-sr-stretcher:before {
content: "\fcde";
}
.fi-sr-strikethrough:before {
content: "\fcdf";
}
.fi-sr-stroopwafel:before {
content: "\fce0";
}
.fi-sr-student-alt:before {
content: "\fce1";
}
.fi-sr-student:before {
content: "\fce2";
}
.fi-sr-subscript:before {
content: "\fce3";
}
.fi-sr-subscription-alt:before {
content: "\fce4";
}
.fi-sr-subscription:before {
content: "\fce5";
}
.fi-sr-subtitles-slash:before {
content: "\fce6";
}
.fi-sr-subtitles:before {
content: "\fce7";
}
.fi-sr-subway:before {
content: "\fce8";
}
.fi-sr-suitcase-alt:before {
content: "\fce9";
}
.fi-sr-summary-check:before {
content: "\fcea";
}
.fi-sr-summer:before {
content: "\fceb";
}
.fi-sr-sun-dust:before {
content: "\fcec";
}
.fi-sr-sun-plant-wilt:before {
content: "\fced";
}
.fi-sr-sun-salutation-yoga:before {
content: "\fcee";
}
.fi-sr-sun:before {
content: "\fcef";
}
.fi-sr-sunday:before {
content: "\fcf0";
}
.fi-sr-sunglasses-alt:before {
content: "\fcf1";
}
.fi-sr-sunglasses:before {
content: "\fcf2";
}
.fi-sr-sunrise-alt:before {
content: "\fcf3";
}
.fi-sr-sunrise:before {
content: "\fcf4";
}
.fi-sr-sunset:before {
content: "\fcf5";
}
.fi-sr-superscript:before {
content: "\fcf6";
}
.fi-sr-surfing:before {
content: "\fcf7";
}
.fi-sr-surprise:before {
content: "\fcf8";
}
.fi-sr-surveillance-camera:before {
content: "\fcf9";
}
.fi-sr-survey-xmark:before {
content: "\fcfa";
}
.fi-sr-sushi-alt:before {
content: "\fcfb";
}
.fi-sr-sushi-roll:before {
content: "\fcfc";
}
.fi-sr-sushi:before {
content: "\fcfd";
}
.fi-sr-svg:before {
content: "\fcfe";
}
.fi-sr-swap:before {
content: "\fcff";
}
.fi-sr-swatchbook:before {
content: "\fd00";
}
.fi-sr-swimmer:before {
content: "\fd01";
}
.fi-sr-swimming-pool:before {
content: "\fd02";
}
.fi-sr-swing:before {
content: "\fd03";
}
.fi-sr-swipe-down:before {
content: "\fd04";
}
.fi-sr-swipe-left:before {
content: "\fd05";
}
.fi-sr-swipe-right:before {
content: "\fd06";
}
.fi-sr-swipe-up:before {
content: "\fd07";
}
.fi-sr-sword:before {
content: "\fd08";
}
.fi-sr-symbol:before {
content: "\fd09";
}
.fi-sr-symbols:before {
content: "\fd0a";
}
.fi-sr-synagogue:before {
content: "\fd0b";
}
.fi-sr-syringe:before {
content: "\fd0c";
}
.fi-sr-system-cloud:before {
content: "\fd0d";
}
.fi-sr-t:before {
content: "\fd0e";
}
.fi-sr-tab-folder:before {
content: "\fd0f";
}
.fi-sr-table-columns:before {
content: "\fd10";
}
.fi-sr-table-layout:before {
content: "\fd11";
}
.fi-sr-table-list:before {
content: "\fd12";
}
.fi-sr-table-picnic:before {
content: "\fd13";
}
.fi-sr-table-pivot:before {
content: "\fd14";
}
.fi-sr-table-rows:before {
content: "\fd15";
}
.fi-sr-table-tree:before {
content: "\fd16";
}
.fi-sr-table:before {
content: "\fd17";
}
.fi-sr-tablet-android-alt:before {
content: "\fd18";
}
.fi-sr-tablet-android:before {
content: "\fd19";
}
.fi-sr-tablet-rugged:before {
content: "\fd1a";
}
.fi-sr-tablet:before {
content: "\fd1b";
}
.fi-sr-tachometer-alt-average:before {
content: "\fd1c";
}
.fi-sr-tachometer-alt-fastest:before {
content: "\fd1d";
}
.fi-sr-tachometer-alt-slow:before {
content: "\fd1e";
}
.fi-sr-tachometer-alt-slowest:before {
content: "\fd1f";
}
.fi-sr-tachometer-average:before {
content: "\fd20";
}
.fi-sr-tachometer-fast:before {
content: "\fd21";
}
.fi-sr-tachometer-fastest:before {
content: "\fd22";
}
.fi-sr-tachometer-slow:before {
content: "\fd23";
}
.fi-sr-tachometer-slowest:before {
content: "\fd24";
}
.fi-sr-tachometer:before {
content: "\fd25";
}
.fi-sr-taco:before {
content: "\fd26";
}
.fi-sr-tags:before {
content: "\fd27";
}
.fi-sr-talent-alt:before {
content: "\fd28";
}
.fi-sr-talent-hand:before {
content: "\fd29";
}
.fi-sr-talent:before {
content: "\fd2a";
}
.fi-sr-tally-1:before {
content: "\fd2b";
}
.fi-sr-tally-2:before {
content: "\fd2c";
}
.fi-sr-tally-3:before {
content: "\fd2d";
}
.fi-sr-tally-4:before {
content: "\fd2e";
}
.fi-sr-tally:before {
content: "\fd2f";
}
.fi-sr-tamale:before {
content: "\fd30";
}
.fi-sr-tank-water:before {
content: "\fd31";
}
.fi-sr-tap:before {
content: "\fd32";
}
.fi-sr-tape:before {
content: "\fd33";
}
.fi-sr-target-audience:before {
content: "\fd34";
}
.fi-sr-target:before {
content: "\fd35";
}
.fi-sr-tax-alt:before {
content: "\fd36";
}
.fi-sr-tax:before {
content: "\fd37";
}
.fi-sr-taxi-bus:before {
content: "\fd38";
}
.fi-sr-taxi:before {
content: "\fd39";
}
.fi-sr-team-check-alt:before {
content: "\fd3a";
}
.fi-sr-team-check:before {
content: "\fd3b";
}
.fi-sr-teddy-bear:before {
content: "\fd3c";
}
.fi-sr-teeth-open:before {
content: "\fd3d";
}
.fi-sr-telescope:before {
content: "\fd3e";
}
.fi-sr-temperature-down:before {
content: "\fd3f";
}
.fi-sr-temperature-frigid:before {
content: "\fd40";
}
.fi-sr-temperature-high:before {
content: "\fd41";
}
.fi-sr-temperature-list:before {
content: "\fd42";
}
.fi-sr-temperature-low:before {
content: "\fd43";
}
.fi-sr-temperature-up:before {
content: "\fd44";
}
.fi-sr-template-alt:before {
content: "\fd45";
}
.fi-sr-template:before {
content: "\fd46";
}
.fi-sr-tenge:before {
content: "\fd47";
}
.fi-sr-tennis:before {
content: "\fd48";
}
.fi-sr-tent-arrow-down-to-line:before {
content: "\fd49";
}
.fi-sr-tent-arrow-left-right:before {
content: "\fd4a";
}
.fi-sr-tent-arrow-turn-left:before {
content: "\fd4b";
}
.fi-sr-tent-arrows-down:before {
content: "\fd4c";
}
.fi-sr-tents:before {
content: "\fd4d";
}
.fi-sr-terminal:before {
content: "\fd4e";
}
.fi-sr-terrace:before {
content: "\fd4f";
}
.fi-sr-test-tube:before {
content: "\fd50";
}
.fi-sr-test:before {
content: "\fd51";
}
.fi-sr-text-box-dots:before {
content: "\fd52";
}
.fi-sr-text-box-edit:before {
content: "\fd53";
}
.fi-sr-text-box:before {
content: "\fd54";
}
.fi-sr-text-check:before {
content: "\fd55";
}
.fi-sr-text-height:before {
content: "\fd56";
}
.fi-sr-text-shadow:before {
content: "\fd57";
}
.fi-sr-text-size:before {
content: "\fd58";
}
.fi-sr-text-slash:before {
content: "\fd59";
}
.fi-sr-text-width:before {
content: "\fd5a";
}
.fi-sr-text:before {
content: "\fd5b";
}
.fi-sr-theater-masks:before {
content: "\fd5c";
}
.fi-sr-thermometer-alt:before {
content: "\fd5d";
}
.fi-sr-thermometer-empty:before {
content: "\fd5e";
}
.fi-sr-thermometer-full:before {
content: "\fd5f";
}
.fi-sr-thermometer-half:before {
content: "\fd60";
}
.fi-sr-thermometer-quarter:before {
content: "\fd61";
}
.fi-sr-thermometer-three-quarters:before {
content: "\fd62";
}
.fi-sr-theta:before {
content: "\fd63";
}
.fi-sr-third-award:before {
content: "\fd64";
}
.fi-sr-third-laurel:before {
content: "\fd65";
}
.fi-sr-third-medal:before {
content: "\fd66";
}
.fi-sr-third:before {
content: "\fd67";
}
.fi-sr-thought-bubble:before {
content: "\fd68";
}
.fi-sr-three-leaf-clover:before {
content: "\fd69";
}
.fi-sr-thumbs-down:before {
content: "\fd6a";
}
.fi-sr-thumbs-up-trust:before {
content: "\fd6b";
}
.fi-sr-thumbs-up:before {
content: "\fd6c";
}
.fi-sr-thumbtack:before {
content: "\fd6d";
}
.fi-sr-thunderstorm-moon:before {
content: "\fd6e";
}
.fi-sr-thunderstorm-risk:before {
content: "\fd6f";
}
.fi-sr-thunderstorm-sun:before {
content: "\fd70";
}
.fi-sr-thunderstorm:before {
content: "\fd71";
}
.fi-sr-thursday:before {
content: "\fd72";
}
.fi-sr-ticket-airline:before {
content: "\fd73";
}
.fi-sr-ticket-alt:before {
content: "\fd74";
}
.fi-sr-ticket:before {
content: "\fd75";
}
.fi-sr-tickets-airline:before {
content: "\fd76";
}
.fi-sr-tie:before {
content: "\fd77";
}
.fi-sr-tilde:before {
content: "\fd78";
}
.fi-sr-time-add:before {
content: "\fd79";
}
.fi-sr-time-check:before {
content: "\fd7a";
}
.fi-sr-time-delete:before {
content: "\fd7b";
}
.fi-sr-time-fast:before {
content: "\fd7c";
}
.fi-sr-time-forward-sixty:before {
content: "\fd7d";
}
.fi-sr-time-forward-ten:before {
content: "\fd7e";
}
.fi-sr-time-forward:before {
content: "\fd7f";
}
.fi-sr-time-half-past:before {
content: "\fd80";
}
.fi-sr-time-oclock:before {
content: "\fd81";
}
.fi-sr-time-past:before {
content: "\fd82";
}
.fi-sr-time-quarter-past:before {
content: "\fd83";
}
.fi-sr-time-quarter-to:before {
content: "\fd84";
}
.fi-sr-time-twenty-four:before {
content: "\fd85";
}
.fi-sr-time-watch-calendar:before {
content: "\fd86";
}
.fi-sr-timer-clock-call:before {
content: "\fd87";
}
.fi-sr-times-hexagon:before {
content: "\fd88";
}
.fi-sr-tint-slash:before {
content: "\fd89";
}
.fi-sr-tip-coin:before {
content: "\fd8a";
}
.fi-sr-tire-flat:before {
content: "\fd8b";
}
.fi-sr-tire-pressure-warning:before {
content: "\fd8c";
}
.fi-sr-tire-rugged:before {
content: "\fd8d";
}
.fi-sr-tire:before {
content: "\fd8e";
}
.fi-sr-tired:before {
content: "\fd8f";
}
.fi-sr-to-do-alt:before {
content: "\fd90";
}
.fi-sr-to-do:before {
content: "\fd91";
}
.fi-sr-together-people:before {
content: "\fd92";
}
.fi-sr-toggle-off:before {
content: "\fd93";
}
.fi-sr-toggle-on:before {
content: "\fd94";
}
.fi-sr-toilet-paper-blank-under:before {
content: "\fd95";
}
.fi-sr-toilet-paper-blank:before {
content: "\fd96";
}
.fi-sr-toilet-paper-slash:before {
content: "\fd97";
}
.fi-sr-toilet-paper-under-slash:before {
content: "\fd98";
}
.fi-sr-toilet-paper-under:before {
content: "\fd99";
}
.fi-sr-toilet:before {
content: "\fd9a";
}
.fi-sr-toilets-portable:before {
content: "\fd9b";
}
.fi-sr-token:before {
content: "\fd9c";
}
.fi-sr-tomato:before {
content: "\fd9d";
}
.fi-sr-tombstone-alt:before {
content: "\fd9e";
}
.fi-sr-tombstone:before {
content: "\fd9f";
}
.fi-sr-tool-box:before {
content: "\fda0";
}
.fi-sr-tool-crop:before {
content: "\fda1";
}
.fi-sr-tool-marquee:before {
content: "\fda2";
}
.fi-sr-tools:before {
content: "\fda3";
}
.fi-sr-tooth:before {
content: "\fda4";
}
.fi-sr-toothbrush:before {
content: "\fda5";
}
.fi-sr-torch-inspiration-leader:before {
content: "\fda6";
}
.fi-sr-torii-gate:before {
content: "\fda7";
}
.fi-sr-tornado:before {
content: "\fda8";
}
.fi-sr-total:before {
content: "\fda9";
}
.fi-sr-tour-guide-people:before {
content: "\fdaa";
}
.fi-sr-tour-virtual:before {
content: "\fdab";
}
.fi-sr-tower-control:before {
content: "\fdac";
}
.fi-sr-track:before {
content: "\fdad";
}
.fi-sr-tractor:before {
content: "\fdae";
}
.fi-sr-trademark:before {
content: "\fdaf";
}
.fi-sr-traffic-cone:before {
content: "\fdb0";
}
.fi-sr-traffic-light-go:before {
content: "\fdb1";
}
.fi-sr-traffic-light-slow:before {
content: "\fdb2";
}
.fi-sr-traffic-light-stop:before {
content: "\fdb3";
}
.fi-sr-traffic-light:before {
content: "\fdb4";
}
.fi-sr-trailer:before {
content: "\fdb5";
}
.fi-sr-train-journey:before {
content: "\fdb6";
}
.fi-sr-train-side:before {
content: "\fdb7";
}
.fi-sr-train-station-building:before {
content: "\fdb8";
}
.fi-sr-train-station:before {
content: "\fdb9";
}
.fi-sr-train-subway-tunnel:before {
content: "\fdba";
}
.fi-sr-train-track:before {
content: "\fdbb";
}
.fi-sr-train-tram:before {
content: "\fdbc";
}
.fi-sr-train:before {
content: "\fdbd";
}
.fi-sr-tram:before {
content: "\fdbe";
}
.fi-sr-transform:before {
content: "\fdbf";
}
.fi-sr-transformation-block:before {
content: "\fdc0";
}
.fi-sr-transformation-circle:before {
content: "\fdc1";
}
.fi-sr-transformation-design:before {
content: "\fdc2";
}
.fi-sr-transformation-shapes:before {
content: "\fdc3";
}
.fi-sr-transformer-bolt:before {
content: "\fdc4";
}
.fi-sr-transgender:before {
content: "\fdc5";
}
.fi-sr-transporter-1:before {
content: "\fdc6";
}
.fi-sr-transporter-2:before {
content: "\fdc7";
}
.fi-sr-transporter-3:before {
content: "\fdc8";
}
.fi-sr-transporter-4:before {
content: "\fdc9";
}
.fi-sr-transporter-5:before {
content: "\fdca";
}
.fi-sr-transporter-6:before {
content: "\fdcb";
}
.fi-sr-transporter-7:before {
content: "\fdcc";
}
.fi-sr-transporter-empty:before {
content: "\fdcd";
}
.fi-sr-transporter:before {
content: "\fdce";
}
.fi-sr-trash-can-check:before {
content: "\fdcf";
}
.fi-sr-trash-can-clock:before {
content: "\fdd0";
}
.fi-sr-trash-can-list:before {
content: "\fdd1";
}
.fi-sr-trash-can-plus:before {
content: "\fdd2";
}
.fi-sr-trash-can-slash:before {
content: "\fdd3";
}
.fi-sr-trash-check:before {
content: "\fdd4";
}
.fi-sr-trash-clock:before {
content: "\fdd5";
}
.fi-sr-trash-empty:before {
content: "\fdd6";
}
.fi-sr-trash-list:before {
content: "\fdd7";
}
.fi-sr-trash-plus:before {
content: "\fdd8";
}
.fi-sr-trash-restore-alt:before {
content: "\fdd9";
}
.fi-sr-trash-restore:before {
content: "\fdda";
}
.fi-sr-trash-slash:before {
content: "\fddb";
}
.fi-sr-trash-undo-alt:before {
content: "\fddc";
}
.fi-sr-trash-undo:before {
content: "\fddd";
}
.fi-sr-trash-xmark:before {
content: "\fdde";
}
.fi-sr-trash:before {
content: "\fddf";
}
.fi-sr-treadmill:before {
content: "\fde0";
}
.fi-sr-treasure-chest:before {
content: "\fde1";
}
.fi-sr-treatment:before {
content: "\fde2";
}
.fi-sr-tree-alt:before {
content: "\fde3";
}
.fi-sr-tree-christmas:before {
content: "\fde4";
}
.fi-sr-tree-deciduous:before {
content: "\fde5";
}
.fi-sr-tree:before {
content: "\fde6";
}
.fi-sr-trees-alt:before {
content: "\fde7";
}
.fi-sr-trees:before {
content: "\fde8";
}
.fi-sr-triangle-music:before {
content: "\fde9";
}
.fi-sr-triangle-person-digging:before {
content: "\fdea";
}
.fi-sr-triangle-warning:before {
content: "\fdeb";
}
.fi-sr-triangle:before {
content: "\fdec";
}
.fi-sr-tricycle:before {
content: "\fded";
}
.fi-sr-trillium:before {
content: "\fdee";
}
.fi-sr-trophy-achievement-skill:before {
content: "\fdef";
}
.fi-sr-trophy-star:before {
content: "\fdf0";
}
.fi-sr-trophy:before {
content: "\fdf1";
}
.fi-sr-truck-arrow-left:before {
content: "\fdf2";
}
.fi-sr-truck-arrow-right:before {
content: "\fdf3";
}
.fi-sr-truck-bolt:before {
content: "\fdf4";
}
.fi-sr-truck-box:before {
content: "\fdf5";
}
.fi-sr-truck-check:before {
content: "\fdf6";
}
.fi-sr-truck-container-empty:before {
content: "\fdf7";
}
.fi-sr-truck-container:before {
content: "\fdf8";
}
.fi-sr-truck-couch:before {
content: "\fdf9";
}
.fi-sr-truck-fire:before {
content: "\fdfa";
}
.fi-sr-truck-flatbed:before {
content: "\fdfb";
}
.fi-sr-truck-front:before {
content: "\fdfc";
}
.fi-sr-truck-ladder:before {
content: "\fdfd";
}
.fi-sr-truck-loading:before {
content: "\fdfe";
}
.fi-sr-truck-medical:before {
content: "\fdff";
}
.fi-sr-truck-monster:before {
content: "\fe10";
}
.fi-sr-truck-moving:before {
content: "\fe11";
}
.fi-sr-truck-pickup:before {
content: "\fe12";
}
.fi-sr-truck-plow:before {
content: "\fe13";
}
.fi-sr-truck-ramp:before {
content: "\fe14";
}
.fi-sr-truck-side:before {
content: "\fe15";
}
.fi-sr-truck-tow:before {
content: "\fe16";
}
.fi-sr-truck-utensils:before {
content: "\fe17";
}
.fi-sr-trumpet:before {
content: "\fe18";
}
.fi-sr-trust-alt:before {
content: "\fe19";
}
.fi-sr-trust:before {
content: "\fe1a";
}
.fi-sr-tshirt:before {
content: "\fe1b";
}
.fi-sr-tty-answer:before {
content: "\fe1c";
}
.fi-sr-tty:before {
content: "\fe1d";
}
.fi-sr-tubes:before {
content: "\fe1e";
}
.fi-sr-tuesday:before {
content: "\fe1f";
}
.fi-sr-tugrik-sign:before {
content: "\fe30";
}
.fi-sr-turkey:before {
content: "\fe31";
}
.fi-sr-turn-left-down:before {
content: "\fe32";
}
.fi-sr-turn-left:before {
content: "\fe33";
}
.fi-sr-turn-right:before {
content: "\fe34";
}
.fi-sr-turntable:before {
content: "\fe35";
}
.fi-sr-turtle:before {
content: "\fe36";
}
.fi-sr-tv-music:before {
content: "\fe37";
}
.fi-sr-tv-retro:before {
content: "\fe38";
}
.fi-sr-typewriter:before {
content: "\fe39";
}
.fi-sr-u:before {
content: "\fe3a";
}
.fi-sr-ufo-beam:before {
content: "\fe3b";
}
.fi-sr-ufo:before {
content: "\fe3c";
}
.fi-sr-ui-ux:before {
content: "\fe3d";
}
.fi-sr-umbrella-beach:before {
content: "\fe3e";
}
.fi-sr-umbrella:before {
content: "\fe3f";
}
.fi-sr-under-construction:before {
content: "\fe40";
}
.fi-sr-underline:before {
content: "\fe41";
}
.fi-sr-undo-alt:before {
content: "\fe42";
}
.fi-sr-undo:before {
content: "\fe43";
}
.fi-sr-unicorn:before {
content: "\fe44";
}
.fi-sr-uniform-martial-arts:before {
content: "\fe45";
}
.fi-sr-universal-access:before {
content: "\fe46";
}
.fi-sr-unlock:before {
content: "\fe47";
}
.fi-sr-up-from-bracket:before {
content: "\fe48";
}
.fi-sr-up-left:before {
content: "\fe49";
}
.fi-sr-up-right-from-square:before {
content: "\fe4a";
}
.fi-sr-up-right:before {
content: "\fe4b";
}
.fi-sr-up:before {
content: "\fe4c";
}
.fi-sr-upload:before {
content: "\fe4d";
}
.fi-sr-url:before {
content: "\fe4e";
}
.fi-sr-usb-pendrive:before {
content: "\fe4f";
}
.fi-sr-usd-circle:before {
content: "\fe50";
}
.fi-sr-usd-square:before {
content: "\fe51";
}
.fi-sr-user-add:before {
content: "\fe52";
}
.fi-sr-user-alien:before {
content: "\fe53";
}
.fi-sr-user-astronaut:before {
content: "\fe54";
}
.fi-sr-user-check:before {
content: "\fe55";
}
.fi-sr-user-chef:before {
content: "\fe56";
}
.fi-sr-user-coach:before {
content: "\fe57";
}
.fi-sr-user-cowboy:before {
content: "\fe58";
}
.fi-sr-user-crown:before {
content: "\fe59";
}
.fi-sr-user-gear:before {
content: "\fe5a";
}
.fi-sr-user-graduate:before {
content: "\fe5b";
}
.fi-sr-user-headset:before {
content: "\fe5c";
}
.fi-sr-user-helmet-safety:before {
content: "\fe5d";
}
.fi-sr-user-injured:before {
content: "\fe5e";
}
.fi-sr-user-interface-ui:before {
content: "\fe5f";
}
.fi-sr-user-key:before {
content: "\fe60";
}
.fi-sr-user-lock:before {
content: "\fe61";
}
.fi-sr-user-md-chat:before {
content: "\fe62";
}
.fi-sr-user-md:before {
content: "\fe63";
}
.fi-sr-user-minus:before {
content: "\fe64";
}
.fi-sr-user-music:before {
content: "\fe65";
}
.fi-sr-user-ninja:before {
content: "\fe66";
}
.fi-sr-user-nurse:before {
content: "\fe67";
}
.fi-sr-user-pen:before {
content: "\fe68";
}
.fi-sr-user-pilot-tie:before {
content: "\fe69";
}
.fi-sr-user-pilot:before {
content: "\fe6a";
}
.fi-sr-user-police:before {
content: "\fe6b";
}
.fi-sr-user-robot-xmarks:before {
content: "\fe6c";
}
.fi-sr-user-robot:before {
content: "\fe6d";
}
.fi-sr-user-salary:before {
content: "\fe6e";
}
.fi-sr-user-shield:before {
content: "\fe6f";
}
.fi-sr-user-skill-gear:before {
content: "\fe70";
}
.fi-sr-user-slash:before {
content: "\fe71";
}
.fi-sr-user-tag:before {
content: "\fe72";
}
.fi-sr-user-time:before {
content: "\fe73";
}
.fi-sr-user-trust:before {
content: "\fe74";
}
.fi-sr-user-unlock:before {
content: "\fe75";
}
.fi-sr-user-visor:before {
content: "\fe76";
}
.fi-sr-user-xmark:before {
content: "\fe77";
}
.fi-sr-user:before {
content: "\fe78";
}
.fi-sr-users-alt:before {
content: "\fe79";
}
.fi-sr-users-class:before {
content: "\fe7a";
}
.fi-sr-users-gear:before {
content: "\fe7b";
}
.fi-sr-users-medical:before {
content: "\fe7c";
}
.fi-sr-users-slash:before {
content: "\fe7d";
}
.fi-sr-users:before {
content: "\fe7e";
}
.fi-sr-utensils-slash:before {
content: "\fe7f";
}
.fi-sr-utensils:before {
content: "\fe80";
}
.fi-sr-utility-pole-double:before {
content: "\fe81";
}
.fi-sr-utility-pole:before {
content: "\fe82";
}
.fi-sr-ux-browser:before {
content: "\fe83";
}
.fi-sr-ux:before {
content: "\fe84";
}
.fi-sr-v:before {
content: "\fe85";
}
.fi-sr-vacuum-robot:before {
content: "\fe86";
}
.fi-sr-vacuum:before {
content: "\fe87";
}
.fi-sr-value-absolute:before {
content: "\fe88";
}
.fi-sr-vault:before {
content: "\fe89";
}
.fi-sr-vector-alt:before {
content: "\fe8a";
}
.fi-sr-vector-circle:before {
content: "\fe8b";
}
.fi-sr-vector-polygon:before {
content: "\fe8c";
}
.fi-sr-vector:before {
content: "\fe8d";
}
.fi-sr-venus-double:before {
content: "\fe8e";
}
.fi-sr-venus-mars:before {
content: "\fe8f";
}
.fi-sr-venus:before {
content: "\fe90";
}
.fi-sr-vest-patches:before {
content: "\fe91";
}
.fi-sr-vest:before {
content: "\fe92";
}
.fi-sr-video-arrow-down-left:before {
content: "\fe93";
}
.fi-sr-video-arrow-up-right:before {
content: "\fe94";
}
.fi-sr-video-camera-alt:before {
content: "\fe95";
}
.fi-sr-video-camera:before {
content: "\fe96";
}
.fi-sr-video-duration:before {
content: "\fe97";
}
.fi-sr-video-plus:before {
content: "\fe98";
}
.fi-sr-video-slash:before {
content: "\fe99";
}
.fi-sr-videoconference:before {
content: "\fe9a";
}
.fi-sr-vihara:before {
content: "\fe9b";
}
.fi-sr-violin:before {
content: "\fe9c";
}
.fi-sr-virus-slash:before {
content: "\fe9d";
}
.fi-sr-virus:before {
content: "\fe9e";
}
.fi-sr-viruses:before {
content: "\fe9f";
}
.fi-sr-visit:before {
content: "\fea0";
}
.fi-sr-voicemail:before {
content: "\fea1";
}
.fi-sr-volcano:before {
content: "\fea2";
}
.fi-sr-volleyball:before {
content: "\fea3";
}
.fi-sr-volume-down:before {
content: "\fea4";
}
.fi-sr-volume-mute:before {
content: "\fea5";
}
.fi-sr-volume-off:before {
content: "\fea6";
}
.fi-sr-volume-slash:before {
content: "\fea7";
}
.fi-sr-volume:before {
content: "\fea8";
}
.fi-sr-vote-nay:before {
content: "\fea9";
}
.fi-sr-vote-yea:before {
content: "\feaa";
}
.fi-sr-vr-cardboard:before {
content: "\feab";
}
.fi-sr-w:before {
content: "\feac";
}
.fi-sr-waffle:before {
content: "\fead";
}
.fi-sr-wagon-covered:before {
content: "\feae";
}
.fi-sr-walker:before {
content: "\feaf";
}
.fi-sr-walkie-talkie:before {
content: "\feb0";
}
.fi-sr-walking:before {
content: "\feb1";
}
.fi-sr-wallet-arrow:before {
content: "\feb2";
}
.fi-sr-wallet-buyer:before {
content: "\feb3";
}
.fi-sr-wallet:before {
content: "\feb4";
}
.fi-sr-warehouse-alt:before {
content: "\feb5";
}
.fi-sr-washer:before {
content: "\feb6";
}
.fi-sr-waste-pollution:before {
content: "\feb7";
}
.fi-sr-waste:before {
content: "\feb8";
}
.fi-sr-watch-calculator:before {
content: "\feb9";
}
.fi-sr-watch-fitness:before {
content: "\feba";
}
.fi-sr-watch-smart:before {
content: "\febb";
}
.fi-sr-watch:before {
content: "\febc";
}
.fi-sr-water-bottle:before {
content: "\febd";
}
.fi-sr-water-ladder:before {
content: "\febe";
}
.fi-sr-water-lower:before {
content: "\febf";
}
.fi-sr-water-rise:before {
content: "\fec0";
}
.fi-sr-water:before {
content: "\fec1";
}
.fi-sr-watermelon:before {
content: "\fec2";
}
.fi-sr-wave-sine:before {
content: "\fec3";
}
.fi-sr-wave-square:before {
content: "\fec4";
}
.fi-sr-wave-triangle:before {
content: "\fec5";
}
.fi-sr-wave:before {
content: "\fec6";
}
.fi-sr-waveform-path:before {
content: "\fec7";
}
.fi-sr-waveform:before {
content: "\fec8";
}
.fi-sr-web-design:before {
content: "\fec9";
}
.fi-sr-webcam-slash:before {
content: "\feca";
}
.fi-sr-webcam:before {
content: "\fecb";
}
.fi-sr-webhook:before {
content: "\fecc";
}
.fi-sr-wednesday:before {
content: "\fecd";
}
.fi-sr-whale:before {
content: "\fece";
}
.fi-sr-wheat-awn-circle-exclamation:before {
content: "\fecf";
}
.fi-sr-wheat-awn-slash:before {
content: "\fed0";
}
.fi-sr-wheat-awn:before {
content: "\fed1";
}
.fi-sr-wheat-slash:before {
content: "\fed2";
}
.fi-sr-wheat:before {
content: "\fed3";
}
.fi-sr-wheelchair-move:before {
content: "\fed4";
}
.fi-sr-wheelchair-sleeping:before {
content: "\fed5";
}
.fi-sr-wheelchair:before {
content: "\fed6";
}
.fi-sr-whistle:before {
content: "\fed7";
}
.fi-sr-white-space:before {
content: "\fed8";
}
.fi-sr-wifi-1:before {
content: "\fed9";
}
.fi-sr-wifi-2:before {
content: "\feda";
}
.fi-sr-wifi-alt:before {
content: "\fedb";
}
.fi-sr-wifi-exclamation:before {
content: "\fedc";
}
.fi-sr-wifi-slash:before {
content: "\fedd";
}
.fi-sr-wifi:before {
content: "\fede";
}
.fi-sr-wind-turbine:before {
content: "\fedf";
}
.fi-sr-wind-warning:before {
content: "\fee0";
}
.fi-sr-wind:before {
content: "\fee1";
}
.fi-sr-window-alt:before {
content: "\fee2";
}
.fi-sr-window-frame-open:before {
content: "\fee3";
}
.fi-sr-window-frame:before {
content: "\fee4";
}
.fi-sr-window-maximize:before {
content: "\fee5";
}
.fi-sr-window-minimize:before {
content: "\fee6";
}
.fi-sr-window-restore:before {
content: "\fee7";
}
.fi-sr-windsock:before {
content: "\fee8";
}
.fi-sr-wine-bottle:before {
content: "\fee9";
}
.fi-sr-wine-glass-crack:before {
content: "\feea";
}
.fi-sr-wine-glass-empty:before {
content: "\feeb";
}
.fi-sr-wishlist-heart:before {
content: "\feec";
}
.fi-sr-wishlist-star:before {
content: "\feed";
}
.fi-sr-woman-head:before {
content: "\feee";
}
.fi-sr-woman-scientist:before {
content: "\feef";
}
.fi-sr-won-sign:before {
content: "\fef0";
}
.fi-sr-workflow-alt:before {
content: "\fef1";
}
.fi-sr-workflow-setting-alt:before {
content: "\fef2";
}
.fi-sr-workflow-setting:before {
content: "\fef3";
}
.fi-sr-workflow:before {
content: "\fef4";
}
.fi-sr-workshop:before {
content: "\fef5";
}
.fi-sr-world:before {
content: "\fef6";
}
.fi-sr-worm:before {
content: "\fef7";
}
.fi-sr-wreath:before {
content: "\fef8";
}
.fi-sr-wrench-alt:before {
content: "\fef9";
}
.fi-sr-wrench-simple:before {
content: "\fefa";
}
.fi-sr-x-ray:before {
content: "\fefb";
}
.fi-sr-x:before {
content: "\fefc";
}
.fi-sr-y:before {
content: "\fefd";
}
.fi-sr-yen:before {
content: "\fefe";
}
.fi-sr-yin-yang:before {
content: "\ff00";
}
.fi-sr-z:before {
content: "\ff01";
}
.fi-sr-zip-file:before {
content: "\ff02";
}
.fi-sr-zoom-in:before {
content: "\ff03";
}
.fi-sr-zoom-out:before {
content: "\ff04";
}@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");
:root {
--ed-ff-body: 'Outfit', sans-serif;
--ed-ff-heading: 'Outfit', serif;
--ed-ff-p: 'Outfit', sans-serif;
--ed-ff-pnew: 'Open Sans', sans-serif;
--ed-ff-textnew: 'Lexend Deca', sans-serif;
--ed-fw-normal: normal;
--ed-fw-thin: 100;
--ed-fw-elight: 200;
--ed-fw-light: 300;
--ed-fw-regular: 400;
--ed-fw-medium: 500;
--ed-fw-sbold: 600;
--ed-fw-bold: 700;
--ed-fw-ebold: 800;
--ed-fw-black: 900;
--ed-fs-body: 16px;
--ed-fs-p: 16px;
--ed-fs-h1: 32px;
--ed-fs-h2: 28px;
--ed-fs-h3: 24px;
--ed-fs-h4: 20px;
--ed-fs-h5: 16px;
--ed-fs-h6: 14px;
--ed-color-common-white: #ffffff;
--ed-color-common-black: #000000;
--ed-color-heading-primary: #162726;
--ed-color-text-body: #000; --ed-color-theme-primary:#007ee5;
--ed-color-grey-1: #F2F4F7;
--ed-color-grey-2: #F2F4F7;
--ed-color-bg-1: #0E121D;
--ed-color-bg-2: #191A1F;
--ed-color-border-1: #E0E5EB;
--ed-color-bg-bluebg: #f0f7fe;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
} body {
font-family: var(--ed-ff-body); font-size: 15px;
line-height: 28px;
font-weight: normal;
color: var(--ed-color-text-body);
}
img {
max-width: 100%;
}
a {
text-decoration: none;
}
a,
a:hover {
transition: all 0.3s ease-in-out;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--ed-ff-heading);
color: var(--ed-color-heading-primary);
margin-top: 0px;
font-weight: var(--ed-fw-sbold);
line-height: 1.2;
transition: all 0.3s ease-in-out 0s;
}
h1 {
font-size: var(--ed-fs-h1);
}
h2 {
font-size: var(--ed-fs-h2);
}
h3 {
font-size: var(--ed-fs-h3);
}
h4 {
font-size: var(--ed-fs-h4);
}
h5 {
font-size: var(--ed-fs-h5);
}
h6 {
font-size: var(--ed-fs-h6);
}
ul {
margin: 0px;
padding: 0px;
}
p {
font-family: var(--ed-ff-p);
font-size: 16px;
font-weight: var(--ed-fw-normal);
color: var(--ed-color-text-body);
margin-bottom: 15px;
line-height: 28px;
}
a:focus,
.button:focus {
text-decoration: none;
outline: none;
}
a:focus,
a:hover {
color: inherit;
text-decoration: none;
}
a:hover {
color: var(--ed-color-theme-primary);
}
.slick-list.draggable {
cursor: grab;
} button:hover {
cursor: pointer;
}
button:focus {
outline: 0;
border: 0;
}
.uppercase {
text-transform: uppercase;
}
.capitalize {
text-transform: capitalize;
}
input {
outline: none;
}
input[type=color] {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
background: none;
border: 0;
cursor: pointer;
height: 100%;
width: 100%;
padding: 0;
border-radius: 50%;
}
ul {
display: block;
padding: 0;
margin: 0;
}
*::-moz-selection {
background: var(--ed-color-common-black);
color: var(--ed-color-common-white);
text-shadow: none;
}
::-moz-selection {
background: var(--ed-color-common-black);
color: var(--ed-color-common-white);
text-shadow: none;
}
::selection {
background: var(--ed-color-common-black);
color: var(--ed-color-common-white);
text-shadow: none;
}
*::-moz-placeholder {
color: var(--ed-color-common-black);
font-size: var(--ed-fs-body);
opacity: 1;
}
*::placeholder {
color: var(--ed-color-common-black);
font-size: var(--ed-fs-body);
opacity: 1;
} .w-img img {
width: 100%;
}
.m-img img {
max-width: 100%;
}
.fix {
overflow: hidden;
}
.clear {
clear: both;
}
.f-left {
float: left;
}
.f-right {
float: right;
}
.z-index-1 {
z-index: 1;
}
.z-index-11 {
z-index: 11;
}
.overflow-y-visible {
overflow-x: hidden;
overflow-y: visible;
}
.p-relative {
position: relative;
}
.p-absolute {
position: absolute;
}
.include-bg {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.b-radius {
border-radius: 6px;
}
.bg-grey {
background-color: var(--ed-color-grey-1);
}
.bg-dark-1 {
background-color: var(--ed-color-heading-primary);
}
.bd-bottom {
border-bottom: 1px solid #edebf9;
}
.overflow-h {
overflow: hidden;
}
.section-heading {
margin-bottom: 60px;
}
@media only screen and (max-width: 992px) {
.section-heading {
margin-bottom: 40px;
}
}
.section-heading .sub-heading {
background-color: var(--ed-color-common-white);
font-family: var(--ed-ff-heading);
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 400;
display: inline-flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
margin-bottom: 20px;
position: relative;
border: 1px solid #E0E5EB;
padding: 5px 15px 5px 5px;
border-radius: 100px;
}
.section-heading .sub-heading .heading-icon {
background-color: rgba(7, 166, 152, 0.15);
color: var(--ed-color-theme-primary);
font-size: 14px;
height: 28px;
width: 28px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.section-heading .section-title {
font-size: 40px;
line-height: 1.2;
font-weight: 600;
display: block;
margin-bottom: 0;
text-transform: inherit;
position: relative;
}
@media (max-width: 1200px) {
.section-heading .section-title {
font-size: 40px;
}
.section-heading .section-title br {
display: none;
}
}
@media only screen and (max-width: 992px) {
.section-heading .section-title {
font-size: 32px;
}
}
@media only screen and (max-width: 767px) {
.section-heading .section-title {
font-size: 32px;
}
} .section-heading.white-content p,
.section-heading.white-content .section-title {
color: var(--ed-color-common-white);
}
.heading-space {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 25px;
margin-bottom: 60px;
}
@media only screen and (max-width: 992px) {
.heading-space {
margin-bottom: 60px;
}
}
.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p,
.white-content li,
.white-content span {
color: var(--ed-color-common-white);
} .preloader-close {
position: fixed;
z-index: 99;
font-size: 26px;
background: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
width: 60px;
height: 60px;
border: 1px solid var(--ed-color-theme-primary);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
border-radius: 50%;
cursor: pointer;
right: 50px;
top: 50px;
transition: all 0.3s ease-in-out;
}
.preloader-close:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
#preloader {
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
background-color: var(--ed-color-common-white);
z-index: 999;
display: flex;
align-items: center;
justify-content: center;
}
#preloader .spinner-logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.spinner {
display: flex;
align-items: center;
justify-content: center;
width: 142px;
height: 142px;
border-radius: 50%;
background: radial-gradient(farthest-side, #07a698 94%, rgba(0, 0, 0, 0)) top/15.5px 15.5px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #07a698);
-webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 15.5px), #000 0);
animation: spinner-c7wet2 1.2s infinite linear;
}
@keyframes spinner-c7wet2 {
100% {
transform: rotate(1turn);
}
} @media (min-width: 992px) { }
.sticky-widget {
position: sticky;
top: 150px;
}
@media only screen and (max-width: 767px) {
br {
display: none;
}
}
.ripple,
.ripple:before,
.ripple:after {
position: absolute;
left: 50%;
top: 50%;
width: 50px;
height: 50px;
transform: translateX(-50%) translateY(-50%);
border-radius: 50%;
-ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
-o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
animation: rippleOne 3s infinite;
}
.ripple {
z-index: -1;
}
.ripple:before {
animation-delay: 0.9s;
content: "";
position: absolute;
right: 0;
bottom: 0;
}
.ripple:after {
animation-delay: 0.6s;
content: "";
position: absolute;
right: 0;
bottom: 0;
}
@keyframes rippleOne {
70% {
box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
}
} .mt-5 {
margin-top: 5px;
}
.mt-10 {
margin-top: 10px;
}
.mt-15 {
margin-top: 15px;
}
.mt-20 {
margin-top: 20px;
}
.mt-25 {
margin-top: 25px;
}
.mt-30 {
margin-top: 30px;
}
.mt-35 {
margin-top: 35px;
}
.mt-40 {
margin-top: 40px;
}
.mt-45 {
margin-top: 45px;
}
.mt-50 {
margin-top: 50px;
}
.mt-55 {
margin-top: 55px;
}
.mt-60 {
margin-top: 60px;
}
.mt-65 {
margin-top: 65px;
}
.mt-70 {
margin-top: 70px;
}
.mt-75 {
margin-top: 75px;
}
.mt-80 {
margin-top: 80px;
}
.mt-85 {
margin-top: 85px;
}
.mt-90 {
margin-top: 90px;
}
.mt-95 {
margin-top: 95px;
}
.mt-100 {
margin-top: 100px;
}
.mt-105 {
margin-top: 105px;
}
.mt-110 {
margin-top: 110px;
}
.mt-115 {
margin-top: 115px;
}
.mt-120 {
margin-top: 120px;
}
.mt-125 {
margin-top: 125px;
}
.mt-130 {
margin-top: 130px;
}
.mt-135 {
margin-top: 135px;
}
.mt-140 {
margin-top: 140px;
}
.mt-145 {
margin-top: 145px;
}
.mt-150 {
margin-top: 150px;
}
.mt-155 {
margin-top: 155px;
}
.mt-160 {
margin-top: 160px;
}
.mt-165 {
margin-top: 165px;
}
.mt-170 {
margin-top: 170px;
}
.mt-175 {
margin-top: 175px;
}
.mt-180 {
margin-top: 180px;
}
.mt-185 {
margin-top: 185px;
}
.mt-190 {
margin-top: 190px;
}
.mt-195 {
margin-top: 195px;
}
.mt-200 {
margin-top: 200px;
} .mb-5 {
margin-bottom: 5px;
}
.mb-10 {
margin-bottom: 10px;
}
.mb-15 {
margin-bottom: 15px;
}
.mb-20 {
margin-bottom: 20px;
}
.mb-25 {
margin-bottom: 25px;
}
.mb-30 {
margin-bottom: 30px;
}
.mb-35 {
margin-bottom: 35px;
}
.mb-40 {
margin-bottom: 40px;
}
.mb-45 {
margin-bottom: 45px;
}
.mb-50 {
margin-bottom: 50px;
}
.mb-55 {
margin-bottom: 55px;
}
.mb-60 {
margin-bottom: 60px;
}
.mb-65 {
margin-bottom: 65px;
}
.mb-70 {
margin-bottom: 70px;
}
.mb-75 {
margin-bottom: 75px;
}
.mb-80 {
margin-bottom: 80px;
}
.mb-85 {
margin-bottom: 85px;
}
.mb-90 {
margin-bottom: 90px;
}
.mb-95 {
margin-bottom: 95px;
}
.mb-100 {
margin-bottom: 100px;
}
.mb-105 {
margin-bottom: 105px;
}
.mb-110 {
margin-bottom: 110px;
}
.mb-115 {
margin-bottom: 115px;
}
.mb-120 {
margin-bottom: 120px;
}
.mb-125 {
margin-bottom: 125px;
}
.mb-130 {
margin-bottom: 130px;
}
.mb-135 {
margin-bottom: 135px;
}
.mb-140 {
margin-bottom: 140px;
}
.mb-145 {
margin-bottom: 145px;
}
.mb-150 {
margin-bottom: 150px;
}
.mb-155 {
margin-bottom: 155px;
}
.mb-160 {
margin-bottom: 160px;
}
.mb-165 {
margin-bottom: 165px;
}
.mb-170 {
margin-bottom: 170px;
}
.mb-175 {
margin-bottom: 175px;
}
.mb-180 {
margin-bottom: 180px;
}
.mb-185 {
margin-bottom: 185px;
}
.mb-190 {
margin-bottom: 190px;
}
.mb-195 {
margin-bottom: 195px;
}
.mb-200 {
margin-bottom: 200px;
} .ml-5 {
margin-left: 5px;
}
.ml-10 {
margin-left: 10px;
}
.ml-15 {
margin-left: 15px;
}
.ml-20 {
margin-left: 20px;
}
.ml-25 {
margin-left: 25px;
}
.ml-30 {
margin-left: 30px;
}
.ml-35 {
margin-left: 35px;
}
.ml-40 {
margin-left: 40px;
}
.ml-45 {
margin-left: 45px;
}
.ml-50 {
margin-left: 50px;
}
.ml-55 {
margin-left: 55px;
}
.ml-60 {
margin-left: 60px;
}
.ml-65 {
margin-left: 65px;
}
.ml-70 {
margin-left: 70px;
}
.ml-75 {
margin-left: 75px;
}
.ml-80 {
margin-left: 80px;
}
.ml-85 {
margin-left: 85px;
}
.ml-90 {
margin-left: 90px;
}
.ml-95 {
margin-left: 95px;
}
.ml-100 {
margin-left: 100px;
}
.ml-105 {
margin-left: 105px;
}
.ml-110 {
margin-left: 110px;
}
.ml-115 {
margin-left: 115px;
}
.ml-120 {
margin-left: 120px;
}
.ml-125 {
margin-left: 125px;
}
.ml-130 {
margin-left: 130px;
}
.ml-135 {
margin-left: 135px;
}
.ml-140 {
margin-left: 140px;
}
.ml-145 {
margin-left: 145px;
}
.ml-150 {
margin-left: 150px;
}
.ml-155 {
margin-left: 155px;
}
.ml-160 {
margin-left: 160px;
}
.ml-165 {
margin-left: 165px;
}
.ml-170 {
margin-left: 170px;
}
.ml-175 {
margin-left: 175px;
}
.ml-180 {
margin-left: 180px;
}
.ml-185 {
margin-left: 185px;
}
.ml-190 {
margin-left: 190px;
}
.ml-195 {
margin-left: 195px;
}
.ml-200 {
margin-left: 200px;
} .mr-5 {
margin-right: 5px;
}
.mr-10 {
margin-right: 10px;
}
.mr-15 {
margin-right: 15px;
}
.mr-20 {
margin-right: 20px;
}
.mr-25 {
margin-right: 25px;
}
.mr-30 {
margin-right: 30px;
}
.mr-35 {
margin-right: 35px;
}
.mr-40 {
margin-right: 40px;
}
.mr-45 {
margin-right: 45px;
}
.mr-50 {
margin-right: 50px;
}
.mr-55 {
margin-right: 55px;
}
.mr-60 {
margin-right: 60px;
}
.mr-65 {
margin-right: 65px;
}
.mr-70 {
margin-right: 70px;
}
.mr-75 {
margin-right: 75px;
}
.mr-80 {
margin-right: 80px;
}
.mr-85 {
margin-right: 85px;
}
.mr-90 {
margin-right: 90px;
}
.mr-95 {
margin-right: 95px;
}
.mr-100 {
margin-right: 100px;
}
.mr-105 {
margin-right: 105px;
}
.mr-110 {
margin-right: 110px;
}
.mr-115 {
margin-right: 115px;
}
.mr-120 {
margin-right: 120px;
}
.mr-125 {
margin-right: 125px;
}
.mr-130 {
margin-right: 130px;
}
.mr-135 {
margin-right: 135px;
}
.mr-140 {
margin-right: 140px;
}
.mr-145 {
margin-right: 145px;
}
.mr-150 {
margin-right: 150px;
}
.mr-155 {
margin-right: 155px;
}
.mr-160 {
margin-right: 160px;
}
.mr-165 {
margin-right: 165px;
}
.mr-170 {
margin-right: 170px;
}
.mr-175 {
margin-right: 175px;
}
.mr-180 {
margin-right: 180px;
}
.mr-185 {
margin-right: 185px;
}
.mr-190 {
margin-right: 190px;
}
.mr-195 {
margin-right: 195px;
}
.mr-200 {
margin-right: 200px;
} .pt-5 {
padding-top: 5px;
}
.pt-10 {
padding-top: 10px;
}
.pt-15 {
padding-top: 15px;
}
.pt-20 {
padding-top: 20px;
}
.pt-25 {
padding-top: 25px;
}
.pt-30 {
padding-top: 30px;
}
.pt-35 {
padding-top: 35px;
}
.pt-40 {
padding-top: 40px;
}
.pt-45 {
padding-top: 45px;
}
.pt-50 {
padding-top: 50px;
}
.pt-55 {
padding-top: 55px;
}
.pt-60 {
padding-top: 60px;
}
.pt-65 {
padding-top: 65px;
}
.pt-70 {
padding-top: 70px;
}
.pt-75 {
padding-top: 75px;
}
.pt-80 {
padding-top: 80px;
}
.pt-85 {
padding-top: 85px;
}
.pt-90 {
padding-top: 90px;
}
.pt-95 {
padding-top: 95px;
}
.pt-100 {
padding-top: 100px;
}
.pt-105 {
padding-top: 105px;
}
.pt-110 {
padding-top: 110px;
}
.pt-115 {
padding-top: 115px;
}
.pt-120 {
padding-top: 120px;
}
.pt-125 {
padding-top: 125px;
}
.pt-130 {
padding-top: 130px;
}
.pt-135 {
padding-top: 135px;
}
.pt-140 {
padding-top: 140px;
}
.pt-145 {
padding-top: 145px;
}
.pt-150 {
padding-top: 150px;
}
.pt-155 {
padding-top: 155px;
}
.pt-160 {
padding-top: 160px;
}
.pt-165 {
padding-top: 165px;
}
.pt-170 {
padding-top: 170px;
}
.pt-175 {
padding-top: 175px;
}
.pt-180 {
padding-top: 180px;
}
.pt-185 {
padding-top: 185px;
}
.pt-190 {
padding-top: 190px;
}
.pt-195 {
padding-top: 195px;
}
.pt-200 {
padding-top: 200px;
} .pb-5 {
padding-bottom: 5px;
}
.pb-10 {
padding-bottom: 10px;
}
.pb-15 {
padding-bottom: 15px;
}
.pb-20 {
padding-bottom: 20px;
}
.pb-25 {
padding-bottom: 25px;
}
.pb-30 {
padding-bottom: 30px;
}
.pb-35 {
padding-bottom: 35px;
}
.pb-40 {
padding-bottom: 40px;
}
.pb-45 {
padding-bottom: 45px;
}
.pb-50 {
padding-bottom: 50px;
}
.pb-55 {
padding-bottom: 55px;
}
.pb-60 {
padding-bottom: 60px;
}
.pb-65 {
padding-bottom: 65px;
}
.pb-70 {
padding-bottom: 70px;
}
.pb-75 {
padding-bottom: 75px;
}
.pb-80 {
padding-bottom: 80px;
}
.pb-85 {
padding-bottom: 85px;
}
.pb-90 {
padding-bottom: 90px;
}
.pb-95 {
padding-bottom: 95px;
}
.pb-100 {
padding-bottom: 100px;
}
.pb-105 {
padding-bottom: 105px;
}
.pb-110 {
padding-bottom: 110px;
}
.pb-115 {
padding-bottom: 115px;
}
.pb-120 {
padding-bottom: 120px;
}
.pb-125 {
padding-bottom: 125px;
}
.pb-130 {
padding-bottom: 130px;
}
.pb-135 {
padding-bottom: 135px;
}
.pb-140 {
padding-bottom: 140px;
}
.pb-145 {
padding-bottom: 145px;
}
.pb-150 {
padding-bottom: 150px;
}
.pb-155 {
padding-bottom: 155px;
}
.pb-160 {
padding-bottom: 160px;
}
.pb-165 {
padding-bottom: 165px;
}
.pb-170 {
padding-bottom: 170px;
}
.pb-175 {
padding-bottom: 175px;
}
.pb-180 {
padding-bottom: 180px;
}
.pb-185 {
padding-bottom: 185px;
}
.pb-190 {
padding-bottom: 190px;
}
.pb-195 {
padding-bottom: 195px;
}
.pb-200 {
padding-bottom: 200px;
} .pl-5 {
padding-left: 5px;
}
.pl-10 {
padding-left: 10px;
}
.pl-15 {
padding-left: 15px;
}
.pl-20 {
padding-left: 20px;
}
.pl-25 {
padding-left: 25px;
}
.pl-30 {
padding-left: 30px;
}
.pl-35 {
padding-left: 35px;
}
.pl-40 {
padding-left: 40px;
}
.pl-45 {
padding-left: 45px;
}
.pl-50 {
padding-left: 50px;
}
.pl-55 {
padding-left: 55px;
}
.pl-60 {
padding-left: 60px;
}
.pl-65 {
padding-left: 65px;
}
.pl-70 {
padding-left: 70px;
}
.pl-75 {
padding-left: 75px;
}
.pl-80 {
padding-left: 80px;
}
.pl-85 {
padding-left: 85px;
}
.pl-90 {
padding-left: 90px;
}
.pl-95 {
padding-left: 95px;
}
.pl-100 {
padding-left: 100px;
}
.pl-105 {
padding-left: 105px;
}
.pl-110 {
padding-left: 110px;
}
.pl-115 {
padding-left: 115px;
}
.pl-120 {
padding-left: 120px;
}
.pl-125 {
padding-left: 125px;
}
.pl-130 {
padding-left: 130px;
}
.pl-135 {
padding-left: 135px;
}
.pl-140 {
padding-left: 140px;
}
.pl-145 {
padding-left: 145px;
}
.pl-150 {
padding-left: 150px;
}
.pl-155 {
padding-left: 155px;
}
.pl-160 {
padding-left: 160px;
}
.pl-165 {
padding-left: 165px;
}
.pl-170 {
padding-left: 170px;
}
.pl-175 {
padding-left: 175px;
}
.pl-180 {
padding-left: 180px;
}
.pl-185 {
padding-left: 185px;
}
.pl-190 {
padding-left: 190px;
}
.pl-195 {
padding-left: 195px;
}
.pl-200 {
padding-left: 200px;
} .pr-5 {
padding-right: 5px;
}
.pr-10 {
padding-right: 10px;
}
.pr-15 {
padding-right: 15px;
}
.pr-20 {
padding-right: 20px;
}
.pr-25 {
padding-right: 25px;
}
.pr-30 {
padding-right: 30px;
}
.pr-35 {
padding-right: 35px;
}
.pr-40 {
padding-right: 40px;
}
.pr-45 {
padding-right: 45px;
}
.pr-50 {
padding-right: 50px;
}
.pr-55 {
padding-right: 55px;
}
.pr-60 {
padding-right: 60px;
}
.pr-65 {
padding-right: 65px;
}
.pr-70 {
padding-right: 70px;
}
.pr-75 {
padding-right: 75px;
}
.pr-80 {
padding-right: 80px;
}
.pr-85 {
padding-right: 85px;
}
.pr-90 {
padding-right: 90px;
}
.pr-95 {
padding-right: 95px;
}
.pr-100 {
padding-right: 100px;
}
.pr-105 {
padding-right: 105px;
}
.pr-110 {
padding-right: 110px;
}
.pr-115 {
padding-right: 115px;
}
.pr-120 {
padding-right: 120px;
}
.pr-125 {
padding-right: 125px;
}
.pr-130 {
padding-right: 130px;
}
.pr-135 {
padding-right: 135px;
}
.pr-140 {
padding-right: 140px;
}
.pr-145 {
padding-right: 145px;
}
.pr-150 {
padding-right: 150px;
}
.pr-155 {
padding-right: 155px;
}
.pr-160 {
padding-right: 160px;
}
.pr-165 {
padding-right: 165px;
}
.pr-170 {
padding-right: 170px;
}
.pr-175 {
padding-right: 175px;
}
.pr-180 {
padding-right: 180px;
}
.pr-185 {
padding-right: 185px;
}
.pr-190 {
padding-right: 190px;
}
.pr-195 {
padding-right: 195px;
}
.pr-200 {
padding-right: 200px;
}
.mt-10 {
margin-top: 10px;
}
.mt-15 {
margin-top: 15px;
}
.mt-20 {
margin-top: 20px;
}
.mt-25 {
margin-top: 25px;
}
.mt-30 {
margin-top: 30px;
}
.mt-35 {
margin-top: 35px;
}
.mt-40 {
margin-top: 40px;
}
.mt-45 {
margin-top: 45px;
}
.mt-50 {
margin-top: 50px;
}
.mb-10 {
margin-bottom: 10px;
}
.mb-15 {
margin-bottom: 15px;
}
.mb-20 {
margin-bottom: 20px;
}
.mb-25 {
margin-bottom: 25px;
}
.mb-30 {
margin-bottom: 30px;
}
.mb-35 {
margin-bottom: 35px;
}
.mb-40 {
margin-bottom: 40px;
}
.mb-45 {
margin-bottom: 45px;
}
.mb-50 {
margin-bottom: 50px;
}
.mb-60 {
margin-bottom: 60px;
}
.pt-180 {
padding-top: 180px;
}
@media only screen and (max-width: 992px) {
.pt-180 {
padding-top: 70px;
}
}
@media only screen and (max-width: 767px) {
.pt-180 {
padding-top: 50px;
}
}
.pt-120 {
padding-top: 120px;
}
@media only screen and (max-width: 992px) {
.pt-120 {
padding-top: 70px;
}
}
@media only screen and (max-width: 767px) {
.pt-120 {
padding-top: 60px;
}
}
.pt-90 {
padding-top: 90px;
}
@media only screen and (max-width: 992px) {
.pt-90 {
padding-top: 70px;
}
}
@media only screen and (max-width: 767px) {
.pt-90 {
padding-top: 60px;
}
}
.pt-80 {
padding-top: 80px;
}
@media only screen and (max-width: 992px) {
.pt-80 {
padding-top: 70px;
}
}
@media only screen and (max-width: 767px) {
.pt-80 {
padding-top: 60px;
}
}
.pt-70 {
padding-top: 70px;
}
@media only screen and (max-width: 992px) {
.pt-70 {
padding-top: 70px;
}
}
@media only screen and (max-width: 767px) {
.pt-70 {
padding-top: 60px;
}
}
.pb-180 {
padding-bottom: 180px;
}
@media only screen and (max-width: 992px) {
.pb-180 {
padding-bottom: 70px;
}
}
@media only screen and (max-width: 767px) {
.pb-180 {
padding-bottom: 60px;
}
}
.pb-120 {
padding-bottom: 120px;
}
@media only screen and (max-width: 992px) {
.pb-120 {
padding-bottom: 70px;
}
}
@media only screen and (max-width: 767px) {
.pb-120 {
padding-bottom: 60px;
}
}
.pb-90 {
padding-bottom: 90px;
}
@media only screen and (max-width: 992px) {
.pb-90 {
padding-bottom: 70px;
}
}
@media only screen and (max-width: 767px) {
.pb-90 {
padding-bottom: 60px;
}
}
.pb-80 {
padding-bottom: 80px;
}
@media only screen and (max-width: 992px) {
.pb-80 {
padding-bottom: 70px;
}
}
@media only screen and (max-width: 767px) {
.pb-80 {
padding-bottom: 60px;
}
}
.pb-70 {
padding-bottom: 70px;
}
@media only screen and (max-width: 992px) {
.pb-70 {
padding-bottom: 70px;
}
}
@media only screen and (max-width: 767px) {
.pb-70 {
padding-bottom: 60px;
}
}
@media only screen and (max-width: 992px) {
.md-pb-30 {
padding-bottom: 30px;
}
}
@media only screen and (max-width: 992px) {
.md-pb-40 {
padding-bottom: 40px;
}
}
@media only screen and (max-width: 992px) {
.md-pb-50 {
padding-bottom: 50px;
}
}
.running-text {
background-color: var(--ed-color-theme-primary);
padding: 23px 0;
}
.running-text ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 80px;
}
.running-text ul li {
display: inline-block;
white-space: nowrap;
font-size: 24px;
color: var(--ed-color-common-white);
text-transform: capitalize;
font-weight: 600;
position: relative;
}
.running-text ul li:before {
background-color: var(--ed-color-common-white);
font-family: "Font Awesome 6 Pro";
color: var(--ed-color-theme-primary);
font-weight: 700;
font-size: 16px;
height: 35px;
width: 35px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
content: "\f0e7";
position: absolute;
right: -57px;
top: 50%;
transform: translateY(-50%);
} .ed-primary-btn {
background-color: var(--ed-color-theme-primary);
font-family: var(--ed-ff-heading);
color: var(--ed-color-common-white);
display: inline-flex;
align-items: center;
font-size: 16px;
font-weight: 700;
line-height: 1;
padding: 17px 40px;
border-radius: 100px;
transition: all 0.3s ease-in-out;
overflow: hidden;
text-transform: capitalize;
position: relative;
z-index: 1;
}
.ed-primary-btn:before {
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgba(255, 255, 255, 0.2);
transform-origin: right center;
transform: scale(0, 1);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
z-index: -1;
}
.ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
.ed-primary-btn:hover:before {
transform-origin: left center;
transform: scale(1, 1);
}
.ed-primary-btn i {
margin-left: 10px;
font-size: 13px;
margin-top: 2px;
}
.ed-primary-btn:focus {
color: var(--ed-color-common-white);
}
.ed-primary-btn.transparent {
background-color: transparent;
border: 1px solid var(--ed-color-theme-primary);
color: var(--ed-color-heading-primary);
}
.ed-primary-btn.transparent:hover {
color: var(--ed-color-common-white);
}
.ed-primary-btn.transparent:before {
background-color: var(--ed-color-theme-primary);
} .header {
background-color: var(--ed-color-common-white);
width: 100%;
position: relative;
top: 0;
left: 0;
width: 100%;
z-index: 99;
overflow-x: clip;
box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0);
}
.header .top-bar {
background-color: #1F2C30;
}
@media (max-width: 1200px) {
.header .top-bar {
display: none;
}
}
.header .top-bar .top-bar-inner {
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 30px;
column-gap: 30px;
flex-wrap: wrap;
row-gap: 15px;
}
.header .top-bar .top-bar-inner .top-bar-left .top-bar-list li {
color: var(--ed-color-common-white);
display: inline-flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
padding: 12px 0;
}
.header .top-bar .top-bar-inner .top-bar-left .top-bar-list li:not(:last-of-type) {
margin-right: 20px;
padding-right: 20px;
border-right: 2px solid rgba(255, 255, 255, 0.05);
}
.header .top-bar .top-bar-inner .top-bar-right {
display: flex;
align-items: center;
}
.header .top-bar .top-bar-inner .top-bar-right .register-box {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
padding: 12px 0;
margin-right: 20px;
padding-right: 20px;
border-right: 2px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 1200px) {
.header .top-bar .top-bar-inner .top-bar-right .register-box {
margin-right: 0;
padding-right: 0;
border: none;
}
}
.header .top-bar .top-bar-inner .top-bar-right .register-box .icon {
font-size: 14px;
color: var(--ed-color-common-white);
}
.header .top-bar .top-bar-inner .top-bar-right .register-box a {
color: var(--ed-color-common-white);
}
.header .top-bar .top-bar-inner .top-bar-right .register-box a:hover {
color: var(--ed-color-theme-primary);
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap {
display: flex;
align-items: center;
}
@media (max-width: 1200px) {
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap {
display: none;
}
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap span {
color: var(--ed-color-common-white);
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap .social-list {
margin-left: 20px;
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap .social-list li {
display: inline-flex;
align-items: center;
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap .social-list li:not(:last-of-type) {
margin-right: 10px;
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap .social-list li a {
color: var(--ed-color-common-white);
}
.header .top-bar .top-bar-inner .top-bar-right .top-social-wrap .social-list li a:hover {
color: var(--ed-color-theme-primary);
}
.header .mid-header .mid-header-inner {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 15px;
padding: 20px 0;
}
.header .mid-header .mid-header-inner .category-form-wrap {
background-color: var(--ed-color-grey-1);
display: flex;
align-items: center;
width: 520px;
padding: 12px 10px;
border-radius: 100px;
}
@media (max-width: 1399px) {
.header .mid-header .mid-header-inner .category-form-wrap {
width: 450px;
}
}
@media only screen and (max-width: 767px) {
.header .mid-header .mid-header-inner .category-form-wrap {
display: none;
}
}
.header .mid-header .mid-header-inner .category-form-wrap .select-control {
background-color: var(--ed-color-grey-1);
height: inherit;
line-height: inherit;
border: none;
font-size: 16px;
font-weight: 400;
color: var(--ed-color-heading-primary);
margin-right: 20px;
padding-right: 30px;
padding-left: 40px;
border-right: 1px solid var(--ed-color-border-1);
border-radius: 100px;
border-radius: 0;
}
.header .mid-header .mid-header-inner .category-form-wrap .select-control:before {
background-image: none;
font-family: "Font Awesome 6 Pro";
font-size: 14px;
font-weight: 500;
content: "\e196";
position: absolute;
top: 52%;
left: 20px;
transform: translateY(-50%);
}
.header .mid-header .mid-header-inner .category-form-wrap .select-control:after {
height: 7px;
width: 7px;
border-color: var(--ed-color-heading-primary);
right: 20px;
}
.header .mid-header .mid-header-inner .category-form-wrap .select-control .list {
margin-left: 19px;
margin-top: 14px;
}
.header .mid-header .mid-header-inner .category-form-wrap .header-form {
position: relative;
width: 100%;
}
.header .mid-header .mid-header-inner .category-form-wrap .header-form .form-control {
padding-top: 0;
background-color: var(--ed-color-grey-1);
padding-bottom: 0;
border: none;
box-shadow: none;
padding-left: 0;
padding-right: 150px;
border-radius: 100px;
}
.header .mid-header .mid-header-inner .category-form-wrap .header-form .submit {
position: absolute;
top: 50%;
right: 0px;
transform: translateY(-50%);
padding: 10px 20px 10px 20px;
font-size: 14px;
font-weight: 500;
}
.header .mid-header .mid-header-inner .category-form-wrap .header-form .submit i {
margin-right: 5px;
margin-left: 0;
font-size: 12px;
}
.header .mid-header .mid-header-inner .mid-header-right {
display: flex;
align-items: center;
-moz-column-gap: 20px;
column-gap: 20px;
}
.header .mid-header .mid-header-inner .mid-header-right .header-right-icon {
position: relative;
}
@media only screen and (max-width: 767px) {
.header .mid-header .mid-header-inner .mid-header-right .header-right-icon {
display: none;
}
}
.header .mid-header .mid-header-inner .mid-header-right .header-right-icon a {
color: var(--ed-color-text-body);
display: flex;
align-items: center;
justify-content: center;
height: 47px;
width: 47px;
border-radius: 50%;
border: 1px solid #E0E5EB;
}
.header .mid-header .mid-header-inner .mid-header-right .header-right-icon .number {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
font-size: 12px;
height: 20px;
width: 20px;
position: absolute;
top: 0;
right: -12px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
line-height: 1;
z-index: 1;
}
.header .primary-header {
position: relative;
}
@media only screen and (max-width: 992px) {
.header {
position: inherit;
height: auto !important;
}
}
.header .primary-header-inner {
background-color: var(--ed-color-common-white);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
.header .primary-header-inner {
padding: 20px 0;
}
}
.header .primary-header-inner .header-left-inner {
display: flex;
align-items: center;
}
.header .primary-header-inner .header-logo {
position: relative;
z-index: 2;
}
.header .primary-header-inner .header-logo img {
max-width: 224px;
}
@media (max-width: 1399px) {
.header .primary-header-inner .header-logo img {
max-width: 180px;
}
}
@media (max-width: 1200px) {
.header .primary-header-inner .header-logo img {
max-width: 160px;
}
}
.header .primary-header-inner .header-menu-wrap {
display: flex !important;
align-items: center;
}
.header .primary-header-inner .header-menu-wrap .sub-menu {
margin: 0;
padding: 0;
list-style: none;
}
@media only screen and (max-width: 992px) {
.header .primary-header-inner .header-menu-wrap .sub-menu {
display: none;
}
}
.header .primary-header-inner .header-menu-wrap .sub-menu li {
display: inline-block;
position: relative;
margin: 0 12px;
}
@media (max-width: 1399px) {
.header .primary-header-inner .header-menu-wrap .sub-menu li {
margin: 0 10px;
}
}
.header .primary-header-inner .header-menu-wrap .sub-menu li a {
font-family: var(--ed-ff-body);
color: var(--ed-color-heading-primary);
display: block;
font-size: 16px;
padding: 44.5px 0;
letter-spacing: 0;
font-weight: 600;
text-transform: uppercase;
position: relative;
text-decoration: none;
-webkit-font-smoothing: antialiased;
transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
.header .primary-header-inner .header-menu-wrap .sub-menu li a {
font-size: 14px;
}
}
.header .primary-header-inner .header-menu-wrap .sub-menu li a:hover {
color: var(--ed-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li a i {
font-size: 13px;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active a {
color: var(--ed-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active ul li a {
color: var(--ed-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active ul li a:hover {
color: var(--ed-color-common-white);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.active.menu-item-has-children:after {
color: var(--ed-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li ul {
background-color: var(--ed-color-common-white);
display: block;
width: 220px;
padding: 0;
box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
position: absolute;
left: 0;
top: 115px;
opacity: 0;
visibility: hidden;
z-index: 0;
transform: rotate3d(1, 0, 0, -90deg);
transform-origin: 0 0;
transition: all 0.6s ease;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li:hover > ul {
visibility: visible;
transition: all 0.6s ease;
opacity: 1;
transform: none;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li {
display: flex;
justify-content: space-between;
text-align: left;
position: relative;
transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:not(:last-of-type) {
border-bottom: 1px dashed var(--ed-color-border-1);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:last-child {
margin: 0;
border-bottom: none;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover {
background-color: var(--ed-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover a {
color: var(--ed-color-common-black);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li a {
display: block;
height: auto;
line-height: inherit;
color: var(--ed-color-common-black);
font-weight: 600;
font-size: 15px;
padding: 15px 0;
letter-spacing: 0;
width: 100%;
-webkit-font-smoothing: antialiased;
margin: 0;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li a:hover {
padding-left: 10px;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li a:before {
display: none;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li.active {
background-color: var(--ed-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li.active a {
color: var(--ed-color-common-white) !important;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li:hover a:before {
width: 100%;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li ul {
top: 0;
left: 100%;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover a {
color: var(--ed-color-common-white);
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover li a {
color: var(--ed-color-heading-primary);
}
@media (min-width: 993px) {
.header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu {
position: static;
display: inline-flex;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu:after {
display: inline-flex;
position: inherit;
transform: translateY(36px) translateX(-10px);
}
}
@media (min-width: 993px) and (max-width: 1200px) {
.header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu:after {
transform: translateY(38px) translateX(-10px);
}
}
@media (min-width: 993px) {
.header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
background-color: var(--ed-color-common-white);
width: 30%;
left: 30% !important;
grid-template-columns: 1fr 1fr;
display: grid;
padding: 20px 10px;
}
}
@media (min-width: 993px) and (max-width: 1600px) {
.header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
left: 24% !important;
}
}
@media (min-width: 993px) and (max-width: 1399px) {
.header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
width: 40%;
}
}
@media (min-width: 993px) and (max-width: 1200px) {
.header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
width: 50%;
left: 14% !important;
}
}
@media (min-width: 993px) {
.header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul li {
border: none;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul li:hover {
background-color: transparent;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul li a {
border: none;
padding: 10px 0;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul li a:hover {
color: var(--ed-color-theme-primary);
background-color: transparent;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul li a:before {
display: none;
}
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children {
position: relative;
padding-right: 5px;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children a {
padding-right: 12px;
}
@media (max-width: 1200px) {
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children a {
padding-right: 13px;
}
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children ul li {
margin: 0;
padding-left: 25px;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children ul li a {
padding-right: 0;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children:after {
background-image: none;
font-family: "Font Awesome 6 Pro";
font-size: 14px;
font-weight: 700;
content: "\f078";
color: var(--ed-color-heading-primary);
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
transition: all 0.3s ease-in-out;
cursor: pointer;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children:hover:after {
color: var(--ed-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children:first-child:after {
transform: translateY(48px) translateX(-7px);
}
.header .primary-header-inner .header-right {
display: flex;
align-items: center;
-moz-column-gap: 20px;
column-gap: 20px;
}
@media only screen and (max-width: 767px) {
.header .primary-header-inner .header-right .header-logo img {
width: 90px;
}
}
@media only screen and (max-width: 767px) {
.header .primary-header-inner .header-right .header-btn {
display: none;
}
}
.header .primary-header-inner .header-right .search-icon {
color: var(--ed-color-heading-primary);
font-size: 20px;
cursor: pointer;
}
@media (max-width: 1200px) {
.header .primary-header-inner .header-right .search-icon {
display: none;
}
}
@media only screen and (max-width: 992px) {
.header .primary-header-inner .header-right .search-icon {
margin-right: 20px;
}
}
.header .primary-header-inner .header-right .header-right-icon {
position: relative;
}
@media only screen and (max-width: 767px) {
.header .primary-header-inner .header-right .header-right-icon {
display: none;
}
}
.header .primary-header-inner .header-right .header-right-icon a {
color: var(--ed-color-text-body);
display: flex;
align-items: center;
justify-content: center;
height: 47px;
width: 47px;
border-radius: 50%;
border: 1px solid #E0E5EB;
}
.header .primary-header-inner .header-right .header-right-icon .number {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
font-size: 12px;
height: 20px;
width: 20px;
position: absolute;
top: 0;
right: -12px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
line-height: 1;
z-index: 1;
}
.header .primary-header-inner .header-right .header-right-item {
display: flex;
align-items: center;
}
@media only screen and (max-width: 992px) {
.header .primary-header-inner .header-right .header-right-item {
line-height: 1;
}
}
.header .primary-header-inner .header-right .header-right-item .mobile-side-menu-toggle {
color: var(--ed-color-heading-primary);
font-size: 30px;
}
@media (min-width: 993px) {
.header .primary-header-inner .header-right .header-right-item .mobile-side-menu-toggle {
display: none;
}
}
.header .primary-header-inner .header-right .header-right-item .search-icon {
font-size: 16px;
margin-left: 55px;
cursor: pointer;
}
@media only screen and (max-width: 992px) {
.header .primary-header-inner .header-right .header-right-item .search-icon {
margin-right: 20px;
}
}
@media only screen and (max-width: 992px) {
.header .primary-header-inner .mean-push {
display: none;
}
}
@media only screen and (max-width: 992px) {
.header-1 .mid-header {
display: none;
}
}
.header-1 .primary-header {
border-top: 1px solid var(--ed-color-border-1);
}
.header-1 .primary-header.fixed .primary-header-inner .header-menu-wrap .sub-menu li.menu-item-has-children:first-child:after {
transform: translateY(28px) translateX(-9px);
}
@media (max-width: 1200px) {
.header-1 .primary-header.fixed .primary-header-inner .header-menu-wrap .sub-menu li.menu-item-has-children:first-child:after {
transform: translateY(20px) translateX(-9px);
}
}
.header-1 .primary-header .primary-header-inner .header-menu-wrap {
padding-left: 30px;
margin-left: 30px;
border-left: 1px solid var(--ed-color-border-1);
}
.header-1 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li.menu-item-has-children:first-child:after {
transform: translateY(22px) translateX(-9px);
}
@media (max-width: 1200px) {
.header-1 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li.menu-item-has-children:first-child:after {
transform: translateY(20px) translateX(-9px);
}
}
.header-1 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li a {
padding: 19px 0;
padding-right: 12px;
}
.header-1 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li ul {
top: 63px;
}
.header-1 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
left: 25% !important;
}
@media (max-width: 1200px) {
.header-1 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
left: 20% !important;
}
}
.header-1 .primary-header .primary-header-inner .header-right-btn {
display: none;
}
.header-1 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li a {
padding: 25px 0;
padding-right: 12px;
}
.header-1 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul {
top: 76px;
}
.header-1 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul li a {
padding: 10px 0;
}
.header-1 .primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul li:hover a {
padding-left: 10px;
}
.header-1 .primary-header.fixed .primary-header-inner .header-right-btn {
display: block;
}
@media only screen and (max-width: 767px) {
.header-1 .primary-header.fixed .primary-header-inner .header-right-btn {
display: none;
}
}
.category-area {
cursor: pointer;
}
@media only screen and (max-width: 992px) {
.category-area {
display: none;
}
}
.category-area .category-btn {
display: flex;
align-items: center;
gap: 8px;
position: relative;
}
.category-area .category-btn span {
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
}
.category-area .category-btn i {
color: var(--ed-color-theme-primary);
}
.category-area:hover .category-sub-menu {
visibility: visible;
opacity: 1;
transform: translateZ(0) translateY(20px);
}
.category-area .category-sub-menu {
padding: 0;
margin: 0;
position: absolute;
top: 100%;
left: 0;
visibility: hidden;
opacity: 0;
background: var(--ed-color-common-white);
transform: translateZ(0) translateY(30px);
border-radius: 4px;
transform: rotate3d(1, 0, 0, -90deg);
transform-origin: 0 0;
transition: all 0.6s ease;
box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
display: flex;
flex-direction: column;
min-width: 210px;
padding: 17px 10px;
}
.category-area .category-sub-menu li {
list-style: none;
width: 100%;
margin: 0;
display: flex;
}
.category-area .category-sub-menu li:not(:last-of-type) {
margin-bottom: 10px;
}
.category-area .category-sub-menu li ul {
padding: 0;
margin: 0;
}
.category-area .category-sub-menu li a {
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 600;
display: flex;
align-items: center;
gap: 10px;
margin: 2px 10px;
transition: all 0.3s;
border-radius: 4px;
background: transparent;
}
.category-area .category-sub-menu li a:hover {
color: var(--ed-color-theme-primary);
}
.category-area .category-sub-menu li a span {
color: var(--ed-color-heading-primary);
}
.category-area .category-sub-menu li a:hover span {
color: var(--ed-color-heading-primary);
}
.category-area .category-sub-menu li a img {
width: 45px;
}
.category-area .category-sub-menu li a h4 {
color: var(--ed-color-heading-primary);
font-weight: 500;
margin-bottom: 4px;
font-size: 16px;
line-height: 1.1;
}
.category-area .category-sub-menu li a p {
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.1;
}
.header-2 {
background-color: var(--ed-color-common-white);
}
@media only screen and (max-width: 992px) {
.header-2 {
position: relative;
}
}
.header-2 .primary-header {
background-color: transparent;
}
.header-2 .primary-header:before {
visibility: hidden;
opacity: 0;
}
@media only screen and (max-width: 992px) {
.header-2 .primary-header:before {
visibility: visible;
opacity: 1;
}
}
.header-2 .primary-header-inner {
background-color: transparent;
}
.header-2 .primary-header-inner .header-logo .fixed-logo {
display: none;
}
.header-2 .primary-header-inner .header-right-wrap {
display: flex;
align-items: center;
-moz-column-gap: 60px;
column-gap: 60px;
}
@media (max-width: 1600px) {
.header-2 .primary-header-inner .header-right-wrap {
-moz-column-gap: 50px;
column-gap: 50px;
}
}
@media (max-width: 1200px) {
.header-2 .primary-header-inner .header-right-wrap {
-moz-column-gap: 20px;
column-gap: 20px;
}
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu li {
margin: 0 13px;
}
@media (max-width: 1200px) {
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu li {
margin: 0 8px;
}
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu li a {
font-size: 16px;
font-weight: 500;
text-transform: inherit;
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu li ul li a {
font-size: 15px;
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children {
padding-right: 5px;
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children:after {
display: block;
font-size: 13px;
color: var(--ed-color-heading-primary);
top: 52%;
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children.active a {
color: var(--ed-color-theme-primary);
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children.active ul li a {
color: var(--ed-color-heading-primary);
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children.active ul li:hover a {
color: var(--ed-color-theme-primary);
}
.header-2 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children:hover:after {
color: var(--ed-color-theme-primary);
}
.header-2 .primary-header-inner .header-right-wrap .header-right .header-right-icon {
color: var(--ed-color-text-body);
display: flex;
align-items: center;
justify-content: center;
height: 47px;
width: 47px;
border-radius: 50%;
border: 1px solid #E0E5EB;
}
@media only screen and (max-width: 767px) {
.header-2 .primary-header-inner .header-right-wrap .header-right .header-right-icon {
display: none;
}
}
.header-2 .primary-header-inner .header-right-wrap .header-right .search-icon {
color: var(--ed-color-common-white);
}
.header-2 .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
color: var(--ed-color-heading-primary);
}
.header-4 {
background-color: transparent;
position: absolute;
top: 0;
}
.header-4 .top-bar {
background-color: transparent;
}
@media (max-width: 1200px) {
.header-4 .top-bar {
display: block;
}
}
@media only screen and (max-width: 992px) {
.header-4 .top-bar {
justify-content: center;
}
}
@media only screen and (max-width: 767px) {
.header-4 .top-bar {
display: none;
}
}
.header-4 .top-bar .top-bar-inner {
background-color: var(--ed-color-theme-primary);
padding: 0 30px;
}
@media only screen and (max-width: 992px) {
.header-4 .top-bar .top-bar-inner {
padding: 10px 20px;
justify-content: center;
}
}
.header-4 .top-bar .top-bar-inner .top-bar-left {
display: flex;
align-items: center;
-moz-column-gap: 30px;
column-gap: 30px;
}
@media only screen and (max-width: 992px) {
.header-4 .top-bar .top-bar-inner .top-bar-left {
justify-content: center;
}
}
.header-4 .top-bar .top-bar-inner .top-bar-left .rr-product-countdown .rr-product-countdown-inner {
background-color: var(--ed-color-common-white);
padding: 5px 30px;
border-radius: 100px;
}
.header-4 .top-bar .top-bar-inner .top-bar-left .rr-product-countdown .rr-product-countdown-inner ul li {
display: inline-flex;
color: var(--ed-color-theme-primary);
}
.header-4 .top-bar .top-bar-inner .top-bar-left .rr-product-countdown .rr-product-countdown-inner ul li span {
color: var(--ed-color-theme-primary);
}
.header-4 .top-bar .top-bar-inner .top-bar-left .rr-product-countdown .rr-product-countdown-inner ul li:not(:last-of-type) {
margin-right: 15px;
}
@media only screen and (max-width: 992px) {
.header-4 .top-bar .top-bar-inner .top-bar-right {
display: none;
}
}
.header-4 .top-bar .top-bar-inner .top-bar-right .register-box {
margin-right: 0;
padding-right: 0;
border: none;
padding-left: 30px;
}
.header-4 .primary-header {
background-color: transparent;
}
.header-4 .primary-header .primary-header-inner {
background-color: var(--ed-color-common-white);
padding: 0 30px;
border-radius: 0 0 10px 10px;
}
@media only screen and (max-width: 992px) {
.header-4 .primary-header .primary-header-inner {
padding: 20px;
}
}
@media only screen and (max-width: 767px) {
.header-4 .primary-header .primary-header-inner {
padding: 20px 10px;
}
}
@media only screen and (max-width: 992px) {
.mobile-side-menu .header-right {
display: none !important;
}
}
.side-menu-icon {
position: absolute;
right: 20px;
top: 25px;
z-index: 100;
display: block;
cursor: pointer;
}
@media only screen and (max-width: 992px) {
.side-menu-icon {
display: none;
}
}
.side-menu-wrapper {
position: fixed;
overflow-y: auto;
top: 0;
right: 0;
width: 850px;
transform: translateX(850px);
height: 100%;
display: block;
background-color: var(--ed-color--bg-dark-deep);
z-index: 100;
padding: 40px;
transition: transform 0.5s ease;
backface-visibility: hidden;
}
.side-menu-wrapper .side-menu-close {
background-color: var(--ed-color-theme-primary);
position: absolute;
top: 40px;
right: 40px;
font-size: 18px;
color: #fff;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
text-align: center;
}
.side-menu-wrapper.is-open {
transform: translateX(0);
}
@media only screen and (max-width: 992px) {
.side-menu-wrapper {
display: none;
}
}
.side-menu-content .side-menu-header {
font-family: var(--ed-ff-body);
font-size: 30px;
max-width: 600px;
line-height: 1.5;
font-weight: 400;
width: 100%;
margin-bottom: 40px;
}
.side-menu-content .side-menu-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 25px;
border: 1px solid transparent;
transition: all 0.3s ease-in-out;
margin-bottom: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box {
display: flex;
align-items: center;
-moz-column-gap: 30px;
column-gap: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box img {
max-width: 150px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
font-family: var(--ed-ff-body);
font-size: 32px;
font-weight: 500;
color: var(--ed-color-theme-primary);
line-height: 1;
margin-bottom: 10px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
max-width: 400px;
width: 100%;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
margin-bottom: 0;
}
.side-menu-content .side-menu-item .side-menu-arrow {
font-size: 45px;
color: var(--ed-color-theme-primary);
transform: rotate(-45deg);
transition: all 0.3s ease-in-out;
}
.side-menu-content .side-menu-item:hover {
border: 1px solid var(--ed-color-border-6);
}
.side-menu-content .side-menu-item:hover .side-menu-arrow {
transform: rotate(0deg);
}
.side-menu-content .side-menu-item:last-child {
margin-bottom: 0;
}
.side-menu-overlay {
background-color: rgba(0, 0, 0, 0.7);
height: 100%;
width: 0%;
position: fixed;
top: 0;
z-index: 9;
right: 0;
opacity: 0;
visibility: hidden;
transition: all 600ms ease;
z-index: 10;
}
.side-menu-overlay.is-open {
width: 100%;
opacity: 0.5;
visibility: visible;
cursor: url(//phdprojects.org/wp-content/themes/projects/assets/img/cancel.png), auto;
}
@media only screen and (max-width: 992px) {
.side-menu-overlay {
display: none;
}
}
.primary-header {
width: 100%;
}
.primary-header.fixed {
background-color: var(--ed-color-common-white);
position: fixed;
left: 0;
top: 0;
animation-name: menuSticky;
-webkit-animation-name: menuSticky;
animation-duration: 1s;
-webkit-animation-duration: 1s;
animation-timing-function: ease;
-webkit-animation-timing-function: ease;
box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
z-index: 99;
}
@keyframes menuSticky {
0% {
transform: translateY(-100%);
}
100% {
transform: translateY(0%);
}
}
.mobile-side-menu-overlay,
.mobile-side-menu {
display: none;
}
@media only screen and (max-width: 992px) {
.mobile-side-menu {
background-color: var(--ed-color-common-white);
position: fixed;
overflow-y: auto;
top: 0;
right: 0;
width: 80%;
transform: translateX(100%);
height: 100%;
display: block;
z-index: 100;
padding: 40px 40px 40px 40px;
transition: transform 0.5s ease;
backface-visibility: hidden;
}
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
.mobile-side-menu {
padding: 40px 20px;
width: 100%;
max-width: 320px;
}
}
@media only screen and (max-width: 992px) {
.mobile-side-menu.is-open {
transform: translateX(0);
}
.mobile-side-menu .side-menu-head {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 60px;
}
.mobile-side-menu .side-menu-head a img {
max-width: 150px;
}
.mobile-side-menu .side-menu-head .mobile-side-menu-close {
position: fixed;
top: 45px;
right: 40px;
color: var(--ed-color-heading-primary);
font-size: 17px;
height: 40px;
width: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--ed-color-border-1);
}
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
.mobile-side-menu .side-menu-head .mobile-side-menu-close {
right: 16px;
}
}
@media only screen and (max-width: 992px) {
.mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.mobile-side-menu .side-menu-wrap {
overflow: hidden;
margin-bottom: 50px;
}
.mobile-side-menu p {
color: var(--ed-color-common-white);
margin-bottom: 50px;
}
.mobile-side-menu .list-header {
color: var(--ed-color-common-white);
font-family: var(--ed-ff-body);
font-weight: 400;
margin-bottom: 30px;
}
.mobile-side-menu .side-menu-list li {
font-family: var(--ed-ff-heading);
font-size: 16px;
font-weight: 500;
color: var(--ed-color-heading-primary);
}
.mobile-side-menu .side-menu-list li span,
.mobile-side-menu .side-menu-list li a {
color: var(--ed-color-heading-primary);
margin-left: 10px;
font-size: 16px;
}
.mobile-side-menu .side-menu-list li i {
margin-right: 10px;
}
.mobile-side-menu .mean-bar {
background-color: transparent;
min-height: auto;
padding: 0;
}
.mobile-side-menu .mean-bar .meanmenu-reveal {
display: none !important;
}
.mobile-side-menu .mean-bar .mean-nav {
background-color: transparent;
margin-top: 0;
padding-top: 20px;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul {
display: block !important;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li {
position: relative;
float: none;
display: block;
width: auto;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
margin-bottom: 24px;
padding-bottom: 20px;
border-bottom: 1px solid var(--ed-color-border-1);
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
color: var(--ed-color-heading-primary);
font-size: 18px;
font-weight: 600;
line-height: 1;
border-top: none;
padding: 0;
float: none;
}
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
font-size: 18px;
}
}
@media only screen and (max-width: 992px) {
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
position: absolute;
padding: 0;
top: -3px;
right: 0;
width: 25px;
height: 25px;
display: flex;
align-items: center;
justify-content: center;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before, .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
font-size: 14px;
font-family: "Font Awesome 6 Pro";
font-weight: 900;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
content: "+";
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked {
background-color: var(--ed-color-heading-primary);
color: var(--ed-color-common-white);
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
content: "\f068";
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
display: none;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
display: none;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul {
padding: 0 0 0 30px;
margin-top: 20px;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
padding-bottom: 15px;
margin-bottom: 15px;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
padding: 0;
font-size: 16px;
font-weight: 500;
text-transform: capitalize;
}
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
font-size: 14px;
}
}
@media only screen and (max-width: 992px) {
.mobile-side-menu-overlay {
background-color: rgba(0, 0, 0, 0.7);
height: 100%;
width: 0%;
position: fixed;
top: 0;
z-index: 9;
right: 0;
opacity: 0;
visibility: hidden;
transition: all 600ms ease;
z-index: 10;
display: block;
}
.mobile-side-menu-overlay.is-open {
width: 100%;
opacity: 0.5;
visibility: visible;
cursor: url(//phdprojects.org/wp-content/themes/projects/assets/img/cancel.png), auto;
}
}
#popup-search-box {
background-color: var(--ed-color-common-white);
position: fixed;
width: 100%;
height: 20%;
top: -100%;
left: 0;
right: 0;
white-space: nowrap;
z-index: 99;
opacity: 0;
visibility: hidden;
transition: 500ms ease all;
}
#popup-search-box .box-inner-wrap {
position: relative;
width: 100%;
height: 100%;
box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}
#popup-search-box .box-inner-wrap form {
position: relative;
width: 100%;
max-width: 560px;
margin: 0 auto;
padding: 0 15px;
}
#popup-search-box .box-inner-wrap form input {
width: 100%;
padding: 20px 15px;
padding-right: 80px;
background: transparent;
border: none;
color: #ddd;
border: 1px solid var(--ed-color-border-1);
color: #666;
font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
color: #666;
font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-moz-placeholder {
color: #666;
font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-moz-placeholder {
color: #666;
font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
color: #666;
font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:focus {
outline: none;
}
#popup-search-box .box-inner-wrap:hover {
cursor: url(//phdprojects.org/wp-content/themes/projects/assets/img/cross.html), auto;
}
#popup-search-box .box-inner-wrap .search-close {
position: absolute;
top: 30px;
right: 50px;
color: var(--ed-color-heading-primary);
border: 1px solid var(--ed-color-border-1);
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
border-radius: 50%;
transition: all 0.3s ease-in-out;
cursor: pointer;
}
@media only screen and (max-width: 767px) {
#popup-search-box .box-inner-wrap .search-close {
height: 35px;
width: 35px;
top: 10px;
right: 10px;
}
}
#popup-search-box .box-inner-wrap .search-close:hover {
background-color: var(--ed-color-theme-primary);
border: 1px solid var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
#popup-search-box.toggled {
top: 0;
opacity: 1;
visibility: visible;
}
.popup-tags {
position: relative;
margin: 0 auto;
}  #sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
display: none;
}
.sidebar-trigger {
display: block;
}
.sidebar-area {
background-color: var(--ed-color-common-white);
border-left: 1px solid #eee;
padding: 60px 50px;
position: fixed;
right: 0;
top: 0;
transform: translateX(100%);
width: 450px;
height: 100%;
z-index: 9999;
display: flex;
align-items: flex-start;
justify-content: flex-start;
overflow: scroll;
visibility: hidden;
transition: all 0.5s ease-in-out;
}
.open-sidebar .sidebar-area {
right: 0;
visibility: visible;
transform: translate(0);
}
.sidebar-trigger.close {
position: absolute;
right: 30px;
top: 70px;
color: var(--grey-color);
}
.sidebar-trigger.close svg {
fill: currentColor;
stroke: none;
width: 20px;
height: 20px;
}
.sidebar-content .site-logo {
margin-bottom: 40px;
}
.sidebar-content .site-logo img {
max-width: 200px;
}
.sidebar-content .sidebar-info li {
font-size: 18px;
}
.sidebar-content .sidebar-social li {
display: inline-block;
margin: 0 3px;
padding-top: 30px;
}
.sidebar-content .sidebar-social li a {
display: inline-block;
border: 1px solid var(--border-1);
font-size: 16px;
width: 40px;
height: 40px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
position: relative;
}
.sidebar-content .sidebar-social li a:after {
background-color: var(--primary-color);
width: 40px;
height: 40px;
border-radius: 59%;
content: "";
position: absolute;
left: 50%;
top: 50%;
opacity: 1;
transform: translate(-50%, -50%) scale(0);
z-index: -1;
visibility: hidden;
opacity: 0;
transition: 0.4s;
}
.sidebar-content .sidebar-social li a:hover {
border: 1px solid var(--primary-color);
color: #fff;
}
.sidebar-content .sidebar-social li:hover a:after {
visibility: visible;
opacity: 1;
transition: 0.4s;
transform: translate(-50%, -50%) scale(1);
}
.sidebar-content .list-post-area {
margin: 50px 0 20px 0;
} .sidebar-area::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.sidebar-area::-webkit-scrollbar-thumb {
cursor: pointer;
background: #ccc;
}
.sidebar-area::-moz-selection {
background-color: #999;
color: #fff;
}
.sidebar-area::selection {
background-color: #999;
color: #fff;
}
.sidebar-area-webkit-::-moz-selection {
background-color: #999;
color: #fff;
}
.sidebar-area-webkit-::selection {
background-color: #999;
color: #fff;
}
.sidebar-area::-moz-selection {
background-color: #999;
color: #fff;
}
#sidebar-overlay {
display: block;
height: 100%;
left: 0;
opacity: 0;
overflow: hidden;
position: fixed;
top: 0;
transition: all 0s ease-in-out;
width: calc(100% - 400px);
z-index: -1;
}
.open-sidebar #sidebar-overlay {
opacity: 1;
z-index: 1002;
transition: all 0.6s ease-in-out;
transition-delay: 0.3s;
}
@media (max-width: 992px) {
.sidebar-content .list-post-area.list-2 {
grid-template-columns: 1fr;
grid-gap: 0;
}
.sidebar-area {
width: 350px;
}
}
@media (max-width: 767px) {
.sidebar-area {
width: 350px;
padding: 60px 30px;
}
.sidebar-content .list-post-area.list-2 .list-post-card .post-img {
height: 90px;
width: 90px;
}
.sidebar-content .list-post-area.list-2 .list-post-card {
grid-template-columns: 90px 1fr;
}
}
.side-menu-about {
margin: 50px 0 50px 0;
}
.side-menu-about p {
margin: 25px 0;
}
.side-menu-header h3 {
font-size: 30px;
font-weight: 600px;
line-height: 1;
font-weight: 600;
}
.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
margin-bottom: 20px;
}
.side-menu-list {
margin: 25px 0 35px 0;
}
.side-menu-list li {
display: flex;
align-items: center;
}
.side-menu-list li:not(:last-of-type) {
margin-bottom: 20px;
}
.side-menu-list li i {
background-color: var(--ed-color-theme-primary);
font-size: 12px;
color: var(--ed-color-common-white);
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
border-radius: 5px;
transition: all 0.2s ease-in-out;
}
.side-menu-list li:hover i {
background-color: var(--ed-color-theme-primary);
color: #fff;
}
.side-menu-list li p {
padding-left: 10px;
margin-bottom: 0;
}
.side-menu-list li a {
font-size: 16px;
color: var(--ed-color-text-body);
padding-left: 10px;
}
.side-menu-list li a:hover {
color: var(--ed-color-theme-primary);
}
.side-menu-social {
margin-top: 40px;
list-style: none;
}
.side-menu-social li {
display: inline-flex;
}
.side-menu-social li:not(:last-of-type) {
margin-right: 10px;
}
.side-menu-social li a {
background-color: transparent;
font-size: 17px;
color: var(--ed-color-heading-primary);
height: 40px;
width: 40px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--ed-color-border-1);
}
.side-menu-social li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}  .post-card {
position: relative;
z-index: 1;
border-radius: 10px;
overflow: hidden;
}
.post-card .post-thumb {
position: relative;
z-index: 1;
height: 454px;
}
.post-card .post-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
transform: scale(1);
transition: all 0.3s ease-in-out;
}
.post-card .post-thumb:before {
background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, #020F21 100%);
border-radius: 10px;
content: "";
width: 100%;
height: 100%;
position: absolute;
bottom: 0;
left: 0;
transition: all 0.3s ease-in-out;
z-index: 1;
}
.post-card .post-content-wrap {
position: absolute;
bottom: 50px;
left: 50px;
z-index: 2;
padding-right: 50px;
}
@media only screen and (max-width: 992px) {
.post-card .post-content-wrap {
left: 30px;
bottom: 30px;
padding-right: 30px;
}
}
@media only screen and (max-width: 767px) {
.post-card .post-content-wrap {
left: 20px;
bottom: 20px;
padding-right: 20px;
}
}
.post-card:hover .post-thumb img {
transform: scale(1.02);
}
.post-card.post-card-1 .post-meta li {
color: var(--ed-color-common-white);
}
.post-content .category {
background-color: var(--ed-color-common-white);
display: inline-block;
color: var(--ed-color-theme-primary);
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
line-height: 1;
padding: 8px 20px;
border-radius: 100px;
margin-bottom: 20px;
}
.post-content .title {
color: var(--ed-color-common-white);
font-weight: 600;
line-height: 1.5;
margin-bottom: 20px;
}
.post-content .title a {
background: linear-gradient(var(--ed-color-common-white) 0%, var(--ed-color-common-white) 98%);
background-size: 0 2px;
background-repeat: no-repeat;
background-position: left 100%;
transition: all 0.3s ease-in-out;
}
.post-content .title a:hover {
color: var(--ed-color-common-white);
background-size: 100% 2px;
}
.post-content .rr-primary-btn {
padding: 14.5px 30px;
}
.post-meta {
display: flex;
align-items: center;
list-style: none;
flex-wrap: wrap;
row-gap: 10px;
}
.post-meta li {
font-family: var(--ed-ff-body);
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 400;
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
}
.post-meta li i {
font-size: 14px;
margin-top: 1px;
}
.post-meta li:not(:last-of-type) {
margin-right: 20px;
}
.post-meta li a:hover {
color: var(--ed-color-theme-primary);
}
@media only screen and (max-width: 767px) {
.post-meta li {
font-size: 12px;
}
}
.post-card-2-wrap {
margin-bottom: -24px;
}
.post-card-2 {
display: grid;
align-items: center;
grid-template-columns: 370px 1fr;
grid-gap: 36px;
padding: 40px 45px;
border: 1px solid #E0E5EB;
border-radius: 15px;
margin-bottom: 24px;
}
@media only screen and (max-width: 992px) {
.post-card-2 {
grid-template-columns: 1fr;
padding: 30px 20px;
}
}
.post-card-2 .post-thumb {
width: 100%;
height: 260px;
border-radius: 15px;
overflow: hidden;
}
.post-card-2 .post-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.post-card-2 .post-content .post-meta {
margin-bottom: 10px;
}
.post-card-2 .post-content .post-meta li {
color: var(--ed-color-heading-primary);
}
@media only screen and (max-width: 767px) {
.post-card-2 .post-content .post-meta li {
font-size: 14px;
}
}
.post-card-2 .post-content .title {
color: var(--ed-color-heading-primary);
margin-bottom: 15px;
}
.post-card-2 .post-content .title a {
background: linear-gradient(var(--ed-color-theme-primary) 0%, var(--ed-color-theme-primary) 98%);
background-size: 0 2px;
background-repeat: no-repeat;
background-position: left 100%;
transition: all 0.3s ease-in-out;
}
.post-card-2 .post-content .title a:hover {
color: var(--ed-color-theme-primary);
background-size: 100% 2px;
}
.post-card-2 .post-content p {
font-size: 17px;
margin-bottom: 30px;
}
@media (max-width: 1200px) {
.post-card-2 .post-content p br {
display: none;
}
}
.post-card-2 .post-content .ed-primary-btn {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
border: 1px solid #E0E5EB;
font-weight: 500;
}
.post-card-2 .post-content .ed-primary-btn:before {
background-color: var(--ed-color-theme-primary);
}
.post-card-2 .post-content .ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
.post-inner-2 {
border-radius: 15px;
overflow: hidden;
border: 1px solid #E0E5EB;
}
.post-inner-2:not(:last-of-type) {
margin-bottom: 24px;
}
.post-inner-2 .post-thumb {
height: 450px;
position: relative;
}
.post-inner-2 .post-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
@media only screen and (max-width: 992px) {
.post-inner-2 .post-thumb {
height: 350px;
}
}
.post-inner-2 .post-thumb .video-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.post-inner-2 .post-thumb .video-btn a {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
font-size: 30px;
height: 100px;
width: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.post-inner-2 .post-thumb .video-btn img {
margin-bottom: 5px;
}
.post-inner-2 .post-thumb .video-btn .ripple {
height: 100px;
width: 100px;
}
.post-inner-2 .post-thumb .video-btn .ripple:before, .post-inner-2 .post-thumb .video-btn .ripple:after {
height: 100px;
width: 100px;
}
.post-inner-2 .post-content {
background-color: var(--ed-color-grey-1);
padding: 30px;
}
.post-inner-2 .post-content .title {
color: var(--ed-color-heading-primary);
font-size: 30px;
margin-top: 20px;
}
@media only screen and (max-width: 767px) {
.post-inner-2 .post-content .title {
font-size: 22px;
}
}
.post-inner-2 .post-content .title a {
background: linear-gradient(var(--ed-color-theme-primary) 0%, var(--ed-color-theme-primary) 98%);
background-size: 0 2px;
background-repeat: no-repeat;
background-position: left 100%;
transition: all 0.3s ease-in-out;
}
.post-inner-2 .post-content .title a:hover {
color: var(--ed-color-theme-primary);
background-size: 100% 2px;
}
.post-inner-2 .post-content p {
margin-top: 0;
margin-bottom: 30px;
}
.post-inner-2:hover .post-thumb .swiper-arrow {
transition: all 0.3s ease-in-out;
visibility: visible;
opacity: 1;
}
.post-thumb-carousel .swiper-arrow {
visibility: hidden;
opacity: 0;
transition: all 0.3s ease-in-out;
}
.post-thumb-carousel .swiper-arrow .swiper-nav {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 0 5px 5px 0;
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
z-index: 2;
}
.post-thumb-carousel .swiper-arrow .swiper-nav.swiper-next {
left: auto;
right: 0;
border-radius: 5px 0 0 5px;
}
.post-card-3 {
background-color: var(--ed-color-common-white);
grid-template-columns: 1fr;
padding: 20px 20px 30px 20px;
grid-gap: 30px;
}
.post-card-3 .post-thumb {
height: 214px;
}
.post-card-3 .post-content {
padding: 0 10px;
}
.post-card-3 .post-content .post-meta li i {
color: var(--ed-color-theme-primary);
}
.post-card-3 .post-content .title {
font-size: 22px;
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px dashed #E0E5EB;
}
.post-card-3 .post-content .read-more {
color: var(--ed-color-theme-primary);
border: none;
padding: 0;
}
.post-card-3 .post-content .read-more:hover {
background-color: inherit;
border: none;
}
.post-card.post-card-5 {
height: 100%;
}
.post-card.post-card-5 .post-thumb {
height: 100%;
}
@media only screen and (max-width: 767px) {
.post-card.post-card-5 .post-thumb {
height: 450px;
}
}
.grid-post {
background-color: var(--ed-color-common-white);
display: grid;
align-items: center;
grid-template-columns: 217px 1fr;
grid-gap: 0;
padding: 0;
border-radius: 10px;
overflow: hidden;
}
@media only screen and (max-width: 992px) {
.grid-post {
grid-template-columns: 1fr;
}
}
.grid-post .post-thumb {
border-radius: 0;
height: 100%;
position: relative;
}
@media only screen and (max-width: 992px) {
.grid-post .post-thumb {
height: 300px;
}
}
.grid-post .post-thumb .category {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
position: absolute;
top: 20px;
left: 20px;
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
line-height: 1;
padding: 10px 20px;
border-radius: 100px;
}
.grid-post .post-content {
padding: 40px 30px;
}
.grid-post .post-content .title {
font-size: 22px;
padding-bottom: 0;
border: none;
margin-bottom: 15px;
}
.grid-post .post-content .post-meta {
margin-bottom: 25px;
}
.grid-post .post-content .ed-primary-btn {
background-color: var(--ed-color-common-white);
color: var(--ed-color-text-body);
border: 1px solid #E0E5EB;
}
.grid-post .post-content .ed-primary-btn:before {
background-color: var(--ed-color-theme-primary);
}
.grid-post .post-content .ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
@media only screen and (max-width: 992px) {
.post-wrap-card {
display: flex;
align-items: center;
justify-content: center;
-moz-column-gap: 24px;
column-gap: 24px;
margin-bottom: 30px;
}
.post-wrap-card .post-card-2 {
margin-bottom: 0;
height: 100%;
}
}
@media only screen and (max-width: 767px) {
.post-wrap-card {
flex-direction: column;
row-gap: 24px;
}
}
.pagination-wrap {
display: flex;
align-items: center;
list-style: none;
-moz-column-gap: 10px;
column-gap: 10px;
justify-content: center;
margin-top: 50px;
}
.pagination-wrap li:not(:last-of-type) {
margin-right: 10px;
}
.pagination-wrap li a {
background-color: var(--ed-color-grey-1);
color: var(--ed-color-heading-primary);
font-weight: 600;
height: 55px;
width: 55px;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
border-radius: 50%;
}
.pagination-wrap li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.pagination-wrap li .active {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.post-inner .post-content p br {
display: none;
}
.inner-post-2 {
padding: 0;
overflow: hidden;
grid-gap: 0;
margin-bottom: 0;
}
.inner-post-2 .post-thumb {
height: 250px;
padding: 0;
border-radius: 0;
margin-bottom: 0;
}
.inner-post-2 .post-thumb img {
transition: all 0.3s ease-in-out;
}
.inner-post-2 .post-content {
padding: 30px;
}
.inner-post-2 .post-content .title {
padding-bottom: 0;
border: none;
}
.inner-post-2:hover .post-thumb img {
transform: scale(1.02);
}  .page-header {
position: relative;
z-index: 1;
overflow: hidden;
padding: 120px 0;
}
.page-header .overlay {
background: linear-gradient(90deg, #F3F7FB 43.21%, rgba(243, 247, 251, 0.24) 63.66%);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.page-header .bg-img {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-size: contain;
background-position: top right;
width: 100%;
height: 100%;
position: absolute;
top: 0;
right: 0;
z-index: -1;
}
@media (max-width: 1399px) {
.page-header .bg-img {
background-size: cover;
}
}
@media only screen and (max-width: 767px) {
.page-header .shapes {
display: none;
}
}
.page-header .shapes .shape {
position: absolute;
z-index: -1;
}
.page-header .shapes .shape.shape-1 {
bottom: 20px;
left: 50px;
}
@media (max-width: 1700px) {
.page-header .shapes .shape.shape-1 {
left: 0;
}
}
.page-header .shapes .shape.shape-2 {
bottom: 0;
left: 40%;
}
.page-header .shapes .shape.shape-3 {
top: 0;
right: 0;
}
@media (max-width: 1700px) {
.page-header-content {
padding-left: 100px;
}
}
@media (max-width: 1600px) {
.page-header-content {
padding-left: 150px;
}
}
@media (max-width: 1399px) {
.page-header-content {
padding-left: 200px;
}
}
@media only screen and (max-width: 767px) {
.page-header-content {
padding-left: 0;
}
}
.page-header-content .title {
font-size: 48px;
font-weight: 600;
margin-bottom: 15px;
line-height: 1;
}
.page-header-content .sub-title {
font-size: 16px;
font-weight: 500;
}
.page-header-content .sub-title .icon {
font-size: 16px;
padding: 0 5px;
}
.page-header-content .sub-title .inner-page {
color: var(--ed-color-theme-primary);
}  .blog-contact-form.contact-form {
border: 1px solid #E0E5EB;
margin-top: 0;
}
.blog-contact-form.contact-form .request-form .form-group .form-item .form-control {
background-color: transparent;
border: 1px solid #E0E5EB;
}
.blog-contact-form.contact-form .request-form .form-group .form-item .form-control.nice-select {
height: auto;
line-height: inherit;
padding: 15.5px 20px;
}
.blog-contact-form.contact-form .request-form .form-group .form-item .form-control.nice-select:after {
top: 46%;
width: 10px;
height: 10px;
border-color: var(--ed-color-text-body);
border-bottom: 1px solid var(--ed-color-text-body);
border-right: 1px solid var(--ed-color-text-body);
right: 35px;
}
.blog-contact-form.contact-form .request-form .form-group .form-item .form-control.nice-select .list {
background-color: var(--ed-color-common-white);
width: 100%;
}
.blog-contact-form.contact-form .request-form .form-group .form-item .form-control.nice-select .list li {
padding-left: 30px;
}
.blog-contact-form.contact-form .submit-btn .ed-primary-btn {
width: 100%;
justify-content: center;
}
.contact-content {
border: 1px solid #E0E5EB;
padding: 50px;
border-radius: 15px;
overflow: hidden;
}
@media only screen and (max-width: 767px) {
.contact-content {
padding: 30px 20px;
}
}
.contact-content .contact-top .title {
font-size: 30px;
font-weight: 600;
margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
.contact-content .contact-top .title {
font-size: 24px;
}
}
.contact-content .contact-top p {
margin-bottom: 30px;
}
.contact-content .contact-list .list-item {
display: grid;
align-items: center;
grid-template-columns: 75px 1fr;
grid-gap: 20px;
}
.contact-content .contact-list .list-item:not(:last-of-type) {
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid #DADFEC;
}
@media only screen and (max-width: 767px) {
.contact-content .contact-list .list-item {
grid-template-columns: 1fr;
}
}
.contact-content .contact-list .list-item .icon {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
font-size: 18px;
height: 60px;
width: 60px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease-in-out;
border-radius: 5px;
border: 1px solid #E0E5EB;
}
.contact-content .contact-list .list-item .content .title {
font-size: 20px;
font-weight: 600;
line-height: 1;
margin-bottom: 10px;
}
.contact-content .contact-list .list-item .content p {
margin-bottom: 0;
}
.contact-content .contact-list .list-item .content a {
display: block;
}
.contact-content .contact-list .list-item .content span {
display: block;
}
.contact-content .contact-list .list-item:hover .icon {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.contact-wrap {
background-color: var(--ed-color-grey-1);
padding: 60px;
align-items: end;
}
@media only screen and (max-width: 767px) {
.contact-wrap {
padding: 40px 20px;
}
}
.contact-wrap .section-heading .section-title {
margin: 0;
}
#form-messages {
display: none;
margin-top: 15px;
margin-bottom: 0;
}
#form-messages.alert-success {
display: block;
}  .blog-details-top-wrap {
padding: 40px;
border: 1px solid #E0E5EB;
border-radius: 15px;
}
@media only screen and (max-width: 767px) {
.blog-details-top-wrap {
padding: 40px 20px;
}
}
.blog-details-top .blog-details-thumb {
position: relative;
height: 450px;
}
@media only screen and (max-width: 767px) {
.blog-details-top .blog-details-thumb {
height: 350px;
}
}
.blog-details-top .blog-details-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.blog-details-top .post-meta {
margin: 20px 0;
}
.blog-details-content .details-title {
font-size: 30px;
font-weight: 600;
line-height: 1.4;
margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
.blog-details-content .details-title {
font-size: 24px;
}
}
.blog-details-content blockquote {
background-color: var(--ed-color-grey-1);
padding: 40px;
border-left: 3px solid var(--ed-color-theme-primary);
margin: 40px 0;
}
@media only screen and (max-width: 767px) {
.blog-details-content blockquote {
padding: 30px 20px;
}
}
.blog-details-content blockquote p {
font-family: var(--ed-ff-heading);
color: var(--ed-color-heading-primary);
font-size: 20px;
font-weight: 400;
margin-bottom: 20px;
font-style: italic;
}
.blog-details-content blockquote .author {
font-size: 20px;
font-weight: 600;
color: var(--ed-color-heading-primary);
margin-bottom: 0;
position: relative;
padding-left: 50px;
}
.blog-details-content blockquote .author:before {
background-color: var(--ed-color-theme-primary);
content: "";
width: 40px;
height: 2px;
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
}
.blog-details-content .details-list-wrap {
margin-bottom: 40px;
}
.blog-details-content .details-list-wrap .list-title {
font-size: 30px;
font-weight: 700;
line-height: 1.4;
margin-bottom: 15px;
}
.blog-details-content .details-list-wrap .details-img {
height: 450px;
}
@media only screen and (max-width: 767px) {
.blog-details-content .details-list-wrap .details-img {
height: 350px;
}
}
.blog-details-content .details-list-wrap .details-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.blog-details-content .tag-wrap {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 20px;
margin: 50px 0;
padding: 50px 0;
border-top: 1px dashed #E0E5EB;
padding-bottom: 0;
margin-bottom: 0;
}
.blog-details-content .tag-wrap .tags {
display: flex;
align-items: center;
}
.blog-details-content .tag-wrap .tags .tag {
color: var(--ed-color-heading-primary);
font-size: 20px;
font-weight: 600;
margin-bottom: 0;
}
.blog-details-content .tag-wrap .tags ul {
list-style: none;
margin-left: 20px;
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
flex-wrap: wrap;
row-gap: 15px;
}
.blog-details-content .tag-wrap .tags ul li a {
background-color: var(--ed-color-grey-1);
font-size: 16px;
font-weight: 400;
color: var(--ed-color-text-body);
padding: 8px 20px;
border-radius: 100px;
}
.blog-details-content .tag-wrap .tags ul li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.blog-details-content .tag-wrap .social-list-wrap {
display: flex;
align-items: center;
-moz-column-gap: 20px;
column-gap: 20px;
}
.blog-details-content .tag-wrap .social-list-wrap .share {
font-size: 20px;
font-weight: 600;
margin-bottom: 0;
}
.blog-details-content .tag-wrap .social-list-wrap .social-list {
background-color: var(--ed-color-grey-1);
padding: 5px 20px;
list-style: none;
border-radius: 100px;
}
.blog-details-content .tag-wrap .social-list-wrap .social-list li {
display: inline-flex;
}
.blog-details-content .tag-wrap .social-list-wrap .social-list li:not(:last-of-type) {
margin-right: 15px;
}
.blog-details-content .tag-wrap .social-list-wrap .social-list li a {
font-size: 16px;
color: var(--ed-color-heading-primary);
border-radius: 50%;
}
.blog-details-content .tag-wrap .social-list-wrap .social-list li a:hover {
color: var(--ed-color-theme-primary);
}
.blog-details-content .blog-details-post .head-title {
color: var(--ed-color-heading-primary);
font-size: 30px;
font-weight: 700;
margin-bottom: 0;
}
.blog-details-content .blog-details-post .view-post {
font-size: 16px;
font-weight: 700;
color: var(--ed-color-theme-primary);
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
text-transform: uppercase;
line-height: 1;
}
.blog-details-content .blog-details-post .view-post i {
transform: rotate(-45deg);
margin-top: -1px;
}
.blog-contact-form {
margin-top: 40px;
padding: 40px;
border: 1px solid #E0E5EB;
border-radius: 15px;
}
@media only screen and (max-width: 767px) {
.blog-contact-form {
padding: 30px 20px;
}
}
.blog-contact-form .title {
font-size: 30px;
font-weight: 600;
}
@media only screen and (max-width: 992px) {
.blog-contact-form .title {
font-size: 28px;
}
}
.blog-contact-form p {
margin-bottom: 30px;
}
.blog-contact-form .request-form .form-item {
position: relative;
}
.blog-contact-form .request-form .form-item .form-control {
background-color: var(--ed-color-grey-1);
color: var(--ed-color-text-body);
font-size: 16px;
font-weight: 400;
box-shadow: none;
border: none;
padding: 13px 20px;
border-radius: 0;
margin-bottom: 25px;
width: 100%;
border: none;
border-radius: 6px;
}
.blog-contact-form .request-form .form-item .form-control::-webkit-input-placeholder {
color: var(--ed-color-text-body);
font-size: 16px;
font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control:-moz-placeholder {
color: var(--ed-color-text-body);
font-size: 16px;
font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control::-moz-placeholder {
color: var(--ed-color-text-body);
font-size: 16px;
font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control:-ms-input-placeholder {
color: var(--ed-color-text-body);
font-size: 16px;
font-weight: 400;
}
.blog-contact-form .request-form .form-item .icon {
position: absolute;
top: 50%;
right: 30px;
transform: translateY(-50%);
}
.blog-contact-form .request-form .form-item.message-item .icon {
top: 25px;
}
.blog-contact-form .request-form .ed-contact-input-remeber {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
margin-bottom: 30px;
}
.blog-contact-form .request-form .ed-contact-input-remeber input[type=checkbox] {
border: 1px solid #E0E5EB;
}
.blog-contact-form .request-form .ed-contact-input-remeber label {
color: var(--ed-color-text-body);
}
.blog-contact-form .request-form .submit-btn .ed-primary-btn {
font-weight: 600;
border-radius: 5px;
}
.sidebar-widget {
background-color: var(--ed-color-grey-1);
padding: 40px 30px;
border: 1px solid var(--ed-color-border-1);
border-radius: 15px;
}
@media only screen and (max-width: 767px) {
.sidebar-widget {
padding: 30px 20px;
}
}
.sidebar-widget:not(:last-of-type) {
margin-bottom: 50px;
}
.sidebar-widget .search-form {
position: relative;
}
.sidebar-widget .search-form .form-control {
padding: 14px 20px;
padding-left: 30px;
border: none;
border-radius: 0;
box-shadow: none;
border-radius: 100px;
}
.sidebar-widget .search-form .search-btn {
color: var(--ed-color-theme-primary);
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
display: block;
}
.sidebar-widget .widget-title {
font-size: 30px;
font-weight: 600;
display: inline-block;
margin-bottom: 30px;
}
.sidebar-widget .category-list li {
display: flex;
align-items: center;
font-family: var(--ed-ff-body);
font-size: 16px;
font-weight: 400;
padding-bottom: 5px;
border-bottom: 1px solid var(--ed-color-border-1);
}
.sidebar-widget .category-list li:not(:last-of-type) {
margin-bottom: 20px;
}
.sidebar-widget .category-list li:hover {
color: var(--ed-color-theme-primary);
}
.sidebar-widget .category-list li i {
color: var(--ed-color-theme-primary);
padding-right: 10px;
}
.sidebar-widget .tags {
display: flex;
align-items: center;
flex-wrap: wrap;
row-gap: 20px;
list-style: none;
}
.sidebar-widget .tags li:not(:last-of-type) {
margin-right: 10px;
}
.sidebar-widget .tags li a {
background-color: var(--ed-color-common-white);
padding: 8px 18px;
font-family: var(--ed-ff-body);
font-size: 15px;
font-weight: 400;
border-radius: 100px;
}
.sidebar-widget .tags li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.sidebar-widget .sidebar-post {
background-color: var(--ed-color-grey-1);
display: grid;
align-items: center;
grid-template-columns: 82px 1fr;
grid-gap: 0px;
}
.sidebar-widget .sidebar-post:not(:last-of-type) {
margin-bottom: 20px;
}
.sidebar-widget .sidebar-post img {
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.sidebar-widget .sidebar-post .post-content {
padding: 20px;
}
@media only screen and (max-width: 767px) {
.sidebar-widget .sidebar-post .post-content {
padding-left: 10px;
}
}
.sidebar-widget .sidebar-post .post-content .post-meta {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
flex-wrap: wrap;
row-gap: 5px;
margin-top: 15px;
}
@media only screen and (max-width: 767px) {
.sidebar-widget .sidebar-post .post-content .post-meta {
-moz-column-gap: 5px;
column-gap: 5px;
}
}
.sidebar-widget .sidebar-post .post-content .post-meta li {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
line-height: 1;
font-size: 15px;
}
.sidebar-widget .sidebar-post .post-content .post-meta li:not(:last-of-type) {
margin-right: 5px;
}
@media only screen and (max-width: 767px) {
.sidebar-widget .sidebar-post .post-content .post-meta li {
font-size: 13px;
}
}
.sidebar-widget .sidebar-post .post-content .post-meta li i {
font-size: 14px;
color: var(--ed-color-theme-primary);
}
.sidebar-widget .sidebar-post .post-content .title {
color: var(--ed-color-heading-primary);
font-size: 16px;
margin-bottom: 10px;
font-weight: 600;
text-transform: capitalize;
line-height: 1.4;
}
.sidebar-widget .sidebar-post .post-content .title a {
background: linear-gradient(var(--ed-color-theme-primary) 0%, var(--ed-color-theme-primary) 98%);
background-size: 0 2px;
background-repeat: no-repeat;
background-position: left 100%;
transition: all 0.3s ease-in-out;
}
.sidebar-widget .sidebar-post .post-content .title a:hover {
color: var(--ed-color-theme-primary);
background-size: 100% 2px;
}
.sticky-widget {
position: sticky;
top: 150px;
}  .about-img-wrap {
max-width: 582px;
width: 100%;
height: 500px;
position: relative;
}
@media (max-width: 1200px) {
.about-img-wrap {
margin: 0 auto;
margin-bottom: 30px;
}
}
.about-img-wrap .about-img-1 {
position: absolute;
top: 0;
left: 0;
max-width: 294px;
width: 100%;
height: 371px;
padding: 5px;
border: 2px solid #DDE1E7;
border-radius: 0 60px 0 60px;
}
.about-img-wrap .about-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 0 60px 0 60px;
}
.about-img-wrap .about-img-1 .video-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.about-img-wrap .about-img-1 .video-btn a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
display: flex;
align-items: center;
justify-content: center;
font-size: 25px;
height: 80px;
width: 80px;
border-radius: 50%;
}
.about-img-wrap .about-img-1 .video-btn a i {
margin-top: 10px;
line-height: 1;
}
.about-img-wrap .about-img-1 .video-btn a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.about-img-wrap .about-img-2 {
position: absolute;
bottom: 0;
right: 0;
max-width: 260px;
width: 100%;
height: 352px;
}
.about-img-wrap .about-img-2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 60px 0 60px 0;
}
.about-img-wrap .about-contact {
background-color: var(--ed-color-theme-primary);
position: absolute;
bottom: 0;
left: 0;
display: grid;
grid-template-columns: 50px 1fr;
align-items: center;
grid-gap: 15px;
max-width: 294px;
width: 100%;
padding: 30px;
border-radius: 0 60px 0 60px;
}
.about-img-wrap .about-contact .icon {
background-color: var(--ed-color-common-white);
font-size: 20px;
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
color: var(--ed-color-theme-primary);
}
.about-img-wrap .about-contact .icon i {
transform: rotate(-45deg);
}
.about-img-wrap .about-contact .content span {
color: var(--ed-color-common-white);
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
display: block;
}
.about-img-wrap .about-contact .content a {
color: var(--ed-color-common-white);
font-size: 24px;
font-weight: 600;
line-height: 1;
}
@media (max-width: 1200px) {
.about-content {
max-width: 630px;
width: 100%;
}
}
.about-counter-items {
max-width: 610px;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 20px;
column-gap: 20px;
flex-wrap: wrap;
row-gap: 20px;
margin-bottom: 40px;
}
.about-counter-items .about-counter-item {
display: grid;
align-items: center;
grid-template-columns: 80px 1fr;
grid-gap: 20px;
}
.about-counter-items .about-counter-item .icon {
background-color: var(--ed-color-common-white);
width: 80px;
height: 80px;
border: 1px solid #E0E5EB;
box-shadow: 0px 14px 51px 2px rgba(24, 50, 48, 0.08);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.about-counter-items .about-counter-item .content .title {
color: var(--ed-color-theme-primary);
font-size: 40px;
font-weight: 700;
margin-bottom: 15px;
line-height: 1;
margin-bottom: 5px;
display: flex;
align-items: center;
}
.about-counter-items .about-counter-item .content .title .odometer-auto-theme {
font-family: inherit;
line-height: 1;
}
.about-counter-items .about-counter-item .content .title .number {
margin-bottom: 2px;
}
.about-counter-items .about-counter-item .content p {
font-size: 14px;
font-weight: 400;
margin-bottom: 0;
line-height: 1.6;
text-align: left;
}
.about-section-3 {
background-color: #F3F7FB;
position: relative;
z-index: 1;
}
.about-section-3 .shapes .shape {
position: absolute;
z-index: -1;
}
.about-section-3 .shapes .shape.shape-1 {
top: 0;
left: 0;
}
.about-section-3 .shapes .shape.shape-2 {
bottom: 0;
left: 50px;
}
.about-section-3 .shapes .shape.shape-3 {
bottom: 0;
right: 0;
}
.about-img-wrap-3 {
background-color: var(--ed-color-common-white);
max-width: 545px;
width: 100%;
height: 508px;
position: relative;
border-radius: 15px;
}
@media only screen and (max-width: 992px) {
.about-img-wrap-3 {
margin: 0 auto;
margin-bottom: 40px;
}
}
.about-img-wrap-3 .about-img {
width: 100%;
height: 508px;
position: absolute;
top: 0;
left: 0;
border: 15px solid var(--ed-color-common-white);
border-radius: 15px;
}
.about-img-wrap-3 .about-img .main-img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.about-img-wrap-3 .icon-box {
background-color: var(--ed-color-common-white);
height: 163px;
width: 163px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 1px solid #E0E5EB;
padding: 30px;
position: absolute;
top: 65px;
right: 0;
}
.about-img-wrap-3 .icon-box .icon {
height: 105px;
width: 105px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 1px solid #E0E5EB;
}
.faq-img-wrap.about-img-wrap-4 {
max-width: 620px;
height: 471px;
}
@media only screen and (max-width: 992px) {
.faq-img-wrap.about-img-wrap-4 {
margin: 0 auto;
margin-bottom: 40px;
}
}
.faq-img-wrap.about-img-wrap-4 .faq-img {
height: 100%;
max-width: 620px;
width: 100%;
}
.faq-img-wrap.about-img-wrap-4 .faq-text-box {
bottom: 50px;
left: -100px;
}
@media (max-width: 1200px) {
.faq-img-wrap.about-img-wrap-4 .faq-text-box {
left: 0;
}
}
.about-content-4 {
margin-left: 20px;
}
@media (max-width: 1200px) {
.about-content-4 {
margin-left: 0;
}
}
.about-content-4 .section-heading .section-title span {
color: var(--ed-color-theme-primary);
}
.about-content-4 .about-items {
max-width: 590px;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 20px;
column-gap: 20px;
flex-wrap: wrap;
row-gap: 20px;
margin-bottom: 40px;
}
.about-content-4 .about-items .about-item {
display: flex;
-moz-column-gap: 20px;
column-gap: 20px;
}
.about-content-4 .about-items .about-item .icon {
color: var(--ed-color-theme-primary);
font-size: 20px;
}
.about-content-4 .about-items .about-item .content .title {
font-size: 22px;
font-weight: 600;
margin-bottom: 10px;
}
.about-feature {
background-color: var(--ed-color-grey-1);
}
.about-feature-card {
position: relative;
padding-top: 60px;
}
.about-feature-card .icon {
background-color: var(--ed-color-common-white);
height: 120px;
width: 120px;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
border: 1px solid #E1E9F0;
box-shadow: 0px 18px 38px rgba(47, 74, 101, 0.11);
border-radius: 50%;
transition: all 0.3s ease-in-out;
}
.about-feature-card .icon img {
transition: all 0.3s ease-in-out;
}
.about-feature-card .content {
background-color: var(--ed-color-common-white);
padding: 0 20px 30px 20px;
padding-top: 100px;
text-align: center;
border: 1px solid #E1E9F0;
border-radius: 15px;
}
.about-feature-card .content .title {
font-size: 22px;
}
.about-feature-card .content p {
margin-bottom: 0;
}
.about-feature-card:hover .icon {
background-color: var(--ed-color-theme-primary);
}
.about-feature-card:hover .icon img {
filter: brightness(0) invert(1);
}  .promo-section {
background-color: #191A1F;
position: relative;
z-index: 1;
}
.promo-section .bg-shape-1 {
background: radial-gradient(80.61% 80.61% at 50% 19.39%, rgba(7, 166, 152, 0.2) 0%, rgba(3, 20, 24, 0) 85.76%);
filter: blur(125px);
width: 1784px;
height: 1541px;
position: absolute;
top: -60%;
left: -60%;
z-index: -1;
}
.promo-section .bg-shape-2 {
background: radial-gradient(80.61% 80.61% at 50% 19.39%, rgba(7, 166, 152, 0.2) 0%, rgba(3, 20, 24, 0) 85.76%);
filter: blur(125px);
width: 1784px;
height: 1541px;
position: absolute;
bottom: -140%;
right: -60%;
z-index: -1;
}
@media only screen and (max-width: 992px) {
.promo-section .shapes {
display: none;
}
}
.promo-section .shapes .shape {
position: absolute;
z-index: -1;
}
.promo-section .shapes .shape.shape-1 {
top: 100px;
left: 70px;
}
.promo-section .shapes .shape.shape-2 {
top: 50px;
right: 0;
}
.promo-heading {
margin-bottom: 100px;
}
@media only screen and (max-width: 992px) {
.promo-heading {
margin-bottom: 80px;
}
}
@media only screen and (max-width: 767px) {
.promo-heading {
margin-bottom: 80px;
}
}
@media only screen and (max-width: 767px) {
.promo-wrap {
margin-bottom: -50px;
}
}
.promo-wrap > div {
padding: 0;
}
.promo-item {
text-align: center;
border-right: 1px dashed rgba(255, 255, 255, 0.17);
}
@media only screen and (max-width: 992px) {
.promo-item {
border: none;
}
}
@media only screen and (max-width: 767px) {
.promo-item {
margin-bottom: 50px;
}
}
.promo-item .promo-thumb {
height: 200px;
width: 200px;
border-radius: 50%;
margin: 0 auto;
position: relative;
margin-bottom: 30px;
}
.promo-item .promo-thumb .icon {
background-color: var(--ed-color-theme-primary);
height: 80px;
width: 80px;
border-radius: 50%;
border: 4px solid var(--ed-color-heading-primary);
position: absolute;
top: -40px;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
justify-content: center;
}
.promo-item .promo-thumb .main-img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.promo-item .title {
font-size: 22px;
margin-bottom: 20px;
}
.promo-item p {
margin-bottom: 0;
line-height: 1.6;
}
@media only screen and (max-width: 767px) {
.promo-item p br {
display: none;
}
}
.promo-item.item-3 {
border: none;
}
.promo-item-2 {
text-align: center;
border: 1px solid #E0E5EB;
border-radius: 12px;
padding: 40px 30px;
position: relative;
}
@media (max-width: 1200px) {
.promo-item-2 {
padding: 30px 20px;
}
}
.promo-item-2 .number {
color: rgba(7, 166, 152, 0.15);
font-size: 36px;
font-weight: 700;
line-height: 1;
position: absolute;
top: 40px;
left: 30px;
transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
.promo-item-2 .number {
font-size: 30px;
top: 30px;
left: 20px;
}
}
.promo-item-2 .icon {
display: flex;
align-items: center;
justify-content: center;
height: 100px;
width: 100px;
border: 1px solid #E0E5EB;
border-radius: 50%;
margin: 0 auto;
margin-bottom: 25px;
}
.promo-item-2 .title {
font-size: 22px;
font-weight: 600;
margin-bottom: 15px;
}
@media (max-width: 1200px) {
.promo-item-2 .title {
font-size: 18px;
}
}
.promo-item-2:hover .number {
color: var(--ed-color-theme-primary);
}
.promo-section-3 {
background-color: #162726;
}
.promo-item-3 {
display: grid;
align-items: center;
grid-template-columns: 75px 1fr;
grid-gap: 15px;
padding: 30px;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 10px;
}
@media (max-width: 1200px) {
.promo-item-3 {
grid-template-columns: 1fr;
}
}
.promo-item-3 .icon {
background-color: rgba(7, 166, 152, 0.1);
height: 75px;
width: 75px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease-in-out;
}
.promo-item-3 .content .title {
font-size: 22px;
font-weight: 600;
}
.promo-item-3 .content p {
margin-bottom: 0;
}
.promo-item-3:hover .icon {
background-color: var(--ed-color-theme-primary);
}  .course-section {
position: relative;
z-index: 1;
}
.course-section .shapes .shape {
position: absolute;
z-index: -1;
}
@media only screen and (max-width: 767px) {
.course-section .shapes .shape {
display: none;
}
}
.course-section .shapes .shape.shape-1 {
top: 133px;
right: 0;
}
.course-section .shapes .shape.shape-2 {
bottom: 200px;
left: 0;
}
.feature-course {
background-color: var(--ed-color-grey-1);
}
.course-item {
background-color: var(--ed-color-common-white);
padding-top: 30px;
border: 1px solid #E0E5EB;
border-radius: 10px;
}
.course-item .course-thumb-wrap {
padding: 0 30px;
}
@media only screen and (max-width: 992px) {
.course-item .course-thumb-wrap {
padding: 0 20px;
}
}
.course-item .course-thumb-wrap .course-thumb {
width: 100%;
height: 250px;
overflow: hidden;
border-radius: 10px;
}
.course-item .course-thumb-wrap img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
transition: all 0.3s ease-in-out;
}
.course-item .course-content {
padding: 30px;
padding-bottom: 20px;
margin-bottom: 20px;
border-bottom: 1px solid #E0E5EB;
}
@media only screen and (max-width: 992px) {
.course-item .course-content {
padding: 30px 20px;
}
}
.course-item .course-content .offer {
background-color: rgba(7, 166, 152, 0.1);
color: var(--ed-color-theme-primary);
font-size: 14px;
font-weight: 700;
padding: 5px 15px;
border-radius: 100px;
display: inline-block;
margin-bottom: 20px;
}
.course-item .course-content .title {
font-size: 22px;
font-weight: 600;
margin-bottom: 15px;
line-height: 1.4;
}
.course-item .course-content .course-list {
margin-bottom: 20px;
}
.course-item .course-content .course-list li {
display: inline-flex;
align-items: center;
font-size: 16px;
font-weight: 400;
-moz-column-gap: 7px;
column-gap: 7px;
}
.course-item .course-content .course-list li:not(:last-of-type) {
margin-right: 20px;
}
.course-item .course-content .course-list li i {
font-size: 14px;
}
.course-item .course-content .course-author-box {
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 15px;
column-gap: 15px;
flex-wrap: wrap;
row-gap: 10px;
}
.course-item .course-content .course-author-box .course-author {
display: grid;
align-items: center;
grid-template-columns: 45px 1fr;
grid-gap: 10px;
}
.course-item .course-content .course-author-box .course-author .author-img {
height: 45px;
width: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.course-item .course-content .course-author-box .course-author .author-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.course-item .course-content .course-author-box .course-author .author-info .name {
font-size: 18px;
font-weight: 500;
margin-bottom: 0;
line-height: 1;
}
.course-item .course-content .course-author-box .course-author .author-info span {
color: var(--ed-color-theme-primary);
font-size: 13px;
font-weight: 400;
line-height: 1;
}
.course-item .course-content .course-author-box .course-review li {
display: inline-flex;
}
.course-item .course-content .course-author-box .course-review li i {
color: var(--ed-color-theme-primary);
}
.course-item .course-content .course-author-box .course-review li.point {
margin-left: 5px;
}
.course-item .bottom-content {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 30px 20px 30px;
}
.course-item .bottom-content .price {
color: var(--ed-color-heading-primary);
font-size: 20px;
font-weight: 700;
}
.course-item .bottom-content .course-btn {
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 600;
padding: 5px 20px;
border: 1px solid #E0E5EB;
border-radius: 100px;
}
.course-item .bottom-content .course-btn:hover {
border: 1px solid var(--ed-color-theme-primary);
}
.course-item:hover .course-thumb img {
transform: scale(1.03);
}
.course-item-2 {
padding: 0;
display: grid;
align-items: center;
grid-template-columns: 236px 1fr;
overflow: hidden;
}
@media (max-width: 1200px) {
.course-item-2 {
grid-template-columns: 300px 1fr;
}
}
@media only screen and (max-width: 767px) {
.course-item-2 {
grid-template-columns: 1fr;
}
}
.course-item-2 .course-thumb-wrap {
padding: 0;
height: 100%;
}
@media only screen and (max-width: 767px) {
.course-item-2 .course-thumb-wrap {
height: 350px;
}
}
.course-item-2 .course-thumb-wrap .course-thumb {
height: 100%;
border-radius: 0;
}
.feature-course-2 {
background-color: #1A2226;
position: relative;
z-index: 1;
}
.feature-course-2 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.feature-course-2 .shapes .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
.course-item.dark-item {
background-color: #222A2D;
border: 1px solid #2F373A;
}
.course-item.dark-item .course-content {
border-bottom: 1px solid #2F373A;
}
.course-item.dark-item .course-content .title {
color: var(--ed-color-common-white);
}
.course-item.dark-item .course-content .course-list li i {
color: var(--ed-color-common-white);
}
.course-item.dark-item .course-content .course-author-box .course-author .author-info .name {
color: var(--ed-color-common-white);
}
.course-item.dark-item .bottom-content .price {
color: var(--ed-color-common-white);
}
.course-item.dark-item .bottom-content .course-btn {
color: var(--ed-color-common-white);
border: 1px solid #2F373A;
}
.course-item.dark-item .bottom-content .course-btn:hover {
border: 1px solid var(--ed-color-theme-primary);
}
.course-item.dark-item.dark-item-2 {
background: #162726;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0px 7px 48px rgba(0, 0, 0, 0.15);
}
.course-nav {
border: none;
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 20px;
column-gap: 20px;
flex-wrap: wrap;
row-gap: 20px;
}
@media (max-width: 1200px) {
.course-nav {
justify-content: center;
}
}
.course-nav .nav-item .nav-link {
background-color: var(--ed-color-common-white);
padding: 10px 30px;
border-radius: 100px;
border: none;
color: var(--ed-color-heading-primary);
}
.course-nav .nav-item .nav-link.active {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
border: none;
}
.course-tab-content .tab-pane.active.show > div {
animation-duration: 1s;
animation-name: fade-in-bottom;
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-fill-mode: both;
transition: all 0.5s ease-in-out;
transition-duration: 1000ms;
animation-delay: 0.1s;
}
.course-top .swiper-arrow {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
}
.course-top .swiper-arrow .swiper-nav {
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #E0E5EB;
border-radius: 50%;
transition: all 0.3s ease-in-out;
}
.course-top .swiper-arrow .swiper-nav:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
border: 1px solid var(--ed-color-theme-primary);
}
.course-feature-item {
position: relative;
border-radius: 10px;
overflow: hidden;
}
.course-feature-item .course-feature-img {
height: 274px;
width: 100%;
}
.course-feature-item .course-feature-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.course-feature-item .content {
background-color: var(--ed-color-common-white);
width: 90%;
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
padding: 15px 20px;
border-radius: 10px;
transition: all 0.3s ease-in-out;
}
.course-feature-item .content .title {
font-size: 18px;
font-weight: 600;
margin-bottom: 0;
}
.course-feature-item .content span {
font-size: 14px;
font-weight: 500;
display: none;
transition: all 0.3s ease-in-out;
}
.course-feature-item:hover .content span {
display: block;
transition: all 0.3s ease-in-out;
}
.course-details-content {
border: 1px solid #E0E5EB;
padding: 30px 0;
border-radius: 10px;
}
.course-details-content .course-details-img {
height: 500px;
padding: 30px;
padding-top: 0;
}
@media only screen and (max-width: 767px) {
.course-details-content .course-details-img {
padding: 0 20px;
height: 350px;
margin-bottom: 30px;
}
}
.course-details-content .course-details-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.course-details-content .details-inner {
padding: 0 30px;
}
@media only screen and (max-width: 767px) {
.course-details-content .details-inner {
padding: 0 20px;
}
}
.course-details-content .details-meta {
margin-bottom: 20px;
}
.course-details-content .details-meta li {
background-color: var(--ed-color-theme-primary);
display: inline-flex;
color: var(--ed-color-common-white);
font-size: 14px;
font-weight: 500;
padding: 7px 15px;
border-radius: 100px;
line-height: 1;
}
.course-details-content .details-meta li:not(:last-of-type) {
margin-right: 10px;
}
.course-details-content .title {
font-size: 30px;
font-weight: 600;
margin-bottom: 20px;
}
@media (max-width: 1200px) {
.course-details-content .title br {
display: none;
}
}
@media only screen and (max-width: 767px) {
.course-details-content .title {
font-size: 24px;
}
}
.course-details-content .course-details-list {
display: flex;
align-items: center;
flex-wrap: wrap;
row-gap: 15px;
}
.course-details-content .course-details-list li {
font-size: 16px;
font-weight: 500;
color: var(--ed-color-heading-primary);
list-style: none;
position: relative;
line-height: 1;
}
.course-details-content .course-details-list li:not(:last-of-type) {
margin-right: 20px;
padding-right: 20px;
}
@media only screen and (max-width: 767px) {
.course-details-content .course-details-list li:not(:last-of-type) {
margin-right: 0;
margin-bottom: 10px;
}
}
.course-details-content .course-details-list li:not(:last-of-type):before {
background-color: #E0E5EB;
content: "";
width: 1px;
height: 20px;
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
.course-details-content .course-details-list li:not(:last-of-type):before {
display: none;
}
}
.course-details-content .course-details-list li i {
color: var(--ed-color-theme-primary);
margin-right: 10px;
}
.course-details-content .course-details-list li:not(:last-of-type) {
margin-right: 20px;
}
.course-details-content .course-details-list li img {
height: 35px;
width: 35px;
border-radius: 50%;
margin-right: 10px;
}
.course-details-content .course-details-list li span {
font-weight: 400;
color: var(--ed-color-theme-primary);
}
.course-details-content .course-details-list li.review-wrap {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
color: var(--ed-color-text-body);
}
.course-details-content .course-details-list li.review-wrap ul li {
display: inline-flex;
}
.course-details-content .course-details-list li.review-wrap ul li:not(:last-of-type) {
margin: 0;
padding: 0;
border: 0;
}
.course-details-content .course-details-list li.review-wrap ul li:not(:last-of-type):before {
display: none;
}
.course-details-content .course-details-list li.review-wrap ul li i {
margin-right: 0px;
}
.course-details-tab {
margin-top: 40px;
}
.course-details-tab .nav-tabs {
background-color: var(--ed-color-grey-1);
display: flex;
align-items: center;
justify-content: space-evenly;
}
@media only screen and (max-width: 767px) {
.course-details-tab .nav-tabs {
flex-direction: column;
border: none;
}
}
.course-details-tab .nav-tabs .nav-item {
width: 25%;
border: none;
}
.course-details-tab .nav-tabs .nav-item:not(:last-of-type) {
border-right: 1px solid #E0E5EB;
}
@media only screen and (max-width: 767px) {
.course-details-tab .nav-tabs .nav-item:not(:last-of-type) {
width: 100%;
border: none;
border-bottom: 1px solid #E0E5EB;
}
}
@media only screen and (max-width: 767px) {
.course-details-tab .nav-tabs .nav-item {
border-bottom: 1px solid #E0E5EB;
}
}
.course-details-tab .nav-tabs .nav-item .nav-link {
color: var(--ed-color-text-body);
width: 100%;
display: flex;
align-items: center;
justify-content: center;
-moz-column-gap: 10px;
column-gap: 10px;
font-size: 16px;
border: none;
border-radius: 0;
padding: 17px 20px;
position: relative;
border-top: 1px solid #E0E5EB;
border-bottom: 1px solid #E0E5EB;
}
@media only screen and (max-width: 767px) {
.course-details-tab .nav-tabs .nav-item .nav-link {
border: none;
}
}
.course-details-tab .nav-tabs .nav-item .nav-link:before {
background-color: var(--ed-color-theme-primary);
content: "";
width: 0;
height: 3px;
position: absolute;
top: -1.5px;
left: 0;
transition: all 0.4s ease-in-out;
}
.course-details-tab .nav-tabs .nav-item .nav-link.active {
background-color: var(--ed-color-grey-1);
color: var(--ed-color-theme-primary);
}
.course-details-tab .nav-tabs .nav-item .nav-link.active:before {
width: 100%;
}
.course-details-tab .tab-content .tab-overview {
padding: 30px;
padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
.course-details-tab .tab-content .tab-overview {
padding: 30px 20px 0 20px;
}
}
.course-details-tab .tab-content .curriculam-area {
padding: 30px;
padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
.course-details-tab .tab-content .curriculam-area {
padding: 30px 20px 0 20px;
}
}
.course-details-tab .tab-content .curriculam-area .accordion-item {
border: 1px solid #E0E5EB;
border-radius: 10px;
}
.course-details-tab .tab-content .curriculam-area .accordion-item:not(:last-of-type) {
margin-bottom: 20px;
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-button {
color: var(--ed-color-heading-primary);
font-size: 20px;
font-weight: 600;
border-radius: 10px;
border: none;
box-shadow: none;
}
@media only screen and (max-width: 767px) {
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-button {
font-size: 18px;
}
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-button:not(.collapsed) {
background-color: var(--ed-color-grey-1);
border-radius: 10px 10px 0 0;
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body {
padding: 30px;
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list {
list-style: none;
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li {
font-size: 16px;
color: var(--ed-color-heading-primary);
font-weight: 500;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 10px;
}
@media only screen and (max-width: 767px) {
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li {
font-size: 14px;
}
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li:not(:last-of-type) {
margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li:not(:last-of-type) {
padding-bottom: 15px;
border-bottom: 1px dashed #CED4E2;
}
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li span:nth-child(1) i {
color: var(--ed-color-theme-primary);
width: 30px;
}
@media only screen and (max-width: 767px) {
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li span:nth-child(1) i {
width: 25px;
}
}
.course-details-tab .tab-content .curriculam-area .accordion-item .accordion-body .curri-list li span:nth-child(2) i {
margin-left: 10px;
}
.course-details-tab .tab-content .team-wrap-2 {
padding: 30px;
padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
.course-details-tab .tab-content .team-wrap-2 {
padding: 30px 20px 0 20px;
}
}
.course-details-tab .tab-content .reviewr-wrap {
padding: 30px;
padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
.course-details-tab .tab-content .reviewr-wrap {
padding: 30px 20px 0 20px;
}
}
.course-details-tab .tab-content .reviewr-wrap .review-list .review-item {
display: grid;
align-items: center;
grid-template-columns: 90px 1fr;
grid-gap: 15px;
padding: 30px;
border: 1px solid var(--ed-color-border-1);
}
@media only screen and (max-width: 767px) {
.course-details-tab .tab-content .reviewr-wrap .review-list .review-item {
grid-template-columns: 1fr;
}
}
.course-details-tab .tab-content .reviewr-wrap .review-list .review-item:not(:last-of-type) {
margin-bottom: 30px;
}
.course-details-tab .tab-content .reviewr-wrap .review-list .review-item img {
height: 90px;
width: 90px;
border-radius: 50%;
}
.course-details-tab .tab-content .reviewr-wrap .review-list .review-item .content .content-top {
display: flex;
align-items: center;
align-items: baseline;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 20px;
}
.course-details-tab .tab-content .reviewr-wrap .review-list .review-item .content .content-top .name {
font-size: 18px;
font-weight: 500;
margin-bottom: 15px;
}
.course-details-tab .tab-content .reviewr-wrap .review-list .review-item .content .content-top .name span {
color: var(--ed-color-text-body);
font-size: 15px;
display: block;
margin-top: 7px;
}
.course-details-tab .tab-content .reviewr-wrap .review-list .review-item .content .content-top ul {
list-style: none;
}
.course-details-tab .tab-content .reviewr-wrap .review-list .review-item .content .content-top ul li {
display: inline-flex;
color: #FFC92E;
}
.course-details-tab .tab-content .reviewr-wrap .review-list .review-item .content .content-top ul li:not(:last-of-type) {
margin-right: 2px;
}
.course-details-tab .tab-content .reviewr-wrap .review-list .review-item .content p {
margin-bottom: 0;
}
.course-sidebar {
padding: 30px;
border: 1px solid #E0E5EB;
border-radius: 15px;
}
.course-sidebar:not(:last-of-type) {
margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
.course-sidebar {
padding: 30px 20px;
}
}
.course-sidebar.price-box .price {
color: var(--ed-color-heading-primary);
font-size: 30px;
font-weight: 700;
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
margin-bottom: 25px;
}
.course-sidebar.price-box .price span {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
padding: 5px 10px;
border-radius: 100px;
font-size: 12px;
font-weight: 600;
}
.course-sidebar.price-box .ed-primary-btn {
width: 100%;
justify-content: center;
border-radius: 5px;
text-transform: uppercase;
font-weight: 600;
}
.course-sidebar.price-box .ed-primary-btn.buy-btn {
background-color: transparent;
color: var(--ed-color-heading-primary);
border: 1px solid var(--ed-color-theme-primary);
margin-top: 10px;
}
.course-sidebar.price-box .ed-primary-btn.buy-btn:before {
background-color: var(--ed-color-theme-primary);
}
.course-sidebar.price-box .ed-primary-btn.buy-btn:hover {
color: var(--ed-color-common-white);
}
.course-sidebar .sidebar-title {
font-size: 24px;
font-weight: 600;
margin-bottom: 25px;
text-transform: capitalize;
}
.course-sidebar .course-sidebar-list {
list-style: none;
}
.course-sidebar .course-sidebar-list li {
color: #162726;
font-size: 16px;
font-weight: 500;
}
.course-sidebar .course-sidebar-list li span {
color: var(--ed-color-text-body);
margin-left: 5px;
}
.course-sidebar .course-sidebar-list li i {
color: var(--ed-color-theme-primary);
width: 25px;
}
.course-sidebar .course-sidebar-list li:nth-child(1) {
padding-top: 15px;
border-top: 1px dashed #CED4E2;
}
.course-sidebar .course-sidebar-list li:not(:last-of-type) {
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px dashed #CED4E2;
}
.course-sidebar .share-btn {
margin-top: 30px;
}
.course-sidebar .share-btn .ed-primary-btn {
background-color: var(--ed-color-grey-1);
width: 100%;
justify-content: center;
color: var(--ed-color-theme-primary);
border-radius: 5px;
font-weight: 600;
}
.course-sidebar .share-btn .ed-primary-btn i {
font-size: 18px;
margin-left: 0;
margin-right: 10px;
}  .counter-section {
background-color: var(--ed-color-theme-primary);
}
@media only screen and (max-width: 992px) {
.counter-section {
padding: 70px 0;
}
}
.counter-wrap {
display: flex;
align-items: center;
justify-content: space-between;
}
.counter-item {
text-align: center;
border-right: 1px solid #21BCAF;
padding: 120px 0;
}
@media only screen and (max-width: 992px) {
.counter-item {
padding: 0;
border: none;
}
}
.counter-item .title {
font-size: 40px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 5px;
}
.counter-item .title .odometer-auto-theme {
font-family: inherit;
line-height: 1;
}
.counter-item p {
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 0;
}
.counter-item.item-1 {
margin-right: auto;
margin-left: 0;
}
.counter-item.item-4 {
border-right: none;
}
.counter-card {
padding: 40px 20px 45px 20px;
border-radius: 10px;
border: 1px solid #E0E5EB;
}
.counter-card .title {
color: var(--ed-color-heading-primary);
font-size: 40px;
font-weight: 700;
line-height: 1;
margin-bottom: 5px;
font-family: var(--ed-ff-heading);
display: flex;
align-items: center;
justify-content: center;
}
.counter-card .title .odometer-auto-theme {
font-family: inherit;
line-height: 1;
}
.counter-card .title .number {
margin-top: -3px;
}
.counter-card p {
color: var(--ed-color-theme-primary);
font-size: 14px;
font-weight: 700;
margin-bottom: 0;
text-transform: uppercase;
line-height: 1;
}  .faq-img-wrap {
max-width: 515px;
width: 100%;
height: 542px;
position: relative;
}
@media only screen and (max-width: 992px) {
.faq-img-wrap {
margin: 0 auto;
}
}
.faq-img-wrap .faq-img {
max-width: 435px;
height: 542px;
width: 100%;
position: absolute;
top: 0;
right: 0;
}
.faq-img-wrap .faq-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 20px;
}
.faq-img-wrap .faq-text-box {
background-color: var(--ed-color-common-white);
box-shadow: 0px 4px 18px rgba(158, 165, 177, 0.23);
border-radius: 10px;
padding: 30px;
position: absolute;
bottom: 100px;
left: 0;
}
.faq-img-wrap .faq-text-box .faq-thumb-list {
display: flex;
align-items: center;
margin-top: 10px;
}
.faq-img-wrap .faq-text-box .faq-thumb-list li {
height: 56px;
width: 56px;
display: flex;
align-items: center;
justify-content: center;
border: 4px solid var(--ed-color-common-white);
border-radius: 50%;
}
.faq-img-wrap .faq-text-box .faq-thumb-list li:not(:last-of-type) {
margin-right: -30px;
}
.faq-img-wrap .faq-text-box .faq-thumb-list li img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.faq-img-wrap .faq-text-box .faq-thumb-list li.number {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
font-weight: 600;
}
@media only screen and (max-width: 992px) {
.faq-content {
margin-top: 40px;
}
}
.faq-content.content-1 {
max-width: 613px;
width: 100%;
padding-left: 40px;
}
@media only screen and (max-width: 992px) {
.faq-content.content-1 {
padding-left: 0;
max-width: 100%;
}
}
.faq-content .faq-accordion .accordion-item {
border: none;
}
.faq-content .faq-accordion .accordion-item .accordion-button {
padding-left: 0;
padding-right: 0;
background-color: transparent;
border: none;
box-shadow: none;
border-bottom: 1px solid transparent;
font-size: 18px;
font-weight: 600;
color: var(--ed-color-heading-primary);
}
.faq-content .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
border-bottom: 1px solid #E0E5EB;
}
.faq-content .faq-accordion .accordion-item .accordion-button span {
color: var(--ed-color-text-body);
margin-right: 10px;
}
.faq-content .faq-accordion .accordion-item .accordion-body {
padding-left: 0;
padding-right: 0;
}
.faq-content .faq-accordion .accordion-item .accordion-body p {
color: #6C706F;
}
.faq-img-wrap-2 {
max-width: 577px;
width: 100%;
height: 511px;
position: relative;
z-index: 1;
}
@media only screen and (max-width: 992px) {
.faq-img-wrap-2 {
margin: 0 auto;
}
}
.faq-img-wrap-2 .faq-img-1 {
max-width: 281px;
width: 100%;
height: 402px;
border-radius: 0 60px 0 60px;
position: absolute;
top: 0;
left: 0;
overflow: hidden;
z-index: 1;
}
.faq-img-wrap-2 .faq-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.faq-img-wrap-2 .faq-img-2 {
max-width: 270px;
width: 100%;
height: 241px;
border-radius: 60px 0 60px 0;
position: absolute;
top: 0;
right: 0;
overflow: hidden;
}
.faq-img-wrap-2 .faq-img-2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.faq-img-wrap-2 .faq-img-3 {
max-width: 270px;
width: 100%;
height: 245px;
border-radius: 60px 0 60px 0;
position: absolute;
bottom: 0;
right: 0;
overflow: hidden;
}
.faq-img-wrap-2 .faq-img-3 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.faq-img-wrap-2 .faq-text-box {
background-color: var(--ed-color-common-white);
box-shadow: 0px 4px 18px rgba(158, 165, 177, 0.23);
border-radius: 10px;
padding: 30px;
position: absolute;
bottom: 50px;
left: 60px;
z-index: 2;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
margin-top: 10px;
flex-wrap: wrap;
row-gap: 15px;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap .faq-thumb-list {
display: flex;
align-items: center;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li {
height: 56px;
width: 56px;
display: flex;
align-items: center;
justify-content: center;
border: 4px solid var(--ed-color-common-white);
border-radius: 50%;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li:not(:last-of-type) {
margin-right: -20px;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li.number {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
font-weight: 600;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap p {
color: var(--ed-color-heading-primary);
font-size: 18px;
font-weight: 400;
margin-bottom: 0;
line-height: 1;
}
.faq-img-wrap-2 .faq-text-box .faq-thumb-list-wrap p span {
color: var(--ed-color-theme-primary);
font-weight: 700;
}  .team-wrap {
background: #000;
max-width: 1760px;
width: 100%;
padding-left: 15px;
padding-right: 15px;
margin: 0 auto;
border-radius: 15px;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
.team-wrap {
padding-right: 0;
padding-left: 0;
}
}
.team-item {
position: relative;
border-radius: 10px;
overflow: hidden;
}
.team-item .team-thumb {
height: 355px;
position: relative;
}
.team-item .team-thumb img {
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.team-item .team-thumb:before {
background: rgba(22, 39, 38, 0.82);
mix-blend-mode: multiply;
-webkit-backdrop-filter: blur(0.5px);
backdrop-filter: blur(0.5px);
content: "";
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
transition: all 0.3s ease-in-out;
visibility: hidden;
opacity: 0;
}
.team-item .team-thumb .team-social {
position: absolute;
top: 38%;
left: 50%;
transform: translate(-50%, -50%);
}
.team-item .team-thumb .team-social li {
display: inline-flex;
transform: translateY(10px);
visibility: hidden;
opacity: 0;
transition: all 0.3s ease-in-out;
}
.team-item .team-thumb .team-social li:not(:last-of-type) {
margin-right: 5px;
}
.team-item .team-thumb .team-social li a {
background-color: var(--ed-color-common-white);
height: 45px;
width: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 14px;
color: var(--ed-color-theme-primary);
}
.team-item .team-thumb .team-social li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.team-item .team-thumb .team-social li:nth-child(2) {
transition-delay: 150ms;
}
.team-item .team-thumb .team-social li:nth-child(3) {
transition-delay: 200ms;
}
.team-item .team-thumb .team-social li:nth-child(4) {
transition-delay: 250ms;
}
.team-item .team-content {
background-color: var(--ed-color-common-white);
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 20px 30px;
}
.team-item .team-content .title {
font-size: 22px;
font-weight: 600;
margin-bottom: 5px;
}
.team-item .team-content span {
font-size: 16px;
color: var(--ed-color-theme-primary);
}
.team-item:hover .team-thumb:before {
visibility: visible;
opacity: 1;
}
.team-item:hover .team-thumb .team-social li {
transform: translateY(0);
visibility: visible;
opacity: 1;
}
.team-container {
max-width: 1690px;
width: 100%;
margin: 0 auto;
padding: 0 15px;
}
.team-item-2 {
border: 1px solid #E0E5EB;
padding: 10px;
border-radius: 15px;
}
.team-item-2 .team-thumb {
height: 400px;
position: relative;
overflow: hidden;
border-radius: 15px;
}
.team-item-2 .team-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
transition: all 0.3s ease-in-out;
}
.team-item-2 .team-thumb .team-content {
background: rgba(255, 255, 255, 0.01);
border: 1px solid rgba(255, 255, 255, 0.15);
-webkit-backdrop-filter: blur(45px);
backdrop-filter: blur(45px);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: space-between;
position: absolute;
bottom: 20px;
left: 50%;
width: 90%;
transform: translateX(-50%);
padding: 20px 30px;
}
@media only screen and (max-width: 767px) {
.team-item-2 .team-thumb .team-content {
padding: 20px;
}
}
.team-item-2 .team-thumb .team-content .instructor-info .title {
color: var(--ed-color-common-white);
font-weight: 600;
margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
.team-item-2 .team-thumb .team-content .instructor-info .title {
font-size: 20px;
}
}
.team-item-2 .team-thumb .team-content .instructor-info span {
color: var(--ed-color-common-white);
font-size: 16px;
font-weight: 400;
}
.team-item-2 .team-thumb .team-content .team-social {
position: relative;
}
.team-item-2 .team-thumb .team-content .team-social .expand {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
font-size: 15px;
height: 40px;
width: 40px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease-in-out;
border-radius: 50%;
cursor: pointer;
}
.team-item-2 .team-thumb .team-content .team-social .expand:hover {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
}
.team-item-2 .team-thumb .team-content .team-social .social-list {
position: absolute;
bottom: 55px;
right: 50%;
transform: translateX(50%);
list-style: none;
}
.team-item-2 .team-thumb .team-content .team-social .social-list li {
visibility: hidden;
opacity: 0;
transition: all 0.5s cubic-bezier(0.1, 0.75, 0.25, 1);
}
.team-item-2 .team-thumb .team-content .team-social .social-list li a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
font-size: 15px;
height: 40px;
width: 40px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease-in-out;
border-radius: 50%;
}
.team-item-2 .team-thumb .team-content .team-social .social-list li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.team-item-2 .team-thumb .team-content .team-social .social-list li:not(:last-of-type) {
margin-bottom: 10px;
}
.team-item-2 .team-thumb .team-content .team-social .social-list li:nth-child(4) {
transition-delay: 100ms;
}
.team-item-2 .team-thumb .team-content .team-social .social-list li:nth-child(3) {
transition-delay: 150ms;
}
.team-item-2 .team-thumb .team-content .team-social .social-list li:nth-child(2) {
transition-delay: 200ms;
}
.team-item-2 .team-thumb .team-content .team-social .social-list li:nth-child(1) {
transition-delay: 250ms;
}
.team-item-2 .team-thumb .team-content .team-social:hover .social-list li {
visibility: visible;
opacity: 1;
}
.team-item-2:hover .team-thumb img {
transform: scale(1.02);
}
.team-item-3 {
text-align: center;
padding: 50px 30px;
border: 1px solid #E0E5EB;
border-radius: 15px;
}
@media (max-width: 1200px) {
.team-item-3 {
padding: 40px 20px;
}
}
.team-item-3 .team-thumb-wrap {
height: 192px;
width: 192px;
border: 1px solid #E0E5EB;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
margin-bottom: 20px;
transition: all 0.3s ease-in-out;
}
.team-item-3 .team-thumb-wrap img {
height: 152px;
width: 152px;
-o-object-fit: cover;
object-fit: cover;
}
.team-item-3 .team-content .title {
font-size: 22px;
margin-bottom: 0;
}
.team-item-3 .team-content span {
color: var(--ed-color-theme-primary);
font-weight: 400;
display: block;
margin-top: 5px;
}
.team-item-3 .social-list {
margin-top: 20px;
}
.team-item-3 .social-list li {
display: inline-flex;
}
.team-item-3 .social-list li:not(:last-of-type) {
margin-right: 5px;
}
.team-item-3 .social-list li a {
color: var(--ed-color-theme-primary);
height: 40px;
width: 40px;
border: 1px solid #E0E5EB;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.team-item-3 .social-list li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
border: 1px solid var(--ed-color-theme-primary);
}
.team-item-3:hover .team-thumb-wrap {
border: 1px solid var(--ed-color-theme-primary);
}
.team-item-4 {
position: relative;
z-index: 1;
border-radius: 10px;
overflow: hidden;
}
.team-item-4 .team-thumb {
height: 350px;
}
.team-item-4 .team-thumb .overlay {
background: linear-gradient(180deg, rgba(11, 27, 26, 0) 0%, #0B1B1A 89.43%);
width: 100%;
height: 100%;
position: absolute;
bottom: 0;
left: 0;
z-index: 2;
visibility: hidden;
opacity: 0;
transition: all 0.3s ease-in-out;
}
.team-item-4 .team-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.team-item-4 .team-content {
position: absolute;
left: 30px;
bottom: 20px;
visibility: hidden;
opacity: 0;
transition: all 0.3s ease-in-out;
z-index: 5;
}
.team-item-4 .team-content .title {
color: var(--ed-color-common-white);
font-size: 24px;
font-weight: 600;
margin-bottom: 5px;
}
.team-item-4 .team-content span {
font-family: var(--ed-ff-heading);
color: var(--ed-color-common-white);
font-size: 14px;
font-weight: 400;
}
.team-item-4 .team-content .team-social {
border-top: 1px solid rgba(255, 255, 255, 0.13);
margin-top: 10px;
padding-top: 20px;
}
.team-item-4 .team-content .team-social li {
display: inline-flex;
}
.team-item-4 .team-content .team-social li:not(:last-of-type) {
margin-right: 10px;
}
.team-item-4 .team-content .team-social li a {
color: var(--ed-color-common-white);
}
.team-item-4:hover .team-thumb .overlay {
visibility: visible;
opacity: 1;
}
.team-item-4:hover .team-content {
bottom: 30px;
visibility: visible;
opacity: 1;
}
.team-item-5 {
padding: 0;
}
.team-item-5 .team-thumb {
position: relative;
z-index: 1;
height: 300px;
overflow: hidden;
}
.team-item-5 .team-thumb .shape {
width: 100%;
height: 100%;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
z-index: -1;
}
.team-item-5 .team-thumb .shape img {
width: 100%;
height: 100%;
}
.team-item-5 .team-thumb .team-men {
width: 100%;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
.team-item-5 .team-thumb .team-men img {
filter: saturate(0);
transition: all 0.3s ease-in-out;
}
.team-item-5 .team-content {
padding: 30px 0;
}
.team-item-5:hover .team-thumb .team-men img {
filter: saturate(1);
}  .hero-section {
background-color: #EFF2F9;
padding: 100px 0;
position: relative;
z-index: 1;
}
@media only screen and (max-width: 767px) {
.hero-section {
padding: 70px 0;
}
}
.hero-section .shapes .shape {
position: absolute;
z-index: -1;
}
.hero-section .shapes .shape.shape-1 {
bottom: 70px;
left: 70px;
animation: about-anim 2s infinite linear alternate-reverse;
}
.hero-section .shapes .shape.shape-2 {
bottom: 0;
left: 50%;
}
.hero-section .shapes .shape.shape-3 {
top: 0;
left: 0;
}
.hero-content .section-heading .section-title {
font-size: 50px;
font-weight: 600;
}
@media only screen and (max-width: 767px) {
.hero-content .section-heading .section-title {
font-size: 36px;
}
}
.hero-content .section-heading .section-title span {
color: var(--ed-color-theme-primary);
font-weight: 400;
}
.hero-content .hero-btn-wrap {
display: flex;
align-items: center;
flex-wrap: wrap;
row-gap: 15px;
-moz-column-gap: 30px;
column-gap: 30px;
margin-bottom: 40px;
}
.hero-content .hero-btn-wrap .hero-video a {
color: var(--ed-color-heading-primary);
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
font-size: 16px;
font-weight: 500;
}
.hero-content .hero-btn-wrap .hero-video a i {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.hero-content .hero-author {
display: flex;
align-items: center;
-moz-column-gap: 15px;
column-gap: 15px;
flex-wrap: wrap;
row-gap: 15px;
margin-bottom: 20px;
}
.hero-content .hero-author ul li {
display: inline-flex;
border: 1px solid var(--ed-color-common-white);
border-radius: 50%;
}
.hero-content .hero-author ul li:not(:last-of-type) {
margin-right: -20px;
}
.hero-content .hero-author h5 {
font-size: 16px;
font-weight: 400;
}
.hero-content .hero-author h5 span {
color: var(--ed-color-theme-primary);
margin-right: 5px;
}
.hero-content .bottom-text {
font-size: 24px;
font-weight: 600;
}
.hero-content .bottom-text span {
color: var(--ed-color-theme-primary);
}
.hero-img-wrap {
max-width: 544px;
width: 100%;
height: 550px;
position: relative;
}
@media only screen and (max-width: 992px) {
.hero-img-wrap {
margin: 0 auto;
margin-top: 50px;
}
}
.hero-img-wrap .hero-img {
max-width: 464px;
width: 100%;
height: 550px;
position: absolute;
top: 0;
right: 0;
border-radius: 70px;
overflow: hidden;
}
@media only screen and (max-width: 992px) {
.hero-img-wrap .hero-img {
right: auto;
left: 50%;
transform: translateX(-50%);
}
}
.hero-img-wrap .hero-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.hero-img-wrap .hero-img-shape {
position: absolute;
top: 30%;
right: -110px;
transform: translateY(-50%);
animation: hero-anim 2s infinite linear alternate-reverse;
}
@media only screen and (max-width: 992px) {
.hero-img-wrap .hero-img-shape {
right: -50px;
}
}
.hero-img-wrap .hero-text-element {
background-color: var(--ed-color-common-white);
padding: 15px 30px;
position: absolute;
bottom: 30%;
left: -40px;
border-radius: 10px;
animation: about-anim 2s infinite linear alternate-reverse;
}
.hero-img-wrap .hero-text-element .title {
font-family: var(--ed-ff-heading);
color: var(--ed-color-theme-primary);
font-size: 36px;
font-weight: 600;
margin-bottom: 0;
line-height: 1;
display: flex;
align-items: center;
}
.hero-img-wrap .hero-text-element .title .odometer-auto-theme {
line-height: 1;
font-family: inherit;
}
.hero-img-wrap .hero-text-element p {
font-size: 14px;
font-weight: 600;
margin-bottom: 0;
text-transform: uppercase;
color: var(--ed-color-heading-primary);
}
.hero-section-2 {
position: relative;
z-index: 1;
overflow-x: clip;
}
.hero-section-2 .hero-bg-wrap {
height: 790px;
position: absolute;
top: 0;
right: 0;
}
@media (max-width: 1399px) {
.hero-section-2 .hero-bg-wrap {
right: -16%;
}
}
@media (max-width: 1200px) {
.hero-section-2 .hero-bg-wrap {
right: -32%;
}
}
@media only screen and (max-width: 992px) {
.hero-section-2 .hero-bg-wrap {
display: none;
}
}
.hero-section-2 .hero-bg-wrap .hero-bg {
border-bottom-left-radius: 100px;
overflow: hidden;
}
.hero-section-2 .hero-bg-wrap .hero-bg-shape {
position: absolute;
top: 0;
right: 0;
height: 100%;
z-index: -1;
}
.hero-section-2 .hero-bg-wrap .hero-bg-shape img {
height: 100%;
}
.hero-section-2 .hero-bg-wrap .faq-text-box {
background-color: var(--ed-color-common-white);
box-shadow: 0px 4px 18px rgba(158, 165, 177, 0.23);
border-radius: 10px;
padding: 30px;
position: absolute;
bottom: 25%;
left: 0px;
z-index: 2;
animation: about-anim 2s infinite linear alternate-reverse;
}
@media (max-width: 1600px) {
.hero-section-2 .hero-bg-wrap .faq-text-box {
left: 90px;
}
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
margin-top: 10px;
flex-wrap: wrap;
row-gap: 15px;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap .faq-thumb-list {
display: flex;
align-items: center;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li {
height: 44px;
width: 44px;
display: flex;
align-items: center;
justify-content: center;
border: 4px solid var(--ed-color-common-white);
border-radius: 50%;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li:not(:last-of-type) {
margin-right: -20px;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap .faq-thumb-list li.number {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
font-weight: 600;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap p {
color: var(--ed-color-heading-primary);
font-size: 18px;
font-weight: 400;
margin-bottom: 0;
line-height: 1;
}
.hero-section-2 .hero-bg-wrap .faq-text-box .faq-thumb-list-wrap p span {
color: var(--ed-color-theme-primary);
font-weight: 700;
}
.hero-section-2 .hero-bg-wrap .hero-text-box {
background-color: var(--ed-color-common-white);
display: grid;
align-items: center;
grid-template-columns: 45px 1fr;
grid-gap: 10px;
padding: 10px;
position: absolute;
top: 30%;
animation: about-anim 1s infinite linear alternate-reverse;
border: 1px solid #E0E5EB;
border-radius: 5px;
}
.hero-section-2 .hero-bg-wrap .hero-text-box .icon {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
height: 45px;
width: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
}
.hero-section-2 .hero-bg-wrap .hero-text-box .content .text-title {
font-size: 20px;
font-weight: 600;
margin-bottom: 0;
}
.hero-section-2 .hero-bg-wrap .hero-text-box .content span {
color: var(--ed-color-text-body);
font-size: 14px;
}
.hero-section-2 .shapes .shape {
position: absolute;
}
.hero-section-2 .shapes .shape.shape-1 {
top: 0;
left: 0;
z-index: -1;
}
.hero-section-2 .shapes .shape.shape-2 {
top: -5%;
left: -10%;
z-index: -2;
}
.hero-content-2 {
padding: 140px 0 220px 0;
}
@media only screen and (max-width: 992px) {
.hero-content-2 {
padding: 100px 0;
}
}
.hero-content-2 .section-heading .section-title {
font-size: 54px;
}
@media only screen and (max-width: 992px) {
.hero-content-2 .section-heading .section-title {
font-size: 40px;
}
.hero-content-2 .section-heading .section-title br {
display: block;
}
}
@media only screen and (max-width: 767px) {
.hero-content-2 .section-heading .section-title {
font-size: 36px;
}
}
.hero-content-2 .desc {
margin-bottom: 40px;
}
.hero-content-2 .hero-form {
max-width: 600px;
width: 100%;
position: relative;
margin-bottom: 50px;
}
.hero-content-2 .hero-form .form-control {
background-color: var(--ed-color-common-white);
padding: 19px 40px;
box-shadow: none;
border: 1px solid #E0E5EB;
border-radius: 100px;
border: 1px solid #E0E5EB;
box-shadow: 0px 11px 41px 3px rgba(23, 67, 63, 0.12);
padding-left: 50px;
padding-right: 220px;
}
@media only screen and (max-width: 767px) {
.hero-content-2 .hero-form .form-control {
padding-right: 50px;
}
}
.hero-content-2 .hero-form button {
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
.hero-content-2 .hero-form button {
position: relative;
top: 0;
right: auto;
left: 0;
transform: translate(0);
margin-top: 10px;
}
}
.hero-content-2 .hero-form .icon {
position: absolute;
top: 50%;
left: 25px;
transform: translateY(-50%);
font-size: 14px;
color: var(--ed-color-heading-primary);
}
@media only screen and (max-width: 767px) {
.hero-content-2 .hero-form .icon {
top: 28%;
}
}
.hero-content-2 .about-counter-items .about-counter-item .title {
color: var(--ed-color-heading-primary);
}
.hero-3 {
background-color: #0E2C31;
padding: 0;
position: relative;
z-index: 1;
overflow: hidden;
}
.hero-3 .hero-bottom-shape {
position: absolute;
bottom: 0;
left: 0;
}
@media only screen and (max-width: 992px) {
.hero-3 .hero-bottom-shape {
display: none;
}
}
.hero-3 .hero-shapes .shape {
position: absolute;
z-index: -1;
}
.hero-3 .hero-shapes .shape.shape-1 {
top: 0;
right: 0;
opacity: 0.2;
width: 100%;
height: 100%;
}
.hero-3 .hero-shapes .shape.shape-1 img {
width: 100%;
height: 100%;
}
.hero-3 .hero-shapes .shape.shape-2 {
top: 50px;
left: 0;
opacity: 0.2;
}
.hero-3 .hero-shapes .shape.shape-3 {
bottom: 0;
left: 0;
}
.hero-3 .hero-img-wrap-3 {
position: absolute;
top: -60px;
right: 16%;
z-index: -1;
}
@media (max-width: 1600px) {
.hero-3 .hero-img-wrap-3 {
right: 5%;
}
}
@media (max-width: 1200px) {
.hero-3 .hero-img-wrap-3 {
right: -16%;
}
}
@media only screen and (max-width: 992px) {
.hero-3 .hero-img-wrap-3 {
display: none;
}
}
.hero-content-3 {
padding: 170px 0 250px 0;
}
@media only screen and (max-width: 992px) {
.hero-content-3 {
padding: 100px 0;
}
}
.hero-content-3 .section-heading .section-title {
color: var(--ed-color-common-white);
}
@media only screen and (max-width: 767px) {
.hero-content-3 .section-heading .section-title {
font-size: 36px;
}
}
.hero-content-3 p {
color: var(--ed-color-common-white);
margin-bottom: 40px;
}
.hero-content-3 ul {
list-style: none;
display: flex;
align-items: center;
flex-wrap: wrap;
row-gap: 15px;
-moz-column-gap: 35px;
column-gap: 35px;
margin-bottom: 40px;
}
.hero-content-3 ul li {
font-size: 20px;
font-weight: 500;
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
color: var(--ed-color-common-white);
}
.hero-content-3 .hero-btn-wrap .hero-btn-2 {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
}
.hero-content-3 .hero-btn-wrap .hero-btn-2:before {
background-color: var(--ed-color-theme-primary);
}
.hero-content-3 .hero-btn-wrap .hero-btn-2:hover {
color: var(--ed-color-common-white);
}
.hero-img-wrap-3 {
max-width: 677px;
width: 100%;
}
.hero-img-wrap-3 .hero-img {
width: 100%;
}
.hero-img-wrap-3 .hero-img img {
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.hero-4 {
background-color: #0E2C31;
padding: 325px 0 150px 0;
}
@media only screen and (max-width: 992px) {
.hero-4 {
padding: 250px 0 100px 0;
}
}
@media only screen and (max-width: 767px) {
.hero-4 {
padding: 170px 0 100px 0;
}
}
.hero-4 .shapes .shape.shape-1 {
top: 50%;
transform: translateY(-50%);
bottom: auto;
left: 20px;
}
.hero-4 .shapes .shape.shape-2 {
right: 200px;
}
.hero-4 .shapes .shape.shape-3 {
left: 50px;
}
.hero-4 .shapes .shape.shape-4 {
top: 0;
right: 0;
}
.hero-content-4 {
padding: 0;
}
@media only screen and (max-width: 767px) {
.hero-content-4 .section-heading .section-title {
font-size: 36px;
}
}
.hero-content-4 .section-heading .section-title span {
color: var(--ed-color-common-white);
font-weight: 200;
}
.hero-content-4 .bottom-title {
font-size: 20px;
font-weight: 400;
color: var(--ed-color-common-white);
margin: 30px 0 40px 0;
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn {
background-color: transparent;
border: 1px solid var(--ed-color-common-white);
padding: 11px 10px 11px 30px;
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn:before {
background-color: var(--ed-color-common-white);
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn:hover {
color: var(--ed-color-heading-primary);
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn span {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
height: 30px;
width: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 4px solid var(--ed-color-theme-primary);
margin-left: 15px;
transition: all 0.3s ease-in-out;
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn span i {
margin: 0;
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn.active {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn.active:before {
background-color: var(--ed-color-theme-primary);
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn.active:hover {
color: var(--ed-color-common-white);
border: 1px solid var(--ed-color-theme-primary);
}
.hero-content-4 .hero-btn-wrap .ed-primary-btn.active:hover span {
background-color: var(--ed-color-theme-primary);
border-color: var(--ed-color-common-white);
color: var(--ed-color-common-white);
}
.hero-img-wrap-2 {
background-color: var(--ed-color-common-white);
max-width: 628px;
width: 100%;
height: 470px;
position: relative;
border-radius: 20px;
position: relative;
border: 10px solid var(--ed-color-common-white);
}
@media only screen and (max-width: 992px) {
.hero-img-wrap-2 {
margin: 0 auto;
}
}
.hero-img-wrap-2 .hero-img {
width: 100%;
height: 100%;
}
.hero-img-wrap-2 .hero-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 20px;
overflow: hidden;
}
.hero-img-wrap-2 .img-shape {
position: absolute;
top: -80px;
left: -80px;
z-index: -1;
}
.hero-img-wrap-2 .img-shape-2 {
position: absolute;
bottom: -120px;
right: -120px;
z-index: -1;
}
.hero-img-wrap-2 .hero-contact-list {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
list-style: none;
}
.hero-img-wrap-2 .hero-contact-list li:not(:last-of-type) {
margin-right: 20px;
}
@media only screen and (max-width: 767px) {
.hero-img-wrap-2 .hero-contact-list li:not(:last-of-type) {
margin-right: 10px;
}
}
.hero-img-wrap-2 .hero-contact-list li a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
height: 55px;
width: 55px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 18px;
}
.hero-img-wrap-2 .hero-contact-list li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.hero-section-5 {
background-color: #F0F4F5;
position: relative;
z-index: 1;
overflow: hidden;
}
.hero-section-5 .bg-item .hero-shape {
position: absolute;
z-index: -1;
}
.hero-section-5 .bg-item .hero-shape.shape-1 {
top: 50%;
left: 0;
transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
.hero-section-5 .bg-item .hero-shape.shape-1 {
top: auto;
bottom: 0;
transform: translate(0);
}
}
.hero-section-5 .bg-item .hero-shape.shape-2 {
top: 0;
right: 0;
}
.hero-section-5 .bg-item .hero-shape.shape-3 {
top: 20%;
left: 7%;
transform: translateY(-50%);
animation: hero-anim 2s infinite linear alternate-reverse;
}
@media (max-width: 1200px) {
.hero-section-5 .bg-item .hero-shape.shape-3 {
display: none;
}
}
.hero-section-5 .bg-item .hero-shape.shape-4 {
top: 15%;
right: 7%;
transform: translateY(-50%);
animation: about-anim 2s infinite linear alternate-reverse;
}
@media (max-width: 1700px) {
.hero-section-5 .bg-item .hero-shape.shape-4 {
right: 3%;
}
}
@media (max-width: 1399px) {
.hero-section-5 .bg-item .hero-shape.shape-4 {
display: none;
}
}
.hero-section-5 .hero-men-wrap .hero-men {
position: absolute;
z-index: -1;
}
@media (max-width: 1200px) {
.hero-section-5 .hero-men-wrap .hero-men {
display: none;
}
}
.hero-section-5 .hero-men-wrap .hero-men.men-1 {
bottom: 0;
left: 50px;
}
@media (max-width: 1399px) {
.hero-section-5 .hero-men-wrap .hero-men.men-1 {
left: 0;
}
}
.hero-section-5 .hero-men-wrap .hero-men.men-2 {
bottom: 0;
right: 30px;
}
@media (max-width: 1600px) {
.hero-section-5 .hero-men-wrap .hero-men.men-2 {
right: 0;
}
}
@media (max-width: 1399px) {
.hero-section-5 .hero-men-wrap .hero-men.men-2 {
right: -120px;
}
}
.hero-content-5 {
padding: 179px 0;
}
@media only screen and (max-width: 992px) {
.hero-content-5 {
padding: 100px 0;
}
}
.hero-content-5 .title {
margin-bottom: 10px;
}
@media only screen and (max-width: 992px) {
.hero-content-5 .title {
font-size: 50px;
}
}
@media only screen and (max-width: 767px) {
.hero-content-5 .title {
font-size: 40px;
margin-bottom: 20px;
}
}
.hero-content-5 .title span {
color: var(--ed-color-theme-primary);
}
.hero-content-5 p {
margin-bottom: 40px;
}
.hero-content-5 .hero-form {
max-width: 790px;
margin: 0 auto;
width: 100%;
position: relative;
}
.hero-content-5 .hero-form .form-control {
padding: 19px 40px;
padding-right: 190px;
box-shadow: none;
border: 1px solid #E0E5EB;
border-radius: 100px;
}
@media only screen and (max-width: 767px) {
.hero-content-5 .hero-form .form-control {
padding-right: 40px;
}
}
.hero-content-5 .hero-form button {
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
.hero-content-5 .hero-form button {
position: relative;
top: 0;
right: auto;
left: 0;
transform: translate(0);
margin-top: 10px;
}
}
.hero-content-5 .hero-form .icon {
position: absolute;
top: 50%;
left: 20px;
transform: translateY(-50%);
font-size: 14px;
color: var(--ed-color-heading-primary);
}
.hero-content-5 .bottom-title {
margin-top: 40px;
margin-bottom: 0;
}
.hero-content-5 .bottom-title span {
color: var(--ed-color-theme-primary);
}
@keyframes hero-anim {
0% {
transform: translateY(0);
}
100% {
transform: translateY(15px);
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes about-anim {
0% {
transform: translateX(0);
}
100% {
transform: translateX(15px);
}
}  .content-img-wrap {
max-width: 634px;
width: 100%;
height: 608px;
position: relative;
}
@media only screen and (max-width: 992px) {
.content-img-wrap {
margin: 0 auto;
}
}
.content-img-wrap .content-img-1 {
max-width: 302px;
width: 100%;
height: 480px;
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
border-radius: 60px 0 60px 0;
overflow: hidden;
z-index: 1;
}
.content-img-wrap .content-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.content-img-wrap .content-img-2 {
max-width: 302px;
width: 100%;
height: 294px;
overflow: hidden;
border-radius: 0 60px 0 60px;
position: absolute;
top: 0;
right: 0;
z-index: 1;
}
.content-img-wrap .content-img-2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.content-img-wrap .content-img-3 {
max-width: 302px;
width: 100%;
height: 294px;
overflow: hidden;
border-radius: 60px 0 60px 0;
position: absolute;
bottom: 0;
right: 0;
z-index: 1;
}
.content-img-wrap .content-img-3 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.content-img-wrap .border-shape {
max-width: 347px;
width: 100%;
height: 552px;
border: 1px solid var(--ed-color-theme-primary);
border-radius: 60px 0 60px;
position: absolute;
top: 50%;
left: 15%;
transform: translateY(-50%);
}
.content-info {
margin-left: 45px;
}
@media only screen and (max-width: 992px) {
.content-info {
margin-left: 0;
margin-top: 40px;
}
}
.content-item {
display: grid;
align-items: center;
grid-template-columns: 85px 1fr;
padding: 30px;
border: 1px solid #E0E5EB;
border-radius: 10px;
grid-gap: 20px;
transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
.content-item {
grid-template-columns: 1fr;
}
}
.content-item .icon {
background-color: #ECF3F8;
height: 85px;
width: 85px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease-in-out;
}
.content-item .icon img {
transition: all 0.3s ease-in-out;
}
.content-item .content p {
margin-bottom: 0;
}
.content-item:hover {
border: 1px solid transparent;
box-shadow: 0px 10px 28px rgba(19, 36, 39, 0.13);
}
.content-item:hover .icon {
background-color: var(--ed-color-theme-primary);
}
.content-item:hover .icon img {
filter: brightness(0) invert(1);
}
.content-img-wrap-2 {
background: #FFFFFF;
box-shadow: 0px 4px 16px #EBEEF3;
border-radius: 10px;
padding: 20px;
max-width: 628px;
width: 100%;
height: 485px;
position: relative;
z-index: 1;
}
@media only screen and (max-width: 992px) {
.content-img-wrap-2 {
margin: 0 auto;
}
}
.content-img-wrap-2 .content-img {
height: 100%;
width: 100%;
}
.content-img-wrap-2 .content-img img {
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.content-img-wrap-2 .video-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.content-img-wrap-2 .video-btn a {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
height: 100px;
width: 100px;
font-size: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1;
}
.content-img-wrap-2 .video-btn a .ripple {
height: 100px;
width: 100px;
}
.content-img-wrap-2 .video-btn a .ripple:before, .content-img-wrap-2 .video-btn a .ripple:after {
height: 100px;
width: 100px;
}
.content-info-2 {
padding-left: 20px;
}
@media only screen and (max-width: 992px) {
.content-info-2 {
padding-left: 0;
margin-top: 40px;
}
}
.content-info-2 .content-list {
margin-top: 30px;
margin-bottom: 40px;
}
.content-info-2 .content-list li {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
font-size: 16px;
font-weight: 500;
color: var(--ed-color-heading-primary);
}
.content-info-2 .content-list li:not(:last-of-type) {
margin-bottom: 10px;
}
.content-info-2 .content-list li i {
color: var(--ed-color-theme-primary);
}  .request-section {
background-color: #191A1F;
position: relative;
z-index: 1;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
overflow: hidden;
}
.request-section .bg-img {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-size: contain;
height: 513px;
max-width: 845px;
width: 100%;
position: absolute;
top: 50%;
left: 50px;
transform: translateY(-50%);
z-index: -1;
}
@media (max-width: 1700px) {
.request-section .bg-img {
max-width: 700px;
}
}
@media (max-width: 1600px) {
.request-section .bg-img {
max-width: 600px;
}
}
@media (max-width: 1200px) {
.request-section .bg-img {
display: none;
}
}
.request-section .bg-img:before {
background-color: var(--ed-color-theme-primary);
content: "";
height: 220px;
width: 100px;
position: absolute;
bottom: 100px;
right: -20px;
opacity: 0.06;
-webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
border-radius: 15px;
}
.request-section .shape {
position: absolute;
top: 50px;
right: 30px;
z-index: -1;
}
.request-content p {
color: #9FA0A0;
max-width: 650px;
width: 100%;
}
.request-content .request-form-wrapper {
max-width: 650px;
width: 100%;
margin-bottom: 30px;
}
.request-content .request-form-wrapper .form-items {
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 10px;
column-gap: 10px;
flex-wrap: wrap;
row-gap: 15px;
}
@media (max-width: 1200px) {
.request-content .request-form-wrapper .form-items {
justify-content: start;
}
}
.request-content .request-form-wrapper .form-items .form-item {
max-width: 300px;
width: 100%;
}
.request-content .request-form-wrapper .form-items .form-item .form-control {
background-color: transparent;
box-shadow: none;
outline: none;
border: 1px solid #3D3E44;
border-radius: 100px;
color: var(--ed-color-common-white);
padding: 14px 30px;
}
.request-content .request-form-wrapper .form-items .form-item .form-control::-webkit-input-placeholder {
color: var(--ed-color-common-white);
}
.request-content .request-form-wrapper .form-items .form-item .form-control:-moz-placeholder {
color: var(--ed-color-common-white);
}
.request-content .request-form-wrapper .form-items .form-item .form-control::-moz-placeholder {
color: var(--ed-color-common-white);
}
.request-content .request-form-wrapper .form-items .form-item .form-control:-ms-input-placeholder {
color: var(--ed-color-common-white);
}  .feature-wrap {
background-color: var(--ed-color-bg-2);
max-width: 1680px;
margin: 0 auto;
width: 100%;
border-radius: 20px;
}
.feature-item {
background-color: #1F2026;
padding: 30px 20px;
border: 1px solid #24252B;
border-radius: 10px;
transition: all 0.3s ease-in-out;
}
.feature-item .icon {
background-color: var(--ed-color-bg-2);
height: 91px;
width: 91px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 1px solid #2E2F36;
}
.feature-item .title {
font-size: 20px;
color: var(--ed-color-common-white);
margin: 25px 0 25px 0;
}
.feature-item .feature-btn {
color: var(--ed-color-common-white);
height: 45px;
width: 45px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--ed-color-common-white);
border-radius: 50%;
margin: 0 auto;
}
.feature-item .feature-btn:hover {
background-color: var(--ed-color-theme-primary);
border: 1px solid var(--ed-color-theme-primary);
}
.feature-item:hover {
transform: translateY(-10px);
}
.feature-card {
background-color: var(--ed-color-common-white);
border: 1px solid #E0E5EB;
box-shadow: 0px 13px 58px 4px rgba(25, 30, 29, 0.07);
border-radius: 10px;
padding: 60px 40px;
transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
.feature-card {
padding: 40px 20px;
}
}
.feature-card .icon {
display: flex;
align-items: center;
justify-content: center;
height: 130px;
width: 130px;
margin: 0 auto;
margin-bottom: 35px;
border: 1px solid #E0E5EB;
border-radius: 50%;
}
.feature-card .content p {
margin: 20px 0 30px 0;
}
.feature-card .content .ed-primary-btn {
background-color: transparent;
color: var(--ed-color-text-body);
border: 1px solid #E0E5EB;
}
.feature-card .content .ed-primary-btn:before {
background-color: var(--ed-color-theme-primary);
}
.feature-card .content .ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
.feature-card:hover {
transform: translateY(-10px);
}
.event-item {
border-radius: 15px;
overflow: hidden;
}
.event-item .event-thumb {
height: 276px;
position: relative;
overflow: hidden;
}
.event-item .event-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px 15px 0 0;
transition: all 0.3s ease-in-out;
}
.event-item .event-thumb .date-wrap {
position: absolute;
top: 0;
left: 0;
}
.event-item .event-thumb .date-wrap .date {
background-color: var(--ed-color-theme-primary);
font-size: 35px;
color: var(--ed-color-common-white);
font-weight: 700;
margin-bottom: 0;
text-align: center;
padding: 10px 25px;
border-radius: 15px 0 15px 0;
}
.event-item .event-thumb .date-wrap .date span {
display: block;
font-size: 16px;
}
.event-item .event-content {
background-color: #F2F4F7;
padding: 30px;
}
.event-item .event-content .time {
background-color: rgba(7, 166, 152, 0.1);
color: var(--ed-color-theme-primary);
font-size: 14px;
font-weight: 600;
padding: 5px 15px;
border-radius: 100px;
display: inline-flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
margin-bottom: 20px;
}
.event-item .event-content .title {
font-size: 22px;
font-weight: 600;
margin-bottom: 20px;
line-height: 1.5;
}
.event-item .event-content .location {
margin-bottom: 30px;
}
.event-item .event-content .location span {
display: inline-flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
font-weight: 400;
}
.event-item .event-content .location span i {
color: var(--ed-color-theme-primary);
}
.event-item .event-content .ed-primary-btn {
background-color: var(--ed-color-common-white);
color: var(--ed-color-text-body);
border: 1px solid #E0E5EB;
}
.event-item .event-content .ed-primary-btn:before {
background-color: var(--ed-color-theme-primary);
}
.event-item .event-content .ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
.event-item:hover .event-thumb img {
transform: scale(1.03);
}
.feature-section-5 {
background-color: #F0F4F5;
}
.feature-card-2 .icon {
background-color: #F2F4F7;
}  .cta-section {
background-color: #161E27;
position: relative;
z-index: 1;
}
@media only screen and (max-width: 992px) {
.cta-section {
padding: 100px 0;
}
}
@media only screen and (max-width: 767px) {
.cta-section {
padding: 70px 0;
}
}
.cta-section .cta-bg-img {
position: absolute;
top: 0;
right: 0;
width: auto;
height: 100%;
z-index: -1;
}
@media (max-width: 1200px) {
.cta-section .cta-bg-img {
width: 100%;
}
}
@media only screen and (max-width: 767px) {
.cta-section .cta-bg-img {
display: none;
}
}
.cta-section .cta-bg-img img {
width: 100%;
height: 100%;
-o-object-fit: contain;
object-fit: contain;
filter: saturate(0);
}
@media (max-width: 1200px) {
.cta-section .cta-bg-img img {
-o-object-fit: cover;
object-fit: cover;
}
}
.cta-section .cta-bg-img:before {
background: linear-gradient(90deg, #161E27 14.89%, rgba(22, 30, 39, 0.2) 100%);
content: "";
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.cta-section .shapes .shape-1 {
position: absolute;
top: 0;
left: 70px;
z-index: -1;
}
.cta-section .shapes .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
mix-blend-mode: multiply;
}
@media only screen and (max-width: 767px) {
.cta-section .shapes .shape-2 {
display: none;
}
}
.cta-content {
max-width: 871px;
width: 100%;
}
.cta-content .title {
color: var(--ed-color-common-white);
font-size: 40px;
font-weight: 600;
}
@media only screen and (max-width: 992px) {
.cta-content .title {
font-size: 36px;
}
}
@media only screen and (max-width: 767px) {
.cta-content .title {
font-size: 30px;
}
}
.cta-content p {
color: var(--ed-color-common-white);
margin: 25px 0 35px 0;
}
.cta-content .cta-btn-wrap {
display: flex;
align-items: center;
-moz-column-gap: 20px;
column-gap: 20px;
flex-wrap: wrap;
row-gap: 20px;
}
.cta-content .cta-btn-wrap .cta-btn-2 {
background-color: transparent;
border: 1px solid var(--ed-color-common-white);
}
.cta-content .cta-btn-wrap .cta-btn-2:before {
background-color: var(--ed-color-theme-primary);
}
.cta-content .cta-btn-wrap .cta-btn-2:hover {
border: 1px solid var(--ed-color-theme-primary);
}
.cta-section-3 {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: relative;
z-index: 1;
}
.cta-section-3 .overlay {
background: rgba(6, 11, 15, 0.75);
mix-blend-mode: multiply;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.cta-content-3 {
width: 100%;
max-width: 100%;
}
.cta-content-3 .section-heading .section-title {
font-size: 48px;
}
@media only screen and (max-width: 992px) {
.cta-content-3 .section-heading .section-title {
font-size: 32px;
}
}
.cta-content-3 .cta-btn-wrap {
justify-content: center;
}  .testimonial-section {
background-color: #07A698;
position: relative;
z-index: 1;
}
.testimonial-section .shapes .shape-1 {
position: absolute;
bottom: 0;
left: 120px;
z-index: -1;
}
.testimonial-section .shapes .shape-2 {
position: absolute;
top: 20%;
right: 6%;
z-index: -1;
}
.testi-item {
background-color: var(--ed-color-common-white);
padding: 40px;
border-radius: 15px;
}
.testi-item .title {
font-size: 20px;
font-weight: 600;
margin-bottom: 15px;
}
.testi-item p {
margin-bottom: 20px;
}
.testi-item .testi-author {
display: grid;
align-items: center;
grid-template-columns: 50px 1fr;
grid-gap: 15px;
}
.testi-item .testi-author .author-img {
border-radius: 50%;
overflow: hidden;
}
.testi-item .testi-author .name {
font-size: 18px;
font-weight: 600;
margin-bottom: 0;
}
.testi-item .testi-author .name span {
font-size: 14px;
color: var(--ed-color-theme-primary);
line-height: 1;
display: block;
margin-top: 5px;
font-weight: 400;
}
.testimonial-section-2 {
margin-bottom: -165px;
position: relative;
z-index: 2;
}
.testi-carousel {
padding-bottom: 90px;
}
.testi-carousel .swiper-pagination {
bottom: 0;
}
.testi-carousel .swiper-pagination .swiper-pagination-bullet {
background-color: transparent;
height: 20px;
width: 20px;
border: 2px solid #E0E5EB;
opacity: 1;
border-radius: 50%;
position: relative;
}
.testi-carousel .swiper-pagination .swiper-pagination-bullet:before {
background-color: var(--ed-color-theme-primary);
content: "";
height: 7px;
width: 7px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
visibility: hidden;
opacity: 0;
}
.testi-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
border: 2px solid var(--ed-color-theme-primary);
}
.testi-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
visibility: visible;
opacity: 1;
}
.testi-item-2 {
background-color: var(--ed-color-common-white);
padding: 40px 40px 30px 40px;
border: 1px solid #E0E5EB;
border-radius: 10px;
}
@media only screen and (max-width: 767px) {
.testi-item-2 {
padding: 30px 20px;
}
}
.testi-item-2 .testi-top-content {
display: grid;
align-items: center;
grid-template-columns: 120px 1fr;
grid-gap: 20px;
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 1px solid #E0E5EB;
}
@media only screen and (max-width: 992px) {
.testi-item-2 .testi-top-content {
grid-template-columns: 1fr;
}
}
.testi-item-2 .testi-top-content .testi-thumb {
height: 120px;
width: 120px;
border-radius: 10px;
overflow: hidden;
}
.testi-item-2 .testi-top-content .testi-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.testi-item-2 .testi-top-content p {
font-size: 18px;
margin-bottom: 0;
}
.testi-item-2 .testi-bottom {
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 20px;
column-gap: 20px;
flex-wrap: wrap;
row-gap: 20px;
}
.testi-item-2 .testi-bottom .author-info .name {
font-size: 22px;
font-weight: 700;
margin-bottom: 0;
}
.testi-item-2 .testi-bottom .author-info span {
font-size: 16px;
color: var(--ed-color-theme-primary);
font-weight: 400;
}
.testi-item-2 .testi-bottom .testi-review li {
display: inline-flex;
color: var(--ed-color-theme-primary);
}
.testi-item-2 .testi-bottom .testi-review li.point {
margin-left: 5px;
color: var(--ed-color-text-body);
}
.testimonial-section-3 {
background-color: #1A2226;
position: relative;
z-index: 1;
}
.testimonial-section-3 .shapes .shape {
position: absolute;
z-index: -1;
}
.testimonial-section-3 .shapes .shape.shape-1 {
top: 0;
left: 0;
}
.testimonial-section-3 .shapes .shape.shape-2 {
top: 0;
right: 0;
}
.testi-carousel-wrap-2 {
max-width: 720px;
width: 100%;
margin: 0 auto;
position: relative;
}
@media only screen and (max-width: 767px) {
.testi-carousel-wrap-2 .swiper-arrow {
display: none;
}
}
.testi-carousel-wrap-2 .swiper-arrow .swiper-nav {
color: var(--ed-color-common-white);
height: 60px;
width: 60px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--ed-color-common-white);
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
border-radius: 50%;
}
.testi-carousel-wrap-2 .swiper-arrow .swiper-nav.swiper-prev {
left: auto;
right: -20px;
}
.testi-carousel-2 {
max-width: 560px;
width: 100%;
overflow: hidden;
}
.testi-item-3 {
background-color: var(--ed-color-common-white);
max-width: 520px;
width: 100%;
margin: 0 auto;
padding: 50px;
border-radius: 20px;
position: relative;
z-index: 1;
}
.testi-item-3:before {
background-color: rgba(255, 255, 255, 0.1);
content: "";
height: 80%;
width: 50px;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: -20px;
z-index: -1;
border-radius: 20px;
}
@media only screen and (max-width: 767px) {
.testi-item-3 {
padding: 30px 20px;
}
}
.testi-item-3 .title {
margin-bottom: 15px;
}
.testi-item-3 p {
margin-bottom: 20px;
}
.testi-item-3 .testi-author {
display: grid;
align-items: center;
grid-template-columns: 50px 1fr;
}
.testi-item-3 .testi-author .testi-author-img {
height: 50px;
width: 50px;
border-radius: 50%;
overflow: hidden;
}
.testi-item-3 .testi-author .name {
font-size: 18px;
font-weight: 600;
padding-left: 10px;
margin-bottom: 0;
}
.testi-item-3 .testi-author .name span {
color: var(--ed-color-text-body);
font-size: 14px;
font-weight: 400;
display: block;
margin-top: 5px;
}  .sponsor-section {
background-color: #F3F7FB;
padding-top: 260px;
position: relative;
z-index: 1;
overflow-x: clip;
}
.sponsor-section .bg-shape {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: -29%;
z-index: -1;
}
.sponsor-section .bg-shape img {
width: 100%;
height: 100%;
}
.sponsor-section .shape-1 {
position: absolute;
top: 50%;
left: 30px;
transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
.sponsor-section .shape-1 {
display: none;
}
}
.sponsor-section .shape-2 {
position: absolute;
top: 30%;
right: 0px;
transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
.sponsor-section .shape-2 {
display: none;
}
}
.sponsor-item {
background-color: var(--ed-color-common-white);
padding: 0 50px;
height: 115px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #E0E5EB;
border-radius: 10px;
}
@media only screen and (max-width: 767px) {
.sponsor-item {
padding: 0 20px;
}
}
.sponsor-item img {
width: 100%;
-o-object-fit: contain;
object-fit: contain;
height: 49px;
}  .video-feature {
background: var(--ed-color-common-white);
border: 1px solid #E0E5EB;
border-radius: 10px;
padding: 20px;
transition: all 0.3s ease-in-out;
}
.video-feature .video-thumb {
position: relative;
height: 330px;
margin-bottom: 30px;
}
.video-feature .video-thumb img {
border-radius: 10px;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.video-feature .video-thumb .video-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.video-feature .video-thumb .video-btn a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
height: 100px;
width: 100px;
font-size: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1;
}
.video-feature .video-thumb .video-btn a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.video-feature .video-thumb .video-btn a .ripple {
height: 100px;
width: 100px;
}
.video-feature .video-thumb .video-btn a .ripple:before, .video-feature .video-thumb .video-btn a .ripple:after {
height: 100px;
width: 100px;
}
.video-feature .video-content .title {
font-size: 30px;
}
@media only screen and (max-width: 992px) {
.video-feature .video-content .title {
font-size: 24px;
}
}
@media only screen and (max-width: 992px) and (max-width: 992px) {
.video-feature .video-content .title {
font-size: 22px;
}
.video-feature .video-content .title br {
display: none;
}
}
@media only screen and (max-width: 992px) {
.video-feature .video-content p br {
display: none;
}
}
.video-feature:hover {
box-shadow: 0px 11px 44px 4px rgba(18, 31, 49, 0.1);
}  .event-section {
background-color: var(--ed-color-theme-primary);
position: relative;
z-index: 1;
}
.event-section .shapes .shape {
position: absolute;
z-index: -1;
}
@media only screen and (max-width: 767px) {
.event-section .shapes .shape {
display: none;
}
}
.event-section .shapes .shape.shape-1 {
top: 60px;
left: 40px;
}
.event-section .shapes .shape.shape-2 {
top: 0;
right: 15%;
}
.event-section .shapes .shape.shape-3 {
bottom: 0;
left: 17%;
}
.event-section .shapes .shape.shape-4 {
top: 35%;
right: 40px;
}
.event-card {
background-color: var(--ed-color-common-white);
display: grid;
align-items: center;
grid-template-columns: 192px 1fr;
grid-gap: 30px;
padding: 30px;
border-radius: 10px;
}
@media only screen and (max-width: 992px) {
.event-card {
grid-template-columns: 1fr;
}
}
.event-card .event-thumb {
max-width: 192px;
width: 100%;
height: 211px;
}
.event-card .event-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.event-card .event-content .title {
font-size: 22px;
font-weight: 600;
margin-bottom: 20px;
line-height: 1.5;
}
.event-card .event-content .event-list {
margin-bottom: 20px;
}
.event-card .event-content .event-list li {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
}
.event-card .event-content .ed-primary-btn {
background-color: rgba(206, 214, 229, 0.15);
border: 1px solid #C9CFDA;
color: var(--ed-color-heading-primary);
}
.event-card .event-content .ed-primary-btn:before {
background-color: var(--ed-color-theme-primary);
border: 1px solid var(--ed-color-theme-primary);
}
.event-card .event-content .ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
.event-carousel {
padding-bottom: 90px;
}
.event-carousel .swiper-pagination {
bottom: 0;
}
.event-carousel .swiper-pagination .swiper-pagination-bullet {
background-color: transparent;
height: 20px;
width: 20px;
border: 2px solid var(--ed-color-common-white);
opacity: 1;
border-radius: 50%;
position: relative;
}
.event-carousel .swiper-pagination .swiper-pagination-bullet:before {
background-color: var(--ed-color-common-white);
content: "";
height: 7px;
width: 7px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
visibility: hidden;
opacity: 0;
}
.event-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
border: 2px solid var(--ed-color-common-white);
}
.event-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
visibility: visible;
opacity: 1;
}
.event-details-content {
background-color: var(--ed-color-grey-1);
padding: 30px;
border: 1px solid #E0E5EB;
border-radius: 15px;
}
@media only screen and (max-width: 767px) {
.event-details-content {
padding: 30px 20px;
}
}
.event-details-content .event-details-img {
height: 450px;
margin-bottom: 30px;
}
.event-details-content .event-details-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.event-details-content .title {
font-size: 30px;
font-weight: 600;
margin-bottom: 20px;
}
.event-details-content .event-details-list {
margin-bottom: 40px;
}
.event-details-content .event-details-list li {
list-style: none;
display: flex;
align-items: center;
align-items: baseline;
-moz-column-gap: 10px;
column-gap: 10px;
}
.event-details-content .event-details-list li:not(:last-of-type) {
margin-bottom: 15px;
}
.event-details-content .event-details-list li i {
color: var(--ed-color-theme-primary);
}
.event-details-content .event-details-list li p {
margin-bottom: 0;
}
.event-details-content .event-details-list li p span {
color: var(--ed-color-heading-primary);
font-weight: 500;
}
.event-details-content .event-map-wrapper {
height: 350px;
overflow: hidden;
border-radius: 15px;
margin-bottom: 40px;
}
.event-details-content .event-map-wrapper iframe {
border-radius: 15px;
}
.event-details-content .inner-team-wrap {
margin-top: 30px;
}
@media (max-width: 1200px) {
.event-details-content .inner-team-wrap {
margin-top: -20px;
}
}
.event-details-content .inner-team-wrap .team-item-3 {
background-color: var(--ed-color-common-white);
}
.event-details-content .inner-team-wrap .team-item-3 .team-content .social-list li:not(:last-of-type) {
margin-right: 15px;
}
.event-details-content .inner-team-wrap .team-item-3 .team-content .social-list a {
color: var(--ed-color-text-body);
background-color: transparent;
height: auto;
width: auto;
border: none;
}
.event-details-content .inner-team-wrap .team-item-3 .team-content .social-list a:hover {
background-color: transparent;
}
.event-sidebar {
background-color: var(--ed-color-grey-1);
}  .popular-course {
margin-bottom: -161px;
}
.popular-item {
background-color: #F2F4F7;
position: relative;
z-index: 1;
padding: 60px;
border: 1px solid #E0E5EB;
border-radius: 15px;
overflow: hidden;
}
@media (max-width: 1200px) {
.popular-item {
padding-left: 40px;
}
}
@media only screen and (max-width: 767px) {
.popular-item {
padding: 30px 20px;
}
}
.popular-item .men {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
@media only screen and (max-width: 767px) {
.popular-item .men {
display: none;
}
}
.popular-item .shapes .shape {
position: absolute;
z-index: -2;
}
.popular-item .shapes .shape.shape-1 {
top: 0;
right: 0;
}
@media only screen and (max-width: 767px) {
.popular-item .shapes .shape.shape-1 {
display: none;
}
}
.popular-item .shapes .shape.shape-2 {
width: 100%;
height: 100%;
top: 0;
right: 0;
}
.popular-item .shapes .shape.shape-2 img {
width: 100%;
height: 100%;
}
.popular-item span {
color: var(--ed-color-theme-primary);
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
display: block;
margin-bottom: 20px;
}
.popular-item .title {
font-size: 30px;
font-weight: 600;
margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
.popular-item .title {
font-size: 22px;
}
}  .insta-wrap {
padding: 0 15px;
}
.insta-item {
position: relative;
z-index: 1;
border-radius: 10px;
overflow: hidden;
}
.insta-item .overlay {
background-color: var(--ed-color-theme-primary);
height: 0;
width: 100%;
position: absolute;
bottom: 0;
left: 0;
transition: all 0.3s ease-in-out;
}
.insta-item .intra-thumb {
height: 307px;
}
.insta-item .intra-thumb img {
width: 100%;
height: 100%;
border-radius: 10px;
}
.insta-item .icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0);
transition: all 0.3s ease-in-out;
}
.insta-item .icon a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
height: 50px;
width: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.insta-item:hover .overlay {
height: 100%;
}
.insta-item:hover .icon {
transform: translate(-50%, -50%) scale(1);
}  .pricing__tab .nav-tabs {
border: none;
}
.pricing__tab .nav .nav-item .nav-link {
padding: 0;
padding-right: 90px;
background: transparent;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
font-weight: 500;
text-transform: capitalize;
color: var(--ed-color-heading-primary);
text-transform: capitalize;
position: relative;
outline: none;
font-size: 16px;
border: none;
}
.pricing__tab .nav .nav-item .nav-link:focus {
outline: none;
}
.pricing__tab .nav .nav-item .nav-link::after {
background-color: var(--ed-color-grey-1);
position: absolute;
content: "";
right: 15px;
top: 50%;
transform: translateY(-50%);
width: 54px;
height: 22px;
border-radius: 11px;
}
.pricing__tab .nav .nav-item .nav-link::before {
background-color: var(--ed-color-theme-primary);
position: absolute;
content: "";
right: 20px;
top: 50%;
transform: translateY(-50%);
width: 16px;
height: 16px;
border-radius: 50%;
z-index: 1;
transition: all 0.3s ease-in-out;
}
.pricing__tab .nav .nav-item .nav-link.active {
color: var(--ed-color-theme-primary);
border: none;
}
.pricing__tab .nav .nav-item .nav-link.active::before {
right: 49px;
}
.pricing__tab .nav .nav-item:last-child .nav-link {
padding-right: 0;
}
.pricing__tab .nav .nav-item:last-child .nav-link::after {
display: none;
}
.pricing__tab .nav .nav-item:last-child .nav-link::before {
display: none;
}
.pricing-item {
background-color: var(--ed-color-grey-1);
padding: 35px 30px;
border-radius: 15px;
}
.pricing-item .pricing-top {
background-color: var(--ed-color-common-white);
border: 1px solid #E0E5EB;
border-radius: 15px;
padding: 30px;
margin-bottom: 30px;
}
.pricing-item .pricing-top .title {
font-size: 18px;
font-weight: 600;
margin-bottom: 15px;
}
.pricing-item .pricing-top .price {
font-size: 40px;
font-weight: 700;
line-height: 1;
margin-bottom: 15px;
}
.pricing-item .pricing-top .price span {
color: var(--ed-color-heading-primary);
font-size: 14px;
font-weight: 400;
}
.pricing-item .pricing-top p {
margin-bottom: 0;
}
.pricing-item .pricing-list {
list-style: none;
}
.pricing-item .pricing-list li {
font-size: 16px;
line-height: 1;
}
.pricing-item .pricing-list li i {
color: var(--ed-color-theme-primary);
margin-right: 10px;
}
.pricing-item .pricing-list li:not(:last-of-type) {
margin-bottom: 15px;
}
.pricing-item .pricing-list li.cross i {
color: var(--ed-color-text-body);
}
.pricing-item .pricing-btn {
margin-top: 30px;
}
.pricing-item .pricing-btn .ed-primary-btn {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
width: 100%;
justify-content: center;
border: 1px solid var(--ed-color-theme-primary);
font-weight: 600;
}
.pricing-item .pricing-btn .ed-primary-btn:before {
background-color: var(--ed-color-theme-primary);
}
.pricing-item .pricing-btn .ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
.pricing-item.active .pricing-top {
background-color: var(--ed-color-theme-primary);
}
.pricing-item.active .pricing-top .title {
color: var(--ed-color-common-white);
}
.pricing-item.active .pricing-top .price {
color: var(--ed-color-common-white);
}
.pricing-item.active .pricing-top .price span {
color: var(--ed-color-common-white);
}
.pricing-item.active .pricing-top p {
color: var(--ed-color-common-white);
}
.pricing-item.active .pricing-btn .ed-primary-btn {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}  .shop-top .left-content {
font-size: 16px;
font-weight: 400;
line-height: 1;
}
.shop-top .select-control {
background-color: transparent;
border: 1px solid var(--ed-color-border-1);
padding: 14px 30px;
padding-right: 60px;
height: auto;
border-radius: 0;
font-size: 14px;
font-weight: 500;
line-height: 1;
}
.shop-top .select-control:after {
border: none;
height: auto;
width: auto;
background-image: none;
font-family: "Font Awesome 6 Pro";
font-size: 14px;
font-weight: 700;
content: "\f0d7";
color: var(--ed-color-text-body);
position: absolute;
top: 63%;
right: 20px;
transform: translateY(-50%);
}
.shop-top .select-control .list {
background-color: var(--ed-color-bg-1);
}
.shop-top .select-control.open:after {
transform: translateY(-50%);
}
.shop-item {
border-radius: 6px;
overflow: hidden;
border: 1px solid #E0E5EB;
}
.shop-item .shop-thumb {
background-color: var(--ed-color-grey-1);
position: relative;
z-index: 1;
overflow: hidden;
height: 300px;
border-bottom: 1px solid #E0E5EB;
}
.shop-item .shop-thumb .shop-thumb-inner {
max-width: 124px;
height: 188px;
position: absolute;
top: 55%;
left: 50%;
transform: translate(-50%, -50%);
}
.shop-item .shop-thumb .shop-thumb-inner img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.shop-item .shop-thumb img {
transform: scale(1);
width: 100%;
transition: all 0.4s ease-in-out;
}
.shop-item .shop-thumb .sale {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
font-size: 13px;
font-weight: 500;
letter-spacing: 1px;
padding: 5px 20px;
position: absolute;
top: 20px;
left: 20px;
display: inline-block;
z-index: 2;
border-radius: 100px;
border: 1px solid #E0E5EB;
}
.shop-item .shop-thumb .shop-list {
list-style: none;
position: absolute;
top: 30px;
right: 10px;
transition: all 0.5s ease-in-out;
visibility: hidden;
opacity: 0;
z-index: 2;
}
.shop-item .shop-thumb .shop-list li:not(:last-of-type) {
margin-bottom: 10px;
}
.shop-item .shop-thumb .shop-list li a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
height: 45px;
width: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.shop-item .shop-thumb .shop-list li a i {
line-height: 1;
display: block;
}
.shop-item .shop-thumb .shop-list li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.shop-item:hover .shop-thumb img {
transform: scale(1.03);
}
.shop-item:hover .shop-thumb .overlay {
visibility: visible;
opacity: 1;
}
.shop-item:hover .shop-thumb .shop-list {
right: 20px;
visibility: visible;
opacity: 1;
}
.shop-content {
padding: 30px;
border-top: none;
border-radius: 0 0 6px 6px;
}
@media only screen and (max-width: 767px) {
.shop-content {
padding: 30px 20px;
}
}
.shop-content .category {
font-size: 12px;
font-weight: 400;
color: var(--ed-color-text-body);
text-transform: uppercase;
margin-bottom: 10px;
display: block;
line-height: 1;
}
.shop-content .title {
font-size: 20px;
font-weight: 600;
margin-bottom: 0;
text-transform: capitalize;
}
.shop-content .review-wrap {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
margin-top: 10px;
flex-wrap: wrap;
row-gap: 5px;
}
.shop-content .review-wrap .review {
list-style: none;
}
.shop-content .review-wrap .review li {
font-size: 14px;
display: inline-flex;
color: #FFC92E;
}
.shop-content .price {
color: var(--ed-color-theme-primary);
display: block;
font-size: 16px;
font-weight: 600;
margin-top: 10px;
display: flex;
align-items: center;
}
.shop-content .price .offer {
margin-top: 0;
margin-right: 10px;
text-decoration: line-through;
color: var(--ed-color-text-body);
}
@media only screen and (max-width: 992px) {
.product-details-wrap {
margin-bottom: 40px;
}
}
.product-details-wrap .product-slider-wrap {
display: grid;
grid-template-columns: 112px 1fr;
grid-gap: 24px;
}
@media only screen and (max-width: 767px) {
.product-details-wrap .product-slider-wrap {
grid-template-columns: 1fr;
}
}
.product-details-wrap .product-gallary {
position: relative;
margin: 0;
height: 100%;
}
.product-details-wrap .product-gallary .sale {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
padding: 10px 20px;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
line-height: 1;
border-radius: 100px;
position: absolute;
top: 20px;
left: 30px;
z-index: 2;
}
.product-details-wrap .product-gallary .gallary-item {
background-color: var(--ed-color-grey-1);
height: 600px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
@media only screen and (max-width: 767px) {
.product-details-wrap .product-gallary .gallary-item {
height: 500px;
}
}
.product-details-wrap .product-gallary .gallary-item .gallary-item-thumb {
max-width: 307px;
height: 466px;
}
@media only screen and (max-width: 767px) {
.product-details-wrap .product-gallary .gallary-item .gallary-item-thumb {
max-width: 250px;
height: 400px;
margin-top: 50px;
}
}
.product-details-wrap .product-gallary .gallary-item .gallary-item-thumb img {
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.product-details-wrap .product-gallary .gallary-item img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.product-details-wrap .product-gallary-thumb {
height: 375px;
}
@media only screen and (max-width: 767px) {
.product-details-wrap .product-gallary-thumb {
max-width: 100%;
padding: 0 15px;
left: 0;
}
}
.product-details-wrap .product-gallary-thumb .thumb-item {
height: 112px;
width: 112px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #DEE0E3;
cursor: pointer;
}
.product-details-wrap .product-gallary-thumb .thumb-item .thumb-item-inner {
height: 80px;
width: 70px;
}
.product-details-wrap .product-gallary-thumb .thumb-item .thumb-item-inner img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.product-details-wrap .product-gallary-thumb .thumb-item img {
width: auto;
height: auto;
-o-object-fit: inherit;
object-fit: inherit;
}
.product-details-wrap .product-gallary-thumb .swiper-slide-thumb-active .thumb-item {
border: 1px solid var(--ed-color-theme-primary);
}
.product-info {
padding-left: 20px;
}
@media only screen and (max-width: 992px) {
.product-info {
padding-left: 0;
}
}
@media only screen and (max-width: 767px) {
.product-info {
padding-top: 40px;
}
}
.product-info .category {
color: var(--ed-color-theme-primary);
font-size: 12px;
line-height: 1;
font-weight: 600;
margin-bottom: 10px;
text-transform: uppercase;
display: block;
}
.product-info .title {
font-size: 30px;
font-weight: 600;
margin-bottom: 15px;
}
@media only screen and (max-width: 992px) {
.product-info .title {
font-size: 24px;
}
}
.product-info .rating-wrap {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.product-info .rating-wrap .rating {
display: flex;
align-items: center;
list-style: none;
}
.product-info .rating-wrap .rating li {
color: #FFC92E;
}
.product-info .rating-wrap .rating li:not(:last-of-type) {
margin-right: 2px;
}
.product-info .rating-wrap span {
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 500;
margin-left: 10px;
}
.product-info .price {
font-size: 22px;
nav-down: 600;
margin-bottom: 30px;
}
.product-info .price span {
font-weight: 400;
color: var(--ed-color-text-body);
text-decoration: line-through;
margin-left: 10px;
}
.product-info .product-desc-wrap {
border-top: 1px solid var(--ed-color-border-1);
border-bottom: 1px solid var(--ed-color-border-1);
padding: 20px 0;
margin-bottom: 20px;
}
.product-info .product-desc-wrap .desc {
margin-bottom: 0;
margin-bottom: 10px;
}
.product-info .product-desc-wrap .view-text {
font-size: 16px;
color: var(--ed-color-heading-primary);
}
.product-info .product-desc-wrap .view-text i {
margin-right: 10px;
}
.product-info .item-left-line {
margin-bottom: 30px;
}
.product-info .item-left-line .line {
background: #EBEBEB;
height: 4px;
width: 100%;
position: relative;
margin-top: 10px;
}
.product-info .item-left-line .line:before {
background-color: var(--ed-color-theme-primary);
content: "";
width: 40%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.product-info .details-list {
list-style: none;
}
.product-info .details-list li {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
color: var(--ed-color-heading-primary);
}
.product-info .details-list li i {
width: 20px;
}
.product-info .details-list li:not(:last-of-type) {
margin-bottom: 10px;
}
.product-info .product-btn {
display: flex;
align-items: center;
-moz-column-gap: 30px;
column-gap: 30px;
margin: 30px 0;
}
.product-info .product-btn input {
background-color: var(--ed-color-theme-primary);
color: #fff;
width: 100%;
height: 45px;
line-height: 45px;
border: none;
border-radius: 0;
outline: none;
box-shadow: none;
text-align: center;
}
.product-info .product-btn .cart-btn-wrap-2 {
width: 100%;
}
.product-info .product-btn .cart-btn-wrap-2 .cart-btn {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
border: 2px solid var(--ed-color-heading-primary);
width: 100%;
border-radius: 100px;
padding: 15px 30px;
text-align: center;
justify-content: center;
}
.product-info .product-btn .cart-btn-wrap-2 .cart-btn:before {
display: none;
}
.product-info .product-btn .cart-btn-wrap-2 .cart-btn:hover {
background-color: var(--ed-color-heading-primary);
color: var(--ed-color-common-white);
}
.product-info .shop-details-btn {
width: 100%;
justify-content: center;
margin-bottom: 30px;
}
.product-info .product-meta {
list-style: none;
display: flex;
align-items: center;
-moz-column-gap: 20px;
column-gap: 20px;
flex-wrap: wrap;
row-gap: 15px;
}
.product-info .product-meta li a {
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 500;
}
.product-info .product-meta li a:hover {
color: var(--ed-color-theme-primary);
}
.reviewr-wrap {
padding-right: 20px;
}
@media only screen and (max-width: 992px) {
.reviewr-wrap {
padding-right: 0;
margin-bottom: 50px;
}
}
.reviewr-wrap .review-list .review-item {
display: grid;
align-items: center;
grid-template-columns: 90px 1fr;
grid-gap: 15px;
padding: 30px;
border: 1px solid var(--ed-color-border-1);
}
@media only screen and (max-width: 767px) {
.reviewr-wrap .review-list .review-item {
grid-template-columns: 1fr;
}
}
.reviewr-wrap .review-list .review-item:not(:last-of-type) {
margin-bottom: 30px;
}
.reviewr-wrap .review-list .review-item img {
height: 90px;
width: 90px;
border-radius: 50%;
}
.reviewr-wrap .review-list .review-item .content .content-top {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 20px;
}
.reviewr-wrap .review-list .review-item .content .content-top .name {
font-size: 18px;
font-weight: 500;
margin-bottom: 15px;
}
.reviewr-wrap .review-list .review-item .content .content-top .name span {
color: var(--ed-color-text-body);
font-size: 15px;
display: block;
margin-top: 7px;
}
.reviewr-wrap .review-list .review-item .content .content-top ul {
list-style: none;
}
.reviewr-wrap .review-list .review-item .content .content-top ul li {
display: inline-flex;
color: #FFC92E;
}
.reviewr-wrap .review-list .review-item .content .content-top ul li:not(:last-of-type) {
margin-right: 2px;
}
.reviewr-wrap .review-list .review-item .content p {
margin-bottom: 0;
}
.review-form-wrap .title {
font-size: 24px;
font-weight: 600;
margin-bottom: 10px;
}
.review-form-wrap .publish {
font-size: 16px;
margin-bottom: 20px;
display: block;
}
.review-form-wrap .review-box {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
}
.review-form-wrap .review-box span {
color: var(--ed-color-heading-primary);
}
.review-form-wrap .review-box .review {
list-style: none;
}
.review-form-wrap .review-box .review li {
display: inline-flex;
color: #FFC92E;
}
.review-form-wrap .review-box .review li:not(:last-of-type) {
margin-right: 2px;
}
.review-form-wrap .review-form {
background-color: transparent;
padding: 0;
border: none;
margin-top: 40px;
}
.review-form-wrap .checkbox-wrap {
margin-bottom: 30px;
display: flex;
align-items: center;
}
.review-form-wrap .checkbox-wrap input {
width: 15px;
height: 15px;
accent-color: var(--ed-color-theme-primary);
}
.review-form-wrap .checkbox-wrap label {
color: var(--ed-color-text-body);
cursor: pointer;
margin-left: 10px;
}
.review-form-wrap .submit-btn .rr-primary-btn {
padding: 15px 35px;
}
.tab-navigation {
border-bottom: 1px solid var(--ed-color-border-1);
padding-bottom: 30px;
}
.tab-navigation button {
color: var(--ed-color-text-body);
font-weight: 500;
font-size: 18px;
text-transform: capitalize;
letter-spacing: 0;
padding: 0;
margin-right: 30px;
position: relative;
transition: all 0.3s ease-in-out;
}
.tab-navigation button.active,
.tab-navigation button:hover {
color: var(--ed-color-heading-primary);
} .shop-tab-content .tab-pane {
margin-top: 40px;
}
.shop-tab-content .tab-pane .desc-wrap {
display: grid;
grid-gap: 50px;
grid-template-columns: 1fr 535px;
}
@media only screen and (max-width: 992px) {
.shop-tab-content .tab-pane .desc-wrap {
grid-template-columns: 1fr;
}
}
.shop-tab-content .tab-pane .desc-wrap .right-content img {
height: 220px;
max-width: 535px;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.description-meta {
display: grid;
grid-template-columns: 1fr 2fr;
grid-gap: 10px;
}
.description-meta li span {
color: var(--ed-color-theme-primary);
font-weight: 600;
margin-right: 5px;
} .product-table {
background-color: var(--ed-color-grey-1);
margin: 0;
margin-top: 40px;
--bs-table-bg: transparent;
}
.product-table:not(caption) > * > * {
border-bottom: 1px solid var(--ed-color-border-1);
}
.product-table > :not(:last-child) > :last-child > * {
border-color: var(--ed-color-border-1);
}
.product-table tbody tr td,
.product-table thead tr th {
text-align: center;
}
.product-table tbody tr td:not(:last-of-type),
.product-table thead tr th:not(:last-of-type) {
border-right: 1px solid var(--ed-color-border-1);
}
.product-table tbody tr td:not(:last-of-type) {
border-bottom: 1px solid var(--ed-color-border-1);
}
.product-table thead tr th {
color: var(--ed-color-theme-primary);
}
.product-table tbody tr td {
color: var(--ed-color-heading-primary);
padding: 15px 0;
} .review .comment-list {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 30px;
}
.review .comment-list > li {
background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
border: 1px solid rgba(255, 255, 255, 0.1);
display: grid;
grid-template-columns: 80px 1fr;
grid-gap: 30px;
align-items: center;
padding: 40px;
}
.review .comment-list .comment-thumb img {
border-radius: 50%;
}
.review .comment-list .comment-author {
display: flex;
align-items: center;
justify-content: space-between;
}
.review .comment-list .comment-text h3 span {
font-size: 14px;
font-weight: 600;
color: #ddd;
display: block;
}
.review .comment-list .comment-text p {
margin: 0;
}  .slider-section {
position: relative;
z-index: 1;
}
.slider-section .edcare-slider-thumb {
max-width: 80px;
height: 260px;
position: absolute;
top: 50%;
right: 120px;
transform: translateY(-50%);
z-index: 5;
left: auto;
bottom: auto;
width: auto;
display: flex;
flex-direction: column;
row-gap: 10px;
}
@media (max-width: 1200px) {
.slider-section .edcare-slider-thumb {
right: 60px;
}
}
@media only screen and (max-width: 992px) {
.slider-section .edcare-slider-thumb {
right: 20px;
}
}
@media only screen and (max-width: 767px) {
.slider-section .edcare-slider-thumb {
display: none;
}
}
.slider-section .edcare-slider-thumb .swiper-slide .slider-thumb-item {
height: 80px;
width: 80px;
border-radius: 50%;
border: 3px solid var(--ed-color-common-white);
cursor: pointer;
transition: all 0.3s ease-in-out;
}
.slider-section .edcare-slider-thumb .swiper-slide .slider-thumb-item img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.slider-section .edcare-slider-thumb .swiper-slide.swiper-slide-thumb-active .slider-thumb-item {
border: 3px solid var(--ed-color-theme-primary);
}
.edcare-slider {
position: relative;
z-index: 2;
}
.slider-item {
position: relative;
overflow: hidden;
z-index: 2;
}
.slider-item .bg-img {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.slider-item .overlay {
background: linear-gradient(180deg, rgba(0, 231, 211, 0.25) -38.18%, rgba(0, 7, 7, 0.25) 100%);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.slider-item .overlay-2 {
background: rgba(22, 39, 38, 0.47);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.slider-item .slider-content-wrap {
max-width: 100%;
width: 100%;
z-index: 10;
padding: 150px 0 150px 0;
row-gap: 30px;
}
@media (max-width: 1200px) {
.slider-item .slider-content-wrap {
padding-left: 0px;
}
}
@media only screen and (max-width: 992px) {
.slider-item .slider-content-wrap {
padding: 100px 0;
}
}
.slider-item .slider-content-wrap .slider-content .sub-heading-wrap {
display: inline-block;
position: relative;
margin-bottom: 30px;
}
.slider-item .slider-content-wrap .slider-content .sub-heading-wrap .sub-heading {
background: rgba(255, 255, 255, 0.01);
border: 1px solid #07A698;
-webkit-backdrop-filter: blur(40px);
backdrop-filter: blur(40px);
border-radius: 100px;
color: var(--ed-color-common-white);
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
border-radius: 100px;
padding: 5px 20px;
margin-bottom: 0;
line-height: 1;
padding: 10px 20px 10px 20px;
position: relative;
transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
.slider-item .slider-content-wrap .slider-content .sub-heading-wrap .sub-heading {
font-size: 12px;
}
}
.slider-item .slider-content-wrap .slider-content .edcare-caption.heading .edcare-cap {
font-size: 60px;
font-weight: 600;
color: var(--ed-color-common-white);
line-height: 1;
margin-bottom: 10px;
}
@media (max-width: 1200px) {
.slider-item .slider-content-wrap .slider-content .edcare-caption.heading .edcare-cap {
font-size: 50px;
}
}
@media only screen and (max-width: 767px) {
.slider-item .slider-content-wrap .slider-content .edcare-caption.heading .edcare-cap {
font-size: 30px;
line-height: 1.3;
margin-bottom: 0px;
}
}
@media only screen and (max-width: 767px) {
.slider-item .slider-content-wrap .slider-content .edcare-caption.heading .edcare-cap.edcare-cap-2 {
margin-top: 0;
}
}
.slider-item .slider-content-wrap .slider-content .edcare-slider-desc p {
color: var(--ed-color-common-white);
font-size: 18px;
margin-bottom: 50px;
margin-top: 30px;
}
.slider-item .slider-content-wrap .slider-content .slider-btn-wrap {
display: flex;
align-items: center;
-moz-column-gap: 20px;
column-gap: 20px;
flex-wrap: wrap;
row-gap: 15px;
} .edcare-animation,
.edcare-animation span {
animation-duration: 0.3s;
animation-fill-mode: both;
}
.edcare-animation span {
display: inline-block;
} .edcare-fadeIn {
animation-name: asFadeIn;
}
@keyframes asFadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.edcare-fadeInLeft {
animation-name: asFadeInLeft;
}
@keyframes asFadeInLeft {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
}
}
.edcare-fadeInRight {
animation-name: asFadeInRight;
}
@keyframes asFadeInRight {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
}
}
.edcare-fadeInDown {
animation-name: asFadeInTop;
}
@keyframes asFadeInTop {
from {
opacity: 0;
transform: translateY(-50px);
}
to {
opacity: 1;
}
}
.edcare-fadeInUp {
animation-name: asFadeInBottom;
}
@keyframes asFadeInBottom {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
}
} .edcare-moveFromLeft {
animation-name: asMoveFromLeft;
}
@keyframes asMoveFromLeft {
from {
visibility: hidden;
transform: translateX(-50px);
}
to {
visibility: visible;
}
}
.edcare-moveFromRight {
animation-name: asMoveFromRight;
}
@keyframes asMoveFromRight {
from {
visibility: hidden;
transform: translateX(50px);
}
to {
visibility: visible;
}
}
.edcare-moveFromTop {
animation-name: asMoveFromTop;
}
@keyframes asMoveFromTop {
from {
visibility: hidden;
transform: translateY(-50px);
}
to {
visibility: visible;
}
}
.edcare-moveFromBottom {
animation-name: asMoveFromBottom;
}
@keyframes asMoveFromBottom {
from {
visibility: hidden;
transform: translateY(50px);
}
to {
visibility: visible;
}
} .edcare-blurIn {
animation-name: asBlurIn;
}
@keyframes asBlurIn {
from {
filter: blur(20px);
opacity: 0;
}
}
.edcare-blurInLeft {
animation-name: asBlurInLeft;
}
@keyframes asBlurInLeft {
from {
transform: translateX(50px);
filter: blur(20px);
opacity: 0;
}
}
.edcare-blurInRight {
animation-name: asBlurInRight;
}
@keyframes asBlurInRight {
from {
transform: translateX(-50px);
filter: blur(20px);
opacity: 0;
}
}
.edcare-blurInTop {
animation-name: asBlurInTop;
}
@keyframes asBlurInTop {
from {
transform: translateY(50px);
filter: blur(20px);
opacity: 0;
}
}
.edcare-blurInBottom {
animation-name: asBlurInBottom;
}
@keyframes asBlurInBottom {
from {
transform: translateY(-50px);
filter: blur(20px);
opacity: 0;
}
} .edcare-zoomIn {
animation-name: asZoomIn;
}
@keyframes asZoomIn {
from {
transform: scale(5);
opacity: 0;
}
}
.edcare-zoomInLeft {
animation-name: asZoomInLeft;
}
@keyframes asZoomInLeft {
from {
transform: scale(5) translateX(-50%);
opacity: 0;
}
}
.edcare-zoomInRight {
animation-name: asZoomInRight;
}
@keyframes asZoomInRight {
from {
transform: scale(5) translateX(50%);
opacity: 0;
}
}
.edcare-zoomInTop {
animation-name: asZoomInTop;
}
@keyframes asZoomInTop {
from {
transform: scale(10) translateY(-50%);
opacity: 0;
}
}
.edcare-zoomInBottom {
animation-name: asZoomInBottom;
}
@keyframes asZoomInBottom {
from {
transform: scale(10) translateY(50%);
opacity: 0;
}
} .edcare-flipInTop {
animation-name: asFlipInTop;
}
@keyframes asFlipInTop {
from {
transform: perspective(600px);
opacity: 0;
}
30% {
transform: perspective(600px) rotateX(180deg);
transform-origin: 0 0;
animation-timing-function: ease-out;
}
to {
transform: perspective(600px);
}
}
.edcare-flipInBottom {
animation-name: asFlipInBottom;
}
@keyframes asFlipInBottom {
from {
transform: perspective(600px);
opacity: 0;
}
30% {
transform: perspective(600px) rotateX(180deg);
transform-origin: bottom;
animation-timing-function: ease-out;
}
to {
transform: perspective(600px);
}
} .edcare-rollFromLeft {
animation-name: asRollFromLeft;
}
@keyframes asRollFromLeft {
from {
transform: translateX(-60px) perspective(600px) rotateY(180deg);
opacity: 0;
}
}
.edcare-rollFromRight {
animation-name: asRollFromRight;
}
@keyframes asRollFromRight {
from {
transform: translateX(60px) perspective(600px) rotateY(-180deg);
opacity: 0;
}
}
.edcare-rollFromTop {
animation-name: asRollFromTop;
}
@keyframes asRollFromTop {
from {
transform: translateY(-60px) perspective(600px) rotateX(180deg);
opacity: 0;
}
}
.edcare-rollFromBottom {
animation-name: asRollFromBottom;
}
@keyframes asRollFromBottom {
from {
transform: translateY(60px) perspective(600px) rotateX(-180deg);
opacity: 0;
}
} .edcare-rotateSkateInRight {
animation-name: asRotateSkateInRight;
}
@keyframes asRotateSkateInRight {
from {
transform: scaleX(0.2) translateX(100px);
opacity: 0;
}
}
.edcare-rotateSkateInLeft {
animation-name: asRotateSkateInLeft;
}
@keyframes asRotateSkateInLeft {
from {
transform: scaleX(0.2) translateX(-100px);
opacity: 0;
}
}
.edcare-rotateSkateInTop {
animation-name: asRotateSkateInTop;
}
@keyframes asRotateSkateInTop {
from {
transform: scaleY(0.2) translateY(-100px);
opacity: 0;
}
}
.edcare-rotateSkateInBottom {
animation-name: asRotateSkateInBottom;
}
@keyframes asRotateSkateInBottom {
from {
transform: scaleY(0.2) translateY(100px);
opacity: 0;
}
} .edcare-popUp {
animation-name: asPopUp;
}
@keyframes asPopUp {
0% {
visibility: hidden;
}
50% {
transform: scale(1.1);
visibility: visible;
}
}
.edcare-popUpLeft {
animation-name: asPopUpLeft;
}
@keyframes asPopUpLeft {
0% {
visibility: hidden;
}
50% {
visibility: visible;
transform: translateX(-20px) scale(1.1);
animation-timing-function: ease-in;
}
}
.edcare-popUpRight {
animation-name: asPopUpRight;
}
@keyframes asPopUpRight {
0% {
visibility: hidden;
}
50% {
visibility: visible;
transform: translateX(20px) scale(1.1);
animation-timing-function: ease-in;
}
} .swiper-slide-active .kenburns-top {
animation-name: kenburns-top;
}
@keyframes kenburns-top {
0% {
transform: scale(1) translateY(0);
transform-origin: 50% 16%;
}
100% {
transform: scale(1.08) translateY(-15px);
transform-origin: top;
}
}  .checkout-top {
margin-bottom: 80px;
}
@media only screen and (max-width: 992px) {
.checkout-top {
margin-bottom: 40px;
}
}
.checkout-top .coupon-list .verify-item .title {
background-color: var(--ed-color-common-white);
width: 100%;
padding: 15px 30px;
font-size: 16px;
font-weight: 500;
border: 1px solid var(--ed-color-border-1);
transition: all 0.3s ease-in-out;
}
.checkout-top .coupon-list .verify-item .title:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.checkout-top .coupon-list .verify-item .title button {
font-weight: 600;
margin: 0 5px;
text-decoration: underline;
}
.checkout-top .coupon-list .verify-item .login-form {
padding-top: 30px;
display: none;
}
.checkout-top .coupon-list .verify-item .login-form .form-control {
background-color: var(--ed-color-grey-1);
padding: 15px 30px;
border: none;
box-shadow: none;
font-size: 14px;
color: var(--ed-color-text-body);
border-radius: 0;
margin-bottom: 20px;
max-width: 700px;
width: 100%;
}
.checkout-top .coupon-list .verify-item .login-form .form-control::-webkit-input-placeholder {
color: var(--ed-color-text-body);
}
.checkout-top .coupon-list .verify-item .login-form .form-control:-moz-placeholder {
color: var(--ed-color-text-body);
}
.checkout-top .coupon-list .verify-item .login-form .form-control::-moz-placeholder {
color: var(--ed-color-text-body);
}
.checkout-top .coupon-list .verify-item .login-form .form-control:-ms-input-placeholder {
color: var(--ed-color-text-body);
}
.checkout-top .coupon-list .verify-item .checkbox-wrap {
max-width: 700px;
width: 100%;
margin-bottom: 30px;
display: flex;
align-items: center;
justify-content: space-between;
}
.checkout-top .coupon-list .verify-item .checkbox-wrap .checkbox-item {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
}
.checkout-top .coupon-list .verify-item .checkbox-wrap .checkbox-item label {
color: var(--ed-color-text-body);
cursor: pointer;
}
.checkout-top .coupon-list .verify-item .checkbox-wrap .forgot {
color: var(--ed-color-common-white);
font-weight: 600;
}
.checkout-top .coupon-list .verify-item .checkbox-wrap .forgot:hover {
color: var(--ed-color-theme-primary);
}
.checkout-left {
padding-right: 10px;
}
@media only screen and (max-width: 992px) {
.checkout-left {
padding-right: 0;
}
}
.checkout-left .form-header {
font-size: 30px;
font-weight: 600;
line-height: 1;
margin-bottom: 40px;
}
.checkout-form-wrap .form-group:not(:last-of-type) {
margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
.checkout-form-wrap .form-item.name {
margin-bottom: 30px;
}
}
.checkout-form-wrap .form-item .form-title {
color: var(--ed-color-heading-primary);
font-size: 14px;
font-weight: 500;
margin-bottom: 20px;
}
.checkout-form-wrap .form-item .form-control {
padding: 18px 20px;
background-color: var(--ed-color-common-white);
border: none;
box-shadow: none;
font-size: 16px;
border: 1px solid var(--ed-color-border-1);
border-radius: 6px;
}
.checkout-form-wrap .form-item .form-control::-webkit-input-placeholder {
color: var(--ed-color-text-body);
}
.checkout-form-wrap .form-item .form-control:-moz-placeholder {
color: var(--ed-color-text-body);
}
.checkout-form-wrap .form-item .form-control::-moz-placeholder {
color: var(--ed-color-text-body);
}
.checkout-form-wrap .form-item .form-control:-ms-input-placeholder {
color: var(--ed-color-text-body);
}
.checkout-form-wrap .form-item .form-control.street-control {
margin-bottom: 20px;
}
.checkout-form-wrap .form-item .form-control.nice-select {
width: 100%;
height: auto;
line-height: inherit;
padding: 18px 20px;
}
.checkout-form-wrap .form-item .form-control.nice-select:after {
top: 46%;
width: 10px;
height: 10px;
border-color: var(--ed-color-text-body);
border-bottom: 1px solid var(--ed-color-text-body);
border-right: 1px solid var(--ed-color-text-body);
right: 25px;
}
.checkout-form-wrap .form-item .form-control.nice-select .list {
background-color: var(--ed-color-common-white);
width: 100%;
border-radius: 0;
border: 1px solid var(--ed-color-border-1);
}
.checkout-form-wrap .form-item .form-control.nice-select .list li {
padding-left: 20px;
}
.checkout-right {
padding-left: 10px;
}
@media only screen and (max-width: 992px) {
.checkout-right {
margin-top: 50px;
padding-left: 0;
}
}
.checkout-right .form-header {
font-size: 30px;
font-weight: 600;
line-height: 1;
margin-bottom: 40px;
}
.order-box {
background-color: var(--ed-color-grey-1);
padding: 30px 40px;
border: 1px solid var(--ed-color-border-1);
}
@media only screen and (max-width: 767px) {
.order-box {
padding: 30px 20px;
}
}
.order-box .order-item {
display: grid;
grid-template-columns: 80px 1fr;
grid-gap: 20px;
}
.order-box .order-item:not(:last-of-type) {
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 1px solid var(--ed-color-border-1);
}
@media only screen and (max-width: 767px) {
.order-box .order-item {
grid-template-columns: 1fr;
}
}
.order-box .order-item .order-left .order-img {
height: 80px;
width: 80px;
}
.order-box .order-item .order-left .order-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.order-box .order-item .order-left .product {
color: var(--ed-color-text-body);
font-size: 16px;
font-weight: 500;
margin-bottom: 0;
line-height: 1;
text-transform: uppercase;
}
.order-box .order-item .order-left .left-title {
font-size: 16px;
font-weight: 400;
color: var(--ed-color-text-body);
line-height: 1;
}
.order-box .order-item .order-right {
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 15px;
column-gap: 15px;
flex-wrap: wrap;
row-gap: 15px;
}
.order-box .order-item .order-right .content .category {
color: var(--ed-color-theme-primary);
text-transform: uppercase;
font-size: 14px;
font-weight: 400;
display: block;
line-height: 1;
margin-bottom: 15px;
}
.order-box .order-item .order-right .content .title {
font-size: 18px;
font-weight: 600;
margin-bottom: 0;
line-height: 1;
}
.order-box .order-item .order-right .price {
color: var(--ed-color-text-body);
font-size: 16px;
font-weight: 500;
margin-bottom: 0;
line-height: 1;
text-transform: uppercase;
}
.order-box .order-item .order-right .right-title {
font-size: 16px;
font-weight: 500;
color: var(--ed-color-heading-primary);
line-height: 1;
}
.order-box .order-item .order-right .right-title span {
color: var(--ed-color-text-body);
font-weight: 400;
margin-right: 10px;
}
.order-box .order-item .order-right .right-title.title-2 {
color: var(--ed-color-theme-primary);
}
.order-box .order-item.item-1 {
grid-template-columns: 200px 1fr;
}
@media only screen and (max-width: 767px) {
.order-box .order-item.item-1 {
grid-template-columns: 100px 1fr;
}
}
.order-box .order-item.item-1 .order-right {
justify-content: end;
}
.payment-option-wrap {
margin-top: 40px;
}
.payment-option-wrap .payment-option .shipping-option:not(:last-of-type) {
margin-bottom: 20px;
}
.payment-option-wrap .payment-option .shipping-option input {
accent-color: var(--ed-color-theme-primary);
}
.payment-option-wrap .payment-option .shipping-option label {
font-size: 16px;
font-weight: 500;
color: var(--ed-color-heading-primary);
margin-left: 5px;
}
.payment-option-wrap .payment-option .shipping-option .options input {
accent-color: var(--ed-color-theme-primary);
margin-bottom: 15px;
}
.payment-option-wrap .desc {
margin: 20px 0;
}
.payment-option-wrap .form-check {
margin-bottom: 40px;
}
.payment-option-wrap .form-check .form-check-input {
border: 1px solid var(--ed-color-border-1);
box-shadow: none;
accent-color: var(--ed-color-theme-primary);
}
.payment-option-wrap .form-check .form-check-label {
cursor: pointer;
}
.payment-option-wrap .order-btn {
width: 100%;
justify-content: center;
}  .cart-top-content {
background-color: var(--ed-color-grey-1);
padding: 30px 40px;
margin-bottom: 40px;
}
.cart-top-content p {
color: var(--ed-color-heading-primary);
font-size: 14px;
font-weight: 400;
margin-bottom: 5px;
}
.cart-top-content p span {
color: var(--ed-color-theme-primary);
font-weight: 500;
}
.cart-top-content p line {
background-color: var(--ed-color-grey-1);
}
.cart-top-content .line {
background-color: var(--ed-color-common-white);
position: relative;
display: inline-block;
width: 100%;
height: 6px;
overflow: hidden;
border-radius: 30px;
}
.cart-top-content .line:before {
background-color: var(--ed-color-theme-primary);
content: "";
width: 80%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.cart-table {
background-color: var(--ed-color-grey-1);
}
@media only screen and (max-width: 992px) {
.cart-table {
overflow: scroll;
}
}
@media only screen and (max-width: 992px) {
.cart-table table {
width: 900px;
}
}
@media only screen and (max-width: 767px) {
.cart-table table {
width: 800px;
}
}
.cart-table thead {
border: none;
border-bottom: 1px solid var(--ed-color-border-1);
}
.cart-table thead tr th {
background-color: var(--ed-color-grey-1);
color: var(--ed-color-text-body);
border-bottom: none;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
padding: 25px 0;
}
.cart-table thead tr th.product-subtotal {
text-align: right;
padding-right: 30px;
}
.cart-table tbody {
border: none;
border-bottom: 1px solid var(--ed-color-border-1);
padding: 30px 0;
}
.cart-table tbody tr {
vertical-align: baseline;
}
.cart-table tbody tr td {
background-color: var(--ed-color-grey-1);
color: var(--ed-color-heading-primary);
font-weight: 500;
padding: 0;
padding-top: 30px;
padding-bottom: 30px;
}
.cart-table tbody tr td.product-remove {
text-align: center;
padding: 0 25px;
color: var(--ed-color-heading-primary);
}
.cart-table tbody tr td.product-thumbnail {
display: grid;
align-items: center;
grid-template-columns: 80px 1fr;
grid-gap: 15px;
-moz-column-gap: 15px;
column-gap: 15px;
}
@media only screen and (max-width: 992px) {
.cart-table tbody tr td.product-thumbnail {
padding-right: 30px;
}
}
.cart-table tbody tr td.product-thumbnail .category {
color: var(--ed-color-theme-primary);
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 5px;
display: block;
}
.cart-table tbody tr td.product-thumbnail .title {
font-size: 18px;
font-weight: 600;
margin-bottom: 0;
}
.cart-table tbody tr td.product-price {
font-size: 16px;
font-weight: 600;
padding-right: 70px;
}
.cart-table tbody tr td.product-price span {
color: var(--ed-color-heading-primary);
}
@media only screen and (max-width: 992px) {
.cart-table tbody tr td.product-price {
padding-right: 60px;
}
}
@media only screen and (max-width: 767px) {
.cart-table tbody tr td.product-price {
padding-right: 40px;
}
}
@media only screen and (max-width: 992px) {
.cart-table tbody tr td.product-quantity {
padding-right: 60px;
}
}
@media only screen and (max-width: 767px) {
.cart-table tbody tr td.product-quantity {
padding-right: 0;
}
}
.cart-table tbody tr td.product-quantity input {
background-color: transparent;
color: var(--ed-color-heading-primary);
border-radius: 0;
border: 1px solid var(--ed-color-border-1);
height: 50px;
text-align: center;
outline: none;
box-shadow: none;
padding: 0 8px;
}
.cart-table tbody tr td.product-subtotal {
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 600;
text-align: right;
padding-right: 30px;
}
@media only screen and (max-width: 767px) {
.cart-table tbody tr td.product-subtotal {
padding-right: 20px;
}
}
.cart-table.table-2 thead {
background-color: #fff;
}
.cart-btn-wrap {
background-color: var(--ed-color-grey-1);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 10px;
padding: 30px;
}
.cart-btn-wrap .left-item {
display: grid;
grid-template-columns: 295px 1fr;
align-items: center;
grid-gap: 10px;
}
@media only screen and (max-width: 767px) {
.cart-btn-wrap .left-item {
grid-template-columns: 1fr;
}
}
.cart-btn-wrap .left-item .form-control {
background-color: var(--ed-color-common-white);
box-shadow: none;
font-size: 14px;
border: 1px solid transparent;
color: var(--ed-color-text-body);
padding: 14px 20px;
border-radius: 0;
}
.cart-btn-wrap .left-item .form-control::-webkit-input-placeholder {
font-size: 14px;
color: var(--ed-color-text-body);
}
.cart-btn-wrap .left-item .form-control:-moz-placeholder {
font-size: 14px;
color: var(--ed-color-text-body);
}
.cart-btn-wrap .left-item .form-control::-moz-placeholder {
font-size: 14px;
color: var(--ed-color-text-body);
}
.cart-btn-wrap .left-item .form-control:-ms-input-placeholder {
font-size: 14px;
color: var(--ed-color-text-body);
}
.cart-btn-wrap .left-item .rr-primary-btn {
font-size: 14px;
padding: 17px 30px;
border: none;
}
.cart-btn-wrap .update-btn {
background-color: transparent;
color: var(--ed-color-heading-primary);
font-size: 14px;
padding: 17px 30px;
border: 1px solid var(--ed-color-border-1);
text-transform: uppercase;
}
.cart-btn-wrap .update-btn:before {
background-color: var(--ed-color-theme-primary);
}
.cart-btn-wrap .update-btn:hover {
color: var(--ed-color-common-white);
border: 1px solid var(--ed-color-theme-primary);
}
.cart-box-title {
font-size: 36px;
font-weight: 600;
margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
.cart-box-title {
font-size: 28px;
}
}
.checkout-wrapper {
background-color: var(--ed-color-grey-1);
max-width: 600px;
width: 100%;
border: 1px solid var(--ed-color-border-1);
padding: 35px 0;
}
@media only screen and (max-width: 992px) {
.checkout-wrapper {
margin-top: 30px;
}
}
.checkout-wrapper .checkout-item {
display: flex;
align-items: center;
align-items: start;
-moz-column-gap: 20px;
column-gap: 20px;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 15px;
padding-left: 35px;
padding-right: 35px;
}
@media only screen and (max-width: 767px) {
.checkout-wrapper .checkout-item {
align-items: center;
}
}
.checkout-wrapper .checkout-item:not(:last-of-type) {
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 1px solid var(--ed-color-border-1);
}
.checkout-wrapper .checkout-item .title {
color: var(--ed-color-text-body);
font-size: 16px;
font-weight: 500;
margin-bottom: 0;
text-transform: uppercase;
}
.checkout-wrapper .checkout-item span {
color: var(--ed-color-heading-primary);
font-size: 14px;
font-weight: 500;
}
.checkout-wrapper .checkout-item p {
color: var(--ed-color-text-body);
font-size: 14px;
font-weight: 400;
line-height: 1.8;
margin: 20px 0;
}
.checkout-wrapper .checkout-item .checkout-option-wrapper .shipping-option input {
accent-color: var(--ed-color-theme-primary);
}
.checkout-wrapper .checkout-item .checkout-option-wrapper .shipping-option label {
font-size: 16px;
color: var(--ed-color-heading-primary);
font-weight: 400;
margin-left: 10px;
cursor: pointer;
}
.checkout-wrapper .checkout-item .checkout-option-wrapper .shipping-option:not(:last-of-type) {
margin-bottom: 10px;
}
.checkout-wrapper .checkout-item.item-1 .title {
color: var(--ed-color-heading-primary);
font-weight: 600;
}
.checkout-proceed {
margin-top: 30px;
}  .course-category {
background-color: var(--ed-color-grey-1);
}
.category-items {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
row-gap: 17px;
}
.category-items:not(:last-of-type) {
margin-bottom: 17px;
}
.category-items .category-item:not(:last-of-type) {
margin-right: 17px;
}
.category-items .category-item a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
font-size: 18px;
font-weight: 500;
line-height: 1;
padding: 7.5px 30px 7.5px 5px;
display: inline-flex;
align-items: center;
-moz-column-gap: 15px;
column-gap: 15px;
border-radius: 100px;
border: 1px solid #E0E5EB;
}
@media only screen and (max-width: 767px) {
.category-items .category-item a {
font-size: 14px;
padding: 7.5px 20px 7.5px 5px;
}
}
.category-items .category-item a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.category-items .category-item a span {
background-color: var(--ed-color-grey-1);
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.category-items .category-item a span img {
height: 30px;
width: 30px;
}  .header-6 .shape {
position: absolute;
bottom: -34px;
left: 0;
width: 100%;
height: 41px;
}
@media only screen and (max-width: 992px) {
.header-6 .shape {
display: none;
}
}
.header-6 .shape img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.header-6 .top-bar {
background-color: var(--ed-color-theme-primary);
}
.header-6 .top-bar .top-bar-inner .top-bar-left ul li a {
color: var(--ed-color-common-white);
}
.header-6 .top-bar .top-bar-inner .top-bar-right .register-box {
padding-right: 0;
margin-right: 0;
border: none;
}
.header-6 .top-bar .top-bar-inner .top-bar-right .register-box a {
color: var(--ed-color-common-white);
}
.header-6 .top-bar .top-bar-inner .top-bar-right .register-box a:hover {
color: var(--ed-color-common-white);
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul li {
margin: 0 20px;
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul li a {
text-transform: capitalize;
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul li:first-child {
margin-left: 0;
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul li:last-child {
margin-right: 0;
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul .menu-item-has-children {
padding-right: 0;
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:after {
display: none;
}
.header-6 .primary-header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
padding-right: 0;
}
.hero-section-6 {
position: relative;
z-index: 1;
overflow: hidden;
}
.hero-section-6 .bg-item .hero-bg-img {
position: absolute;
top: -40px;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
}
@media (max-width: 1200px) {
.hero-section-6 .bg-item .hero-bg-img {
top: 0;
}
}
.hero-section-6 .bg-item .hero-bg-img img {
width: 96%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
@media (max-width: 1399px) {
.hero-section-6 .bg-item .hero-bg-img img {
-o-object-fit: cover;
object-fit: cover;
}
}
@media (max-width: 1200px) {
.hero-section-6 .bg-item .hero-bg-img img {
width: 100%;
}
}
.hero-section-6 .bg-item .bg-overlay {
background: linear-gradient(90deg, #07A698 30.56%, rgba(5, 47, 43, 0) 81.23%);
transform: matrix(-1, 0, 0, 1, 0, 0);
position: absolute;
width: 100%;
height: 100%;
position: absolute;
top: 0;
right: -72px;
z-index: -1;
}
@media (max-width: 1200px) {
.hero-section-6 .bg-item .bg-overlay {
background-color: #07A698;
width: 100%;
right: 0;
opacity: 0.8;
}
}
.hero-section-6 .bg-item .shape {
position: absolute;
bottom: 0;
right: 0;
}
.hero-section-6 .bg-item .shape-2 {
position: absolute;
bottom: -20px;
left: 0;
}
@media only screen and (max-width: 992px) {
.hero-section-6 .bg-item .shape-2 {
display: none;
}
}
.hero-section-6 .bg-item .shape-2 img {
width: 100%;
height: 100%;
-o-object-fit: contain;
object-fit: contain;
}
.hero-content.hero-content-6 {
padding: 200px 0 260px 0;
}
@media only screen and (max-width: 992px) {
.hero-content.hero-content-6 {
padding: 150px 0;
}
}
@media only screen and (max-width: 767px) {
.hero-content.hero-content-6 {
padding: 100px 0;
}
}
.hero-content.hero-content-6 .section-heading .section-title {
color: var(--ed-color-common-white);
}
@media (max-width: 1399px) {
.hero-content.hero-content-6 .section-heading .section-title br {
display: none;
}
}
@media (max-width: 1200px) {
.hero-content.hero-content-6 .section-heading .section-title br {
display: block;
}
}
@media only screen and (max-width: 767px) {
.hero-content.hero-content-6 .section-heading .section-title br {
display: none;
}
}
.hero-content.hero-content-6 .hero-btn-wrap {
margin-bottom: 0;
}
.hero-content.hero-content-6 .hero-btn-wrap .video-btn a {
color: var(--ed-color-common-white);
}
.kid-content-section {
padding-top: 75px;
}
.service-section-6 {
position: relative;
z-index: 1;
}
.service-section-6 .bg-shape {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.service-item-6 {
background-color: var(--ed-color-common-white);
padding: 20px;
border-radius: 15px;
}
.service-item-6 .service-thumb {
height: 230px;
border-radius: 15px;
margin-bottom: 30px;
}
.service-item-6 .service-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.service-item-6 .service-content .title {
font-size: 22px;
font-weight: 600;
margin-bottom: 15px;
}
.service-item-6 .service-content p {
margin-bottom: 15px;
}
.service-item-6 .service-content .read-more {
color: var(--ed-color-theme-primary);
font-size: 16px;
font-weight: 500;
display: flex;
align-items: center;
-moz-column-gap: 5px;
column-gap: 5px;
}
.service-item-6 .service-content .read-more i {
font-size: 14px;
margin-top: 2px;
}
.course-item-6 .course-thumb {
position: relative;
}
.course-item-6 .course-thumb img {
transform: scale(1);
}
.course-item-6 .course-thumb .join-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0);
z-index: 2;
transition: all 0.5s ease-in-out;
}
.course-item-6 .course-thumb .join-btn a {
background-color: var(--ed-color-common-white);
font-size: 16px;
font-weight: 600;
padding: 10px 25px;
border-radius: 100px;
line-height: 1;
}
.course-item-6 .course-thumb .overlay {
background-color: var(--ed-color-theme-primary);
width: 0;
height: 100%;
position: absolute;
bottom: 0;
left: 0;
transition: all 0.3s ease-in-out;
}
.course-item-6 .course-content {
border-bottom: 0;
margin-bottom: 10px;
}
.course-item-6:hover .course-thumb .overlay {
width: 100%;
}
.course-item-6:hover .course-thumb img {
transform: scale(1);
}
.course-item-6:hover .course-thumb .join-btn {
transform: translate(-50%, -50%) scale(1);
}
.team-section-7 {
position: relative;
z-index: 1;
}
.team-section-7 .bg-shape {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.team-item-6 {
height: 500px;
position: relative;
}
.team-item-6 .team-thumb {
height: 400px;
border-radius: 15px;
overflow: hidden;
}
.team-item-6 .team-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: top;
object-position: top;
border-radius: 15px;
transition: all 0.3s ease-in-out;
}
.team-item-6 .team-content {
background-color: var(--ed-color-common-white);
width: 90%;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
padding: 35px 0;
border-radius: 15px;
}
.team-item-6 .team-content .title {
font-size: 22px;
margin-bottom: 0;
}
.team-item-6 .team-content span {
color: var(--ed-color-text-body);
font-weight: 400;
display: block;
margin-top: 5px;
}
.team-item-6 .team-content .social-list {
margin-top: 20px;
}
.team-item-6 .team-content .social-list li {
display: inline-flex;
}
.team-item-6 .team-content .social-list li:not(:last-of-type) {
margin-right: 5px;
}
.team-item-6 .team-content .social-list li a {
color: var(--ed-color-theme-primary);
height: 40px;
width: 40px;
border: 1px solid #E0E5EB;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.team-item-6 .team-content .social-list li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
border: 1px solid var(--ed-color-theme-primary);
}
.team-item-6:hover .team-thumb img {
transform: scale(1.03);
}
.testimonial-section-6 {
position: relative;
z-index: 1;
}
.testimonial-section-6 .bg-img {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.testi-carousel-4 {
padding-bottom: 100px;
}
.testi-carousel-4 .swiper-pagination {
bottom: 0;
}
.testi-carousel-4 .swiper-pagination .swiper-pagination-bullet {
background-color: transparent;
height: 20px;
width: 20px;
border: 2px solid #E0E5EB;
opacity: 1;
border-radius: 50%;
position: relative;
}
.testi-carousel-4 .swiper-pagination .swiper-pagination-bullet:before {
background-color: var(--ed-color-theme-primary);
content: "";
height: 7px;
width: 7px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
visibility: hidden;
opacity: 0;
}
.testi-carousel-4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
border: 2px solid var(--ed-color-theme-primary);
}
.testi-carousel-4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
visibility: visible;
opacity: 1;
}
.testi-item-4 p {
margin-bottom: 0;
}
.testi-item-4 .testi-bottom {
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 20px;
column-gap: 20px;
margin-top: 30px;
padding-top: 30px;
border-top: 1px dashed #E0E5EB;
}
@media only screen and (max-width: 767px) {
.testi-item-4 .testi-bottom {
flex-wrap: wrap;
row-gap: 15px;
}
}
.testi-item-4 .testi-bottom .testi-review {
list-style: none;
display: flex;
align-items: center;
}
.testi-item-4 .testi-bottom .testi-review li {
color: #FFB539;
}
.event-card-2 {
border: 1px solid #E3EAF3;
grid-template-columns: 200px 1fr;
}
@media only screen and (max-width: 767px) {
.event-card-2 {
padding: 30px 20px;
grid-template-columns: 1fr;
}
}
.event-card-2 .event-thumb {
height: 170px;
max-width: 200px;
width: 100%;
}
@media only screen and (max-width: 767px) {
.event-card-2 .event-thumb {
max-width: 100%;
}
}
.event-card-2 .event-content .event-list {
display: flex;
align-items: center;
-moz-column-gap: 20px;
column-gap: 20px;
margin: 0;
margin-bottom: 0;
margin-bottom: 10px;
}
@media (max-width: 1200px) {
.event-card-2 .event-content .event-list {
flex-wrap: wrap;
row-gap: 5px;
}
}
.event-card-2 .event-content .event-list li {
font-size: 14px;
}
.event-card-2 .event-content .event-bottom {
display: flex;
align-items: center;
-moz-column-gap: 30px;
column-gap: 30px;
}
@media (max-width: 1200px) {
.event-card-2 .event-content .event-bottom {
flex-wrap: wrap;
row-gap: 10px;
}
}
.event-card-2 .event-content .event-bottom .ed-primary-btn {
padding: 15px 30px;
}
.event-card-2 .event-content .event-bottom .event-author {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
}
.event-card-2 .event-content .event-bottom .event-author .author-thumb {
height: 40px;
width: 40px;
}
.event-card-2 .event-content .event-bottom .event-author .author-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 50%;
}
.register-wrap {
background: var(--ed-color-common-white);
box-shadow: 0px 8px 40px rgba(15, 27, 49, 0.12);
border-radius: 10px;
padding: 80px;
position: relative;
z-index: 1;
overflow: hidden;
}
@media (max-width: 1200px) {
.register-wrap {
padding: 80px 40px;
}
}
@media only screen and (max-width: 767px) {
.register-wrap {
padding: 50px 20px;
}
}
.register-wrap .shape {
position: absolute;
bottom: -20px;
left: 56%;
transform: translateX(-50%);
z-index: -1;
}
.register-wrap .section-heading {
position: relative;
z-index: 5;
}
@media (max-width: 1200px) {
.register-wrap .section-heading .section-title {
font-size: 36px;
}
}
@media only screen and (max-width: 767px) {
.register-wrap .section-heading .section-title {
font-size: 28px;
}
}
.register-wrap .section-heading .section-title br {
display: block;
}
.register-wrap .section-heading .section-title span {
color: var(--ed-color-theme-primary);
}
.register-wrap .register-img {
position: absolute;
top: 0;
right: 0;
height: 100%;
max-width: 576px;
width: 100%;
}
@media only screen and (max-width: 992px) {
.register-wrap .register-img {
display: none;
}
}
.register-wrap .register-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: top;
object-position: top;
}
.blog-section-6 {
position: relative;
z-index: 1;
}
@media only screen and (max-width: 767px) {
.blog-section-6 {
background-color: #EBF2F2;
}
}
.blog-section-6 .bg-img {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.footer-6 {
position: relative;
z-index: 1;
margin-top: -28px;
}
@media only screen and (max-width: 992px) {
.footer-6 {
padding-top: 100px;
margin-top: -60px;
}
}
@media only screen and (max-width: 767px) {
.footer-6 {
padding-top: 70px;
margin-top: 0px;
background-color: #162726;
}
}
.footer-6 .bg-img {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
@media only screen and (max-width: 767px) {
.footer-6 .bg-img {
display: none;
}
}  .hero-7 {
background: #F0FEFF;
position: relative;
z-index: 1;
}
@media (max-width: 1200px) {
.hero-7 .hero-img-wrap-7 {
display: none;
}
}
.hero-7 .hero-img-wrap-7 .hero-img-1 {
position: absolute;
top: 100px;
right: 100px;
max-width: 305px;
height: 305px;
}
@media (max-width: 1600px) {
.hero-7 .hero-img-wrap-7 .hero-img-1 {
right: 20px;
}
}
@media (max-width: 1399px) {
.hero-7 .hero-img-wrap-7 .hero-img-1 {
max-width: 250px;
height: 250px;
}
}
.hero-7 .hero-img-wrap-7 .hero-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.hero-7 .hero-img-wrap-7 .hero-img-2 {
position: absolute;
bottom: 100px;
left: 100px;
max-width: 305px;
height: 305px;
}
@media (max-width: 1600px) {
.hero-7 .hero-img-wrap-7 .hero-img-2 {
left: 20px;
}
}
@media (max-width: 1399px) {
.hero-7 .hero-img-wrap-7 .hero-img-2 {
max-width: 250px;
height: 250px;
}
}
.hero-7 .hero-img-wrap-7 .hero-img-2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.hero-content-7 {
padding: 120px 0;
}
.hero-content-7 .section-heading .section-title br {
display: block;
}
.hero-content-7 .hero-form {
margin: 0 auto;
}
.hero-content-7 .about-counter-items {
max-width: 908px;
margin: 0 auto;
margin-top: 70px;
}
@media (max-width: 1600px) {
.hero-content-7 .about-counter-items {
max-width: 850px;
}
}
@media (max-width: 1200px) {
.hero-content-7 .about-counter-items {
max-width: 900px;
}
}
@media only screen and (max-width: 992px) {
.hero-content-7 .about-counter-items {
max-width: 600px;
}
}
.hero-content-7 .about-counter-items .about-counter-item .content p {
text-align: left;
}
@media only screen and (max-width: 992px) {
.hero-content-7 .about-counter-items .about-counter-item:nth-child(3) {
display: none;
}
}
.category-wrap > div {
padding: 0;
}
@media only screen and (max-width: 992px) {
.category-wrap > div {
padding: 0 15px;
}
}
.category-wrap > div:nth-child(1) .category-item-2 {
padding-right: 40px;
padding-bottom: 40px;
border-right: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 1200px) {
.category-wrap > div:nth-child(1) .category-item-2 {
padding-left: 20px;
}
}
@media only screen and (max-width: 992px) {
.category-wrap > div:nth-child(1) .category-item-2 {
padding: 0;
border: none;
}
}
.category-wrap > div:nth-child(2) .category-item-2 {
padding-left: 40px;
padding-right: 40px;
padding-bottom: 40px;
border-right: 1px solid rgba(255, 255, 255, 0.06);
}
@media only screen and (max-width: 992px) {
.category-wrap > div:nth-child(2) .category-item-2 {
padding: 0;
border: none;
}
}
.category-wrap > div:nth-child(3) .category-item-2 {
padding-left: 40px;
padding-bottom: 40px;
}
@media only screen and (max-width: 992px) {
.category-wrap > div:nth-child(3) .category-item-2 {
padding: 0;
border: none;
}
}
.category-wrap > div:nth-child(4) .category-item-2 {
padding-right: 40px;
padding-top: 40px;
border-top: 1px solid rgba(255, 255, 255, 0.06);
border-right: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 1200px) {
.category-wrap > div:nth-child(4) .category-item-2 {
padding-left: 20px;
}
}
@media only screen and (max-width: 992px) {
.category-wrap > div:nth-child(4) .category-item-2 {
padding: 0;
border: none;
}
}
.category-wrap > div:nth-child(5) .category-item-2 {
padding-right: 40px;
padding-left: 40px;
padding-top: 40px;
border-top: 1px solid rgba(255, 255, 255, 0.06);
border-right: 1px solid rgba(255, 255, 255, 0.06);
}
@media only screen and (max-width: 992px) {
.category-wrap > div:nth-child(5) .category-item-2 {
padding: 0;
border: none;
}
}
.category-wrap > div:nth-child(6) .category-item-2 {
padding-top: 40px;
padding-left: 40px;
border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media only screen and (max-width: 992px) {
.category-wrap > div:nth-child(6) .category-item-2 {
padding: 0;
border: none;
}
}
.category-item-2 {
display: grid;
grid-template-columns: 70px 1fr;
grid-gap: 30px;
}
@media (max-width: 1200px) {
.category-item-2 {
grid-template-columns: 1fr;
}
}
.category-item-2 .icon {
background-color: var(--ed-color-common-white);
height: 70px;
width: 70px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.3s ease-in-out;
}
.category-item-2 .icon img {
transition: all 0.3s ease-in-out;
}
.category-item-2 .content .title {
font-size: 24px;
font-weight: 600;
margin-bottom: 15px;
}
.category-item-2 .content p {
color: #6C706F;
}
.category-item-2 .content .learn-more {
color: var(--ed-color-theme-primary);
display: flex;
align-items: center;
-moz-column-gap: 5px;
column-gap: 5px;
}
.category-item-2 .content .learn-more i {
font-size: 14px;
margin-top: 2px;
}
.category-item-2:hover .icon {
background-color: var(--ed-color-theme-primary);
}
.category-item-2:hover .icon img {
filter: invert(1) brightness(5);
}
.footer-insta-area {
display: grid;
align-items: center;
grid-template-columns: repeat(6, 1fr);
grid-gap: 10px;
max-width: 1760px;
width: 100%;
padding: 0 15px;
margin: 0 auto;
padding-top: 80px;
margin-bottom: 80px;
}
@media (max-width: 1200px) {
.footer-insta-area {
grid-template-columns: repeat(4, 1fr);
grid-gap: 24px;
}
}
@media only screen and (max-width: 992px) {
.footer-insta-area {
grid-template-columns: repeat(3, 1fr);
}
}
@media only screen and (max-width: 767px) {
.footer-insta-area {
grid-template-columns: 1fr;
}
}
.footer-insta-area .footer-insta-item {
position: relative;
z-index: 1;
height: 285px;
max-width: 285px;
width: 100%;
border-radius: 10px;
overflow: hidden;
}
.footer-insta-area .footer-insta-item .insta-img {
width: 100%;
height: 100%;
}
.footer-insta-area .footer-insta-item .insta-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.footer-insta-area .footer-insta-item .overlay {
background-color: #07A698;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
visibility: hidden;
opacity: 0;
transition: all 0.3s ease-in-out;
}
.footer-insta-area .footer-insta-item .icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0);
transition: all 0.3s ease-in-out;
}
.footer-insta-area .footer-insta-item .icon a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
height: 55px;
width: 55px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.footer-insta-area .footer-insta-item .icon a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.footer-insta-area .footer-insta-item:hover .overlay {
visibility: visible;
opacity: 0.64;
}
.footer-insta-area .footer-insta-item:hover .icon {
transform: translate(-50%, -50%) scale(1);
}  .header-7 .top-bar {
background-color: #1F2C30;
}
.header-7 .top-bar-inner .top-bar-right .country-list {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
margin-right: 20px;
padding: 5px 0;
padding-right: 10px;
border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.header-7 .top-bar-inner .top-bar-right .country-list i {
color: var(--ed-color-common-white);
}
.header-7 .top-bar-inner .top-bar-right .ddl-select {
background-color: transparent;
padding: 0;
padding-right: 25px;
border: none;
height: auto;
color: var(--ed-color-common-white);
font-size: 16px;
}
.header-7 .top-bar-inner .top-bar-right .ddl-select:after {
border-color: var(--ed-color-common-white);
height: 8px;
width: 8px;
margin-top: -5px;
}
.header-7 .top-bar-inner .top-bar-right .ddl-select ul li {
color: var(--ed-color-heading-primary);
}
.hero-section-8 {
position: relative;
z-index: 1;
padding: 0;
}
.hero-section-8 .bg-shapes .bg-shape-1 {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 70%;
z-index: -1;
}
.hero-section-8 .bg-shapes .bg-shape-1 img {
width: 100%;
}
.hero-section-8 .bg-shapes .bg-shape-2 {
position: absolute;
top: 0;
left: 0;
width: 70%;
z-index: -1;
}
.hero-section-8 .bg-shapes .bg-shape-2 img {
width: 100%;
}
.hero-section-8 .bg-shapes .bg-shape-3 {
position: absolute;
top: 0;
right: -102px;
height: 115%;
z-index: -1;
transform: rotate(2deg);
}
.hero-section-8 .bg-shapes .bg-shape-3 img {
height: 100%;
}
@media (max-width: 1700px) {
.hero-section-8 .bg-shapes .bg-shape-3 {
right: -325px;
}
}
@media (max-width: 1600px) {
.hero-section-8 .bg-shapes .bg-shape-3 {
right: -275px;
}
}
@media (max-width: 1399px) {
.hero-section-8 .bg-shapes .bg-shape-3 {
display: none;
}
}
.hero-section-8 .hero-img-wrap-8 {
height: 1237px;
width: 1200px;
border-radius: 50%;
overflow: hidden;
position: absolute;
top: 50%;
right: -14%;
transform: translateY(-50%);
}
@media (max-width: 1800px) {
.hero-section-8 .hero-img-wrap-8 {
right: -16%;
}
}
@media (max-width: 1700px) {
.hero-section-8 .hero-img-wrap-8 {
right: -20%;
}
}
@media (max-width: 1700px) {
.hero-section-8 .hero-img-wrap-8 {
right: -30%;
}
}
@media (max-width: 1399px) {
.hero-section-8 .hero-img-wrap-8 {
right: -50%;
}
}
@media (max-width: 1200px) {
.hero-section-8 .hero-img-wrap-8 {
right: -65%;
}
}
@media only screen and (max-width: 992px) {
.hero-section-8 .hero-img-wrap-8 {
display: none;
}
}
.hero-section-8 .hero-img-wrap-8 img {
width: 80%;
height: 82%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: 65% 150px;
object-position: 65% 150px;
}
@media (max-width: 1800px) {
.hero-section-8 .hero-img-wrap-8 img {
width: 82%;
height: 82%;
}
}
@media (max-width: 1700px) {
.hero-section-8 .hero-img-wrap-8 img {
-o-object-position: 85% 150px;
object-position: 85% 150px;
}
}
@media (max-width: 1399px) {
.hero-section-8 .hero-img-wrap-8 img {
-o-object-position: 100% 150px;
object-position: 100% 150px;
}
}
.hero-section-8 .hero-items {
display: flex;
align-items: center;
flex-direction: column;
align-items: end;
row-gap: 20px;
position: absolute;
top: 65%;
left: 50%;
transform: translate(-50%, -50%);
}
@media (max-width: 1200px) {
.hero-section-8 .hero-items {
left: 63%;
}
}
@media only screen and (max-width: 992px) {
.hero-section-8 .hero-items {
display: none;
}
}
.hero-section-8 .hero-items .hero-item {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
display: inline-block;
align-items: center;
padding: 15px 30px;
border-radius: 100px;
}
.hero-section-8 .hero-items .hero-item img {
margin-right: 10px;
}
.hero-section-8 .hero-items .hero-item span {
-moz-column-gap: 15px;
column-gap: 15px;
font-size: 16px;
font-weight: 600;
line-height: 1;
text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
.hero-section-8 .shapes {
display: none;
}
}
.hero-section-8 .shapes .shape.shape-1 {
left: 0;
bottom: 20px;
}
.hero-section-8 .shapes .shape.shape-2 {
top: 30px;
left: 40%;
bottom: auto;
}
.hero-section-8 .shapes .shape.shape-3 {
top: 30px;
left: 70px;
}
.hero-content-8 {
padding: 170px 0;
}
@media only screen and (max-width: 992px) {
.hero-content-8 {
padding: 120px 0;
}
}
@media only screen and (max-width: 767px) {
.hero-content-8 {
padding: 100px 0;
}
}
@media (max-width: 1200px) {
.hero-content-8 .section-heading .section-title {
font-size: 40px;
}
.hero-content-8 .section-heading .section-title br {
display: block;
}
}
@media only screen and (max-width: 992px) {
.hero-content-8 .section-heading .section-title {
font-size: 50px;
}
}
@media only screen and (max-width: 767px) {
.hero-content-8 .section-heading .section-title {
font-size: 36px;
}
.hero-content-8 .section-heading .section-title br {
display: none;
}
}
.cat-item {
background-color: var(--ed-color-grey-2);
padding: 40px 20px;
border-radius: 15px;
position: relative;
z-index: 1;
overflow: hidden;
}
.cat-item .shape {
background: #07A698;
filter: blur(50px);
height: 157px;
width: 157px;
border-radius: 50%;
position: absolute;
top: -55px;
right: -45px;
z-index: -1;
transition: all 0.3s ease-in-out;
visibility: hidden;
opacity: 0;
}
.cat-item .icon {
background-color: var(--ed-color-common-white);
height: 80px;
width: 80px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
margin: 0 auto;
margin-bottom: 20px;
}
.cat-item .title {
font-size: 20px;
font-weight: 600;
margin-bottom: 0px;
line-height: 1;
}
.cat-item span {
font-size: 14px;
font-weight: 400;
line-height: 1;
}
.cat-item:hover .shape {
top: -65px;
right: -55px;
visibility: visible;
opacity: 1;
}
.service-promo {
background-color: #143532;
}
.service-promo .service-promo-container {
max-width: 1755px;
}
.service-promo-wrap {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-gap: 24px;
}
@media (max-width: 1200px) {
.service-promo-wrap {
grid-template-columns: repeat(3, 1fr);
}
}
@media only screen and (max-width: 992px) {
.service-promo-wrap {
grid-template-columns: repeat(2, 1fr);
}
}
@media only screen and (max-width: 767px) {
.service-promo-wrap {
grid-template-columns: repeat(1, 1fr);
}
}
.service-promo-item {
background-color: rgba(255, 255, 255, 0.08);
display: flex;
align-items: center;
padding: 20px 20px;
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 10px;
overflow: hidden;
}
.service-promo-item .icon {
margin-right: 15px;
padding-right: 15px;
border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.service-promo-item .content .title {
font-size: 20px;
font-weight: 600;
color: var(--ed-color-common-white);
}
.service-promo-item .content span {
color: var(--ed-color-common-white);
}
.about-section-8 {
position: relative;
z-index: 1;
}
.about-section-8 .bg-round-shape {
border: 60px solid rgba(7, 166, 152, 0.07);
height: 563px;
width: 563px;
border-radius: 50%;
position: absolute;
top: -200px;
right: 95px;
z-index: -1;
}
@media only screen and (max-width: 767px) {
.about-section-8 .bg-round-shape {
display: none;
}
}
.about-img-wrap-8 {
max-width: 736px;
width: 100%;
height: 694px;
position: relative;
}
.about-img-wrap-8 .about-img-1 {
max-width: 308px;
width: 100%;
height: 266px;
border: 8px solid var(--ed-color-common-white);
border-radius: 15px;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.about-img-wrap-8 .about-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.about-img-wrap-8 .about-img-2 {
max-width: 677px;
width: 100%;
height: 513px;
position: absolute;
bottom: 0;
right: 0;
border-radius: 15px;
overflow: hidden;
}
.about-img-wrap-8 .about-img-2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.about-img-wrap-8 .round-shape {
height: 277px;
width: 277px;
border: 45px solid var(--ed-color-theme-primary);
border-radius: 50%;
position: absolute;
top: 130px;
left: -100px;
}
.about-wrap-8 {
position: relative;
}
.about-content-8 {
background-color: var(--ed-color-common-white);
max-width: 720px;
width: 100%;
box-shadow: 0px 4px 80px 2px rgba(15, 21, 33, 0.1);
border-radius: 15px;
padding: 80px;
position: absolute;
top: 0;
right: 0;
}
@media (max-width: 1200px) {
.about-content-8 {
max-width: 600px;
padding: 50px 40px;
}
}
@media only screen and (max-width: 992px) {
.about-content-8 {
position: relative;
margin-top: 40px;
box-shadow: inherit;
padding: 0 15px;
}
}
.about-content-8 .about-tab .nav-tabs {
border: none;
}
@media only screen and (max-width: 767px) {
.about-content-8 .about-tab .nav-tabs {
row-gap: 10px;
}
}
.about-content-8 .about-tab .nav-tabs .nav-item {
border: none;
}
.about-content-8 .about-tab .nav-tabs .nav-item:not(:last-of-type) {
margin-right: 10px;
}
.about-content-8 .about-tab .nav-tabs .nav-item .nav-link {
background-color: rgba(7, 166, 152, 0.04);
color: var(--ed-color-theme-primary);
font-size: 16px;
font-weight: 600;
border: 1px solid rgba(7, 166, 152, 0.16);
padding: 14px 30px;
border-radius: 100px;
line-height: 1;
}
@media only screen and (max-width: 767px) {
.about-content-8 .about-tab .nav-tabs .nav-item .nav-link {
font-size: 14px;
}
}
.about-content-8 .about-tab .nav-tabs .nav-item .nav-link.active {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.about-content-8 .about-tab .tab-content {
margin-top: 30px;
}
.about-content-8 .about-tab .tab-content .tab-pane p {
margin-bottom: 25px;
}
.about-content-8 .about-tab .tab-content .tab-pane .about-list li {
display: flex;
align-items: center;
-moz-column-gap: 15px;
column-gap: 15px;
font-size: 16px;
font-weight: 500;
color: var(--ed-color-heading-primary);
}
.about-content-8 .about-tab .tab-content .tab-pane .about-list li:not(:last-of-type) {
margin-bottom: 10px;
}
.about-content-8 .about-tab .tab-content .tab-pane .about-list li span {
font-size: 16px;
font-weight: 600;
color: var(--ed-color-theme-primary);
height: 40px;
width: 40px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(7, 166, 152, 0.19);
border-radius: 50%;
}
.feature-course-top.heading-space {
align-items: end;
}
.feature-course-top .nav-tabs {
margin-bottom: 10px;
-moz-column-gap: 0;
column-gap: 0;
}
@media only screen and (max-width: 767px) {
.feature-course-top .nav-tabs {
margin-top: 30px;
}
}
.feature-course-top .nav-tabs .nav-item:not(:last-of-type) {
margin-right: 40px;
}
@media only screen and (max-width: 992px) {
.feature-course-top .nav-tabs .nav-item:not(:last-of-type) {
margin-right: 20px;
}
}
.feature-course-top .nav-tabs .nav-item .nav-link {
background-color: transparent;
padding: 0;
border: none;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
}
.feature-course-top .nav-tabs .nav-item .nav-link.active {
color: var(--ed-color-theme-primary);
}
.video-section {
position: relative;
z-index: 1;
overflow: hidden;
}
.video-section .round-shape {
height: 750px;
width: 750px;
border: 120px solid var(--ed-color-theme-primary);
border-radius: 50%;
position: absolute;
bottom: -200px;
left: -120px;
z-index: -1;
opacity: 0.07;
}
@media only screen and (max-width: 767px) {
.video-section .round-shape {
display: none;
}
}
.video-wrap {
background: var(--ed-color-common-white);
box-shadow: 0px 9px 25px rgba(17, 23, 46, 0.1);
border-radius: 20px;
padding: 10px 10px 30px 10px;
position: relative;
z-index: 1;
}
.video-wrap .shape-1 {
height: 415px;
width: 415px;
border: 60px solid var(--ed-color-theme-primary);
border-radius: 50%;
position: absolute;
top: -190px;
right: -190px;
opacity: 0.07;
z-index: -1;
}
@media only screen and (max-width: 767px) {
.video-wrap .shape-1 {
display: none;
}
}
.video-wrap .video-img {
height: 530px;
position: relative;
}
@media only screen and (max-width: 767px) {
.video-wrap .video-img {
height: 350px;
}
}
.video-wrap .video-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 20px;
}
.video-wrap .video-img .video-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.video-wrap .video-img .video-btn a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
height: 100px;
width: 100px;
font-size: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1;
}
.video-wrap .video-img .video-btn a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.video-wrap .video-img .video-btn a .ripple {
height: 100px;
width: 100px;
}
.video-wrap .video-img .video-btn a .ripple:before, .video-wrap .video-img .video-btn a .ripple:after {
height: 100px;
width: 100px;
}
.video-wrap .video-items {
display: flex;
align-items: center;
padding-left: 30px;
margin-top: 40px;
}
@media (max-width: 1200px) {
.video-wrap .video-items {
padding-left: 0;
}
}
@media only screen and (max-width: 767px) {
.video-wrap .video-items {
flex-direction: column;
flex-wrap: wrap;
row-gap: 20px;
align-items: baseline;
}
}
.video-wrap .video-items .video-item {
display: inline-flex;
align-items: center;
-moz-column-gap: 20px;
column-gap: 20px;
}
@media only screen and (max-width: 992px) {
.video-wrap .video-items .video-item {
-moz-column-gap: 10px;
column-gap: 10px;
}
}
.video-wrap .video-items .video-item:not(:last-of-type) {
margin-right: 70px;
padding-right: 70px;
border-right: 1px solid #DEE8E7;
}
@media (max-width: 1200px) {
.video-wrap .video-items .video-item:not(:last-of-type) {
margin-right: 30px;
padding-right: 30px;
}
}
@media only screen and (max-width: 992px) {
.video-wrap .video-items .video-item:not(:last-of-type) {
margin-right: 10px;
padding-right: 10px;
}
}
@media only screen and (max-width: 767px) {
.video-wrap .video-items .video-item:not(:last-of-type) {
margin-right: 0;
padding-right: 0;
border: none;
}
}
.video-wrap .video-items .video-item .icon {
background-color: #DFF2F1;
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 5px;
}
.video-wrap .video-items .video-item .title {
font-size: 18px;
font-weight: 500;
margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
.video-wrap .video-items .video-item .title {
font-size: 15px;
}
}
.course-carousel-area {
position: relative;
z-index: 1;
}
.course-carousel-area .bg-img {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.course-carousel-2 {
overflow: visible;
}
.course-carousel-top .swiper-arrow {
display: flex;
align-items: center;
-moz-column-gap: 15px;
column-gap: 15px;
}
.course-carousel-top .swiper-arrow .swiper-nav {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
height: 55px;
width: 55px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.3s ease-in-out;
}
.course-carousel-top .swiper-arrow .swiper-nav:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.course-carousel-3 {
overflow: visible;
}
.testi-8 {
background-color: #F3F7FB;
}
.content-wrap-8 {
position: relative;
z-index: 1;
}
.content-wrap-8 .shape {
position: absolute;
bottom: -60px;
left: -60px;
z-index: -1;
}
.content-img-8 {
height: 374px;
max-width: 555px;
width: 100%;
border-radius: 15px;
border: 7px solid var(--ed-color-common-white);
box-shadow: 0px 11px 38px rgba(32, 49, 47, 0.12);
}
.content-img-8 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
@media only screen and (max-width: 992px) {
.content-img-8 {
margin-bottom: 30px;
}
}
.content-info-8 {
padding-left: 40px;
}
.content-info-8 p {
max-width: 565px;
width: 100%;
}
.choose-us {
position: relative;
z-index: 1;
}
.choose-us .bg-shape {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.choose-us-wrap {
position: relative;
z-index: 1;
}
.choose-us-wrap .line {
background: linear-gradient(90deg, rgba(7, 166, 152, 0) 0%, #07A698 50.39%, rgba(7, 166, 152, 0) 99.69%);
width: 100%;
height: 4px;
position: absolute;
top: 0;
left: 0;
}
@media only screen and (max-width: 992px) {
.choose-us-wrap .line {
display: none;
}
}
.choose-use-item {
background-color: var(--ed-color-common-white);
display: flex;
-moz-column-gap: 20px;
column-gap: 20px;
padding: 30px;
border-radius: 10px;
transition: all 0.3s ease-in-out;
margin-top: 100px;
position: relative;
}
@media only screen and (max-width: 992px) {
.choose-use-item {
margin-top: 0;
}
}
.choose-use-item .line-shape {
background: linear-gradient(360deg, rgba(7, 166, 152, 0) 0%, #07A698 100%);
height: 94px;
width: 4px;
position: absolute;
top: -94px;
left: 50%;
transform: translateX(-50%);
}
@media only screen and (max-width: 992px) {
.choose-use-item .line-shape {
display: none;
}
}
.choose-use-item .line-shape .top-round {
background-color: var(--ed-color-common-white);
height: 20px;
width: 20px;
border: 5px solid var(--ed-color-theme-primary);
border-radius: 50%;
position: absolute;
top: -14px;
left: 50%;
transform: translateX(-50%);
}
.choose-use-item .line-shape .bottom-round {
background-color: transparent;
height: 12px;
width: 12px;
border-radius: 50%;
position: absolute;
bottom: -6px;
left: 50%;
transform: translateX(-50%);
transition: all 0.3s ease-in-out;
}
.choose-use-item .line-shape .bottom-round:before {
background-color: var(--ed-color-theme-primary);
content: "";
height: 5px;
width: 5px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
transition: all 0.3s ease-in-out;
}
.choose-use-item .icon {
color: var(--ed-color-theme-primary);
font-size: 20px;
transition: all 0.3s ease-in-out;
}
.choose-use-item .content .title,
.choose-use-item .content p {
transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
.choose-use-item .content p br {
display: none;
}
}
.choose-use-item:hover {
background-color: var(--ed-color-theme-primary);
}
.choose-use-item:hover .icon {
color: var(--ed-color-common-white);
}
.choose-use-item:hover .content .title {
color: var(--ed-color-common-white);
}
.choose-use-item:hover .content p {
color: var(--ed-color-common-white);
}
.choose-use-item:hover .line-shape .bottom-round {
background-color: var(--ed-color-theme-primary);
}
.choose-use-item:hover .line-shape .bottom-round:before {
background-color: var(--ed-color-common-white);
}
.choose-use-item.item-2 {
margin-top: 170px;
}
@media only screen and (max-width: 992px) {
.choose-use-item.item-2 {
margin-top: 0;
}
}
.choose-use-item.item-2 .line-shape {
height: 165px;
top: -165px;
}  .header-9 {
background-color: transparent;
position: absolute;
top: 0;
}
@media only screen and (max-width: 992px) {
.header-9 {
background-color: var(--ed-color-common-white);
position: relative;
}
}
.header-9 .primary-header .primary-header-inner {
padding: 0 30px;
border-radius: 0 0 10px 10px;
box-shadow: 0px 11px 39px rgba(15, 39, 37, 0.13);
}
@media only screen and (max-width: 992px) {
.header-9 .primary-header .primary-header-inner {
padding: 20px 0;
box-shadow: none;
}
}
.header-9 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li a {
padding: 34px 0;
}
.header-9 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li ul {
top: 94px;
}
.header-9 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li ul li a {
padding: 15px 0;
}
.header-9 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li ul li:hover a {
padding-left: 12px;
}
.header-9 .primary-header.fixed .primary-header-inner {
box-shadow: none;
}
.hero-section-9 {
background-color: var(--ed-color-common-white);
position: relative;
z-index: 1;
padding: 0;
overflow: hidden;
}
@media (max-width: 1200px) {
.hero-section-9 {
background-color: #dcf2f1;
border-top: 1px solid var(--ed-color-border-1);
}
}
@media only screen and (max-width: 992px) {
.hero-section-9 .shapes .shape {
display: none;
}
}
.hero-section-9 .shapes .shape.shape-1 {
top: 50px;
right: 0;
left: auto;
bottom: auto;
z-index: 4;
}
.hero-section-9 .shapes .shape.shape-2 {
bottom: auto;
left: auto;
right: 0;
z-index: 1;
}
.hero-section-9 .shapes .shape.shape-4 {
top: 202px;
left: 39%;
z-index: -1;
}
@media only screen and (max-width: 992px) {
.hero-section-9 .shapes .shape.shape-4 {
display: none;
}
}
.hero-wrap-9 {
position: relative;
z-index: 1;
overflow: hidden;
}
.hero-wrap-9 .hero-img-wrap-9 {
max-width: 755px;
width: 100%;
height: 989px;
position: absolute;
top: 0;
right: 0;
}
@media (max-width: 1200px) {
.hero-wrap-9 .hero-img-wrap-9 {
position: relative;
height: 880px;
margin: 0 auto;
}
}
@media only screen and (max-width: 767px) {
.hero-wrap-9 .hero-img-wrap-9 {
display: none;
}
}
.hero-wrap-9 .hero-img-wrap-9 .hero-img {
position: absolute;
bottom: 30px;
left: 0;
max-width: 754px;
width: 100%;
height: 958px;
z-index: 5;
}
@media (max-width: 1200px) {
.hero-wrap-9 .hero-img-wrap-9 .hero-img {
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
}
.hero-wrap-9 .hero-img-wrap-9 .hero-img img {
width: 100%;
height: auto;
-o-object-fit: contain;
object-fit: contain;
}
.hero-wrap-9 .hero-img-wrap-9 .hero-img-shape-1 {
position: absolute;
bottom: 98px;
right: 0;
z-index: -1;
}
.hero-wrap-9 .hero-img-wrap-9 .hero-img-shape-2 {
position: absolute;
bottom: 59px;
left: 149px;
z-index: 2;
}
.hero-content-9 {
padding: 330px 0 230px 0;
position: relative;
z-index: 5;
}
@media (max-width: 1200px) {
.hero-content-9 {
padding: 200px 0 40px 0;
}
}
@media only screen and (max-width: 992px) {
.hero-content-9 {
padding: 100px 0 40px 0;
}
}
@media only screen and (max-width: 767px) {
.hero-content-9 {
padding: 80px 0 80px 0;
}
}
@media only screen and (max-width: 767px) {
.hero-content-9 .section-heading {
margin-bottom: 30px;
}
}
@media only screen and (max-width: 767px) {
.hero-content-9 .section-heading .section-title {
font-size: 32px;
}
}
.hero-content-9 .hero-btn-wrap {
margin-bottom: 55px;
}
@media only screen and (max-width: 767px) {
.hero-content-9 .hero-btn-wrap {
margin-bottom: 30px;
}
}
.hero-content-9 .hero-list {
list-style: none;
display: flex;
align-items: center;
flex-wrap: wrap;
row-gap: 15px;
-moz-column-gap: 35px;
column-gap: 35px;
margin-bottom: 0px;
}
.hero-content-9 .hero-list li {
font-size: 20px;
font-weight: 500;
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
color: var(--ed-color-heading-primary);
}
.hero-content-9 .hero-list li i {
color: var(--ed-color-theme-primary);
}
.language-course {
background-color: #143532;
position: relative;
z-index: 1;
padding-top: 170px;
margin-top: -160px;
-webkit-clip-path: polygon(0 15%, 100% 1%, 100% 100%, 0% 100%);
clip-path: polygon(0 15%, 100% 1%, 100% 100%, 0% 100%);
}
@media (max-width: 1200px) {
.language-course {
margin-top: 0;
-webkit-clip-path: inherit;
clip-path: inherit;
padding-top: 120px;
}
}
@media only screen and (max-width: 992px) {
.language-course {
padding-top: 80px;
}
}
.language-course .shapes .shape {
position: absolute;
z-index: -1;
}
.language-course .shapes .shape.shape-1 {
bottom: 0;
right: 0;
}
.language-course .shapes .shape.shape-2 {
top: 60px;
left: 0;
}
@media only screen and (max-width: 992px) {
.language-course .shapes .shape.shape-2 {
display: none;
}
}
.language-course .shapes .shape.shape-3 {
top: -30px;
right: 0;
}
@media only screen and (max-width: 992px) {
.language-course .shapes .shape.shape-3 {
display: none;
}
}
.lang-course-item {
background-color: var(--ed-color-common-white);
padding: 25px;
border-radius: 15px;
transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
.lang-course-item {
padding: 20px 15px;
}
}
.lang-course-item .course-thumb {
height: 120px;
width: 100%;
margin-bottom: 20px;
}
.lang-course-item .course-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.lang-course-item .course-content {
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 15px;
column-gap: 15px;
flex-wrap: wrap;
row-gap: 15px;
}
.lang-course-item .course-content .title {
font-size: 24px;
font-weight: 600;
margin-bottom: 0;
}
.lang-course-item .course-content .title span {
display: block;
font-size: 16px;
font-weight: 400;
color: #6C706F;
margin-top: 7px;
}
.lang-course-item .course-content .arrow-btn a {
background-color: #DFEFEE;
color: var(--ed-color-theme-primary);
height: 45px;
width: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.lang-course-item .course-content .arrow-btn a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.lang-course-item:hover {
transform: translateY(-5px);
}
.lang-exam-area {
position: relative;
z-index: 1;
}
.lang-exam-area .bg-shape {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.lang-exam-carousel-wrap {
position: relative;
}
@media only screen and (max-width: 992px) {
.lang-exam-carousel-wrap .swiper-arrow {
display: none;
}
}
.lang-exam-carousel-wrap .swiper-arrow .swiper-nav {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
height: 60px;
width: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
position: absolute;
top: 50%;
left: -120px;
transform: translateY(-50%);
z-index: 1;
}
@media (max-width: 1600px) {
.lang-exam-carousel-wrap .swiper-arrow .swiper-nav {
left: -80px;
}
}
@media (max-width: 1399px) {
.lang-exam-carousel-wrap .swiper-arrow .swiper-nav {
left: 0;
}
}
.lang-exam-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
left: auto;
right: -120px;
}
@media (max-width: 1600px) {
.lang-exam-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
right: -80px;
}
}
@media (max-width: 1399px) {
.lang-exam-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
right: 0px;
}
}
.lang-exam-item {
display: grid;
align-items: center;
grid-template-columns: 617px 1fr;
grid-gap: 50px;
background: var(--ed-color-common-white);
box-shadow: 0px 23px 62px rgba(40, 47, 55, 0.09);
border-radius: 20px;
padding: 20px;
}
@media (max-width: 1200px) {
.lang-exam-item {
grid-template-columns: 500px 1fr;
}
}
@media only screen and (max-width: 992px) {
.lang-exam-item {
grid-template-columns: 1fr;
grid-gap: 30px;
}
}
.lang-exam-item .lang-exam-img {
height: 354px;
max-width: 617px;
width: 100%;
border-radius: 20px;
}
@media only screen and (max-width: 992px) {
.lang-exam-item .lang-exam-img {
max-width: 100%;
}
}
@media only screen and (max-width: 767px) {
.lang-exam-item .lang-exam-img {
height: 300px;
}
}
.lang-exam-item .lang-exam-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 20px;
}
.lang-exam-item .content .title {
font-size: 30px;
font-weight: 600;
margin-bottom: 15px;
}
.lang-exam-item .content span {
color: var(--ed-color-heading-primary);
font-size: 18px;
font-weight: 500;
}
.lang-exam-item .content .lang-exam-list {
margin: 20px 0;
}
.lang-exam-item .content .lang-exam-list li {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
font-size: 16px;
}
.lang-exam-item .content .lang-exam-list li:not(:last-of-type) {
margin-bottom: 10px;
}
.lang-exam-item .content .lang-exam-list li i {
color: var(--ed-color-theme-primary);
}
.lang-prog-item {
background: var(--ed-color-common-white);
box-shadow: 0px 5px 40px rgba(15, 39, 37, 0.1);
border-radius: 10px;
padding: 20px;
}
.lang-prog-item .lang-prog-img {
height: 200px;
border-radius: 10px;
margin-bottom: 30px;
}
.lang-prog-item .lang-prog-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.lang-prog-item .lang-prog-content span {
color: var(--ed-color-theme-primary);
display: block;
margin-bottom: 10px;
line-height: 1;
}
.lang-prog-item .lang-prog-content .title {
font-size: 24px;
font-weight: 600;
margin-bottom: 20px;
}
.lang-prog-item .lang-prog-content .lang-prog-list {
list-style: none;
margin-bottom: 20px;
}
.lang-prog-item .lang-prog-content .lang-prog-list li {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
}
.lang-prog-item .lang-prog-content .lang-prog-list li:not(:last-of-type) {
margin-bottom: 10px;
}
.lang-prog-item .lang-prog-content .lang-prog-list li i {
color: var(--ed-color-theme-primary);
}
.about-section-9 {
background-color: #F2F4F7;
position: relative;
z-index: 1;
}
.about-section-9 .bottom-shape {
background: rgba(7, 166, 152, 0.1);
filter: blur(105px);
width: 100%;
height: 151px;
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
border-top-left-radius: 20%;
border-top-right-radius: 20%;
}
@media only screen and (max-width: 767px) {
.about-section-9 .shapes {
display: none;
}
}
.about-section-9 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.about-section-9 .shapes .shape-2 {
position: absolute;
top: 0;
right: 30px;
z-index: -1;
}
.about-section-9 .shapes .shape-3 {
position: absolute;
bottom: 33%;
right: 60px;
z-index: -1;
}
.about-img-9 {
height: 485px;
max-width: 483px;
width: 100%;
}
@media only screen and (max-width: 992px) {
.about-img-9 {
margin-bottom: 40px;
}
}
@media only screen and (max-width: 767px) {
.about-img-9 {
height: 350px;
}
}
.about-img-9 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.about-content-9 .about-items {
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 20px;
column-gap: 20px;
flex-wrap: wrap;
row-gap: 20px;
margin-top: 30px;
padding-bottom: 40px;
margin-bottom: 40px;
border-bottom: 1px solid var(--ed-color-border-1);
}
.about-content-9 .about-items .about-item {
display: grid;
align-items: center;
grid-template-columns: 60px 1fr;
grid-gap: 15px;
}
.about-content-9 .about-items .about-item .icon {
background-color: var(--ed-color-common-white);
height: 60px;
width: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.about-content-9 .about-items .about-item .title {
color: var(--ed-color-heading-primary);
font-size: 18px;
font-weight: 600;
margin-bottom: 0;
}
.cat-item-2 {
background-color: var(--ed-color-common-white);
padding: 60px 40px;
}
@media only screen and (max-width: 767px) {
.cat-item-2 {
padding: 40px 20px;
}
}
.cat-item-2 .shape {
top: -210px;
right: -150px;
height: 288px;
width: 288px;
background: #07A698;
filter: blur(125px);
}
.cat-item-2 .icon {
margin-bottom: 20px;
}
.cat-item-2 .title {
font-size: 22px;
margin-bottom: 15px;
}
.cat-item-2:hover .shape {
top: -185px;
right: -150px;
}
.testi-9 {
background-color: var(--ed-color-theme-primary);
position: relative;
z-index: 1;
}
.testi-9 .shape {
position: absolute;
top: 0;
right: 0;
z-index: -1;
}
.testi-item-9 {
background-color: var(--ed-color-common-white);
}
.testi-item-9 .testi-top-content {
grid-template-columns: 1fr;
}
.testi-item-9 .testi-top-content p {
color: var(--ed-color-heading-primary);
font-size: 20px;
font-weight: 500;
}
.testi-item-9 .testi-bottom .author-info-wrap {
display: grid;
align-items: center;
grid-template-columns: 50px 1fr;
grid-gap: 15px;
}
.testi-item-9 .testi-bottom .author-info-wrap .author-img {
height: 50px;
width: 50px;
border-radius: 50%;
}
.testi-item-9 .testi-bottom .author-info-wrap .author-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 50%;
}
.testi-item-9 .testi-bottom .author-info-wrap .author-info .name {
font-size: 16px;
font-weight: 500;
}
.testi-item-9 .testi-bottom .author-info-wrap .author-info span {
font-size: 14px;
}
.post-card-9 {
box-shadow: 0px 5px 40px rgba(15, 39, 37, 0.1);
border: none;
}
.post-card-9 .post-content-wrap .post-content {
padding: 30px 30px;
}
.post-card-9 .post-content-wrap .post-meta {
margin-bottom: 25px;
padding-bottom: 25px;
border-bottom: 1px dashed var(--ed-color-border-1);
}
.post-card-9 .post-content-wrap .read-more {
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 600;
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
}
.post-card-9 .post-content-wrap .read-more i {
background-color: var(--ed-color-theme-primary);
height: 30px;
width: 30px;
color: var(--ed-color-common-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.post-card-9-2 {
padding: 0;
grid-gap: 0;
box-shadow: 0px 5px 40px rgba(15, 39, 37, 0.1);
border: none;
}
.post-card-9-2 .post-thumb {
height: 215px;
}
.post-card-9-2 .post-content-wrap .post-content {
padding: 30px;
}
@media only screen and (max-width: 767px) {
.post-card-9-2 .post-content-wrap .post-content {
padding: 30px 20px;
}
}
.post-card-9-2 .post-content-wrap .post-content .title {
padding-bottom: 0;
border: none;
margin-bottom: 15px;
}
.post-card-9-2 .post-content-wrap .post-content p {
margin-bottom: 20px;
}
.post-card-9-2 .post-content-wrap .ed-primary-btn {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.post-card-9-2 .post-content-wrap .ed-primary-btn:before {
background-color: rgba(255, 255, 255, 0.2);
}
.subscribe-section {
background-color: #E2F2F1;
position: relative;
z-index: 1;
}
.subscribe-section .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.subscribe-section .shapes .shape-2 {
position: absolute;
top: 0;
right: 0;
height: 100%;
z-index: -1;
}
.subscribe-section .shapes .shape-2 img {
height: 100%;
}
.subscrie-wrap {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 20px;
-moz-column-gap: 20px;
column-gap: 20px;
}
@media (max-width: 1200px) {
.subscrie-wrap {
justify-content: center;
}
}
.subscrie-wrap .section-heading .section-title {
font-size: 36px;
}
.subscrie-wrap .section-heading .section-title br {
display: block;
}
@media (max-width: 1200px) {
.subscrie-wrap .section-heading .section-title {
text-align: center;
margin-bottom: 15px;
}
}
@media only screen and (max-width: 767px) {
.subscrie-wrap .section-heading .section-title {
font-size: 28px;
}
}
.subscrie-wrap .subscribe-form-wrap {
max-width: 628px;
width: 100%;
position: relative;
}
@media only screen and (max-width: 767px) {
.subscrie-wrap .subscribe-form-wrap {
text-align: center;
}
}
.subscrie-wrap .subscribe-form-wrap .form-control {
background-color: var(--ed-color-common-white);
box-shadow: none;
border: 1px solid var(--ed-color-border-1);
border-radius: 100px;
padding: 22px 250px 22px 30px;
}
@media only screen and (max-width: 767px) {
.subscrie-wrap .subscribe-form-wrap .form-control {
padding-right: 30px;
}
}
.subscrie-wrap .subscribe-form-wrap button {
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
.subscrie-wrap .subscribe-form-wrap button {
position: relative;
top: 0;
transform: inherit;
right: 0;
margin-top: 15px;
}
}  .hero-10 {
background-color: #1F2B2A;
position: relative;
z-index: 1;
overflow: hidden;
}
.hero-10 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.hero-10 .shapes .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
@media only screen and (max-width: 992px) {
.hero-10 .shapes .shape-2 {
height: 100%;
}
}
.hero-10 .shapes .shape-3 {
position: absolute;
bottom: -83px;
left: 0;
width: 100%;
height: auto;
}
@media (max-width: 1600px) {
.hero-10 .shapes .shape-3 {
bottom: -30px;
}
}
.hero-10 .shapes .shape-3 img {
width: 100%;
height: 100%;
-o-object-fit: contain;
object-fit: contain;
}
@media (max-width: 1399px) {
.hero-10 .hero-img-wrap-7 {
display: none;
}
}
.hero-10 .hero-img-wrap-7 .hero-img-1 {
position: absolute;
bottom: 115px;
left: 36px;
}
@media (max-width: 1700px) {
.hero-10 .hero-img-wrap-7 .hero-img-1 {
left: 0;
}
}
@media (max-width: 1600px) {
.hero-10 .hero-img-wrap-7 .hero-img-1 {
left: -80px;
}
}
.hero-10 .hero-img-wrap-7 .hero-img-2 {
position: absolute;
bottom: 0;
right: 0;
bottom: 115px;
right: 36px;
}
@media (max-width: 1700px) {
.hero-10 .hero-img-wrap-7 .hero-img-2 {
right: 0;
}
}
@media (max-width: 1600px) {
.hero-10 .hero-img-wrap-7 .hero-img-2 {
bottom: 150px;
right: -50px;
}
}
.hero-content-10 {
padding: 155px 0 108px 0;
position: relative;
z-index: 5;
}
@media (max-width: 1200px) {
.hero-content-10 {
padding-bottom: 50px;
}
}
@media only screen and (max-width: 992px) {
.hero-content-10 {
padding-top: 70px;
}
}
.hero-content-10 ul {
list-style: none;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
row-gap: 15px;
-moz-column-gap: 35px;
column-gap: 35px;
margin-bottom: 50px;
margin-top: 30px;
}
.hero-content-10 ul li {
font-size: 20px;
font-weight: 500;
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
color: var(--ed-color-common-white);
}
.hero-content-10 ul li i {
color: var(--ed-color-theme-primary);
}
@media (max-width: 1600px) {
.hero-content-10 .hero-form {
max-width: 600px;
}
}
.hero-content-10 .hero-form .form-control {
padding-left: 30px;
}
.cat-item-3 {
background-color: var(--ed-color-common-white);
}
.cat-item-3 .icon {
background-color: #F2F4F7;
transition: all 0.3s ease-in-out;
}
.cat-item-3:hover .icon {
background-color: var(--ed-color-common-white);
}
.cat-card {
background-color: var(--ed-color-grey-1);
display: grid;
align-items: center;
grid-template-columns: 70px 1fr;
grid-gap: 20px;
padding: 20px;
border: 1px solid var(--ed-color-border-1);
border-radius: 6px;
}
.cat-card .icon {
background-color: var(--ed-color-common-white);
width: 70px;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 4px 32px rgba(9, 51, 47, 0.08);
border-radius: 6px;
}
.cat-card .content .title {
font-size: 18px;
font-weight: 600;
margin-bottom: 5px;
}
.cat-card .content span {
color: #6C706F;
font-size: 14px;
line-height: 1;
}
.about-section-10 {
background-color: var(--ed-color-grey-1);
position: relative;
z-index: 1;
}
.about-section-10 .shape-1 {
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
}
.about-img-wrap-10 {
position: relative;
max-width: 592px;
width: 100%;
height: 594px;
}
.about-img-wrap-10 .about-img-1 {
position: absolute;
top: 0;
left: 0;
max-width: 490px;
width: 100%;
height: 467px;
}
.about-img-wrap-10 .about-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 20px;
}
.about-img-wrap-10 .about-img-2 {
position: absolute;
bottom: 0;
right: 0;
max-width: 363px;
width: 100%;
height: 375px;
border-radius: 200px 200px 20px 20px;
border: 5px solid var(--ed-color-common-white);
overflow: hidden;
box-shadow: 0px 4px 35px rgba(10, 27, 25, 0.28);
}
.about-img-wrap-10 .about-img-2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 200px 200px 20px 20px;
}
.about-content-10 {
position: relative;
padding: 0;
background-color: transparent;
box-shadow: none;
}
.about-content-10 .about-tab .nav-tabs {
background-color: var(--ed-color-common-white);
display: inline-flex;
padding: 10px;
border-radius: 100px;
border: 1px solid #E0E5EB;
}
@media only screen and (max-width: 767px) {
.about-content-10 .about-tab .nav-tabs {
border-radius: 0;
justify-content: center;
}
}
.about-content-10 .about-tab .nav-tabs .nav-item .nav-link {
background-color: var(--ed-color-grey-1);
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 600;
padding: 10px 20px;
border-color: #E0E5EB;
}
.about-content-10 .about-tab .tab-content .tab-pane .about-list li span {
background-color: var(--ed-color-common-white);
border: 1px solid #E0E5EB;
box-shadow: 0px 8px 19px rgba(13, 40, 38, 0.15);
}
.feature-course-4 {
background-color: var(--ed-color-theme-primary);
position: relative;
z-index: 1;
}
.feature-course-4 .shape {
position: absolute;
top: 0;
right: 0;
z-index: -1;
}
.course-carousel-area-2 {
background-color: var(--ed-color-grey-1);
}
.appointment-wrap {
background-color: var(--ed-color-grey-1);
padding: 100px;
position: relative;
z-index: 1;
border-radius: 20px;
}
@media (max-width: 1200px) {
.appointment-wrap {
padding: 100px 50px;
}
}
@media only screen and (max-width: 992px) {
.appointment-wrap {
padding: 60px 40px;
}
}
@media only screen and (max-width: 992px) {
.appointment-wrap {
padding: 40px 20px;
}
}
.appointment-wrap .shape {
position: absolute;
top: 0;
right: 0;
z-index: -1;
}
.appointment-wrap .appointment-top {
padding-bottom: 70px;
margin-bottom: 70px;
border-bottom: 2px solid var(--ed-color-common-white);
}
@media only screen and (max-width: 767px) {
.appointment-wrap .appointment-top {
margin-bottom: 40px;
padding-bottom: 40px;
}
}
.appointment-wrap .appointment-top .section-heading p {
max-width: 560px;
width: 100%;
}
.appointment-wrap .appointment-top .appointment-list {
padding-left: 15px;
}
.appointment-wrap .appointment-top .appointment-list li {
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 400;
}
.appointment-wrap .appointment-top .appointment-list li:not(:last-of-type) {
margin-bottom: 10px;
}
.appointment-wrap .appointment-sponsor-area {
margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
.appointment-wrap .appointment-sponsor-area {
margin-bottom: 40px;
}
}
.appointment-wrap .appointment-sponsor-area .sponsor-title {
font-size: 24px;
font-weight: 600;
margin-bottom: 20px;
}
.appointment-wrap .appointment-sponsor-area .sponsor-item {
height: 80px;
}
@media only screen and (max-width: 767px) {
.appointment-wrap .appointment-sponsor-area .sponsor-item {
height: 60px;
}
}
.appointment-wrap .appointment-form {
background-color: var(--ed-color-common-white);
padding: 40px;
border-radius: 15px;
}
@media only screen and (max-width: 767px) {
.appointment-wrap .appointment-form {
padding: 20px 20px;
}
}
.appointment-wrap .appointment-form .form-item .form-control {
padding: 12px 20px;
border: 1px solid var(--ed-color-border-1);
border-radius: 5px;
box-shadow: none;
margin-bottom: 20px;
color: var(--ed-color-text-body);
}
.appointment-wrap .appointment-form .form-item .form-control::-webkit-input-placeholder {
color: var(--ed-color-text-body);
}
.appointment-wrap .appointment-form .form-item .form-control:-moz-placeholder {
color: var(--ed-color-text-body);
}
.appointment-wrap .appointment-form .form-item .form-control::-moz-placeholder {
color: var(--ed-color-text-body);
}
.appointment-wrap .appointment-form .form-item .form-control:-ms-input-placeholder {
color: var(--ed-color-text-body);
}
.appointment-wrap .appointment-form .form-item .form-control.nice-select {
font-size: 16px;
color: var(--ed-color-text-body);
width: 100%;
height: auto;
line-height: inherit;
padding: 12px 20px;
}
.appointment-btn .ed-primary-btn {
width: 100%;
border-radius: 5px;
}
.faq-content-10 {
max-width: 545px;
width: 100%;
}
@media only screen and (max-width: 992px) {
.faq-content-10 {
max-width: 100%;
margin-bottom: 40px;
}
}
.faq-thumb {
max-width: 728px;
width: 100%;
height: 505px;
border-radius: 15px;
position: relative;
}
@media only screen and (max-width: 767px) {
.faq-thumb {
height: 350px;
}
}
.faq-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.faq-thumb .video-btn {
width: 132px;
height: 132px;
background: rgba(255, 255, 255, 0.07);
border: 1px solid rgba(255, 255, 255, 0.1);
-webkit-backdrop-filter: blur(4.5px);
backdrop-filter: blur(4.5px);
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
}
.faq-thumb .video-btn a {
background: rgba(255, 255, 255, 0.05);
color: var(--ed-color-common-white);
font-size: 30px;
-webkit-backdrop-filter: blur(30px);
backdrop-filter: blur(30px);
border: 1px solid rgba(255, 255, 255, 0.1);
height: 100px;
width: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}  .about-section-11 {
position: relative;
z-index: 1;
overflow: hidden;
}
.about-section-11 .shape-1 {
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
background: linear-gradient(180deg, rgba(7, 166, 152, 0.075) 86.03%, rgba(7, 166, 152, 0) 100%);
filter: blur(275px);
width: 1537px;
height: 777px;
position: absolute;
bottom: -285px;
left: 50%;
transform: translateX(-50%);
}
.about-section-11 .shape-2 {
position: absolute;
bottom: 25%;
left: 0;
z-index: -1;
}
.about-img-wrap-11 {
max-width: 603px;
width: 100%;
height: 483px;
position: relative;
z-index: 1;
}
@media only screen and (max-width: 992px) {
.about-img-wrap-11 {
margin-bottom: 40px;
}
}
.about-img-wrap-11 .about-img-1 {
max-width: 326px;
width: 100%;
height: 309px;
position: absolute;
bottom: 45px;
left: 0;
z-index: 1;
}
.about-img-wrap-11 .about-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
border: 4px solid var(--ed-color-common-white);
}
.about-img-wrap-11 .about-img-2 {
position: absolute;
top: 0;
right: 0;
max-width: 353px;
width: 100%;
height: 100%;
}
.about-img-wrap-11 .about-img-2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.about-img-wrap-11 .about-exp {
background-color: var(--ed-color-theme-primary);
padding: 15px 30px;
position: absolute;
top: 0;
left: 0;
display: flex;
align-items: center;
border-radius: 15px;
}
.about-img-wrap-11 .about-exp .title {
color: var(--ed-color-common-white);
font-size: 60px;
font-weight: 600;
margin-bottom: 0;
line-height: 1;
}
.about-img-wrap-11 .about-exp .title .odometer-auto-theme {
font-family: inherit;
line-height: 1;
}
.about-img-wrap-11 .about-exp p {
color: var(--ed-color-common-white);
font-size: 16px;
font-weight: 600;
margin-bottom: 0;
line-height: 1.3;
margin-left: 15px;
}
.about-content-11 p {
margin-bottom: 30px;
}
.about-content-11 .about-list {
margin-bottom: 40px;
}
.about-content-11 .about-list li {
color: var(--ed-color-heading-primary);
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
font-size: 16px;
font-weight: 500;
}
.about-content-11 .about-list li:not(:last-of-type) {
margin-bottom: 10px;
}
.about-content-11 .about-items {
display: flex;
align-items: center;
flex-wrap: wrap;
row-gap: 10px;
margin-bottom: 40px;
}
.about-content-11 .about-items .about-item {
display: grid;
align-items: center;
grid-template-columns: 40px 1fr;
grid-gap: 10px;
}
.about-content-11 .about-items .about-item:not(:last-of-type) {
margin-right: 50px;
}
@media (max-width: 1200px) {
.about-content-11 .about-items .about-item:not(:last-of-type) {
margin-right: 30px;
}
}
.about-content-11 .about-items .about-item .icon {
color: var(--ed-color-theme-primary);
display: flex;
align-items: center;
justify-content: center;
height: 40px;
width: 40px;
border-radius: 50%;
border: 1px solid #E0E5EB;
box-shadow: 0px 4px 24px rgba(12, 28, 26, 0.19);
}
.about-content-11 .about-items .about-item .title {
margin-bottom: 0;
}
.about-counter-item-2 {
background: rgba(255, 255, 255, 0.15);
box-shadow: 0px 7px 48px rgba(18, 38, 37, 0.13);
-webkit-backdrop-filter: blur(45px);
backdrop-filter: blur(45px);
border-radius: 20px;
padding: 40px;
position: relative;
z-index: 1;
overflow: hidden;
transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
.about-counter-item-2 {
background-color: var(--ed-color-common-white);
padding: 30px 20px;
}
}
@media only screen and (max-width: 767px) {
.about-counter-item-2 {
padding: 30px 20px;
}
}
.about-counter-item-2 .shape {
background: rgba(7, 166, 152, 0.6);
filter: blur(75px);
width: 151px;
height: 151px;
position: absolute;
top: -80px;
left: -100px;
z-index: -1;
}
.about-counter-item-2 .icon {
background-color: var(--ed-color-common-white);
width: 80px;
height: 80px;
box-shadow: 0px 13px 36px rgba(55, 152, 147, 0.27);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 30px;
}
.about-counter-item-2 .title {
color: var(--ed-color-theme-primary);
font-size: 44px;
font-weight: 700;
display: flex;
align-items: center;
margin-bottom: 0;
}
.about-counter-item-2 .title .odometer-auto-theme {
font-family: inherit;
line-height: 1;
}
.about-counter-item-2 p {
font-weight: 500;
color: var(--ed-color-heading-primary);
margin-bottom: 0;
}
.about-counter-item-2:hover {
transform: translateY(-5px);
}
.course-carousel-4 {
overflow: visible;
}
.course-item-11 {
background: var(--ed-color-common-white);
box-shadow: 0px 5px 40px rgba(15, 39, 37, 0.15);
border-radius: 10px;
}
.course-item-11 .course-thumb {
height: 200px;
padding: 10px;
margin-bottom: 20px;
}
.course-item-11 .course-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: top;
object-position: top;
border-radius: 15px;
}
.course-item-11 .course-content {
padding: 0 30px;
padding-bottom: 30px;
}
.course-item-11 .course-content .title {
font-size: 24px;
font-weight: 600;
margin-bottom: 15px;
}
.course-item-11 .course-content ul {
padding-left: 15px;
}
.course-item-11 .course-content ul li:not(:last-of-type) {
margin-bottom: 5px;
}
.sponsor-2 {
background-color: var(--ed-color-theme-primary);
padding-top: 120px;
}
@media only screen and (max-width: 992px) {
.sponsor-2 {
padding-top: 70px;
}
}
@media only screen and (max-width: 767px) {
.sponsor-2 {
padding-top: 60px;
}
}
.cta-section-11 {
background-color: #1F2A2A;
position: relative;
z-index: 1;
}
.cta-section-11 .cta-bg-shape-1 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
.cta-section-11 .cta-bg-shape-2 {
position: absolute;
top: 0;
right: 0;
z-index: -1;
}
.cta-section-11 .cta-bg-shape-3 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
@media only screen and (max-width: 992px) {
.cta-section-11 .cta-bg-shape-3 {
height: 100%;
}
.cta-section-11 .cta-bg-shape-3 img {
height: 100%;
}
}
.cta-wrap-11 {
position: relative;
z-index: 1;
}
@media only screen and (max-width: 992px) {
.cta-wrap-11 {
padding-bottom: 0;
}
}
@media only screen and (max-width: 767px) {
.cta-wrap-11 {
padding-bottom: 60px;
}
}
.cta-wrap-11 .cta-content {
position: relative;
z-index: 5;
}
.cta-wrap-11 .cta-content .section-heading .section-title br {
display: block;
}
.cta-wrap-11 .cta-content .cta-contact-box {
display: flex;
align-items: center;
-moz-column-gap: 20px;
column-gap: 20px;
}
@media only screen and (max-width: 767px) {
.cta-wrap-11 .cta-content .cta-contact-box {
flex-wrap: wrap;
row-gap: 20px;
}
}
.cta-wrap-11 .cta-content .cta-contact-box .cta-video {
height: 141px;
width: 169px;
position: relative;
border-radius: 10px;
overflow: hidden;
}
.cta-wrap-11 .cta-content .cta-contact-box .cta-video .video-img {
position: relative;
}
.cta-wrap-11 .cta-content .cta-contact-box .cta-video .video-img:before {
background-color: rgba(8, 35, 33, 0.59);
content: "";
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.cta-wrap-11 .cta-content .cta-contact-box .cta-video .video-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.cta-wrap-11 .cta-content .cta-contact-box .cta-video .video-popup {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
display: flex;
align-items: center;
justify-content: center;
height: 48px;
width: 48px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
z-index: 2;
}
.cta-wrap-11 .cta-content .cta-contact-box .cta-video .video-popup:hover {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
}
.cta-wrap-11 .cta-content .cta-contact-box .contact-list {
list-style: none;
}
.cta-wrap-11 .cta-content .cta-contact-box .contact-list li:not(:last-of-type) {
margin-bottom: 20px;
}
.cta-wrap-11 .cta-content .cta-contact-box .contact-list li a {
background: rgba(255, 255, 255, 0.06);
display: inline-block;
height: 62px;
border: 1px solid rgba(255, 255, 255, 0.09);
-webkit-backdrop-filter: blur(50px);
backdrop-filter: blur(50px);
border-radius: 5px;
font-size: 18px;
color: var(--ed-color-common-white);
padding: 0 20px;
display: flex;
align-items: center;
justify-content: center;
}
.cta-wrap-11 .cta-content .cta-contact-box .contact-list li a:hover {
color: var(--ed-color-theme-primary);
}
.cta-wrap-11 .cta-content .cta-contact-box .contact-list li a i {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
display: flex;
align-items: center;
justify-content: center;
height: 36px;
width: 36px;
border-radius: 50%;
margin-right: 10px;
}
.cta-wrap-11 .cta-img-wrap-11 {
position: absolute;
bottom: 0;
right: 0;
}
@media (max-width: 1200px) {
.cta-wrap-11 .cta-img-wrap-11 {
right: -40px;
}
}
@media only screen and (max-width: 992px) {
.cta-wrap-11 .cta-img-wrap-11 {
position: relative;
margin-top: 30px;
}
}
@media only screen and (max-width: 767px) {
.cta-wrap-11 .cta-img-wrap-11 {
display: none;
}
}
.cta-wrap-11 .cta-shape-1 {
position: absolute;
bottom: 0;
right: 6%;
z-index: -1;
}
@media only screen and (max-width: 767px) {
.cta-wrap-11 .cta-shape-1 {
display: none;
}
}
.offer-section {
background-color: #F2F4F7;
}
.offer-nav {
border: none;
display: inline-flex;
flex-direction: column;
row-gap: 10px;
}
.offer-nav .nav-item {
border: none;
}
.offer-nav .nav-item .nav-link {
border: none;
margin: 0;
padding: 0;
}
.offer-nav .nav-item .nav-link .offer-tab-btn {
background-color: var(--ed-color-theme-primary);
text-align: left;
display: grid;
grid-template-columns: 60px 1fr;
grid-gap: 20px;
padding: 21.5px 45px;
border-radius: 10px;
overflow: hidden;
position: relative;
z-index: 1;
}
@media only screen and (max-width: 767px) {
.offer-nav .nav-item .nav-link .offer-tab-btn {
display: grid;
grid-template-columns: 1fr;
padding: 40px 20px;
}
}
.offer-nav .nav-item .nav-link .offer-tab-btn:before {
background: linear-gradient(90deg, #07A698 0%, #162726 100%);
content: "";
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
border-radius: 10px;
visibility: hidden;
opacity: 0;
transition: all 0.3s ease-in-out;
}
.offer-nav .nav-item .nav-link .offer-tab-btn .icon {
background-color: var(--ed-color-common-white);
height: 60px;
width: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.offer-nav .nav-item .nav-link .offer-tab-btn .content .title {
color: var(--ed-color-common-white);
font-size: 24px;
font-weight: 600;
margin-bottom: 5px;
}
.offer-nav .nav-item .nav-link .offer-tab-btn .content p {
color: var(--ed-color-common-white);
}
.offer-nav .nav-item .nav-link.active .offer-tab-btn:before {
visibility: visible;
opacity: 1;
}
.offer-img {
height: 562px;
width: 100%;
position: relative;
}
@media only screen and (max-width: 992px) {
.offer-img {
margin-top: 40px;
}
}
@media only screen and (max-width: 767px) {
.offer-img {
height: 400px;
}
}
.offer-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
border: 4px solid var(--ed-color-common-white);
}
.offer-img .offer-video {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.offer-img .offer-video a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
font-size: 30px;
height: 100px;
width: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.offer-img .offer-video a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.testi-11 {
background-color: #162726;
}
.testi-11 .shape {
top: auto;
bottom: 0;
}
.testi-item-9 {
background-color: #F7F7F7;
position: relative;
z-index: 1;
overflow: hidden;
}
.testi-item-9 .item-shape {
background: rgba(7, 166, 152, 0.46);
filter: blur(175px);
height: 284px;
width: 284px;
border-radius: 50%;
position: absolute;
top: -120px;
right: -50px;
z-index: -1;
}  .header-12 {
border-top: 5px solid var(--ed-color-theme-primary);
}
.header-12 .top-bar {
background-color: var(--ed-color-common-white);
border-bottom: 1px solid #E0E5EB;
}
.header-12 .top-bar .top-bar-inner .top-bar-left .top-bar-list li {
color: var(--ed-color-heading-primary);
}
.header-12 .top-bar .top-bar-inner .top-bar-left .top-bar-list li:not(:last-of-type) {
border-right: 1px solid #E0E5EB;
}
.header-12 .top-bar .top-bar-inner .top-bar-left .top-bar-list li a {
color: var(--ed-color-heading-primary);
}
.header-12 .top-bar .top-bar-inner .top-bar-left .top-bar-list li a:hover {
color: var(--ed-color-theme-primary);
}
.header-12 .top-bar .top-bar-inner .top-bar-right .top-social-wrap span {
color: var(--ed-color-heading-primary);
}
.header-12 .top-bar .top-bar-inner .top-bar-right .top-social-wrap .social-list li {
color: var(--ed-color-heading-primary);
}
.header-12 .top-bar .top-bar-inner .top-bar-right .top-social-wrap .social-list li a {
color: var(--ed-color-heading-primary);
}
.header-12 .top-bar .top-bar-inner .top-bar-right .top-social-wrap .social-list li a:hover {
color: var(--ed-color-theme-primary);
}
.header-bottom {
background-color: var(--ed-color-heading-primary);
position: relative;
z-index: -1;
padding: 10px 0;
}
@media only screen and (max-width: 992px) {
.header-bottom {
z-index: 1;
}
}
.header-carousel .header-item {
text-align: center;
}
.header-carousel .header-item a {
color: var(--ed-color-common-white);
}
.hero-section-12 {
background-color: #E3FFFD;
position: relative;
z-index: 1;
}
@media only screen and (max-width: 992px) {
.hero-section-12 .shapes {
display: none;
}
}
.hero-section-12 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.hero-section-12 .shapes .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
.hero-section-12 .shapes .shape-3 {
position: absolute;
bottom: 0;
left: 150px;
z-index: -1;
}
.hero-section-12 .hero-img-box {
max-width: 381px;
width: 100%;
height: 444px;
position: absolute;
top: 160px;
left: 120px;
}
@media (max-width: 1700px) {
.hero-section-12 .hero-img-box {
left: 60px;
}
}
@media (max-width: 1600px) {
.hero-section-12 .hero-img-box {
left: 0px;
}
}
@media (max-width: 1399px) {
.hero-section-12 .hero-img-box {
left: -30px;
}
}
@media (max-width: 1200px) {
.hero-section-12 .hero-img-box {
display: none;
}
}
.hero-section-12 .hero-img-box .hero-img-1 {
max-width: 305px;
width: 100%;
height: 305px;
position: absolute;
top: 0;
left: 0;
}
.hero-section-12 .hero-img-box .hero-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 20px;
border: 4px solid var(--ed-color-common-white);
}
.hero-section-12 .hero-img-box .hero-img-2 {
width: 206px;
height: 204px;
position: absolute;
bottom: 0;
right: 0;
}
.hero-section-12 .hero-img-box .hero-img-2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 20px;
border: 4px solid var(--ed-color-common-white);
box-shadow: 0px 4px 28px rgba(2, 85, 78, 0.29);
}
.hero-section-12 .hero-img-box.hero-img-box-2 {
left: auto;
right: 120px;
}
@media (max-width: 1700px) {
.hero-section-12 .hero-img-box.hero-img-box-2 {
right: 60px;
}
}
@media (max-width: 1600px) {
.hero-section-12 .hero-img-box.hero-img-box-2 {
right: 0px;
}
}
@media (max-width: 1399px) {
.hero-section-12 .hero-img-box.hero-img-box-2 {
right: -30px;
}
}
.hero-section-12 .hero-img-box.hero-img-box-2 .hero-img-1 {
left: auto;
right: 0;
}
.hero-section-12 .hero-img-box.hero-img-box-2 .hero-img-2 {
right: auto;
left: 0;
}
.hero-content-12 {
padding: 190px 0;
}
@media only screen and (max-width: 992px) {
.hero-content-12 {
padding: 100px 15px;
}
}
@media (max-width: 1399px) {
.hero-content-12 .title {
font-size: 46px;
}
}
@media (max-width: 1200px) {
.hero-content-12 .title {
font-size: 56px;
}
}
@media only screen and (max-width: 767px) {
.hero-content-12 .title {
font-size: 36px;
}
}
.hero-content-12 ul li {
color: var(--ed-color-heading-primary);
}
.exam-carousel-wrap {
position: relative;
}
.exam-carousel-wrap .swiper-arrow .swiper-nav {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
position: absolute;
top: 50%;
transform: translateY(-50%);
left: -90px;
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
border-radius: 50%;
}
@media (max-width: 1600px) {
.exam-carousel-wrap .swiper-arrow .swiper-nav {
left: -25px;
}
}
@media (max-width: 1200px) {
.exam-carousel-wrap .swiper-arrow .swiper-nav {
left: 0;
}
}
.exam-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
left: auto;
right: -90px;
}
@media (max-width: 1600px) {
.exam-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
right: -25px;
}
}
@media (max-width: 1200px) {
.exam-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
right: 0;
}
}
.exam-item {
background-color: #F2F4F7;
padding: 10px;
border-radius: 15px;
text-align: center;
padding-bottom: 0;
transition: all 0.3s ease-in-out;
}
.exam-item .exam-thumb {
height: 200px;
margin-bottom: 30px;
}
.exam-item .exam-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.exam-item .title {
font-size: 20px;
font-weight: 600;
}
.exam-item p {
padding-bottom: 25px;
margin-bottom: 0;
}
.fd-wrap {
background-color: #F2F4F7;
border: 1px solid #E0E5EB;
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 40px;
column-gap: 40px;
padding: 50px;
padding-left: 80px;
border-radius: 20px;
position: relative;
z-index: 1;
overflow: hidden;
}
@media (max-width: 1200px) {
.fd-wrap {
padding-left: 50px;
}
}
@media only screen and (max-width: 767px) {
.fd-wrap {
padding: 40px 20px;
flex-wrap: wrap;
row-gap: 30px;
}
}
.fd-wrap .round-shape {
background: #07A698;
filter: blur(125px);
height: 799px;
width: 799px;
border-radius: 50%;
position: absolute;
top: -97%;
right: -20%;
z-index: -1;
}
.fd-wrap .fd-content {
max-width: 620px;
width: 100%;
}
.fd-wrap .fd-content .icon {
background-color: var(--ed-color-common-white);
height: 90px;
width: 90px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
box-shadow: 0px 11px 59px rgba(14, 117, 108, 0.19);
margin-bottom: 35px;
}
.fd-wrap .fd-content .title {
font-size: 30px;
font-weight: 600;
margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
.fd-wrap .fd-content .title {
font-size: 24px;
}
}
.fd-wrap .fd-content p {
margin-bottom: 25px;
}
.fd-wrap .fd-thumb {
max-width: 460px;
width: 100%;
height: 393px;
}
.fd-wrap .fd-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.explore-section {
background-color: #ECF0F3;
position: relative;
z-index: 1;
}
.explore-section .shapes .shape-1 {
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
}
.explore-section .shapes .shape-2 {
position: absolute;
top: 0;
right: 0;
z-index: -1;
}
.explore-top .swiper-arrow {
display: flex;
align-items: center;
-moz-column-gap: 15px;
column-gap: 15px;
}
.explore-top .swiper-arrow .swiper-nav {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
border-radius: 50%;
transition: all 0.3s ease-in-out;
}
.explore-top .swiper-arrow .swiper-nav:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.explore-item {
background-color: var(--ed-color-common-white);
border-radius: 15px;
padding: 10px;
padding-bottom: 30px;
}
.explore-item .explore-thumb {
height: 250px;
margin-bottom: 20px;
}
.explore-item .explore-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.explore-item .explore-content {
padding: 0 20px;
}
.explore-item .explore-content .title {
font-size: 22px;
font-weight: 600;
margin-bottom: 20px;
line-height: 1.5;
}
.testimonial-section-12 {
position: relative;
z-index: 1;
}
.testimonial-section-12 .bg-shape {
background: rgba(7, 166, 152, 0.38);
filter: blur(225px);
width: 603px;
height: 603px;
position: absolute;
bottom: -174px;
left: 50%;
transform: translateX(-50%);
z-index: -1;
}
.testi-item-12 {
background-color: var(--ed-color-common-white);
border: 2px solid #E0E5EB;
border-radius: 25px;
transition: all 0.3s ease-in-out;
}
.testi-item-12 .icon {
background-color: var(--ed-color-theme-primary);
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
color: var(--ed-color-common-white);
margin-bottom: 30px;
}
.testi-item-12 p {
color: var(--ed-color-heading-primary);
font-size: 20px;
line-height: 1.6;
margin-bottom: 30px;
}
.testi-item-12:hover {
border: 2px solid var(--ed-color-theme-primary);
}
.counter-wrap-12 {
background: var(--ed-color-common-white);
border: 1px solid #E0E5EB;
box-shadow: 0px 10px 60px rgba(13, 120, 111, 0.15);
border-radius: 20px;
padding: 60px;
position: relative;
z-index: 1;
}
@media only screen and (max-width: 767px) {
.counter-wrap-12 {
padding: 40px 20px;
}
}
.counter-item-wrap-12 {
max-width: 610px;
width: 100%;
margin-left: auto;
margin-right: 0;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 15px;
}
@media only screen and (max-width: 992px) {
.counter-item-wrap-12 {
margin-top: 40px;
}
}
@media only screen and (max-width: 767px) {
.counter-item-wrap-12 {
grid-template-columns: 1fr;
}
}
.counter-item-wrap-12 .counter-item-12 {
background-color: var(--ed-color-grey-1);
display: grid;
align-items: center;
grid-template-columns: 60px 1fr;
grid-gap: 10px;
border: 1px solid #E0E5EB;
border-radius: 10px;
padding: 25px 30px;
}
.counter-item-wrap-12 .counter-item-12 .content .title {
font-size: 30px;
font-weight: 600;
margin-bottom: 0px;
line-height: 1;
display: flex;
align-items: center;
}
.counter-item-wrap-12 .counter-item-12 .content .title .odometer-formatting-mark {
display: none;
}
.counter-item-wrap-12 .counter-item-12 .content .title .odometer-auto-theme {
font-family: inherit;
line-height: 1;
}
.counter-item-wrap-12 .counter-item-12 .content p {
color: var(--ed-color-heading-primary);
margin-bottom: 0;
}
.team-section-12 {
background-color: #1F2A2A;
position: relative;
z-index: 1;
}
.team-section-12 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.team-section-12 .shapes .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
.team-section-12 .shapes .shape-3 {
position: absolute;
top: 180px;
left: 0;
z-index: -1;
width: 100%;
height: 246px;
}
@media only screen and (max-width: 992px) {
.team-section-12 .shapes .shape-3 {
display: none;
}
}
.team-section-12 .shapes .shape-3 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.team-item-12 .team-thumb {
height: 170px;
width: 170px;
border-radius: 50%;
margin: 0 auto;
}
.team-item-12 .team-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.team-item-12 .team-content {
background-color: var(--ed-color-common-white);
padding: 30px;
text-align: center;
border-radius: 10px;
position: relative;
max-width: 250px;
margin: 0 auto;
margin-top: 40px;
}
.team-item-12 .team-content:before {
background-color: var(--ed-color-common-white);
content: "";
height: 21px;
width: 21px;
border-radius: 4px 0 0 0;
position: absolute;
left: 50%;
transform: translateX(-50%) rotate(45deg);
top: -10.5px;
}
.team-item-12 .team-content .title {
font-size: 21px;
font-weight: 600;
margin-bottom: 0;
}
.team-item-12 .team-content span {
color: var(--ed-color-theme-primary);
}
.team-item-12 .team-content .team-social {
display: flex;
align-items: center;
justify-content: center;
list-style: none;
margin-top: 20px;
}
.team-item-12 .team-content .team-social li:not(:last-of-type) {
margin-right: 10px;
}
.team-item-12 .team-content .team-social li a {
color: var(--ed-color-theme-primary);
display: flex;
align-items: center;
justify-content: center;
height: 40px;
width: 40px;
border: 1px solid #E0E5EB;
border-radius: 50%;
}
.team-item-12 .team-content .team-social li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.team-item-12.item-2 {
margin-top: 60px;
}
@media only screen and (max-width: 992px) {
.team-item-12.item-2 {
margin-top: 0;
}
}
.blog-section-12 {
background-color: var(--ed-color-theme-primary);
position: relative;
z-index: 1;
}
.blog-section-12 .shapes .shape-1 {
position: absolute;
bottom: 170px;
left: 50px;
z-index: -1;
}
.blog-section-12 .shapes .shape-2 {
position: absolute;
top: 80px;
right: 0;
z-index: -1;
}
.blog-top .blog-top-btn .ed-primary-btn {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
}
.blog-top .blog-top-btn .ed-primary-btn:before {
background-color: var(--ed-color-heading-primary);
}
.blog-top .blog-top-btn .ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
.post-card-wrap-12 {
background-color: var(--ed-color-common-white);
padding: 20px 10px;
border-radius: 15px;
}
.post-card-wrap-12 .post-card-2 {
border-radius: 15px;
margin-bottom: 0;
box-shadow: none;
}
.post-card-wrap-12 .post-card-2 .post-content {
border: 1px solid var(--ed-color-border-1);
border-left: none;
border-radius: 0 15px 15px 0;
}
@media only screen and (max-width: 992px) {
.post-card-wrap-12 .post-card-2 .post-content {
border: 1px solid var(--ed-color-border-1);
border-radius: 0 0 15px 15px;
}
}  .hero-section-13 {
background: linear-gradient(180deg, #E2F3F2 0%, rgba(196, 255, 250, 0.8) 100%);
position: relative;
z-index: 1;
overflow: hidden;
}
@media only screen and (max-width: 767px) {
.hero-section-13 .shapes {
display: none;
}
}
.hero-section-13 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.hero-section-13 .shapes .shape-2 {
position: absolute;
top: 45%;
left: 0;
transform: translateY(-50%);
z-index: -1;
}
.hero-section-13 .shapes .shape-3 {
position: absolute;
bottom: 70px;
left: 0;
z-index: -2;
}
.hero-section-13 .shapes .shape-4 {
position: absolute;
bottom: 0;
right: 0;
}
.hero-section-13 .shapes .shape-5 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
background: #162726;
mix-blend-mode: soft-light;
border-radius: 0px 0px 0px 450px;
transform: matrix(1, 0, 0, -1, 0, 0);
width: 557px;
height: 693px;
}
.hero-wrap-13 {
position: relative;
z-index: 1;
}
@media (max-width: 1399px) {
.hero-wrap-13 {
padding: 0 10px;
}
}
.hero-wrap-13 .hero-img-wrap-13 {
max-width: 808px;
width: 100%;
height: 696px;
position: absolute;
bottom: 0;
right: -95px;
}
@media only screen and (max-width: 992px) {
.hero-wrap-13 .hero-img-wrap-13 {
position: relative;
right: 0;
}
}
@media only screen and (max-width: 767px) {
.hero-wrap-13 .hero-img-wrap-13 {
display: none;
}
}
.hero-wrap-13 .hero-img-wrap-13 .hero-men {
position: absolute;
bottom: 0;
right: 0;
height: 100%;
width: 100%;
z-index: 1;
}
.hero-wrap-13 .hero-img-wrap-13 .hero-men img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.hero-wrap-13 .hero-img-wrap-13 .round-shape {
background: #07A698;
filter: blur(225px);
height: 400px;
width: 400px;
border-radius: 50%;
position: absolute;
top: 0;
right: 12%;
}
.hero-content-13 {
padding: 190px 0;
position: relative;
z-index: 5;
}
@media only screen and (max-width: 992px) {
.hero-content-13 {
padding-top: 100px;
padding-bottom: 50px;
}
}
@media only screen and (max-width: 767px) {
.hero-content-13 {
padding-bottom: 100px;
}
}
.hero-content-13 .section-heading .section-title {
color: var(--ed-color-heading-primary);
font-size: 66px;
}
@media (max-width: 1399px) {
.hero-content-13 .section-heading .section-title br {
display: block;
}
}
@media only screen and (max-width: 767px) {
.hero-content-13 .section-heading .section-title {
font-size: 32px;
}
}
.hero-content-13 p {
color: var(--ed-color-text-body);
font-size: 18px;
}
.hero-content-13 .hero-btn-wrap .hero-btn-2 {
border: 1px solid var(--ed-color-theme-primary);
}
.feature-item-13 {
background-color: #F2F4F7;
border: 1px solid #E0E5EB;
border-radius: 15px;
padding: 20px;
}
@media only screen and (max-width: 767px) {
.feature-item-13 {
padding: 10px;
}
}
.feature-item-13 .feature-item-inner {
background-color: var(--ed-color-common-white);
border-radius: 15px;
text-align: center;
}
.feature-item-13 .feature-item-inner .feature-img {
padding: 30px 20px;
border-bottom: 1px solid #E0E5EB;
margin-bottom: 30px;
height: 280px;
}
@media only screen and (max-width: 767px) {
.feature-item-13 .feature-item-inner .feature-img {
height: 240px;
}
}
.feature-item-13 .feature-item-inner .feature-img img {
height: 100%;
}
.feature-item-13 .feature-item-inner .feature-content {
padding: 0 20px;
padding-bottom: 40px;
}
.feature-item-13 .feature-item-inner .feature-content .title {
font-size: 30px;
font-weight: 600;
margin-bottom: 20px;
line-height: 1;
}
@media only screen and (max-width: 767px) {
.feature-item-13 .feature-item-inner .feature-content .title {
font-size: 20px;
}
}
.feature-item-13 .feature-item-inner .feature-content p {
margin-bottom: 25px;
}
@media (max-width: 1200px) {
.feature-item-13 .feature-item-inner .feature-content p br {
display: none;
}
}
.about-section-13 {
background-color: #1F2A2A;
position: relative;
z-index: 1;
}
.about-section-13 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.about-section-13 .shapes .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
.about-img-13 {
max-width: 473px;
width: 100%;
height: 473px;
border-radius: 50%;
overflow: hidden;
}
@media only screen and (max-width: 767px) {
.about-img-13 {
max-width: 300px;
height: 300px;
}
}
.about-content-13 p {
color: #BCC2C2;
}
.about-content-13 .about-items {
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.about-content-13 .about-items .about-item .title {
color: var(--ed-color-common-white);
}
.service-carousel-wrap {
position: relative;
}
.service-carousel-wrap .swiper-arrow .swiper-nav {
color: var(--ed-color-theme-primary);
position: absolute;
top: 50%;
left: -90px;
transform: translateY(-50%);
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 1px solid var(--ed-color-theme-primary);
transition: all 0.3s ease-in-out;
z-index: 2;
}
@media (max-width: 1600px) {
.service-carousel-wrap .swiper-arrow .swiper-nav {
left: -60px;
}
}
@media (max-width: 1399px) {
.service-carousel-wrap .swiper-arrow .swiper-nav {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
left: 0;
}
}
@media only screen and (max-width: 767px) {
.service-carousel-wrap .swiper-arrow .swiper-nav {
top: 40%;
}
}
.service-carousel-wrap .swiper-arrow .swiper-nav:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.service-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
left: auto;
right: -90px;
}
@media (max-width: 1600px) {
.service-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
right: -60px;
}
}
@media (max-width: 1399px) {
.service-carousel-wrap .swiper-arrow .swiper-nav.swiper-prev {
right: 0;
}
}
.service-item {
border-radius: 15px;
overflow: hidden;
}
.service-item .service-thumb {
height: 496px;
position: relative;
z-index: 1;
}
.service-item .service-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
transform: scale3d(1, 1, 1);
transition: transform 1s ease-in-out;
}
.service-item .service-thumb .overlay {
background: linear-gradient(180deg, rgba(22, 39, 38, 0) 15.93%, #162726 100%);
border-radius: 15px;
width: 100%;
height: 100%;
position: absolute;
bottom: 0;
left: 0;
}
.service-item .service-thumb .price {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
height: 80px;
width: 80px;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 30px;
left: 30px;
font-size: 20px;
font-weight: 700;
border-radius: 50%;
z-index: 1;
}
.service-item .service-content {
position: absolute;
bottom: 30px;
left: 30px;
right: 30px;
z-index: 5;
}
.service-item .service-content .title {
font-size: 24px;
margin-bottom: 15px;
}
.service-item .service-content p {
margin-bottom: 20px;
}
.service-item .service-content .ed-primary-btn {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
}
.service-item .service-content .ed-primary-btn:before {
background-color: var(--ed-color-theme-primary);
}
.service-item .service-content .ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
.service-item:hover .service-thumb img {
transform: scale(1.04) rotate(0deg);
}
.team-section-13 {
background-color: #ECF0F3;
position: relative;
z-index: 1;
}
.team-section-13 .bg-shape {
background: rgba(7, 166, 152, 0.27);
filter: blur(200px);
width: 606px;
height: 606px;
position: absolute;
left: 59px;
top: 20%;
transform: translateY(-50%);
z-index: -1;
}
.team-item-13 {
overflow: hidden;
border-radius: 15px;
box-shadow: 0px 280px 402px rgba(25, 50, 48, 0.17);
}
.team-item-13 .team-img-wrap {
height: 276px;
position: relative;
}
.team-item-13 .team-img-wrap .team-men {
max-width: 265px;
height: 100%;
width: 100%;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
z-index: 2;
}
.team-item-13 .team-img-wrap .team-men img {
height: 100%;
width: auto;
}
.team-item-13 .team-img-wrap .team-img-shape-1 {
position: absolute;
top: 50px;
right: 0;
z-index: 1;
}
.team-item-13 .team-img-wrap .team-img-shape-2 {
background-color: var(--ed-color-common-white);
width: 100%;
height: 185px;
position: absolute;
bottom: 0;
left: 0;
border-radius: 15px 15px 0 0;
}
.team-item-13 .team-img-wrap .round-shape {
background: #07A698;
filter: blur(50px);
height: 127px;
max-width: 355px;
width: 100%;
position: absolute;
bottom: -50%;
left: 50%;
transform: translateX(-50%);
border-radius: 50%;
}
.team-item-13 .team-content {
background-color: var(--ed-color-common-white);
position: relative;
z-index: 1;
-webkit-backdrop-filter: blur(60px);
backdrop-filter: blur(60px);
border-radius: 0 0 15px 15px;
padding: 30px;
}
@media (max-width: 1200px) {
.team-item-13 .team-content {
padding: 30px 20px;
}
}
.team-item-13 .team-content .title {
font-size: 24px;
font-weight: 600;
margin-bottom: 5px;
}
.team-item-13 .team-content span {
color: var(--ed-color-theme-primary);
font-size: 16px;
font-weight: 400;
line-height: 1;
}
.team-counter-wrapper {
padding-bottom: 40px;
position: relative;
z-index: 1;
}
.team-counter-wrapper:before {
background: rgba(255, 255, 255, 0.55);
border: 1px solid rgba(255, 255, 255, 0.64);
box-shadow: 0px 4px 30px rgba(25, 38, 48, 0.03);
-webkit-backdrop-filter: blur(16px);
backdrop-filter: blur(16px);
border-radius: 15px;
content: "";
width: 95%;
height: 194px;
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
z-index: -1;
}
.team-counter-wrapper:after {
background: rgba(255, 255, 255, 0.2);
border: 1px solid rgba(255, 255, 255, 0.64);
-webkit-backdrop-filter: blur(60px);
backdrop-filter: blur(60px);
border-radius: 15px;
content: "";
width: 90%;
height: 194px;
position: absolute;
bottom: 0px;
left: 50%;
transform: translateX(-50%);
z-index: -2;
}
.team-counter-wrap {
background-color: var(--ed-color-common-white);
box-shadow: 0px 15px 37px rgba(11, 32, 30, 0.13);
border-radius: 15px;
padding: 0 80px;
display: flex;
align-items: center;
position: relative;
z-index: 5;
}
@media (max-width: 1200px) {
.team-counter-wrap {
padding: 0 50px;
}
}
@media only screen and (max-width: 767px) {
.team-counter-wrap {
flex-direction: column;
align-items: baseline;
row-gap: 40px;
padding: 50px 50px;
}
}
.team-counter-wrap .team-counter {
display: grid;
align-items: center;
grid-template-columns: 50px 1fr;
grid-gap: 20px;
padding: 75px 0;
}
@media only screen and (max-width: 992px) {
.team-counter-wrap .team-counter {
grid-template-columns: 1fr;
}
}
@media only screen and (max-width: 767px) {
.team-counter-wrap .team-counter {
padding: 0;
}
}
.team-counter-wrap .team-counter:not(:last-of-type) {
padding-right: 60px;
margin-right: 60px;
border-right: 1px solid #E0E5EB;
}
@media (max-width: 1200px) {
.team-counter-wrap .team-counter:not(:last-of-type) {
padding-right: 30px;
margin-right: 30px;
}
}
@media only screen and (max-width: 767px) {
.team-counter-wrap .team-counter:not(:last-of-type) {
border: none;
padding: 0;
margin: 0;
}
}
.team-counter-wrap .team-counter .content .title {
font-size: 36px;
line-height: 1;
color: var(--ed-color-theme-primary);
display: flex;
align-items: center;
margin-bottom: 10px;
}
.team-counter-wrap .team-counter .content .title .odometer-auto-theme {
line-height: 1;
font-family: inherit;
}
.team-counter-wrap .team-counter .content p {
font-size: 14px;
text-transform: uppercase;
color: var(--ed-color-heading-primary);
font-weight: 500;
margin-bottom: 0;
line-height: 1;
}
.faq-content-13 {
margin-left: auto;
margin-right: 0;
}
@media only screen and (max-width: 992px) {
.faq-content-13 {
margin-left: 0;
margin-right: auto;
}
}
.testi-carousel-wrap-2.wrap-13 {
max-width: 100%;
}
.testi-carousel-wrap-2.wrap-13 .swiper-arrow .swiper-nav {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
z-index: 5;
left: -100px;
}
@media (max-width: 1600px) {
.testi-carousel-wrap-2.wrap-13 .swiper-arrow .swiper-nav {
left: -50px;
}
}
@media (max-width: 1200px) {
.testi-carousel-wrap-2.wrap-13 .swiper-arrow .swiper-nav {
left: 0;
}
}
.testi-carousel-wrap-2.wrap-13 .swiper-arrow .swiper-nav.swiper-prev {
left: auto;
right: -100px;
}
@media (max-width: 1600px) {
.testi-carousel-wrap-2.wrap-13 .swiper-arrow .swiper-nav.swiper-prev {
right: -50px;
}
}
@media (max-width: 1200px) {
.testi-carousel-wrap-2.wrap-13 .swiper-arrow .swiper-nav.swiper-prev {
right: 0;
}
}
.testi-item-13 {
position: relative;
z-index: 1;
border-radius: 15px;
overflow: hidden;
}
@media (max-width: 1200px) {
.testi-item-13 {
background-color: var(--ed-color-common-white);
}
}
.testi-item-13 .testi-bg-shape {
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
}
.testi-item-13 .testi-bg-shape img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.testi-item-13 .testi-top-content {
padding: 40px;
}
@media (max-width: 1200px) {
.testi-item-13 .testi-top-content {
padding: 40px 20px;
padding-bottom: 80px;
}
}
.testi-item-13 .quote {
margin-bottom: 20px;
}
.testi-item-13 p {
font-size: 20px;
color: var(--ed-color-heading-primary);
margin-bottom: 0;
}
.testi-item-13 .testi-bottom {
display: flex;
align-items: center;
justify-self: end;
padding: 0 10px;
padding-bottom: 10px;
padding-top: 15px;
}
@media (max-width: 1200px) {
.testi-item-13 .testi-bottom {
padding: 0 10px;
padding-bottom: 20px;
}
}
.testi-item-13 .testi-bottom .rating-box {
text-align: center;
}
.testi-item-13 .testi-bottom .rating-box span {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
font-size: 14px;
font-weight: 400;
padding: 12px 30px;
line-height: 1;
display: block;
border-bottom: 1px solid #E0E5EB;
border-radius: 10px 10px 0 0;
border: 1px solid #E0E5EB;
}
@media (max-width: 1399px) {
.testi-item-13 .testi-bottom .rating-box span {
padding: 12px 20px;
}
}
.testi-item-13 .testi-bottom .rating-box .review {
background-color: #ECF0F3;
display: flex;
align-items: center;
justify-content: center;
list-style: none;
padding: 5px 15px;
-moz-column-gap: 2px;
column-gap: 2px;
border: 1px solid #E0E5EB;
border-top: none;
border-radius: 0 0 10px 10px;
}
@media (max-width: 1399px) {
.testi-item-13 .testi-bottom .rating-box .review {
padding: 5px 7px;
}
}
.testi-item-13 .testi-bottom .rating-box .review li {
color: var(--ed-color-theme-primary);
font-size: 12px;
}
.testi-item-13 .testi-author-area {
background-color: var(--ed-color-common-white);
display: grid;
align-items: center;
grid-template-columns: 60px 1fr;
grid-gap: 15px;
position: absolute;
bottom: 0;
left: 0;
padding: 10px 49px 10px 20px;
border-radius: 15px;
}
@media (max-width: 1399px) {
.testi-item-13 .testi-author-area {
padding-right: 23px;
}
}
@media (max-width: 1200px) {
.testi-item-13 .testi-author-area {
background-color: transparent;
padding: 0;
left: 20px;
display: grid;
grid-template-columns: 1fr;
bottom: 20px;
}
}
.testi-item-13 .testi-author-area .author-img {
height: 60px;
width: 60px;
}
.testi-item-13 .testi-author-area .author-img img {
width: 100%;
height: 100%;
border-radius: 50%;
-o-object-fit: cover;
object-fit: cover;
}
.testi-item-13 .testi-author-area .content .name {
font-size: 20px;
font-weight: 600;
margin-bottom: 0;
}
.testi-item-13 .testi-author-area .content span {
font-size: 14px;
font-weight: 400;
}
.blog-section-13 {
background-color: #F2F4F7;
}
.post-card-13 {
background-color: var(--ed-color-common-white);
box-shadow: 0px 16px 62px rgba(17, 51, 48, 0.08);
border-radius: 15px;
padding: 0;
overflow: hidden;
}
.post-card-13 .post-thumb {
height: 220px;
}
.post-card-13 .post-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: top;
object-position: top;
}
.post-card-13 .post-content {
padding: 30px;
}
@media only screen and (max-width: 767px) {
.post-card-13 .post-content {
padding: 30px 20px;
}
}
.post-card-13 .post-content .category {
padding: 0;
margin-bottom: 15px;
}
.post-card-13 .post-content .title {
color: var(--ed-color-heading-primary);
padding-bottom: 0;
border: none;
margin-bottom: 15px;
}
.post-card-13 .post-content .title a {
background: linear-gradient(var(--ed-color-theme-primary) 0%, var(--ed-color-theme-primary) 98%);
background-size: 0 2px;
background-repeat: no-repeat;
background-position: left 100%;
transition: all 0.3s ease-in-out;
}
.post-card-13 .post-content .title a:hover {
color: var(--ed-color-theme-primary);
background-size: 100% 2px;
}
.post-card-13 .post-content p {
margin-bottom: 0;
}
.post-card-13 .post-content .post-bottom {
margin-top: 20px;
padding-top: 20px;
border-top: 1px dashed #D1DBDA;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 10px;
}
.post-card-13 .post-content .post-bottom .post-author {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
}
.post-card-13 .post-content .post-bottom .post-author span {
line-height: 1;
color: var(--ed-color-heading-primary);
font-weight: 500;
}  .header-14 {
background-color: transparent;
position: absolute;
top: 0;
}
@media only screen and (max-width: 992px) {
.header-14 {
background-color: var(--ed-color-common-white);
position: relative;
}
}
.header-14 .header-container {
max-width: 1765px;
width: 100%;
margin: 0 auto;
}
.header-14 .primary-header-inner {
background-color: transparent;
}
@media only screen and (max-width: 992px) {
.header-14 .primary-header-inner {
background-color: var(--ed-color-common-white);
}
}
.header-14 .primary-header-inner .header-menu-wrap {
background-color: var(--ed-color-common-white);
display: flex;
align-items: center;
-moz-column-gap: 240px;
column-gap: 240px;
padding: 0 40px;
position: relative;
}
@media (max-width: 1600px) {
.header-14 .primary-header-inner .header-menu-wrap {
-moz-column-gap: 50px;
column-gap: 50px;
padding: 0;
}
}
.header-14 .primary-header-inner .header-menu-wrap:before {
background-color: var(--ed-color-common-white);
width: 100px;
height: 100%;
position: absolute;
content: "";
left: -40px;
z-index: -1;
border-radius: 0 0 0 20px;
transform: skew(15deg);
}
.header-14 .primary-header-inner .header-menu-wrap:after {
width: 100px;
height: 100%;
background-color: #fff;
position: absolute;
content: "";
right: -40px;
z-index: -1;
border-radius: 0 0 20px 0;
transform: skew(-15deg);
}
.header-14 .primary-header-inner .header-menu-wrap .header-menu-contact {
display: grid;
align-items: center;
grid-template-columns: 50px 1fr;
grid-gap: 10px;
}
@media (max-width: 1399px) {
.header-14 .primary-header-inner .header-menu-wrap .header-menu-contact {
display: none;
}
}
.header-14 .primary-header-inner .header-menu-wrap .header-menu-contact .icon {
background: rgba(7, 166, 152, 0.1);
color: var(--ed-color-theme-primary);
height: 50px;
width: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.header-14 .primary-header-inner .header-menu-wrap .header-menu-contact .content span {
display: block;
color: var(--ed-color-theme-primary);
font-size: 14px;
font-weight: 500;
}
.header-14 .primary-header-inner .header-menu-wrap .header-menu-contact .content a {
color: var(--ed-color-heading-primary);
font-size: 18px;
font-weight: 600;
}
.header-14 .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
width: 60%;
left: 0% !important;
}
@media (max-width: 1399px) {
.header-14 .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul {
width: 80%;
}
}
.header-14 .primary-header-inner .header-right-wrap .header-right .search-icon {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
@media only screen and (max-width: 992px) {
.header-14 .primary-header-inner .header-right-wrap .header-right .search-icon {
display: none;
}
}
.slider-14 .edcare-slider-thumb {
background-color: var(--ed-color-common-white);
max-width: 1326px;
width: 100%;
height: 150px;
padding: 20px;
padding-bottom: 0;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
z-index: 5;
top: auto;
right: auto;
border-radius: 20px 20px 0 0;
}
.slider-14 .edcare-slider-thumb:before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 20px;
height: 20px;
box-shadow: -6px -6px var(--ed-color-common-white);
}
.slider-14 .edcare-slider-thumb .swiper-slide .slider-thumb-item {
max-width: 413px;
width: 100%;
height: 130px;
border-radius: 15px;
}
.slider-14 .edcare-slider-thumb .swiper-slide .slider-thumb-item img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 12px;
}
.slider-14 .edcare-slider-thumb .swiper-slide .slider-thumb-item span {
color: rgba(255, 255, 255, 0.36);
font-size: 36px;
font-weight: 600;
position: absolute;
top: 50%;
left: 40px;
transform: translateY(-50%);
transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
.slider-14 .edcare-slider-thumb .swiper-slide .slider-thumb-item span {
left: 20px;
}
}
@media only screen and (max-width: 992px) {
.slider-14 .edcare-slider-thumb .swiper-slide .slider-thumb-item span {
font-size: 24px;
}
}
.slider-14 .edcare-slider-thumb .swiper-slide.swiper-slide-thumb-active .slider-thumb-item {
box-shadow: 0px 13px 24px rgba(12, 107, 99, 0.35);
}
.slider-14 .edcare-slider-thumb .swiper-slide.swiper-slide-thumb-active .slider-thumb-item span {
color: var(--ed-color-common-white);
}
.slider-item-2 .slider-content-wrap {
padding: 300px 0 300px 0;
}
@media only screen and (max-width: 992px) {
.slider-item-2 .slider-content-wrap {
padding: 100px 0 250px 0;
}
}
@media only screen and (max-width: 767px) {
.slider-item-2 .slider-content-wrap {
padding: 100px 0;
}
}
.slider-item-2 .slider-content-wrap .slider-content-2 .sub-heading-wrap .sub-heading {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
border: none;
}
.slider-item-2 .slider-content-wrap .slider-content-2 .slider-btn-wrap .slider-btn-2 {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
}
.slider-item-2 .slider-content-wrap .slider-content-2 .slider-btn-wrap .slider-btn-2:before {
background-color: var(--ed-color-theme-primary);
}
.slider-item-2 .slider-content-wrap .slider-content-2 .slider-btn-wrap .slider-btn-2:hover {
color: var(--ed-color-common-white);
}
@media only screen and (max-width: 767px) {
.slider-item-2 .slider-content-wrap .slider-content-2 .edcare-caption.heading .edcare-cap {
font-size: 40px;
}
}
.feature-section-14 {
position: relative;
z-index: 1;
overflow: hidden;
}
.feature-section-14 .shape {
width: 100%;
height: 100%;
position: absolute;
top: -15%;
left: 50%;
transform: translateX(-50%);
z-index: -1;
}
.feature-item-14 {
position: relative;
z-index: 1;
padding: 0 40px;
border-radius: 15px;
transition: all 0.3s ease-in-out;
box-shadow: 0px 85px 63px rgba(27, 122, 114, 0.14);
}
@media (max-width: 1399px) {
.feature-item-14 {
padding: 40px 20px;
padding-top: 0;
}
}
.feature-item-14 .bg-shape {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
@media (max-width: 1200px) {
.feature-item-14 .bg-shape {
top: 15px;
}
}
@media (max-width: 1200px) {
.feature-item-14 .bg-shape {
top: 25px;
}
}
.feature-item-14 .icon {
background-color: var(--ed-color-theme-primary);
height: 100px;
width: 100px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
margin: 0 auto;
margin-bottom: 50px;
}
.feature-item-14 .feature-content .title {
margin-bottom: 10px;
}
.feature-item-14 .feature-content p {
margin-bottom: 20px;
}
.category-section-14 {
background-color: #F2F4F7;
position: relative;
z-index: 1;
}
.category-section-14 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.category-section-14 .shapes .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
.category-item-14 {
background-color: var(--ed-color-common-white);
padding: 10px;
border-radius: 10px;
transition: all 0.3s ease-in-out;
}
.category-item-14 .category-thumb {
height: 200px;
}
.category-item-14 .category-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.category-item-14 .title {
font-size: 20px;
margin-bottom: 0;
}
.category-item-14 .title a {
background-color: #F2F4F7;
padding: 10px;
border-radius: 10px;
display: block;
margin-top: 10px;
}
.category-item-14:hover {
transform: translateY(-5px);
}
.category-item-14:hover .title a {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.content-img-wrap-14 {
height: 100%;
}
.content-img-wrap-14 .content-img {
max-width: 628px;
width: 100%;
height: 100%;
}
.content-img-wrap-14 .content-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.growth-img-wrap {
max-width: 676px;
width: 100%;
height: 480px;
position: relative;
}
@media only screen and (max-width: 767px) {
.growth-img-wrap {
height: 350px;
}
}
.growth-img-wrap .growth-img-1 {
position: absolute;
top: 0;
left: 0;
height: 100%;
max-width: 520px;
width: 100%;
}
.growth-img-wrap .growth-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 50% 50% 10px 10px;
}
.growth-img-wrap .growth-img-2 {
background-color: var(--ed-color-common-white);
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
max-width: 250px;
height: 210px;
padding: 10px;
border-radius: 10px;
box-shadow: 0px 11px 36px rgba(11, 32, 43, 0.15);
}
.growth-img-wrap .growth-img-2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.growth-img-wrap .growth-counter {
background-color: var(--ed-color-common-white);
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
position: absolute;
bottom: 20px;
left: 20px;
z-index: 1;
padding: 20px 30px;
border-radius: 10px;
}
.growth-img-wrap .growth-counter .content .title {
line-height: 1;
font-size: 24px;
font-weight: 600;
display: flex;
align-items: center;
margin-bottom: 5px;
}
.growth-img-wrap .growth-counter .content .title .odometer-auto-theme {
line-height: 1;
font-family: inherit;
}
.growth-img-wrap .growth-counter .content p {
margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
.growth-content-14 {
margin-top: 40px;
}
}
.growth-content-14 .growth-items .growth-item {
overflow: hidden;
}
.growth-content-14 .growth-items .growth-item:not(:last-of-type) {
margin-bottom: 25px;
}
.growth-content-14 .growth-items .growth-item .title {
font-size: 16px;
}
.growth-content-14 .growth-items .growth-item .progress {
height: 7px;
overflow: visible;
border-radius: 100px;
}
.growth-content-14 .growth-items .growth-item .progress .progress-bar {
position: relative;
background-color: var(--ed-color-theme-primary);
overflow: visible;
border-radius: 100px;
}
.growth-content-14 .growth-items .growth-item .progress .progress-bar span {
font-size: 16px;
font-weight: 600;
background-repeat: no-repeat;
color: var(--ed-color-heading-primary);
padding: 10px 10px 20px 10px;
position: absolute;
top: -41px;
right: -11px;
}
.testimonial-section-14 {
background-color: #F2F4F7;
position: relative;
z-index: 1;
}
.testimonial-section-14 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.testimonial-section-14 .shapes .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
.testi-top-14 .swiper-arrow {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
}
.testi-top-14 .swiper-arrow .swiper-nav {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
width: 50px;
height: 50px;
border: 1px solid #E0E5EB;
box-shadow: 0px 11px 50px rgba(10, 32, 30, 0.16);
transition: all 0.3s ease-in-out;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.testi-top-14 .swiper-arrow .swiper-nav:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
border: 1px solid var(--ed-color-theme-primary);
}
.testi-item-14 .testi-top-content {
background-color: var(--ed-color-common-white);
padding: 40px;
position: relative;
z-index: 1;
border-radius: 15px;
margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
.testi-item-14 .testi-top-content {
padding: 30px 20px;
}
}
.testi-item-14 .testi-top-content .arrow {
background-color: var(--ed-color-common-white);
width: 25px;
height: 32px;
position: absolute;
bottom: -32px;
left: 40px;
-webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
clip-path: polygon(100% 0, 0 0, 0 100%);
}
.testi-item-14 .testi-top-content .quote {
position: absolute;
top: 40px;
right: 40px;
z-index: -1;
}
@media only screen and (max-width: 767px) {
.testi-item-14 .testi-top-content .quote {
top: 30px;
right: 20px;
}
}
.testi-item-14 .testi-top-content .title {
font-size: 20px;
font-weight: 600;
margin-bottom: 20px;
}
.testi-item-14 .testi-top-content p {
margin-bottom: 0;
}
.testi-item-14 .author-info-wrap {
display: grid;
align-items: center;
grid-template-columns: 60px 1fr;
grid-gap: 15px;
}
.testi-item-14 .author-info-wrap .author-img {
height: 60px;
width: 60px;
border-radius: 50%;
}
.testi-item-14 .author-info-wrap .author-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 50%;
}
.testi-item-14 .author-info-wrap .author-info .name {
font-size: 18px;
font-weight: 600;
margin-bottom: 5px;
}
.testi-item-14 .author-info-wrap .author-info span {
font-size: 16px;
font-weight: 400;
}
.team-item-14 {
position: relative;
}
.team-item-14 .team-thumb {
height: 400px;
}
.team-item-14 .team-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.team-item-14 .team-content {
background-color: var(--ed-color-common-white);
position: relative;
z-index: 5;
box-shadow: 0px 7px 44px rgba(18, 50, 47, 0.14);
border-radius: 15px;
margin: 0 30px;
margin-top: -60px;
padding: 25px 10px 25px 10px;
overflow-x: clip;
transition: all 0.3s ease-in-out;
}
.team-item-14 .team-content:before {
background-color: var(--ed-color-common-white);
content: "";
height: 55px;
width: 177px;
position: absolute;
top: -5px;
left: 10px;
z-index: -1;
transform: rotate(-4deg);
border-radius: 0;
transition: all 0.3s ease-in-out;
}
@media (max-width: 1399px) {
.team-item-14 .team-content:before {
width: 165px;
}
}
@media (max-width: 1200px) {
.team-item-14 .team-content:before {
width: 140px;
}
}
@media only screen and (max-width: 767px) {
.team-item-14 .team-content:before {
width: 120px;
transform: rotate(-6deg);
}
}
.team-item-14 .team-content:after {
background-color: var(--ed-color-common-white);
content: "";
height: 55px;
width: 177px;
position: absolute;
top: -5px;
right: 10px;
z-index: -1;
transform: rotate(4deg);
border-radius: 0;
transition: all 0.3s ease-in-out;
}
@media (max-width: 1399px) {
.team-item-14 .team-content:after {
width: 165px;
}
}
@media (max-width: 1200px) {
.team-item-14 .team-content:after {
width: 140px;
}
}
@media only screen and (max-width: 767px) {
.team-item-14 .team-content:after {
width: 120px;
transform: rotate(6deg);
}
}
.team-item-14 .team-content .title {
font-size: 24px;
font-weight: 600;
margin-bottom: 5px;
transition: all 0.3s ease-in-out;
}
.team-item-14 .team-content .title a {
color: var(--ed-color-heading-primary);
}
.team-item-14 .team-content span {
font-size: 16px;
color: var(--ed-color-theme-primary);
font-weight: 400;
line-height: 1;
transition: all 0.3s ease-in-out;
}
.team-item-14 .team-content .team-social {
position: absolute;
top: -33.5px;
left: 50%;
transform: translateX(-50%);
z-index: 1;
}
.team-item-14 .team-content .team-social .expand {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
cursor: pointer;
border-radius: 50%;
transition: all 0.3s ease-in-out;
}
.team-item-14 .team-content .team-social .expand:hover .social-list li {
visibility: visible;
opacity: 1;
}
.team-item-14 .team-content .team-social .expand .social-list {
position: absolute;
bottom: 55px;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
-moz-column-gap: 5px;
column-gap: 5px;
list-style: none;
}
.team-item-14 .team-content .team-social .expand .social-list li {
visibility: hidden;
opacity: 0;
transition: all 0.3s ease-in-out;
}
.team-item-14 .team-content .team-social .expand .social-list li a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 14px;
}
.team-item-14 .team-content .team-social .expand .social-list li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.team-item-14 .team-content .team-social .expand .social-list li:nth-child(2) {
transition-delay: 150ms;
}
.team-item-14 .team-content .team-social .expand .social-list li:nth-child(3) {
transition-delay: 200ms;
}
.team-item-14 .team-content .team-social .expand .social-list li:nth-child(4) {
transition-delay: 250ms;
}
.team-item-14 .team-content .team-social .expand .social-list li:nth-child(5) {
transition-delay: 300ms;
}
.team-item-14 .team-content .team-social .expand .social-list li:nth-child(6) {
transition-delay: 350ms;
}
.team-item-14 .team-content .team-social .expand .social-list li:nth-child(7) {
transition-delay: 400ms;
}
.team-item-14:hover .team-content {
background-color: var(--ed-color-theme-primary);
}
.team-item-14:hover .team-content:before, .team-item-14:hover .team-content:after {
background-color: var(--ed-color-theme-primary);
}
.team-item-14:hover .team-content .team-social .expand {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
}
.team-item-14:hover .team-content .title {
color: var(--ed-color-common-white);
}
.team-item-14:hover .team-content .title a {
color: var(--ed-color-common-white);
}
.team-item-14:hover .team-content span {
color: var(--ed-color-common-white);
}  .header-15 .top-bar {
background-color: var(--ed-color-theme-primary);
}
.header-15 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children:after {
display: none;
}
.header-15 .primary-header-inner .header-right-wrap .header-menu-wrap .sub-menu .menu-item-has-children ul li a:hover {
color: var(--ed-color-theme-primary);
}
.hero-15 {
background-color: #122927;
padding: 285px 0 170px 0;
position: relative;
z-index: 1;
}
@media only screen and (max-width: 992px) {
.hero-15 {
padding-bottom: 100px;
}
}
@media only screen and (max-width: 767px) {
.hero-15 {
padding: 200px 0 100px 0;
}
}
.hero-15 .bg-shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.hero-15 .bg-shapes .shape-2 {
position: absolute;
top: 0;
right: 0;
z-index: -1;
opacity: 0.5;
}
.hero-15 .bg-shapes .shape-3 {
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
width: 100%;
}
.hero-15 .bg-shapes .shape-3 img {
width: 100%;
}
.hero-content-15 {
padding: 0;
max-width: 580px;
width: 100%;
}
.hero-content-15 .hero-btn-wrap .ed-primary-btn.active {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
}
.hero-content-15 .hero-btn-wrap .ed-primary-btn.active:before {
background-color: var(--ed-color-theme-primary);
}
.hero-content-15 .hero-btn-wrap .ed-primary-btn.active:hover {
color: var(--ed-color-common-white);
}
.hero-img-wrap-15 {
height: 420px;
border: none;
}
.exam-item-2 {
background-color: var(--ed-color-common-white);
padding: 25px;
border: 1px solid #E0E5EB;
border-radius: 15px;
}
.exam-item-2 .exam-thumb {
height: 120px;
margin-bottom: 20px;
position: relative;
overflow: hidden;
border-radius: 15px;
}
.exam-item-2 .exam-thumb img {
border-radius: 15px;
}
.exam-item-2 .exam-thumb .overlay {
background-color: var(--ed-color-theme-primary);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
visibility: hidden;
opacity: 0;
transition: all 0.3s ease-in-out;
}
.exam-item-2 .exam-thumb .arrow {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0);
transition: all 0.3s ease-in-out;
}
.exam-item-2 .exam-thumb .arrow a {
background-color: #DFEFEE;
color: var(--ed-color-theme-primary);
height: 45px;
width: 45px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.exam-item-2 .exam-thumb .arrow a:hover {
background-color: var(--ed-color-common-white);
}
.exam-item-2 .title {
font-size: 24px;
}
.exam-item-2 p {
margin-bottom: 0;
padding-bottom: 0;
}
.exam-item-2:hover .exam-thumb .overlay {
visibility: visible;
opacity: 1;
}
.exam-item-2:hover .exam-thumb .arrow {
transform: translate(-50%, -50%) scale(1);
}
.team-item-15 {
box-shadow: 0px 4px 44px rgba(11, 38, 36, 0.18);
border-radius: 15px;
border: none;
}
.team-item-15 .team-thumb-wrap {
box-shadow: 0px 4px 44px rgba(11, 38, 36, 0.18);
border: 1px solid transparent;
}
.testi-carousel-wrap-15 {
position: relative;
}
.testi-carousel-wrap-15 .swiper-arrow .swiper-nav {
color: var(--ed-color-common-white);
height: 60px;
width: 60px;
border: 1px solid var(--ed-color-common-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 50%;
left: -100px;
transform: translateY(-50%);
transition: all 0.3s ease-in-out;
}
@media (max-width: 1600px) {
.testi-carousel-wrap-15 .swiper-arrow .swiper-nav {
left: -70px;
}
}
@media (max-width: 1200px) {
.testi-carousel-wrap-15 .swiper-arrow .swiper-nav {
display: none;
}
}
.testi-carousel-wrap-15 .swiper-arrow .swiper-nav:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
border-color: var(--ed-color-theme-primary);
}
.testi-carousel-wrap-15 .swiper-arrow .swiper-nav.swiper-prev {
right: -100px;
left: auto;
}
@media (max-width: 1600px) {
.testi-carousel-wrap-15 .swiper-arrow .swiper-nav.swiper-prev {
right: -70px;
}
}
@media (max-width: 1200px) {
.testi-item-15 {
padding: 30px 20px;
}
}
.testi-item-15 .title {
font-size: 20px;
font-weight: 600;
margin-bottom: 20px;
}
.testi-item-15 p {
margin-bottom: 25px;
}
.testi-item-15 .testi-bottom .quote {
opacity: 0.5;
}
.about-section-15 {
background-color: #F2F4F7;
position: relative;
z-index: 1;
}
@media only screen and (max-width: 992px) {
.about-section-15 .shapes {
display: none;
}
}
.about-section-15 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.about-section-15 .shapes .shape-2 {
position: absolute;
top: 0;
right: 220px;
z-index: -1;
}
.about-section-15 .shapes .shape-3 {
position: absolute;
top: 0;
right: 40px;
z-index: -1;
}
.about-section-15 .shapes .shape-4 {
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
width: 100%;
}
.about-section-15 .shapes .shape-4 img {
width: 100%;
}
.about-section-15 .shapes .shape-5 {
position: absolute;
bottom: 0;
right: 80px;
z-index: -1;
}
.about-content-15 p {
margin-bottom: 30px;
}
.about-content-15 .about-list {
list-style: none;
margin-bottom: 40px;
}
.about-content-15 .about-list li {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
font-size: 16px;
color: var(--ed-color-heading-primary);
font-weight: 500;
}
.about-content-15 .about-list li:not(:last-of-type) {
margin-bottom: 10px;
}
.about-content-15 .about-list li i {
color: var(--ed-color-theme-primary);
}
.about-img-wrap-15 {
display: flex;
align-items: center;
max-width: 742px;
width: 100%;
-moz-column-gap: 15px;
column-gap: 15px;
}
@media only screen and (max-width: 992px) {
.about-img-wrap-15 {
margin-top: 40px;
}
}
@media only screen and (max-width: 767px) {
.about-img-wrap-15 {
flex-direction: column;
row-gap: 24px;
}
}
.about-img-wrap-15 .about-img-1 {
height: 470px;
max-width: 416px;
width: 100%;
}
@media only screen and (max-width: 767px) {
.about-img-wrap-15 .about-img-1 {
height: 350px;
}
}
.about-img-wrap-15 .about-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.about-img-wrap-15 .about-img-2 {
height: 395px;
max-width: 302px;
width: 100%;
}
@media only screen and (max-width: 767px) {
.about-img-wrap-15 .about-img-2 {
height: 350px;
}
}
.about-img-wrap-15 .about-img-2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.course-item-15 {
background-color: #F2F4F7;
display: grid;
align-items: center;
grid-template-columns: 608px 1fr;
padding: 20px;
grid-gap: 40px;
border: none;
transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
.course-item-15 {
grid-template-columns: 450px 1fr;
}
}
@media only screen and (max-width: 992px) {
.course-item-15 {
grid-template-columns: 1fr;
}
}
.course-item-15:not(:last-of-type) {
margin-bottom: 30px;
}
.course-item-15:hover {
background: var(--ed-color-common-white);
box-shadow: 0px 4px 44px rgba(11, 38, 36, 0.18);
border-radius: 20px;
}
.course-item-15 .course-thumb-wrap {
padding: 0;
}
.course-item-15 .course-thumb-wrap .course-thumb {
width: 100%;
height: 378px;
}
.course-item-15 .course-thumb-wrap .course-thumb img {
-o-object-position: top;
object-position: top;
}
.course-item-15 .course-content-wrap .course-content {
padding: 0;
padding-bottom: 30px;
}
.course-item-15 .course-content-wrap .course-content .title {
font-size: 30px;
font-weight: 600;
}
@media only screen and (max-width: 767px) {
.course-item-15 .course-content-wrap .course-content .title {
font-size: 24px;
}
}
.course-item-15 .course-content-wrap .course-content .course-list {
margin-bottom: 25px;
}
.course-item-15 .course-content-wrap .bottom-content {
padding: 0;
}
.cta-section-15 {
position: relative;
z-index: 1;
}
.cta-section-15 .cta-bg {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -2;
filter: saturate(0);
}
.cta-section-15 .overlay {
background: rgba(19, 66, 62, 0.82);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.counter-item-wrap-15 {
display: block;
max-width: 100%;
margin-left: 0;
margin-top: 0;
}
.counter-item-wrap-15 .counter-item-12 {
background-color: var(--ed-color-common-white);
border: none;
}  .header-16 {
border-bottom: 1px solid var(--ed-color-border-1);
}
.header-16 .top-bar .top-bar-inner .top-bar-right .register-box {
margin-right: 0;
padding-right: 0;
border: none;
}
.header-16 .primary-header-inner .header-left-inner .header-menu-wrap {
padding-left: 0;
margin-left: 0;
border: none;
}
.header-16 .primary-header-inner .header-left-inner .header-menu-wrap .sub-menu li.mega-menu ul {
left: 15% !important;
}
@media (max-width: 1600px) {
.header-16 .primary-header-inner .header-left-inner .header-menu-wrap .sub-menu li.mega-menu ul {
left: 5% !important;
}
}
.header-16 .primary-header-inner .top-social-wrap {
display: flex;
align-items: center;
}
@media (max-width: 1200px) {
.header-16 .primary-header-inner .top-social-wrap {
display: none;
}
}
.header-16 .primary-header-inner .top-social-wrap span {
color: var(--ed-color-heading-primary);
}
.header-16 .primary-header-inner .top-social-wrap .social-list {
margin-left: 20px;
}
.header-16 .primary-header-inner .top-social-wrap .social-list li {
display: inline-flex;
align-items: center;
}
.header-16 .primary-header-inner .top-social-wrap .social-list li:not(:last-of-type) {
margin-right: 10px;
}
.header-16 .primary-header-inner .top-social-wrap .social-list li a {
color: var(--ed-color-heading-primary);
}
.header-16 .primary-header-inner .top-social-wrap .social-list li a:hover {
color: var(--ed-color-theme-primary);
}
.hero-wrap-16 {
padding: 90px;
background: linear-gradient(270deg, #07A698 0%, #03403B 81.33%);
border-radius: 15px;
overflow: hidden;
position: relative;
z-index: 1;
margin-top: 30px;
}
@media only screen and (max-width: 992px) {
.hero-wrap-16 {
padding: 90px 30px;
}
}
@media only screen and (max-width: 767px) {
.hero-wrap-16 {
padding: 50px 20px;
}
}
.hero-wrap-16 .hero-men {
position: absolute;
bottom: 0;
right: 10px;
z-index: -1;
}
@media only screen and (max-width: 992px) {
.hero-wrap-16 .hero-men {
display: none;
}
}
.hero-wrap-16 .shapes .shape-1 {
position: absolute;
top: 0;
left: 40%;
transform: translateX(-50%);
z-index: -1;
}
.hero-wrap-16 .shapes .shape-2 {
position: absolute;
top: 20%;
right: 50px;
z-index: -1;
}
.hero-wrap-16 .shapes .shape-3 {
position: absolute;
bottom: 0;
left: 20px;
z-index: -1;
}
.hero-content-16 .section-heading {
margin-bottom: 40px;
}
.hero-content-16 .section-heading .sub-heading {
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.1);
-webkit-backdrop-filter: blur(50px);
backdrop-filter: blur(50px);
border-radius: 100px;
color: var(--ed-color-common-white);
}
.hero-content-16 .section-heading .sub-heading .heading-icon {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.hero-content-16 .section-heading .section-title {
font-size: 40px;
}
.hero-content-16 .section-heading .section-title br {
display: block;
}
@media only screen and (max-width: 767px) {
.hero-content-16 .section-heading .section-title {
font-size: 32px;
}
}
.hero-content-16 .hero-items {
display: flex;
align-items: center;
-moz-column-gap: 40px;
column-gap: 40px;
margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
.hero-content-16 .hero-items {
flex-wrap: wrap;
row-gap: 20px;
}
}
.hero-content-16 .hero-items .hero-item {
display: grid;
align-items: center;
grid-template-columns: 50px 1fr;
grid-gap: 15px;
}
.hero-content-16 .hero-items .hero-item .icon {
background-color: var(--ed-color-common-white);
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.hero-content-16 .hero-items .hero-item .item-title {
font-size: 16px;
font-weight: 600;
margin-bottom: 0;
}
.hero-content-16 .hero-btn-wrap .ed-primary-btn {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
}
.hero-content-16 .hero-btn-wrap .ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
.hero-content-16 .hero-btn-wrap .ed-primary-btn:before {
background-color: var(--ed-color-theme-primary);
}
.category-wrap-16 {
background-color: #F2F4F7;
padding: 20px;
border-radius: 15px;
display: grid;
align-items: center;
grid-template-columns: repeat(5, 1fr);
grid-gap: 24px;
margin-top: 20px;
}
@media only screen and (max-width: 992px) {
.category-wrap-16 {
grid-template-columns: repeat(3, 1fr);
}
}
@media only screen and (max-width: 767px) {
.category-wrap-16 {
grid-template-columns: 1fr;
}
}
.category-wrap-16 .cat-item {
background-color: var(--ed-color-common-white);
}
.category-wrap-16 .cat-item .icon {
background-color: var(--ed-color-grey-1);
transition: all 0.3s ease-in-out;
}
.category-wrap-16 .cat-item:hover .icon {
background-color: var(--ed-color-common-white);
}
.promo-item-16 {
background-color: var(--ed-color-grey-1);
border-radius: 15px;
border: 1px solid #E0E5EB;
padding: 45px 20px 20px 20px;
transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
.promo-item-16 {
padding: 30px 15px 20px 15px;
}
}
.promo-item-16 .icon {
background-color: var(--ed-color-common-white);
height: 113px;
width: 113px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
margin: 0 auto;
margin-bottom: 30px;
}
.promo-item-16 .promo-content {
background-color: var(--ed-color-common-white);
padding: 25px 20px 20px 20px;
border: 1px solid #E0E5EB;
border-radius: 15px;
}
@media only screen and (max-width: 767px) {
.promo-item-16 .promo-content .title {
font-size: 18px;
}
}
.promo-item-16 .promo-content p {
margin-bottom: 0;
margin-top: 10px;
}
@media only screen and (max-width: 767px) {
.promo-item-16 .promo-content p {
font-size: 14px;
}
}
.promo-item-16:hover {
transform: translateY(-5px);
}
.ct-16 {
border-radius: 15px;
overflow: hidden;
position: relative;
transition: all 0.3s ease-in-out;
}
.ct-16 .ct-thumb {
height: 220px;
}
.ct-16 .ct-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.ct-16 .ct-content {
position: absolute;
bottom: 20px;
left: 20px;
right: 20px;
}
.ct-16 .ct-content a {
background-color: var(--ed-color-common-white);
font-family: var(--ed-ff-heading);
color: var(--ed-color-heading-primary);
display: flex;
align-items: center;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 16px;
font-weight: 600;
line-height: 1;
padding: 17px 20px;
border-radius: 8px;
}
.ct-16 .ct-content a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.ct-16:hover {
transform: translateY(-5px);
}
.faq-content-16 {
max-width: 100%;
margin-top: 0;
}
.faq-content-16 .faq-accordion {
max-width: 586px;
width: 100%;
}
@media only screen and (max-width: 992px) {
.faq-content-16 .faq-accordion {
max-width: 100%;
}
}
.faq-content-16 .faq-accordion .accordion-item {
transition: all 0.3s ease-in-out;
border: 1px solid #E0E5EB;
border-radius: 5px;
overflow: hidden;
}
.faq-content-16 .faq-accordion .accordion-item:not(:last-of-type) {
margin-bottom: 15px;
}
.faq-content-16 .faq-accordion .accordion-item .accordion-button {
padding: 20px 30px;
border: none;
box-shadow: none;
outline: none;
}
.faq-content-16 .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
border: none;
}
.faq-content-16 .faq-accordion .accordion-item.active {
background-color: var(--ed-color-common-white);
box-shadow: 0px 9px 36px rgba(15, 34, 32, 0.23);
}
.faq-content-16 .faq-accordion .accordion-item .accordion-body {
padding: 0 30px 20px 30px;
color: #6C706F;
}
.faq-img-wrap-16 {
max-width: 652px;
width: 100%;
height: 560px;
position: relative;
}
.faq-img-wrap-16 .faq-img-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
max-width: 460px;
width: 100%;
height: 100%;
}
.faq-img-wrap-16 .faq-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
-o-object-position: top;
object-position: top;
}
.faq-img-wrap-16 .faq-img-2 {
position: absolute;
right: 0;
bottom: 18%;
max-width: 300px;
width: 100%;
height: 267px;
box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.12);
border-radius: 15px;
}
@media only screen and (max-width: 767px) {
.faq-img-wrap-16 .faq-img-2 {
bottom: 0;
}
}
.faq-img-wrap-16 .faq-img-2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
border: 6px solid var(--ed-color-common-white);
}
.post-card-16 {
padding: 0;
border: none;
grid-gap: 0;
}
.post-card-16 .post-thumb {
height: 243px;
margin-bottom: 15px;
}
.post-card-16 .post-thumb img {
border-radius: 15px;
transition: all 0.3s ease-in-out;
}
.post-card-16 .post-content-wrap .post-content .post-meta {
padding-bottom: 15px;
margin-bottom: 15px;
border-bottom: 1px dashed #D1DBDA;
}
.post-card-16 .post-content-wrap .post-content .post-meta li {
color: var(--ed-color-text-body);
line-height: 1;
}
.post-card-16 .post-content-wrap .post-content .post-meta li i {
color: var(--ed-color-text-body);
}
.post-card-16 .post-content-wrap .post-content .title {
margin-bottom: 0;
padding-bottom: 0;
border: none;
}
.post-card-16:hover .post-thumb img {
transform: scale(1.02);
}
.sponsor-16 {
padding-top: 120px;
}
@media only screen and (max-width: 992px) {
.sponsor-16 {
padding-top: 80px;
}
}
@media only screen and (max-width: 767px) {
.sponsor-16 {
padding-top: 60px;
}
}
.footer-top-content-16 {
padding-bottom: 70px;
border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.footer-16 {
background-color: #162726;
}
.footer-16 .footer-top {
background-color: transparent;
padding: 0;
border: none;
margin-bottom: 0;
}
.footer-16 .footer-top .title {
display: flex;
align-items: center;
-moz-column-gap: 25px;
column-gap: 25px;
text-align: left;
}
@media only screen and (max-width: 767px) {
.footer-16 .footer-top .title {
flex-direction: column;
row-gap: 10px;
align-items: baseline;
}
}
.footer-16 .footer-top .title span {
background-color: var(--ed-color-theme-primary);
height: 80px;
width: 80px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.footer-16 .footer-wrap {
margin-bottom: 0;
overflow: hidden;
}
@media only screen and (max-width: 992px) {
.footer-16 .footer-wrap {
margin-top: 70px;
padding-bottom: 30px;
}
}
.footer-16 .footer-wrap .footer-widget {
padding-top: 100px;
padding-bottom: 100px;
position: relative;
}
@media only screen and (max-width: 992px) {
.footer-16 .footer-wrap .footer-widget {
padding: 0;
}
}
.footer-16 .footer-wrap .footer-widget:before {
background-color: rgba(255, 255, 255, 0.09);
content: "";
width: 1px;
height: 150%;
position: absolute;
top: 0;
right: 0;
}
@media only screen and (max-width: 992px) {
.footer-16 .footer-wrap .footer-widget:before {
display: none;
}
}
.footer-16 .footer-wrap .footer-widget.widget-3:before {
display: none;
}
.footer-16 .footer-wrap .footer-widget p {
max-width: 480px;
width: 100%;
}
.footer-16 .footer-wrap .footer-widget .footer-download .download-title {
color: var(--ed-color-common-white);
font-size: 18px;
font-weight: 500;
margin-bottom: 20px;
}
.footer-16 .footer-wrap .footer-widget .footer-download .download-items {
display: flex;
align-items: center;
flex-wrap: wrap;
-moz-column-gap: 30px;
column-gap: 30px;
row-gap: 20px;
}
.footer-16 .footer-wrap .footer-widget .footer-download .download-items .download-item {
background-color: #425454;
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
padding: 7px 30px;
border-radius: 100px;
}
.footer-16 .footer-wrap .footer-widget .footer-download .download-items .download-item .icon {
color: var(--ed-color-common-white);
font-size: 30px;
}
.footer-16 .footer-wrap .footer-widget .footer-download .download-items .download-item .content p {
font-family: var(--ed-ff-heading);
font-size: 12px;
color: var(--ed-color-common-white);
margin-bottom: 0px;
line-height: 1;
}
.footer-16 .footer-wrap .footer-widget .footer-download .download-items .download-item .content .title {
color: var(--ed-color-common-white);
font-size: 16px;
margin-bottom: 0;
font-weight: 500;
}
.footer-16 .copyright-content-16 {
display: flex;
align-items: center;
justify-content: space-between;
}
.footer-16 .copyright-content-16 .copyright-list {
list-style: none;
display: flex;
align-items: center;
flex-wrap: wrap;
row-gap: 10px;
}
@media only screen and (max-width: 767px) {
.footer-16 .copyright-content-16 .copyright-list {
justify-content: center;
}
}
.footer-16 .copyright-content-16 .copyright-list li {
color: var(--ed-color-common-white);
font-size: 16px;
font-weight: 400;
display: block;
}
.footer-16 .copyright-content-16 .copyright-list li:not(:last-of-type) {
margin-right: 20px;
}  .header-17 .primary-header .primary-header-inner .header-form {
position: relative;
max-width: 303px;
width: 100%;
}
@media (max-width: 1200px) {
.header-17 .primary-header .primary-header-inner .header-form {
display: none;
}
}
.header-17 .primary-header .primary-header-inner .header-form .form-control {
padding-top: 0;
background-color: var(--ed-color-common-white);
padding-bottom: 0;
border: none;
box-shadow: none;
padding: 12px 0 12px 20px;
padding-right: 150px;
border-radius: 100px;
border: 1px solid var(--ed-color-border-1);
}
.header-17 .primary-header .primary-header-inner .header-form .submit {
position: absolute;
top: 50%;
right: 6px;
transform: translateY(-50%);
padding: 12px 20px 12px 20px;
font-size: 14px;
font-weight: 500;
}
.header-17 .primary-header .primary-header-inner .header-form .submit i {
margin-right: 5px;
margin-left: 0;
font-size: 12px;
}
.hero-section-17 {
background-color: var(--ed-color-theme-primary);
position: relative;
z-index: 1;
overflow-x: clip;
}
.hero-section-17 .bg-shape {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.hero-section-17 .hero-author-name {
position: absolute;
top: 30px;
right: 50px;
z-index: -1;
}
@media only screen and (max-width: 767px) {
.hero-section-17 .hero-author-name {
display: none;
}
}
.hero-section-17 .hero-author-name span {
font-family: var(--ed-ff-heading);
color: rgba(255, 255, 255, 0.2);
font-size: 160px;
font-weight: 700;
margin-bottom: 0;
line-height: 1;
text-transform: uppercase;
}
.hero-content-17 {
padding: 120px 0 150px 0;
position: relative;
z-index: 5;
}
@media only screen and (max-width: 992px) {
.hero-content-17 {
padding-top: 70px;
}
}
@media (max-width: 1200px) {
.hero-content-17 .section-heading .section-title {
font-size: 40px;
}
}
.hero-content-17 .section-heading .section-title span {
color: var(--ed-color-common-white);
}
.hero-content-17 p {
max-width: 540px;
width: 100%;
}
.hero-content-17 .hero-btn-wrap {
margin-bottom: 0;
}
.hero-content-17 .hero-btn-wrap .ed-primary-btn {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
}
.hero-content-17 .hero-btn-wrap .ed-primary-btn:before {
background-color: var(--ed-color-heading-primary);
}
.hero-content-17 .hero-btn-wrap .ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
.hero-wrap-17 {
position: relative;
}
.hero-img-wrap-17 {
max-width: 946px;
width: 100%;
height: 100%;
position: absolute;
bottom: 0;
right: -110px;
}
@media only screen and (max-width: 992px) {
.hero-img-wrap-17 {
display: none;
}
}
.hero-img-wrap-17 .hero-men {
position: absolute;
bottom: 0;
right: 0;
}
.hero-img-wrap-17 .hero-list li {
background-color: var(--ed-color-common-white);
font-family: var(--ed-ff-heading);
position: absolute;
top: 20%;
left: 17%;
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 500;
padding: 7px 20px 7px 40px;
border-radius: 100px;
}
.hero-img-wrap-17 .hero-list li .icon {
background-color: var(--ed-color-theme-primary);
height: 55px;
width: 55px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 10px solid var(--ed-color-common-white);
position: absolute;
top: 50%;
left: -20px;
transform: translateY(-50%);
}
.hero-img-wrap-17 .hero-list li .icon img {
height: 20px;
width: 20px;
}
.hero-img-wrap-17 .hero-list li:nth-child(2) {
top: 55%;
left: 25%;
}
@media (max-width: 1200px) {
.hero-img-wrap-17 .hero-list li:nth-child(2) {
left: 35%;
}
}
.hero-img-wrap-17 .hero-list li:nth-child(3) {
top: auto;
left: auto;
bottom: 35%;
right: 8%;
}
@media (max-width: 1399px) {
.hero-img-wrap-17 .hero-list li:nth-child(3) {
right: 12%;
}
}
.counter-section-17 {
margin-top: -55px;
position: relative;
z-index: 5;
}
.counter-wrap-17 {
background-color: var(--ed-color-common-white);
padding: 50px;
box-shadow: 0px 11px 52px rgba(19, 45, 42, 0.12);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 20px;
column-gap: 20px;
}
@media only screen and (max-width: 992px) {
.counter-wrap-17 {
padding: 40px 20px;
}
}
@media only screen and (max-width: 767px) {
.counter-wrap-17 {
flex-direction: column;
row-gap: 30px;
align-items: baseline;
}
}
.counter-wrap-17 .counter-item-17 {
display: grid;
align-items: center;
grid-template-columns: 65px 1fr;
grid-gap: 20px;
}
@media (max-width: 1200px) {
.counter-wrap-17 .counter-item-17 {
grid-template-columns: 1fr;
}
}
.counter-wrap-17 .counter-item-17 .icon {
background: #FFFFFF;
box-shadow: 0px 13px 36px rgba(55, 152, 147, 0.27);
width: 65px;
height: 65px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.counter-wrap-17 .counter-item-17 .content .title {
font-size: 36px;
font-weight: 700;
margin-bottom: 0;
color: var(--ed-color-theme-primary);
line-height: 1;
display: flex;
align-items: center;
}
.counter-wrap-17 .counter-item-17 .content .title .odometer-auto-theme {
font-family: inherit;
line-height: 1;
}
.counter-wrap-17 .counter-item-17 .content p {
font-family: var(--ed-ff-heading);
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 500;
margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
.counter-wrap-17 .counter-item-17 .content p {
font-size: 14px;
}
}
.about-img-17 {
position: relative;
}
.about-img-17 .about-counter {
height: 130px;
width: 130px;
border-radius: 50%;
position: absolute;
top: 30px;
left: 30px;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}
.about-img-17 .about-counter .about-counter-bg {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
animation-name: spin;
animation-duration: 15s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.about-img-17 .about-counter .about-counter-bg img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.about-img-17 .about-counter span {
color: var(--ed-color-common-white);
font-size: 36px;
font-weight: 700;
display: block;
position: relative;
z-index: 5;
line-height: 1;
}
.about-content-17 {
padding-left: 40px;
}
@media only screen and (max-width: 992px) {
.about-content-17 {
padding-left: 0;
}
}
.about-content-17 .section-heading .section-title span {
color: var(--ed-color-heading-primary);
font-weight: 400;
}
.about-content-17 .about-items .about-item .icon {
box-shadow: 0px 5px 40px rgba(15, 39, 37, 0.1);
}
.about-content-17 .about-items .about-item .title {
color: var(--ed-color-text-body);
font-size: 16px;
font-weight: 500;
}
.about-content-17 .about-items .about-item .title a {
font-size: 18px;
color: var(--ed-color-heading-primary);
display: block;
font-weight: 600;
margin-top: 5px;
}
.about-content-17 .about-items .about-item .title a:hover {
color: var(--ed-color-theme-primary);
}
.feature-section-17 {
background-color: #F2F4F7;
position: relative;
z-index: 1;
}
.feature-section-17 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.feature-section-17 .shapes .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
.feature-section-17 .shapes .shape-3 {
position: absolute;
top: 100px;
left: 10px;
z-index: -1;
}
@media only screen and (max-width: 992px) {
.feature-section-17 .shapes .shape-3 {
display: none;
}
}
.feature-section-17 .shapes .shape-4 {
position: absolute;
top: 70px;
right: 0;
z-index: -1;
}
@media only screen and (max-width: 992px) {
.feature-section-17 .shapes .shape-4 {
display: none;
}
}
.feature-item-17 {
background-color: var(--ed-color-common-white);
padding: 30px;
border-radius: 15px;
transition: all 0.3s ease-in-out;
border: 2px solid transparent;
}
.feature-item-17 .feature-inner {
display: grid;
align-items: center;
grid-template-columns: 55px 1fr;
grid-gap: 20px;
margin-bottom: 20px;
}
@media (max-width: 1200px) {
.feature-item-17 .feature-inner {
grid-template-columns: 1fr;
}
}
.feature-item-17 .feature-inner .icon {
background-color: #F2F4F7;
height: 55px;
width: 55px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.3s ease-in-out;
}
.feature-item-17 .feature-inner .icon img {
transition: all 0.3s ease-in-out;
}
.feature-item-17 .feature-inner .content span {
font-family: var(--ed-ff-heading);
color: var(--ed-color-theme-primary);
font-weight: 500;
display: block;
margin-bottom: 10px;
line-height: 1;
}
.feature-item-17 .feature-inner .content .title {
font-size: 24px;
font-weight: 600;
margin-bottom: 0;
line-height: 1;
}
.feature-item-17 p {
margin-bottom: 0;
}
@media (max-width: 1200px) {
.feature-item-17 p br {
display: none;
}
}
.feature-item-17:hover {
border-color: var(--ed-color-theme-primary);
}
.feature-item-17:hover .icon {
background-color: var(--ed-color-theme-primary);
}
.feature-item-17:hover .icon img {
filter: brightness(0) invert(1);
}
.course-section-17 {
position: relative;
z-index: 1;
}
.course-section-17 .bg-color {
background-color: #F2F4F7;
width: 100%;
height: 50%;
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
}
.course-section-17 .shape {
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
}
.course-item-17 {
background-color: var(--ed-color-common-white);
display: grid;
align-items: center;
grid-template-columns: 628px 1fr;
max-width: 1280px;
width: 100%;
box-shadow: 0px 4px 36px rgba(32, 42, 62, 0.15);
border-radius: 10px;
}
.course-item-17:not(:last-of-type) {
margin-bottom: 30px;
}
@media (max-width: 1200px) {
.course-item-17 {
grid-template-columns: 500px 1fr;
}
}
@media only screen and (max-width: 992px) {
.course-item-17 {
grid-template-columns: 1fr;
}
}
.course-item-17 .course-thumb {
max-width: 628px;
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
border-radius: 10px;
}
@media only screen and (max-width: 992px) {
.course-item-17 .course-thumb {
max-width: 100%;
height: 500px;
}
}
@media only screen and (max-width: 992px) {
.course-item-17 .course-thumb {
height: 400px;
}
}
.course-item-17 .course-thumb img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: top;
object-position: top;
border-radius: 10px;
}
.course-item-17 .course-thumb .category {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
font-size: 14px;
font-weight: 700;
padding: 5px 15px;
border-radius: 100px;
display: inline-block;
margin-bottom: 20px;
position: absolute;
top: 20px;
right: 20px;
z-index: 5;
}
.course-item-17 .course-thumb .overlay {
background: rgba(13, 33, 57, 0.15);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.course-item-17 .course-content {
padding: 40px;
}
@media (max-width: 1200px) {
.course-item-17 .course-content {
padding: 30px 20px;
}
}
.course-item-17 .course-content .course-review {
margin-bottom: 10px;
}
.course-item-17 .course-content .course-review li {
display: inline-flex;
}
.course-item-17 .course-content .course-review li i {
color: var(--ed-color-theme-primary);
}
.course-item-17 .course-content .course-review li.point {
margin-left: 10px;
}
.course-item-17 .course-content .title {
font-size: 30px;
font-weight: 600;
margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
.course-item-17 .course-content .title {
font-size: 24px;
}
}
.course-item-17 .course-content .author {
color: var(--ed-color-theme-primary);
font-size: 16px;
font-weight: 400;
display: block;
margin-bottom: 20px;
}
.course-item-17 .course-content p {
padding-bottom: 25px;
margin-bottom: 30px;
border-bottom: 1px dashed #D0D7E3;
}
.course-item-17 .course-content .course-inner-items {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 1px dashed #D0D7E3;
}
@media only screen and (max-width: 767px) {
.course-item-17 .course-content .course-inner-items {
flex-wrap: wrap;
row-gap: 20px;
}
}
.course-item-17 .course-content .course-inner-items .course-inner-item {
display: grid;
grid-template-columns: 40px 1fr;
grid-gap: 10px;
}
.course-item-17 .course-content .course-inner-items .course-inner-item .icon {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
height: 40px;
width: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 5px;
}
.course-item-17 .course-content .course-inner-items .course-inner-item .content .item-title {
font-size: 16px;
font-weight: 500;
margin-bottom: 5px;
}
.course-item-17 .course-content .course-inner-items .course-inner-item .content span {
font-size: 16px;
font-weight: 400;
display: block;
line-height: 1;
}
.course-item-17 .course-content .bottom-content {
display: flex;
align-items: center;
justify-content: space-between;
}
.course-item-17 .course-content .bottom-content .price {
color: var(--ed-color-heading-primary);
font-size: 20px;
font-weight: 700;
}
.course-item-17 .course-content .bottom-content .course-btn {
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 600;
padding: 5px 20px;
border: 1px solid #E0E5EB;
border-radius: 100px;
}
.course-item-17 .course-content .bottom-content .course-btn:hover {
border: 1px solid var(--ed-color-theme-primary);
}
.course-item-17.item-2 {
display: grid;
grid-template-columns: 1fr 628px;
}
@media (max-width: 1200px) {
.course-item-17.item-2 {
grid-template-columns: 1fr 500px;
}
}
@media only screen and (max-width: 992px) {
.course-item-17.item-2 {
grid-template-columns: 1fr;
}
}
.course-item-17.item-2 .course-thumb .category {
right: auto;
left: 20px;
}
.post-card-wrap-17 .post-card-16 {
display: grid;
align-items: center;
grid-template-columns: 130px 1fr;
grid-gap: 18px;
}
@media only screen and (max-width: 767px) {
.post-card-wrap-17 .post-card-16 {
grid-template-columns: 100px 1fr;
}
}
.post-card-wrap-17 .post-card-16:not(:last-of-type) {
margin-bottom: 30px;
}
.post-card-wrap-17 .post-card-16 .post-thumb {
height: 100px;
margin-bottom: 0;
}
.post-card-wrap-17 .post-card-16 .post-content {
padding: 0;
}
.post-card-wrap-17 .post-card-16 .post-content .post-meta {
margin-bottom: 10px;
padding-bottom: 10px;
}
.post-card-wrap-17 .post-card-16 .post-content .post-meta li {
font-size: 14px;
}
.post-card-wrap-17 .post-card-16 .post-content .title {
font-size: 16px;
font-weight: 600;
}
@media only screen and (max-width: 767px) {
.post-card-wrap-17 .post-card-16 .post-content .title {
font-size: 15px;
}
}
.footer-17 {
background-color: #1F2A2A;
position: relative;
z-index: 1;
}
.footer-17 .shapes .shape-1 {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
z-index: -1;
}
@media only screen and (max-width: 992px) {
.footer-17 .shapes .shape-1 {
height: 100%;
width: 100%;
}
.footer-17 .shapes .shape-1 img {
width: 100%;
height: 50%;
-o-object-fit: cover;
object-fit: cover;
}
}
.footer-17 .shapes .shape-2 {
position: absolute;
top: 20%;
right: 0;
z-index: -1;
}
.footer-17 .shapes .shape-3 {
position: absolute;
bottom: 40%;
left: 0;
z-index: -1;
}
@media only screen and (max-width: 992px) {
.footer-17 .shapes .shape-3 {
display: none;
}
}
.footer-17 .footer-top-content-16 {
border: none;
padding-bottom: 30px;
}
.footer-17 .footer-top {
background: transparent;
-webkit-backdrop-filter: inherit;
backdrop-filter: inherit;
border: none;
padding: 0;
flex-direction: column;
}
.footer-17 .footer-top .footer-form-wrap {
max-width: 846px;
width: 100%;
}
.footer-17 .footer-top .footer-form-wrap .footer-form {
position: relative;
width: 100%;
}
.footer-17 .footer-top .footer-form-wrap .footer-form .ed-primary-btn {
position: absolute;
top: 50%;
right: 5px;
transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
.footer-17 .footer-top .footer-form-wrap .footer-form .ed-primary-btn {
position: relative;
top: 0;
right: 0;
transform: inherit;
}
}
.footer-17 .footer-top .footer-form-wrap .footer-form .form-item {
width: 100%;
}
.footer-17 .footer-top .footer-form-wrap .footer-form .form-item .form-control {
background-color: var(--ed-color-common-white);
color: #6C706F;
padding-top: 17px;
padding-bottom: 17px;
width: 100%;
}
.footer-17 .footer-top .footer-form-wrap .footer-form .form-item .form-control::-webkit-input-placeholder {
color: #6C706F;
}
.footer-17 .footer-top .footer-form-wrap .footer-form .form-item .form-control:-moz-placeholder {
color: #6C706F;
}
.footer-17 .footer-top .footer-form-wrap .footer-form .form-item .form-control::-moz-placeholder {
color: #6C706F;
}
.footer-17 .footer-top .footer-form-wrap .footer-form .form-item .form-control:-ms-input-placeholder {
color: #6C706F;
}
.footer-17 .footer-top .footer-form-wrap .footer-form .form-item .icon {
color: var(--ed-color-theme-primary);
}
.footer-17 .footer-inner {
background: #162726;
border: 1px solid #29403F;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 60px;
}
@media only screen and (max-width: 992px) {
.footer-17 .footer-inner {
padding: 60px 40px;
}
}
@media only screen and (max-width: 767px) {
.footer-17 .footer-inner {
flex-direction: column;
row-gap: 40px;
}
}
.footer-17 .footer-inner .footer-inner-left p {
color: var(--ed-color-common-white);
margin: 25px 0 30px 0;
}
@media only screen and (max-width: 992px) {
.footer-17 .footer-inner .footer-inner-left p {
max-width: 300px;
width: 100%;
}
.footer-17 .footer-inner .footer-inner-left p br {
display: none;
}
}
.footer-17 .footer-inner .footer-inner-left .social-list li {
display: inline-flex;
}
.footer-17 .footer-inner .footer-inner-left .social-list li:not(:last-of-type) {
margin-right: 10px;
}
.footer-17 .footer-inner .footer-inner-left .social-list li a {
background-color: #425454;
color: var(--ed-color-common-white);
height: 40px;
width: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.footer-17 .footer-inner .footer-inner-left .social-list li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.footer-17 .footer-inner .footer-inner-right .footer-inner-contact {
display: grid;
align-items: center;
grid-template-columns: 60px 1fr;
grid-gap: 20px;
}
@media only screen and (max-width: 767px) {
.footer-17 .footer-inner .footer-inner-right .footer-inner-contact {
grid-template-columns: 1fr;
}
}
.footer-17 .footer-inner .footer-inner-right .footer-inner-contact:not(:last-of-type) {
margin-bottom: 25px;
}
.footer-17 .footer-inner .footer-inner-right .footer-inner-contact .icon {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
height: 60px;
width: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.footer-17 .footer-inner .footer-inner-right .footer-inner-contact .content span {
font-size: 16px;
display: block;
margin-bottom: 5px;
}
.footer-17 .footer-inner .footer-inner-right .footer-inner-contact .content .title {
font-size: 22px;
font-weight: 600;
margin-bottom: 0;
}
.footer-17 .copyright-area {
border: none;
}
.footer-17 .copyright-area .copyright-content {
padding-top: 0;
padding-bottom: 30px;
}  .hero-section-18 {
background-color: var(--ed-color-grey-1);
position: relative;
z-index: 1;
overflow: hidden;
}
.hero-section-18 .hero-text {
position: absolute;
bottom: -35px;
left: 100px;
z-index: -1;
}
@media (max-width: 1600px) {
.hero-section-18 .hero-text {
bottom: -25px;
}
}
@media (max-width: 1399px) {
.hero-section-18 .hero-text {
bottom: -20px;
}
}
@media (max-width: 1200px) {
.hero-section-18 .hero-text {
left: 0;
bottom: -15px;
}
}
.hero-section-18 .hero-text span {
color: var(--ed-color-common-white);
mix-blend-mode: soft-light;
opacity: 0.5;
font-size: 250px;
font-weight: 600;
line-height: 1;
margin-bottom: 0;
}
@media (max-width: 1700px) {
.hero-section-18 .hero-text span {
font-size: 200px;
}
}
@media (max-width: 1600px) {
.hero-section-18 .hero-text span {
font-size: 180px;
}
}
@media (max-width: 1399px) {
.hero-section-18 .hero-text span {
font-size: 150px;
}
}
@media (max-width: 1200px) {
.hero-section-18 .hero-text span {
font-size: 135px;
}
}
@media only screen and (max-width: 992px) {
.hero-section-18 .hero-text span {
display: none;
}
}
.hero-section-18 .shapes .shape-1 {
position: absolute;
top: 50px;
left: 50%;
transform: translateX(-50%);
z-index: -2;
}
@media only screen and (max-width: 767px) {
.hero-section-18 .shapes .shape-1 {
display: none;
}
}
.hero-section-18 .shapes .shape-2 {
position: absolute;
bottom: 150px;
left: 0;
z-index: -2;
}
@media (max-width: 1399px) {
.hero-section-18 .shapes .shape-2 {
display: none;
}
}
.hero-section-18 .shapes .shape-3 {
position: absolute;
bottom: 0;
left: 0;
z-index: -2;
}
.hero-wrap-18 {
padding: 120px 0 145px 0;
align-items: center;
}
@media only screen and (max-width: 992px) {
.hero-wrap-18 {
padding: 80px 0 80px 0;
}
}
.hero-wrap-18 .hero-content {
padding: 0;
}
.hero-wrap-18 .hero-content .section-heading .section-title {
font-size: 60px;
margin-bottom: 25px;
}
@media (max-width: 1200px) {
.hero-wrap-18 .hero-content .section-heading .section-title {
font-size: 40px;
}
}
@media only screen and (max-width: 992px) {
.hero-wrap-18 .hero-content .section-heading .section-title {
font-size: 40px;
}
}
@media only screen and (max-width: 767px) {
.hero-wrap-18 .hero-content .section-heading .section-title {
font-size: 32px;
}
}
@media (max-width: 1399px) {
.hero-wrap-18 .hero-content p br {
display: none;
}
}
.hero-img-wrap-18 {
max-width: 587px;
width: 100%;
margin-left: auto;
height: 484px;
position: relative;
}
@media only screen and (max-width: 992px) {
.hero-img-wrap-18 {
margin: 0 auto;
margin-top: 60px;
}
}
.hero-img-wrap-18 .hero-img-1 {
position: absolute;
top: 0;
right: 0;
max-width: 507px;
width: 100%;
height: 100%;
}
.hero-img-wrap-18 .hero-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: top;
object-position: top;
border-radius: 15px;
}
.hero-img-wrap-18 .hero-img-2 {
max-width: 181px;
width: 100%;
height: 188px;
border: 4px solid var(--ed-color-common-white);
border-radius: 15px;
position: absolute;
bottom: 60px;
left: 0;
box-shadow: 0px 9px 44px rgba(12, 44, 41, 0.26);
}
.hero-img-wrap-18 .hero-img-2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.hero-img-wrap-18 .hero-img-2 .video-btn a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.hero-img-wrap-18 .hero-img-2 .video-btn a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.about-img-wrap-18 {
position: relative;
max-width: 628px;
width: 100%;
height: 492px;
}
.about-img-wrap-18 .about-img-1 {
max-width: 193px;
width: 100%;
height: 195px;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.about-img-wrap-18 .about-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.about-img-wrap-18 .about-img-2 {
height: 100%;
max-width: 411px;
width: 100%;
position: absolute;
top: 0;
right: 0;
}
.about-img-wrap-18 .about-img-2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.about-img-wrap-18 .about-img-3 {
max-width: 242px;
width: 100%;
height: 242px;
position: absolute;
bottom: 25px;
left: 40px;
box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.25);
border-radius: 15px;
}
.about-img-wrap-18 .about-img-3 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: top;
object-position: top;
border-radius: 15px;
border: 6px solid var(--ed-color-common-white);
}
.about-img-wrap-18 .about-counter {
height: 130px;
width: 130px;
border-radius: 50%;
position: absolute;
top: 120px;
left: 120px;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}
.about-img-wrap-18 .about-counter .about-counter-bg {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
animation-name: spin;
animation-duration: 15s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.about-img-wrap-18 .about-counter .about-counter-bg img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.about-img-wrap-18 .about-counter span {
color: var(--ed-color-common-white);
font-size: 36px;
font-weight: 700;
display: block;
position: relative;
z-index: 5;
line-height: 1;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.about-content-18 {
padding-left: 30px;
}
@media only screen and (max-width: 992px) {
.about-content-18 {
padding-left: 0;
margin-top: 40px;
}
}
.about-content-18 .about-list {
margin-top: 20px;
}
.about-content-18 .about-list li {
display: flex;
align-items: center;
-moz-column-gap: 15px;
column-gap: 15px;
font-size: 16px;
font-weight: 500;
color: var(--ed-color-heading-primary);
}
.about-content-18 .about-list li:not(:last-of-type) {
margin-bottom: 10px;
}
.about-content-18 .about-list li span {
font-size: 16px;
font-weight: 600;
color: var(--ed-color-theme-primary);
height: 40px;
width: 40px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #E0E5EB;
border-radius: 50%;
box-shadow: 0px 8px 19px rgba(13, 40, 38, 0.15);
}
.about-content-18 .about-btn-wrap {
display: flex;
align-items: center;
-moz-column-gap: 30px;
column-gap: 30px;
flex-wrap: wrap;
row-gap: 20px;
margin-top: 20px;
}
.about-content-18 .about-btn-wrap .about-contact {
display: flex;
align-items: center;
-moz-column-gap: 15px;
column-gap: 15px;
}
.about-content-18 .about-btn-wrap .about-contact .icon {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
height: 50px;
width: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.about-content-18 .about-btn-wrap .about-contact a {
font-size: 20px;
font-weight: 600;
color: var(--ed-color-heading-primary);
}
.about-content-18 .about-btn-wrap .about-contact a:hover {
color: var(--ed-color-theme-primary);
}
.category-section {
background-color: #F2F4F7;
position: relative;
z-index: 1;
}
.category-section .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.category-section .shapes .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
.category-btn-box {
background-color: var(--ed-color-theme-primary);
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
}
@media only screen and (max-width: 767px) {
.category-btn-box {
padding: 20px;
}
}
.category-btn-box .ed-primary-btn {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
}
.category-btn-box .ed-primary-btn:before {
background-color: var(--ed-color-heading-primary);
}
.category-btn-box .ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
.category-item-18 {
background-color: var(--ed-color-common-white);
display: grid;
align-items: center;
grid-template-columns: 65px 1fr;
grid-gap: 20px;
border-radius: 10px;
padding: 20px;
transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
.category-item-18 {
grid-template-columns: 1fr;
}
}
.category-item-18 .icon {
background-color: #F2F4F7;
height: 65px;
width: 65px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
}
.category-item-18 .content .title {
font-size: 24px;
font-weight: 600;
margin-bottom: 5px;
line-height: 1;
}
@media (max-width: 1200px) {
.category-item-18 .content .title {
font-size: 20px;
}
}
.category-item-18 .content span {
font-size: 16px;
font-weight: 400;
line-height: 1;
}
.category-item-18:hover {
transform: translateY(-5px);
}
.cta-section-18 {
position: relative;
z-index: 1;
}
.cta-section-18 .cta-bg {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
filter: saturate(0);
}
.cta-section-18 .overlay {
background: rgba(16, 54, 51, 0.79);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.cta-section-18 .shape {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
.cta-wrap-18 {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
-moz-column-gap: 20px;
column-gap: 20px;
row-gap: 30px;
}
.cta-wrap-18 .cta-content .title {
font-size: 36px;
font-weight: 600;
}
@media only screen and (max-width: 767px) {
.cta-wrap-18 .cta-content .title {
font-size: 28px;
}
}
.cta-wrap-18 .cta-content p {
font-size: 18px;
font-weight: 400;
margin-bottom: 0;
margin-top: 15px;
}
@media only screen and (max-width: 767px) {
.cta-wrap-18 .cta-content p {
font-size: 16px;
}
}
.promo-item-18 {
margin-bottom: 0;
}
.promo-item-18 .promo-thumb {
margin-bottom: 60px;
}
.promo-item-18 .promo-thumb .main-img {
padding: 20px;
border: 3px solid #E0E5EB;
border-radius: 50%;
transition: all 0.3s ease-in-out;
}
.promo-item-18 .promo-thumb .icon {
height: 96px;
width: 96px;
top: auto;
bottom: -40px;
border: 10px solid var(--ed-color-common-white);
box-shadow: 0px 8px 16px rgba(14, 48, 45, 0.15);
}
.promo-item-18 .title {
font-size: 24px;
font-weight: 600;
}
.promo-item-18 p {
font-size: 16px;
}
.promo-item-18:hover .promo-thumb .main-img {
padding: 0;
border: 3px solid transparent;
}
.team-item-18 {
background-color: #122927;
text-align: center;
padding: 30px;
border-radius: 20px;
overflow: hidden;
position: relative;
z-index: 1;
}
@media only screen and (max-width: 767px) {
.team-item-18 {
padding: 10px;
}
}
.team-item-18 .round-shape {
background: #07A698;
filter: blur(125px);
position: absolute;
width: 444px;
height: 444px;
top: -62%;
left: 50%;
transform: translateX(-50%);
border-radius: 50%;
}
.team-item-18 .team-item-inner {
background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
border: 1px solid rgba(255, 255, 255, 0.09);
-webkit-backdrop-filter: blur(75px);
backdrop-filter: blur(75px);
border-radius: 15px;
padding-top: 30px;
overflow: hidden;
}
.team-item-18 .team-item-inner .team-content {
margin-bottom: 20px;
position: relative;
z-index: 5;
}
.team-item-18 .team-item-inner .team-content .title {
margin-bottom: 5px;
}
.team-item-18 .team-item-inner .team-thumb {
height: 300px;
}
@media (max-width: 1200px) {
.team-item-18 .team-item-inner .team-thumb {
width: 100%;
}
}
.team-item-18 .team-item-inner .team-thumb img {
height: 100%;
filter: saturate(0);
}
@media (max-width: 1200px) {
.team-item-18 .team-item-inner .team-thumb img {
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
}
.team-item-18 .team-item-inner .bg-overlay {
background: linear-gradient(180deg, rgba(3, 64, 59, 0.11) 70.94%, rgba(3, 64, 59, 0.85) 100%);
height: 120%;
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.team-item-18 .team-item-inner .team-social {
position: absolute;
left: 50%;
bottom: 0;
transform: translateX(-50%);
z-index: 5;
}
.team-item-18 .team-item-inner .team-social .expand i {
background-color: var(--ed-color-common-white);
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
color: var(--ed-color-theme-primary);
font-size: 15px;
cursor: pointer;
border-radius: 100px 100px 0 0;
}
.team-item-18 .team-item-inner .team-social .social-list {
position: absolute;
bottom: 55px;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
}
.team-item-18 .team-item-inner .team-social .social-list li {
display: inline-flex;
visibility: hidden;
opacity: 0;
transition: all 0.5s cubic-bezier(0.1, 0.75, 0.25, 1);
}
.team-item-18 .team-item-inner .team-social .social-list li:not(:last-of-type) {
margin-right: 5px;
}
.team-item-18 .team-item-inner .team-social .social-list li:nth-child(4) {
transition-delay: 250ms;
}
.team-item-18 .team-item-inner .team-social .social-list li:nth-child(3) {
transition-delay: 200ms;
}
.team-item-18 .team-item-inner .team-social .social-list li:nth-child(2) {
transition-delay: 150ms;
}
.team-item-18 .team-item-inner .team-social .social-list li:nth-child(1) {
transition-delay: 100ms;
}
.team-item-18 .team-item-inner .team-social .social-list li a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
cursor: pointer;
transition: 0.3s all ease-in-out;
border-radius: 50%;
}
.team-item-18 .team-item-inner .team-social .social-list li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.team-item-18 .team-item-inner .team-social:hover .social-list li {
visibility: visible;
opacity: 1;
}
.request-section-18 {
background-color: var(--ed-color-theme-primary);
}
.request-content-18 p {
color: var(--ed-color-common-white);
}
.request-content-18 .request-form-wrapper .form-items .form-item .form-control {
background-color: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.6);
}
.request-content-18 .request-btn .ed-primary-btn {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
}
.request-content-18 .request-btn .ed-primary-btn:before {
background-color: var(--ed-color-heading-primary);
}
.request-content-18 .request-btn .ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
.event-wrap-18 {
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 20px;
column-gap: 20px;
padding: 30px 30px 30px 50px;
border: 1px solid #E0E5EB;
position: relative;
z-index: 1;
border-radius: 15px;
}
@media only screen and (max-width: 767px) {
.event-wrap-18 {
padding: 30px 20px;
flex-direction: column;
row-gap: 30px;
}
}
.event-wrap-18 .bg-shape {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.event-wrap-18 .event-content .title {
font-size: 30px;
font-weight: 600;
margin-bottom: 15px;
display: flex;
align-items: center;
}
@media (max-width: 1200px) {
.event-wrap-18 .event-content .title {
font-size: 24px;
}
}
@media only screen and (max-width: 767px) {
.event-wrap-18 .event-content .title {
font-size: 18px;
}
}
.event-wrap-18 .event-content .title .live {
color: #F20F10;
display: flex;
align-items: center;
margin-left: 5px;
}
.event-wrap-18 .event-content .title .live .dot {
height: 21px;
width: 21px;
border: 2px solid #F20F10;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
margin-top: 3px;
margin-left: 5px;
}
.event-wrap-18 .event-content .title .live .dot:before {
background-color: #F20F10;
content: "";
height: 13px;
width: 13px;
position: absolute;
top: 2px;
left: 2px;
border-radius: 50%;
}
.event-wrap-18 .event-content p {
margin-bottom: 20px;
}
@media (max-width: 1200px) {
.event-wrap-18 .event-content p br {
display: none;
}
}
@media only screen and (max-width: 767px) {
.event-wrap-18 .event-content p {
font-size: 14px;
}
}
.event-wrap-18 .event-content .event-list {
list-style: none;
margin-bottom: 30px;
}
.event-wrap-18 .event-content .event-list li {
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 500;
}
.event-wrap-18 .event-content .event-list li:not(:last-of-type) {
margin-bottom: 10px;
}
.event-wrap-18 .event-content .event-list li i {
color: var(--ed-color-theme-primary);
margin-right: 10px;
}
.event-wrap-18 .event-content .event-author {
display: flex;
align-items: center;
-moz-column-gap: 20px;
column-gap: 20px;
flex-wrap: wrap;
row-gap: 20px;
}
.event-wrap-18 .event-content .event-author .author-list {
list-style: none;
display: inline-flex;
}
.event-wrap-18 .event-content .event-author .author-list li {
height: 45px;
width: 45px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.event-wrap-18 .event-content .event-author .author-list li:not(:first-of-type) {
margin-left: -20px;
}
.event-wrap-18 .event-content .event-author .author-list li img {
width: 100%;
height: 100%;
border: 2px solid var(--ed-color-common-white);
border-radius: 50%;
-o-object-fit: cover;
object-fit: cover;
}
.event-wrap-18 .event-content .event-author .author-list li.plus {
background-color: #214340;
color: var(--ed-color-common-white);
}
.event-wrap-18 .event-img {
max-width: 598px;
width: 100%;
height: 310px;
}
@media (max-width: 1200px) {
.event-wrap-18 .event-img {
max-width: 500px;
}
}
.event-wrap-18 .event-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}  .header-19 .top-bar {
background-color: #fafafb;
}
.header-19 .top-bar .top-bar-inner .top-bar-right .register-box {
margin-right: 20px;
padding-right: 20px;
border-right: 1px solid rgba(22, 39, 38, 0.11);
}
.header-19 .top-bar .top-bar-inner .top-bar-right .register-box a {
color: var(--ed-color-heading-primary);
}
.header-19 .top-bar .top-bar-inner .top-bar-right .register-box a:hover {
color: var(--ed-color-theme-primary);
}
.header-19 .primary-header-inner .header-right-wrap {
display: flex;
align-items: center;
-moz-column-gap: 60px;
column-gap: 60px;
}
@media (max-width: 1600px) {
.header-19 .primary-header-inner .header-right-wrap {
-moz-column-gap: 50px;
column-gap: 50px;
}
}
@media (max-width: 1200px) {
.header-19 .primary-header-inner .header-right-wrap {
-moz-column-gap: 20px;
column-gap: 20px;
}
}
.hero-section-19 {
background-color: #F2F4F7;
position: relative;
z-index: 1;
}
.hero-section-19 .hero-img-19 {
position: absolute;
top: 0;
right: 0;
z-index: 1;
}
@media (max-width: 1600px) {
.hero-section-19 .hero-img-19 {
max-width: 750px;
width: 100%;
}
}
@media (max-width: 1200px) {
.hero-section-19 .hero-img-19 {
max-width: 550px;
width: 100%;
}
}
@media only screen and (max-width: 992px) {
.hero-section-19 .hero-img-19 {
display: none;
}
}
.hero-section-19 .bg-color {
background-color: var(--ed-color-common-white);
width: 100%;
height: 225px;
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
}
.hero-section-19 .shapes .shape-1 {
position: absolute;
bottom: 225px;
right: 0;
z-index: -1;
}
.hero-section-19 .shapes .shape-2 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.hero-section-19 .shapes .shape-3 {
position: absolute;
left: 0;
top: 20%;
z-index: -1;
}
@media (max-width: 1399px) {
.hero-section-19 .shapes .shape-3 {
display: none;
}
}
.hero-section-19 .shapes .shape-4 {
position: absolute;
right: 40px;
top: 25%;
z-index: -1;
}
.hero-content-19 {
padding-bottom: 195px;
}
@media only screen and (max-width: 992px) {
.hero-content-19 {
padding-bottom: 100px;
}
}
.hero-content-19 .section-heading .sub-heading {
color: var(--ed-color-theme-primary);
}
.hero-content-19 .section-heading .section-title {
color: var(--ed-color-heading-primary);
}
@media only screen and (max-width: 767px) {
.hero-content-19 .section-heading .section-title {
font-size: 26px;
}
}
.hero-content-19 .section-heading .section-title br {
display: block;
}
.hero-content-19 .section-heading .section-title span {
font-weight: 600;
}
.hero-content-19 p {
font-size: 18px;
max-width: 600px;
width: 100%;
color: var(--ed-color-text-body);
}
.hero-content-19 .hero-btn-wrap {
margin-bottom: 0;
}
.hero-content-19 .hero-btn-wrap .video-btn {
background-color: var(--ed-color-common-white);
color: var(--ed-color-heading-primary);
}
.hero-content-19 .hero-btn-wrap .video-btn:before {
background-color: var(--ed-color-theme-primary);
}
.hero-content-19 .hero-btn-wrap .video-btn:hover {
color: var(--ed-color-common-white);
}
.hero-sponsor-wrap {
position: relative;
z-index: 1;
padding-bottom: 40px;
margin-bottom: 120px;
}
@media only screen and (max-width: 992px) {
.hero-sponsor-wrap {
margin-bottom: 70px;
}
}
@media only screen and (max-width: 767px) {
.hero-sponsor-wrap {
margin-bottom: 60px;
}
}
.hero-sponsor-wrap:before {
background: rgba(255, 255, 255, 0.31);
border: 1px solid rgba(255, 255, 255, 0.64);
box-shadow: 0px 4px 30px rgba(25, 38, 48, 0.03);
-webkit-backdrop-filter: blur(16px);
backdrop-filter: blur(16px);
border-radius: 15px;
content: "";
width: 95%;
height: 120px;
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
z-index: -1;
}
.hero-sponsor-wrap:after {
background: rgba(255, 255, 255, 0.2);
border: 1px solid rgba(255, 255, 255, 0.64);
-webkit-backdrop-filter: blur(60px);
backdrop-filter: blur(60px);
border-radius: 15px;
content: "";
width: 90%;
height: 120px;
position: absolute;
bottom: 0px;
left: 50%;
transform: translateX(-50%);
z-index: -2;
}
.hero-sponsor {
background-color: var(--ed-color-common-white);
border-radius: 15px;
overflow: hidden;
position: relative;
z-index: 1;
}
.hero-sponsor .sponsor-2 {
background-color: var(--ed-color-common-white);
padding: 0;
}
.hero-sponsor .sponsor-2 .sponsor-item {
padding: 0;
border: none;
}
.hero-about-area {
background-color: var(--ed-color-common-white);
box-shadow: 0px 17px 48px rgba(13, 32, 30, 0.11);
border-radius: 15px;
padding: 60px 60px 60px 80px;
}
@media only screen and (max-width: 992px) {
.hero-about-area {
padding: 50px 30px;
}
}
@media only screen and (max-width: 767px) {
.hero-about-area {
padding: 50px 20px;
}
}
@media only screen and (max-width: 992px) {
.about-content-19 {
margin-bottom: 40px;
}
}
.about-content-19 .title {
font-size: 24px;
font-weight: 600;
margin-bottom: 20px;
line-height: 1.5;
}
.about-content-19 .about-list {
margin-bottom: 30px;
}
.about-content-19 .about-list li {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
align-items: start;
font-size: 16px;
font-weight: 400;
color: var(--ed-color-text-body);
}
.about-content-19 .about-list li:not(:last-of-type) {
margin-bottom: 20px;
}
.about-content-19 .about-list li i {
color: var(--ed-color-theme-primary);
}
.about-img-19 {
max-width: 568px;
width: 100%;
height: 335px;
}
.about-img-19 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.feature-card-19 {
border: 2px solid transparent;
}
.feature-card-19 .icon {
transition: all 0.3s ease-in-out;
}
.feature-card-19 .icon img {
transition: all 0.3s ease-in-out;
}
.feature-card-19 .content p {
margin-bottom: 20px;
}
.feature-card-19 .feature-btn {
color: var(--ed-color-theme-primary);
font-size: 16px;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
-moz-column-gap: 10px;
column-gap: 10px;
}
.feature-card-19:hover {
border-color: var(--ed-color-theme-primary);
}
.feature-card-19:hover .icon {
background-color: var(--ed-color-theme-primary);
}
.feature-card-19:hover .icon img {
filter: brightness(0) invert(1);
}
.course-section-19 {
background-color: #1A2226;
position: relative;
z-index: 1;
}
.course-section-19 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.course-section-19 .shapes .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
.course-section-19 .shapes .shape-3 {
position: absolute;
top: 60px;
left: 45px;
z-index: -1;
}
.course-section-19 .shapes .shape-4 {
position: absolute;
top: 0;
right: 200px;
z-index: -1;
}
.course-section-19 .shapes .shape-5 {
position: absolute;
bottom: 200px;
right: 50px;
z-index: -1;
}
.video-area-19 {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
padding: 205px 0;
}
@media only screen and (max-width: 992px) {
.video-area-19 {
padding: 150px 0;
}
}
.video-btn-wrapper {
height: 140px;
width: 140px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.3);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
}
.video-btn-wrapper .video-btn {
height: 110px;
width: 110px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.3);
display: flex;
align-items: center;
justify-content: center;
}
.video-btn-wrapper .video-btn a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
height: 80px;
width: 80px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.video-btn-wrapper .video-btn a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.counter-section-19 {
background-color: var(--ed-color-theme-primary);
position: relative;
z-index: 1;
}
.counter-section-19 .shape {
position: absolute;
top: 0;
right: 0;
z-index: -1;
}
.counter-wrap-19 {
background-color: var(--ed-color-common-white);
display: flex;
align-items: center;
padding: 0 50px;
border-radius: 15px;
}
@media only screen and (max-width: 992px) {
.counter-wrap-19 {
padding: 0 30px;
}
}
@media only screen and (max-width: 767px) {
.counter-wrap-19 {
flex-direction: column;
row-gap: 30px;
align-items: baseline;
padding: 30px;
}
}
.counter-wrap-19 .counter-item-19 {
display: grid;
align-items: center;
grid-template-columns: 45px 1fr;
grid-gap: 15px;
padding: 45px 0px;
}
@media only screen and (max-width: 992px) {
.counter-wrap-19 .counter-item-19 {
grid-template-columns: 1fr;
}
}
@media only screen and (max-width: 767px) {
.counter-wrap-19 .counter-item-19 {
align-items: baseline;
padding: 0;
}
}
.counter-wrap-19 .counter-item-19:not(:last-of-type) {
margin-right: 60px;
padding-right: 60px;
border-right: 1px solid #DEE7E4;
}
@media (max-width: 1399px) {
.counter-wrap-19 .counter-item-19:not(:last-of-type) {
margin-right: 40px;
padding-right: 40px;
}
}
@media (max-width: 1200px) {
.counter-wrap-19 .counter-item-19:not(:last-of-type) {
margin-right: 30px;
padding-right: 30px;
}
}
@media only screen and (max-width: 767px) {
.counter-wrap-19 .counter-item-19:not(:last-of-type) {
padding: 0;
margin: 0;
border: none;
}
}
.counter-wrap-19 .counter-item-19 .content p {
font-size: 18px;
font-weight: 500;
color: var(--ed-color-heading-primary);
margin-bottom: 0;
}
@media (max-width: 1200px) {
.counter-wrap-19 .counter-item-19 .content p {
font-size: 15px;
}
}
.counter-wrap-19 .counter-item-19 .content .title {
font-size: 24px;
font-weight: 600;
margin-bottom: 0;
line-height: 1;
}
.counter-wrap-19 .counter-item-19 .content .title .odometer-auto-theme {
font-family: inherit;
line-height: 1;
}
.blog-19 {
position: relative;
z-index: 1;
}
.blog-19 .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.blog-19 .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}  .hero-section-20 {
background-color: #F2F4F7;
position: relative;
z-index: 1;
}
.hero-section-20 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.hero-section-20 .shapes .shape-2 {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
z-index: -1;
width: 100%;
height: 100%;
}
.hero-section-20 .shapes .shape-2 img {
width: 100%;
height: 100%;
}
.hero-section-20 .shapes .shape-3 {
position: absolute;
top: 0;
right: 0;
z-index: -1;
}
@media (max-width: 1200px) {
.hero-section-20 .shapes .shape-3 {
height: 100%;
}
.hero-section-20 .shapes .shape-3 img {
height: 100%;
}
}
@media only screen and (max-width: 767px) {
.hero-section-20 .shapes .shape-3 {
display: none;
}
}
.hero-section-20 .shapes .shape-4 {
position: absolute;
top: 60px;
left: 50%;
transform: translateX(-50%);
z-index: -1;
}
@media only screen and (max-width: 767px) {
.hero-section-20 .shapes .shape-4 {
display: none;
}
}
.hero-section-20 .shapes .shape-5 {
position: absolute;
left: 75px;
bottom: 80px;
z-index: -1;
}
@media only screen and (max-width: 767px) {
.hero-section-20 .shapes .shape-5 {
display: none;
}
}
.hero-section-20 .shapes .shape-6 {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
z-index: -1;
}
.hero-section-20 .shapes .shape-7 {
position: absolute;
bottom: 70px;
right: 0;
z-index: -1;
}
@media only screen and (max-width: 767px) {
.hero-section-20 .shapes .shape-7 {
display: none;
}
}
.hero-wrap-20 {
align-items: center;
padding: 90px 0;
}
@media (max-width: 1200px) {
.hero-wrap-20 {
row-gap: 40px;
}
}
.hero-img-wrap-20 {
background-color: var(--ed-color-common-white);
height: 617px;
max-width: 617px;
width: 100%;
border-radius: 50%;
position: relative;
border: 1px dashed var(--ed-color-theme-primary);
}
@media only screen and (max-width: 767px) {
.hero-img-wrap-20 {
height: 300px;
width: 300px;
}
}
@media (max-width: 1200px) {
.hero-img-wrap-20 {
margin: 0 auto;
}
}
.hero-img-wrap-20 .hero-img {
height: 528px;
width: 528px;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
.hero-img-wrap-20 .hero-img {
height: 280px;
width: 280px;
}
}
.hero-img-wrap-20 .hero-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 50%;
}
.hero-content-20 {
padding: 0;
}
.hero-content-20 .section-heading .section-title {
font-size: 54px;
font-weight: 600;
}
@media only screen and (max-width: 767px) {
.hero-content-20 .section-heading .section-title {
font-size: 36px;
}
.hero-content-20 .section-heading .section-title br {
display: none;
}
}
.feature-item-20 {
background: var(--ed-color-common-white);
box-shadow: 0px 12px 54px rgba(11, 26, 24, 0.09);
border-radius: 15px;
padding: 40px;
border: 1px solid transparent;
transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
.feature-item-20 {
padding: 30px 20px;
}
}
.feature-item-20 .feature-inner {
display: grid;
align-items: center;
grid-template-columns: 70px 1fr;
grid-gap: 20px;
margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
.feature-item-20 .feature-inner {
grid-template-columns: 1fr;
}
}
.feature-item-20 .feature-inner .icon {
background-color: #F2F4F7;
height: 70px;
width: 70px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
}
.feature-item-20 .feature-inner .content .title {
font-size: 24px;
font-weight: 600;
margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
.feature-item-20 .feature-inner .content .title {
font-size: 20px;
}
}
.feature-item-20 p {
margin-bottom: 25px;
}
.feature-item-20 .feature-btn .ed-primary-btn {
background-color: var(--ed-color-common-white);
padding: 12px 30px;
border: 1px solid #E0E5EB;
color: var(--ed-color-theme-primary);
}
.feature-item-20 .feature-btn .ed-primary-btn:before {
background-color: var(--ed-color-theme-primary);
}
.feature-item-20 .feature-btn .ed-primary-btn:hover {
color: var(--ed-color-common-white);
}
.feature-item-20:hover {
border-color: var(--ed-color-theme-primary);
}
.about-left-content {
display: flex;
align-items: center;
align-items: start;
}
@media only screen and (max-width: 767px) {
.about-left-content {
flex-direction: column;
row-gap: 40px;
}
}
.about-left-content .about-counter-list {
background-color: #F2F4F7;
max-width: 220px;
width: 100%;
padding: 10px;
border-radius: 10px;
}
@media only screen and (max-width: 767px) {
.about-left-content .about-counter-list {
margin: 0 auto;
}
}
.about-left-content .about-counter-list .about-counter {
background-color: var(--ed-color-common-white);
border: 1px solid #E0E5EB;
border-radius: 10px;
overflow: hidden;
}
.about-left-content .about-counter-list .about-counter:not(:last-of-type) {
margin-bottom: 10px;
}
.about-left-content .about-counter-list .about-counter .counter-inner {
padding: 22.5px 20px;
}
.about-left-content .about-counter-list .about-counter .counter-inner .title {
color: var(--ed-color-theme-primary);
font-size: 30px;
font-weight: 700;
line-height: 1;
margin-bottom: 0;
display: flex;
align-items: center;
justify-content: center;
}
.about-left-content .about-counter-list .about-counter .counter-inner .title .odometer-auto-theme {
font-family: inherit;
line-height: 1;
}
.about-left-content .about-counter-list .about-counter p {
background-color: var(--ed-color-theme-primary);
margin-bottom: 0;
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
color: var(--ed-color-common-white);
padding: 3.5px 20px;
width: 100%;
}
.about-left-content .about-img-20 {
background: var(--ed-color-common-white);
box-shadow: 0px 10px 46px 3px rgba(14, 33, 31, 0.23);
border-radius: 10px;
padding: 10px;
height: 520px;
max-width: 393px;
width: 100%;
margin-left: 24px;
}
@media only screen and (max-width: 767px) {
.about-left-content .about-img-20 {
margin-left: 0;
height: 400px;
}
}
.about-left-content .about-img-20 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.about-content-20 {
padding-left: 40px;
}
@media only screen and (max-width: 992px) {
.about-content-20 {
padding-left: 0;
margin-top: 40px;
}
}
.about-content-20 p {
max-width: 478px;
width: 100%;
}
.course-section-20 {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
}
.course-carousel-wrap-20 {
position: relative;
}
.course-carousel-wrap-20 .swiper-arrow .swiper-nav {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
position: absolute;
top: 50%;
left: -110px;
transform: translateY(-50%);
z-index: 5;
}
@media (max-width: 1600px) {
.course-carousel-wrap-20 .swiper-arrow .swiper-nav {
left: -30px;
}
}
@media (max-width: 1399px) {
.course-carousel-wrap-20 .swiper-arrow .swiper-nav {
left: 0;
}
}
@media (max-width: 1200px) {
.course-carousel-wrap-20 .swiper-arrow .swiper-nav {
display: none;
}
}
.course-carousel-wrap-20 .swiper-arrow .swiper-nav:hover {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
}
.course-carousel-wrap-20 .swiper-arrow .swiper-nav.swiper-prev {
left: auto;
right: -110px;
}
@media (max-width: 1600px) {
.course-carousel-wrap-20 .swiper-arrow .swiper-nav.swiper-prev {
right: -30px;
}
}
@media (max-width: 1399px) {
.course-carousel-wrap-20 .swiper-arrow .swiper-nav.swiper-prev {
right: 0;
}
}
@media (max-width: 1200px) {
.course-carousel-wrap-20 .swiper-arrow .swiper-nav.swiper-prev {
display: none;
}
}
.course-item.course-item-20 {
background-color: rgba(255, 255, 255, 0.06);
border-color: rgba(255, 255, 255, 0.07);
}
.course-item.course-item-20 .course-content {
border-color: rgba(255, 255, 255, 0.1);
}
.newsletter-section-20 {
background-color: #F2F4F7;
position: relative;
z-index: 1;
}
.newsletter-section-20 .shapes .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.newsletter-section-20 .shapes .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
.newsletter-top .footer-form-wrap {
max-width: 980px;
width: 100%;
margin: 0 auto;
}
.newsletter-top .footer-form-wrap .footer-form {
position: relative;
width: 100%;
}
.newsletter-top .footer-form-wrap .footer-form .ed-primary-btn {
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
.newsletter-top .footer-form-wrap .footer-form .ed-primary-btn {
position: relative;
top: 0;
right: 0;
transform: inherit;
margin-top: 20px;
}
}
.newsletter-top .footer-form-wrap .footer-form .form-item {
width: 100%;
position: relative;
}
.newsletter-top .footer-form-wrap .footer-form .form-item .form-control {
background-color: var(--ed-color-common-white);
color: #6C706F;
padding: 20px 30px;
padding-left: 60px;
width: 100%;
border-radius: 100px;
border: none;
box-shadow: none;
}
.newsletter-top .footer-form-wrap .footer-form .form-item .form-control::-webkit-input-placeholder {
color: #6C706F;
}
.newsletter-top .footer-form-wrap .footer-form .form-item .form-control:-moz-placeholder {
color: #6C706F;
}
.newsletter-top .footer-form-wrap .footer-form .form-item .form-control::-moz-placeholder {
color: #6C706F;
}
.newsletter-top .footer-form-wrap .footer-form .form-item .form-control:-ms-input-placeholder {
color: #6C706F;
}
.newsletter-top .footer-form-wrap .footer-form .form-item .icon {
color: var(--ed-color-theme-primary);
position: absolute;
top: 50%;
left: 30px;
transform: translateY(-50%);
}
.event-20 {
background-color: var(--ed-color-theme-primary);
margin: 0 60px;
border-radius: 15px;
position: relative;
z-index: 1;
overflow: hidden;
}
@media (max-width: 1200px) {
.event-20 {
margin: 0;
}
}
.event-20 .shapes .shape-1 {
position: absolute;
top: 50px;
left: 30px;
z-index: -1;
}
.event-20 .shapes .shape-2 {
position: absolute;
top: 0;
right: 100px;
z-index: -1;
}
.event-20 .shapes .shape-3 {
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
}
.event-20 .shapes .shape-4 {
position: absolute;
bottom: 150px;
right: 0;
z-index: -1;
}
.event-card-20 {
grid-template-columns: 1fr;
}
.event-card-20 .event-thumb {
height: 264px;
max-width: 100%;
}
.event-card-wrap-20 .event-card:not(:last-of-type) {
margin-bottom: 24px;
}
.team-item-20 {
padding: 20px;
}
.team-item-20 .team-thumb {
width: 100%;
height: 310px;
border-radius: 15px;
overflow: hidden;
position: relative;
margin-bottom: 25px;
}
.team-item-20 .team-thumb img {
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 15px;
}
.team-item-20 .team-thumb:before {
background: linear-gradient(180deg, rgba(22, 39, 38, 0) 20.97%, #162726 100%);
content: "";
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
visibility: hidden;
opacity: 0;
transition: all 0.3s ease-in-out;
}
.team-item-20 .team-thumb .social-list {
display: inline-flex;
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 20px;
z-index: 5;
visibility: hidden;
opacity: 0;
transition: all 0.3s ease-in-out;
}
.team-item-20 .team-thumb .social-list li:not(:last-of-type) {
margin-right: 10px;
}
.team-item-20 .team-thumb .social-list li a {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
font-size: 15px;
height: 40px;
width: 40px;
border: 1px solid #E0E5EB;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.team-item-20 .team-thumb .social-list li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
border: 1px solid var(--ed-color-theme-primary);
}
.team-item-20:hover .team-thumb:before {
visibility: visible;
opacity: 1;
}
.team-item-20:hover .team-thumb .social-list {
visibility: visible;
opacity: 1;
bottom: 30px;
}
.pricing-section-20 {
background-color: #162726;
position: relative;
z-index: 1;
}
.pricing-section-20 .shapes .shape-1 {
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
}
.pricing-section-20 .shapes .shape-2 {
position: absolute;
top: 0;
right: 0;
z-index: -1;
}
.pricing-item-20 {
background-color: var(--ed-color-common-white);
padding: 0;
}
.pricing-item-20 .pricing-item-top {
padding: 40px;
border-bottom: 1px solid #E0E5EB;
}
@media (max-width: 1200px) {
.pricing-item-20 .pricing-item-top {
padding: 30px 20px;
}
}
@media (max-width: 1200px) {
.pricing-item-20 .pricing-item-top .pricing-offer br {
display: none;
}
}
.pricing-item-20 .pricing-item-top .price {
margin-top: 15px;
font-size: 40px;
color: var(--ed-color-theme-primary);
margin-bottom: 0;
line-height: 1;
}
.pricing-item-20 .pricing-item-top .price span {
font-size: 16px;
font-weight: 400;
color: var(--ed-color-heading-primary);
}
.pricing-item-20 .pricing-item-bottom {
padding: 40px;
}
@media (max-width: 1200px) {
.pricing-item-20 .pricing-item-bottom {
padding: 30px 20px;
}
}
.pricing-item-20 .pricing-item-bottom .pricing-list-wrap {
margin-bottom: 30px;
}
.pricing-item-20 .pricing-item-bottom .pricing-list-wrap .list-title {
margin-bottom: 20px;
}
.pricing-item-20 .pricing-item-bottom .pricing-btn .ed-primary-btn {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.pricing-item-20 .pricing-item-bottom .pricing-btn .ed-primary-btn:before {
background-color: #162726;
}
.pricing-item-20 .pricing-item-bottom .pricing-btn .ed-primary-btn:hover {
border-color: #162726;
color: var(--ed-color-theme-primary);
}
.pricing-item-20.active {
background-color: var(--ed-color-theme-primary);
}
.pricing-item-20.active .pricing-item-top {
border-color: rgba(255, 255, 255, 0.15);
}
.pricing-item-20.active .pricing-item-top .price {
color: var(--ed-color-common-white);
}
.pricing-item-20.active .pricing-item-top .price span {
color: var(--ed-color-common-white);
}
.pricing-item-20.active .pricing-item-bottom .pricing-list li i {
color: var(--ed-color-common-white);
}
.pricing-item-20.active .pricing-item-bottom .pricing-btn .ed-primary-btn {
background-color: var(--ed-color-common-white);
color: var(--ed-color-theme-primary);
}
.footer-cta-area {
background-color: var(--ed-color-theme-primary);
position: relative;
z-index: 1;
overflow: hidden;
}
.footer-cta-area .shape-1 {
position: absolute;
bottom: 0;
right: 80px;
z-index: -2;
}
.footer-cta-area .shape-2 {
position: absolute;
top: 50px;
left: 20px;
z-index: -1;
}
@media only screen and (max-width: 992px) {
.footer-cta-area .shape-2 {
display: none;
}
}
.footer-cta-content {
padding: 105px 0 95px 0;
position: relative;
z-index: 1;
width: 100%;
}
@media only screen and (max-width: 992px) {
.footer-cta-content {
padding: 70px 0;
}
}
.footer-cta-content .section-heading .section-title br {
display: block;
}
.footer-cta-content .laptop-img {
position: absolute;
bottom: 0;
right: -50px;
z-index: -1;
}
@media (max-width: 1200px) {
.footer-cta-content .laptop-img {
right: -200px;
}
}
@media only screen and (max-width: 992px) {
.footer-cta-content .laptop-img {
display: none;
}
}  .header-21 {
border-bottom: 1px solid #0E9286;
z-index: 90;
}
.header-21 .primary-header {
background: #0E9286;
}
@media only screen and (max-width: 992px) {
.header-21 .primary-header {
background-color: var(--ed-color-common-white);
}
}
.header-21 .primary-header.fixed {
z-index: 101;
border-color: #0E9286;
}
.header-21 .primary-header .primary-header-inner {
background: #0E9286;
}
@media only screen and (max-width: 992px) {
.header-21 .primary-header .primary-header-inner {
background-color: var(--ed-color-common-white);
}
}
.header-21 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li a {
color: var(--ed-color-common-white);
text-transform: capitalize;
}
.header-21 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li ul li a {
color: var(--ed-color-heading-primary);
}
.header-21 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li ul li a:hover {
color: var(--ed-color-common-white);
}
.header-21 .primary-header .primary-header-inner .header-menu-wrap .sub-menu li.mega-menu ul li a {
color: var(--ed-color-heading-primary);
}
.header-21 .primary-header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children:after {
display: none;
}
.header-21 .primary-header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children a {
padding-right: 0;
}
.hero-21 {
background: var(--ed-color-theme-primary);
overflow-x: clip;
position: relative;
z-index: inherit;
}
.hero-21 .hero-bg-wrap {
top: -65px;
height: 609px;
overflow: hidden;
z-index: 100;
}
.hero-21 .hero-bg-wrap .hero-text-box {
top: 60%;
}
.hero-content-21 {
padding: 135px 0 170px 0;
}
@media only screen and (max-width: 992px) {
.hero-content-21 {
padding: 100px 0;
}
}
@media (max-width: 1399px) {
.hero-content-21 .section-heading .section-title {
font-size: 40px;
}
}
@media (max-width: 1399px) {
.hero-content-21 p {
max-width: 450px;
}
.hero-content-21 p br {
display: none;
}
}
.cta-content-wrapper-20 {
background-color: #F2F4F7;
display: grid;
align-items: center;
grid-template-columns: 1fr 478px;
grid-gap: 40px;
border: 1px solid #E0E5EB;
border-radius: 20px;
padding: 60px;
}
@media (max-width: 1200px) {
.cta-content-wrapper-20 {
grid-template-columns: 1fr 350px;
padding: 40px 30px;
grid-gap: 20px;
}
}
@media only screen and (max-width: 992px) {
.cta-content-wrapper-20 {
grid-template-columns: 1fr;
}
}
@media only screen and (max-width: 767px) {
.cta-content-wrapper-20 {
padding: 30px 10px;
}
}
.cta-content-wrapper-20 .cta-left-content .cta-logo {
margin-bottom: 25px;
}
.cta-content-wrapper-20 .cta-left-content .cta-content-20 {
background-color: var(--ed-color-common-white);
padding: 30px;
border-radius: 10px;
}
@media only screen and (max-width: 767px) {
.cta-content-wrapper-20 .cta-left-content .cta-content-20 {
padding: 20px 10px;
}
}
.cta-content-wrapper-20 .cta-left-content .cta-content-20 .cta-info-list {
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 15px;
column-gap: 15px;
border-bottom: 1px solid #E0E5EB;
padding-bottom: 30px;
margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
.cta-content-wrapper-20 .cta-left-content .cta-content-20 .cta-info-list {
flex-direction: column;
row-gap: 15px;
align-items: baseline;
}
}
.cta-content-wrapper-20 .cta-left-content .cta-content-20 .cta-info-list ul {
list-style: none;
}
.cta-content-wrapper-20 .cta-left-content .cta-content-20 .cta-info-list ul li {
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 500;
line-height: 1;
}
.cta-content-wrapper-20 .cta-left-content .cta-content-20 .cta-info-list ul li:not(:last-of-type) {
margin-bottom: 15px;
}
@media (max-width: 1399px) {
.cta-content-wrapper-20 .cta-left-content .cta-content-20 .cta-info-list ul li {
font-size: 15px;
}
}
@media only screen and (max-width: 767px) {
.cta-content-wrapper-20 .cta-left-content .cta-content-20 .cta-info-list ul li {
font-size: 14px;
}
}
.cta-content-wrapper-20 .cta-left-content .cta-content-20 .cta-info-list ul li i {
color: var(--ed-color-theme-primary);
margin-right: 10px;
}
.cta-content-wrapper-20 .cta-left-content .cta-content-20 .cta-items {
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 5px;
column-gap: 5px;
}
@media only screen and (max-width: 767px) {
.cta-content-wrapper-20 .cta-left-content .cta-content-20 .cta-items {
flex-wrap: wrap;
row-gap: 15px;
align-items: baseline;
}
}
.cta-content-wrapper-20 .cta-left-content .cta-content-20 .cta-items .cta-item {
background-color: #F2F4F7;
display: flex;
align-items: center;
justify-content: center;
height: 70px;
width: 70px;
border: 1px solid #E0E5EB;
border-radius: 10px;
}
.cta-content-wrapper-20 .cta-img {
background-color: var(--ed-color-common-white);
height: 350px;
max-width: 478px;
width: 100%;
padding: 5px;
border-radius: 15px;
}
.cta-content-wrapper-20 .cta-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.popular-item-2 {
display: grid;
align-items: center;
grid-template-columns: 1fr 220px;
grid-gap: 40px;
padding: 40px;
position: relative;
z-index: 1;
}
@media (max-width: 1200px) {
.popular-item-2 {
grid-template-columns: 1fr;
}
}
@media only screen and (max-width: 992px) {
.popular-item-2 {
padding: 40px 20px;
}
}
.popular-item-2 .shape-1 {
background: #07A698;
opacity: 0.42;
filter: blur(125px);
position: absolute;
top: 0;
right: 0;
width: 331px;
height: 331px;
border-radius: 50%;
z-index: -1;
}
.popular-item-2 .popular-content .title {
font-size: 24px;
}
.popular-item-2 .popular-img {
max-width: 220px;
width: 100%;
height: 162px;
}
.popular-item-2 .popular-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.about-21 {
background-color: #F2F4F7;
position: relative;
z-index: 1;
}
.about-21 .shape-1 {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.about-21 .shape-2 {
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
.about-img-wrap-21 {
position: relative;
max-width: 628px;
width: 100%;
height: 555px;
}
@media only screen and (max-width: 992px) {
.about-img-wrap-21 {
margin-bottom: 40px;
}
}
.about-img-wrap-21 .about-img-1 {
position: absolute;
top: 50px;
left: 20px;
height: 240px;
width: 240px;
}
.about-img-wrap-21 .about-img-1 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border: 5px solid var(--ed-color-common-white);
border-radius: 50%;
}
.about-img-wrap-21 .faq-img {
position: absolute;
top: 0;
right: 0;
max-width: 495px;
width: 100%;
height: 100%;
border-radius: 15px;
}
.about-img-wrap-21 .faq-img img {
border-radius: 15px;
}
.about-img-wrap-21 .faq-text-box {
bottom: 50px;
}
.about-content-21 .about-items {
display: flex;
align-items: center;
-moz-column-gap: 24px;
column-gap: 24px;
justify-content: start;
}
.about-content-21 .about-items .about-item {
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.5);
box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.25);
-webkit-backdrop-filter: blur(50px);
backdrop-filter: blur(50px);
border-radius: 15px;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 30px 20px;
max-width: 268px;
width: 100%;
}
@media (max-width: 1200px) {
.about-content-21 .about-items .about-item {
max-width: 220px;
}
}
.about-content-21 .about-items .about-item .icon {
background: rgba(7, 166, 152, 0.14);
height: 60px;
width: 60px;
margin: 0 auto;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.about-content-21 .about-items .about-item .content .title {
font-size: 20px;
font-weight: 600;
margin-bottom: 0;
}
@media (max-width: 1200px) {
.about-content-21 .about-items .about-item .content .title {
font-size: 16px;
}
}
.about-content-21 .about-btn {
display: flex;
align-items: center;
-moz-column-gap: 30px;
column-gap: 30px;
flex-wrap: wrap;
row-gap: 15px;
}
.about-content-21 .about-btn .about-contact {
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 15px;
column-gap: 15px;
}
.about-content-21 .about-btn .about-contact .icon {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
height: 50px;
width: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.about-content-21 .about-btn .about-contact a {
color: var(--ed-color-heading-primary);
font-size: 16px;
font-weight: 600;
}
.about-content-21 .about-btn .about-contact a:hover {
color: var(--ed-color-theme-primary);
}
.booking-section {
background-color: var(--ed-color-theme-primary);
position: relative;
z-index: 1;
}
@media only screen and (max-width: 767px) {
.booking-section .shapes {
display: none;
}
}
.booking-section .shapes .shape-1 {
position: absolute;
top: 50px;
left: 30px;
z-index: -1;
}
.booking-section .shapes .shape-2 {
position: absolute;
top: 0;
right: 200px;
z-index: -1;
}
.booking-section .shapes .shape-3 {
position: absolute;
top: 40%;
right: 20px;
z-index: -1;
}
.booking-content .faq-thumb-list {
display: flex;
align-items: center;
margin-top: 30px;
}
.booking-content .faq-thumb-list li {
height: 56px;
width: 56px;
display: flex;
align-items: center;
justify-content: center;
border: 3px solid var(--ed-color-common-white);
border-radius: 50%;
}
.booking-content .faq-thumb-list li:not(:last-of-type) {
margin-right: -20px;
}
.booking-content .faq-thumb-list li img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.booking-content .faq-thumb-list li.number {
background-color: var(--ed-color-heading-primary);
color: var(--ed-color-common-white);
font-size: 25px;
font-weight: 600;
}
.booking-form-wrap {
background-color: var(--ed-color-common-white);
padding: 40px;
border-radius: 20px;
}
@media only screen and (max-width: 992px) {
.booking-form-wrap {
margin-top: 40px;
}
}
@media only screen and (max-width: 767px) {
.booking-form-wrap {
padding: 30px 20px;
}
}
.booking-form-wrap .form-title {
font-size: 24px;
margin-bottom: 20px;
}
.booking-form-wrap .booking-form .form-item .form-control {
background-color: #F2F4F7;
font-size: 16px;
font-weight: 400;
padding: 14px 20px;
box-shadow: none;
border: none;
border-radius: 5px;
margin-bottom: 12px;
}
.booking-form-wrap .booking-form .submit-btn .ed-primary-btn {
width: 100%;
border-radius: 5px;
justify-content: center;
}
.step-section-21 {
overflow-x: clip;
}
.step-item-21 {
align-items: center;
position: relative;
}
@media only screen and (max-width: 992px) {
.step-item-21 {
row-gap: 40px;
}
}
.step-item-21:not(:last-of-type) {
margin-bottom: 200px;
}
@media (max-width: 1200px) {
.step-item-21:not(:last-of-type) {
margin-bottom: 170px;
}
}
@media only screen and (max-width: 992px) {
.step-item-21:not(:last-of-type) {
margin-bottom: 50px;
}
}
.step-item-21 .step-shape-1 {
position: absolute;
bottom: -200px;
left: 60%;
transform: translateX(-50%);
z-index: -1;
}
@media (max-width: 1399px) {
.step-item-21 .step-shape-1 {
left: 55%;
}
}
@media (max-width: 1200px) {
.step-item-21 .step-shape-1 {
left: 50%;
width: 95%;
bottom: -170px;
}
}
@media only screen and (max-width: 992px) {
.step-item-21 .step-shape-1 {
display: none;
}
}
.step-item-21 .step-content .step-inner {
display: grid;
align-items: center;
grid-template-columns: 120px 1fr;
grid-gap: 20px;
margin-bottom: 35px;
}
.step-item-21 .step-content .step-inner .icon {
background-color: var(--ed-color-common-white);
border: 1px solid #E0E5EB;
box-shadow: 0px 14px 60px rgba(20, 71, 67, 0.22);
display: flex;
align-items: center;
justify-content: center;
height: 120px;
width: 120px;
border-radius: 50%;
}
.step-item-21 .step-content .step-inner .number {
color: #234542;
opacity: 0.1;
font-size: 60px;
font-weight: 700;
line-height: 1;
}
@media only screen and (max-width: 992px) {
.step-item-21 .step-content .step-inner .number {
font-size: 40px;
}
}
.step-item-21 .step-content .title {
margin-bottom: 20px;
}
.step-item-21 .step-content p {
margin-bottom: 0;
max-width: 502px;
width: 100%;
}
.step-item-21 .step-img {
max-width: 628px;
width: 100%;
height: 400px;
border-radius: 25px;
box-shadow: 0px 11px 51px rgba(19, 83, 77, 0.22);
}
.step-item-21 .step-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 25px;
border: 6px solid var(--ed-color-common-white);
}
@media only screen and (max-width: 992px) {
.step-item-21.item-2 {
flex-direction: column-reverse;
}
}
.step-item-21.item-2 .step-content {
padding-left: 35px;
}
@media only screen and (max-width: 992px) {
.step-item-21.item-2 .step-content {
padding-left: 0;
}
}
.testi-21 {
position: relative;
z-index: 1;
overflow-x: clip;
}
.testi-21 .shape {
background: linear-gradient(180deg, rgba(7, 166, 152, 0) 0%, rgba(7, 166, 152, 0.39) 100%);
filter: blur(300px);
position: absolute;
width: 2620px;
height: 990px;
top: -60%;
left: 0;
z-index: -1;
}
.event-carousel-20 {
padding-bottom: 90px;
}
.event-carousel-20 .swiper-pagination {
bottom: 0;
}
.event-carousel-20 .swiper-pagination .swiper-pagination-bullet {
background-color: transparent;
height: 20px;
width: 20px;
border: 2px solid var(--ed-color-common-white);
opacity: 1;
border-radius: 50%;
position: relative;
}
.event-carousel-20 .swiper-pagination .swiper-pagination-bullet:before {
background-color: var(--ed-color-common-white);
content: "";
height: 7px;
width: 7px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
visibility: hidden;
opacity: 0;
}
.event-carousel-20 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
border: 2px solid var(--ed-color-common-white);
}
.event-carousel-20 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
visibility: visible;
opacity: 1;
}
.event-item-21 {
background-color: var(--ed-color-common-white);
padding: 30px;
}
.event-item-21 .event-thumb {
margin-bottom: 20px;
border-radius: 10px;
overflow: hidden;
height: 220px;
}
.event-item-21 .event-thumb img {
border-radius: 10px;
}
.event-item-21 .event-content {
background-color: var(--ed-color-common-white);
padding: 0;
}
.event-item-21 .event-content .title {
font-size: 24px;
font-weight: 600;
}
.event-item-21 .event-content .location {
margin-bottom: 10px;
}
.event-item-21 .event-content .ed-primary-btn {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
margin-top: 20px;
}
.event-item-21 .event-content .ed-primary-btn:before {
background-color: var(--ed-color-heading-primary);
}  .footer-section {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
}
.footer-top {
background: rgba(255, 255, 255, 0.01);
border: 1px solid rgba(255, 255, 255, 0.1);
-webkit-backdrop-filter: blur(40px);
backdrop-filter: blur(40px);
border-radius: 10px;
margin-bottom: 80px;
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 20px;
column-gap: 20px;
padding: 80px;
flex-wrap: wrap;
row-gap: 20px;
}
@media (max-width: 1200px) {
.footer-top {
justify-content: center;
}
}
@media only screen and (max-width: 767px) {
.footer-top {
padding: 40px 20px;
}
}
.footer-top .title {
color: var(--ed-color-common-white);
font-size: 30px;
font-weight: 700;
text-align: left;
}
@media (max-width: 1200px) {
.footer-top .title {
text-align: center;
}
}
.footer-top .footer-form-wrap .footer-form {
display: flex;
align-items: center;
justify-content: center;
-moz-column-gap: 10px;
column-gap: 10px;
flex-wrap: wrap;
row-gap: 20px;
}
.footer-top .footer-form-wrap .footer-form .form-item {
position: relative;
}
.footer-top .footer-form-wrap .footer-form .form-item .form-control {
background-color: rgba(255, 255, 255, 0.03);
color: var(--ed-color-common-white);
width: 440px;
border: 1px solid rgba(255, 255, 255, 0.25);
box-shadow: none;
padding: 12px 30px;
border-radius: 100px;
padding-left: 55px;
}
.footer-top .footer-form-wrap .footer-form .form-item .form-control::-webkit-input-placeholder {
color: var(--ed-color-common-white);
}
.footer-top .footer-form-wrap .footer-form .form-item .form-control:-moz-placeholder {
color: var(--ed-color-common-white);
}
.footer-top .footer-form-wrap .footer-form .form-item .form-control::-moz-placeholder {
color: var(--ed-color-common-white);
}
.footer-top .footer-form-wrap .footer-form .form-item .form-control:-ms-input-placeholder {
color: var(--ed-color-common-white);
}
@media only screen and (max-width: 767px) {
.footer-top .footer-form-wrap .footer-form .form-item .form-control {
width: 100%;
}
}
.footer-top .footer-form-wrap .footer-form .form-item .icon {
color: var(--ed-color-common-white);
position: absolute;
top: 52%;
left: 30px;
transform: translateY(-50%);
}
.footer-wrap {
margin-bottom: 80px;
}
@media only screen and (max-width: 992px) {
.footer-wrap {
margin-bottom: 30px;
}
}
@media only screen and (max-width: 992px) {
.footer-widget {
margin-bottom: 50px;
}
}
.footer-widget .widget-header {
color: var(--ed-color-common-white);
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 35px;
padding-bottom: 15px;
position: relative;
}
.footer-widget .widget-header:before {
background-color: var(--ed-color-common-white);
content: "";
width: 60px;
height: 2px;
position: absolute;
bottom: 0;
left: 0;
}
.footer-widget .widget-header.logo {
margin-bottom: 0;
}
.footer-widget .widget-header.logo:before {
display: none;
}
.footer-widget p {
color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-contact .number {
font-size: 22px;
font-weight: 600;
display: block;
}
.footer-widget .footer-contact .number i {
color: var(--ed-color-common-white);
margin-right: 15px;
}
.footer-widget .footer-contact .number a {
color: var(--ed-color-common-white);
}
.footer-widget .footer-contact .number a:hover {
color: var(--ed-color-theme-primary);
}
.footer-widget .footer-contact .mail {
color: var(--ed-color-common-white);
font-size: 18px;
margin-bottom: 15px;
display: inline-block;
}
.footer-widget .footer-contact .mail:hover {
color: var(--ed-color-theme-primary);
}
.footer-widget .footer-list {
list-style: none;
}
.footer-widget .footer-list li a {
font-family: var(--ed-ff-body);
color: var(--ed-color-common-white);
font-size: 16px;
font-weight: 400;
line-height: 1;
}
.footer-widget .footer-list li a:hover {
color: var(--ed-color-theme-primary);
}
.footer-widget .footer-list li:not(:last-of-type) {
margin-bottom: 15px;
}
.footer-widget .footer-form {
position: relative;
margin-top: 30px;
}
.footer-widget .footer-form .form-control {
background-color: var(--ed-color-common-dark);
padding: 15px 70px 15px 15px;
color: rgba(255, 255, 255, 0.8);
box-shadow: none;
border: none;
border-radius: 0;
}
.footer-widget .footer-form .form-control::-webkit-input-placeholder {
color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control:-moz-placeholder {
color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control::-moz-placeholder {
color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control:-ms-input-placeholder {
color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .submit {
background-color: var(--ed-color-theme-primary);
color: rgba(255, 255, 255, 0.8);
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
height: 100%;
width: 60px;
font-size: 18px;
}
.footer-widget .footer-social {
display: flex;
align-items: center;
list-style: none;
}
.footer-widget .footer-social li:not(:last-of-type) {
margin-right: 20px;
}
.footer-widget .footer-social li a {
color: var(--ed-color-common-white);
font-size: 16px;
}
.footer-widget .footer-social li a:hover {
color: var(--ed-color-theme-primary);
}
.footer-widget .sidebar-post {
display: grid;
align-items: center;
grid-template-columns: 90px 1fr;
grid-gap: 0px;
}
.footer-widget .sidebar-post:not(:last-of-type) {
margin-bottom: 20px;
}
.footer-widget .sidebar-post img {
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.footer-widget .sidebar-post .post-content {
padding-left: 20px;
}
@media only screen and (max-width: 767px) {
.footer-widget .sidebar-post .post-content {
padding-left: 10px;
}
}
.footer-widget .sidebar-post .post-content .post-meta {
display: flex;
align-items: center;
-moz-column-gap: 20px;
column-gap: 20px;
flex-wrap: wrap;
row-gap: 5px;
}
@media only screen and (max-width: 767px) {
.footer-widget .sidebar-post .post-content .post-meta {
-moz-column-gap: 5px;
column-gap: 5px;
}
}
.footer-widget .sidebar-post .post-content .post-meta li {
font-size: 14px;
font-weight: 400;
color: var(--ed-color-common-white);
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
}
@media only screen and (max-width: 767px) {
.footer-widget .sidebar-post .post-content .post-meta li {
font-size: 13px;
}
}
.footer-widget .sidebar-post .post-content .post-meta li i {
color: var(--ed-color-theme-primary);
}
.footer-widget .sidebar-post .post-content .title {
color: var(--ed-color-common-white);
font-size: 17px;
font-weight: 600;
text-transform: capitalize;
line-height: 1.4;
margin-bottom: 7px;
}
.footer-widget .sidebar-post .post-content .title a {
background: linear-gradient(var(--ed-color-common-white) 0%, var(--ed-color-common-white) 98%);
background-size: 0 2px;
background-repeat: no-repeat;
background-position: left 100%;
transition: all 0.3s ease-in-out;
}
.footer-widget .sidebar-post .post-content .title a:hover {
color: var(--ed-color-common-white);
background-size: 100% 2px;
}
.footer-widget.widget-2 {
padding-left: 50px;
}
@media only screen and (max-width: 992px) {
.footer-widget.widget-2 {
padding-left: 0;
}
}
.footer-widget.widget-2 .footer-list li a {
position: relative;
padding-left: 30px;
}
@media (max-width: 1200px) {
.footer-widget.widget-2 .footer-list li a {
font-size: 14px;
padding-left: 17px;
}
}
.footer-widget.widget-2 .footer-list li a:before {
background-image: none;
font-family: "Font Awesome 6 Pro";
font-size: 14px;
font-weight: 700;
content: "\f061";
color: var(--ed-color-common-white);
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
transition: all 0.3s ease-in-out;
cursor: pointer;
}
@media (max-width: 1200px) {
.footer-widget.widget-2 .footer-list li a:before {
font-size: 10px;
}
}
.footer-widget.widget-2 .footer-list li a:hover:before {
color: var(--ed-color-theme-primary);
}
.copyright-area {
border-top: 1px solid #223736;
}
.copyright-content {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
padding: 20px 0;
border-top: 2px solid var(--ed-color-common-dark);
}
@media only screen and (max-width: 992px) {
.copyright-content {
margin-top: 0;
flex-direction: column-reverse;
row-gap: 10px;
padding: 40px 0;
}
}
.copyright-content p {
color: rgba(255, 255, 255, 0.8);
font-size: 16px;
font-family: var(--ed-ff-body);
margin: 0;
}
.copyright-content p span {
color: var(--ed-color-theme-primary);
}
@media only screen and (max-width: 767px) {
.copyright-content p {
text-align: center;
}
}
.footer-3 {
padding-top: 260px;
}
.footer-3 .footer-widget .footer-social li {
display: inline-flex;
}
.footer-3 .footer-widget .footer-social li a {
background-color: #1F3534;
height: 45px;
width: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.footer-3 .footer-widget .footer-social li a:hover {
background-color: var(--ed-color-theme-primary);
color: var(--ed-color-common-white);
}
.footer-3 .copyright-area {
background-color: var(--ed-color-theme-primary);
}
.footer-3 .copyright-area .copyright-content {
display: flex;
align-items: center;
justify-content: space-between;
-moz-column-gap: 20px;
column-gap: 20px;
flex-wrap: wrap;
row-gap: 15px;
}
@media only screen and (max-width: 767px) {
.footer-3 .copyright-area .copyright-content .copyright-list {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
row-gap: 10px;
}
}
.footer-3 .copyright-area .copyright-content .copyright-list li {
display: inline-flex;
}
.footer-3 .copyright-area .copyright-content .copyright-list li:not(:last-of-type) {
margin-right: 20px;
}
.footer-3 .copyright-area .copyright-content .copyright-list li a {
color: rgba(255, 255, 255, 0.8);
font-size: 16px;
font-weight: 500;
display: block;
}
.footer-3 .copyright-area .copyright-content .copyright-list li a:hover {
color: var(--ed-color-common-white);
} #scrollup {
width: 45px;
height: 45px;
position: fixed;
bottom: 30px;
right: 30px;
overflow: hidden;
z-index: 999;
}
.scroll-to-top {
width: 100%;
height: 100%;
text-align: center;
background-color: var(--ed-color-theme-primary);
font-size: 20px;
padding: 0;
line-height: 40px;
color: var(--ed-color-common-white);
border-radius: 5px;
outline: none;
text-decoration: none;
transform: translateY(150%);
transition: all 0.3s ease-in-out;
}
#scrollup.show {
opacity: 1;
}
#scrollup.show .scroll-to-top {
transform: translateY(0);
transition: all 0.3s ease-in-out;
}
.scroll-to-top:hover {
text-decoration: none;
opacity: 0.8;
transition: all 0.3s ease-in-out;
}
.cmnicon-overlapwrap .iconoverlp-row{  
padding-top: 0;
}
.cmnicon-overlapwrap .iconoverlp-col{
margin-top: 42px;
margin-bottom: 24px;
}
.iconoverlp-col .iconoverlp-colinner{
background: #f8f8f8;
border-radius: 9px;
height: 100%;
padding: 20px;
position: relative;
}
.iconoverlp-col .iovrlp-colicon{
margin: -56px 0 20px;
}
.iovrlp-colicon .iovrlap-lbg{
width: 65px;
height: 65px;
background:linear-gradient(150deg,#0575E6 60%,#2e01ab ) ;
border-radius: 5px;
color: #fff;
text-align: center;
}
.iconoverlp-col .iovrlp-colicon .iovrlap-lbg i{
display: block;
color: #fff;
font-size: 30px;
line-height: 65px;
}
.iconoverlp-col .iovrlp-colicon .iovrlap-lbg i:before{
font-size: 30px;
line-height: 67px;
}
.iovrlp-colcont .iovrlp-title{
font-size: 18px;
line-height: 1.5;
margin-bottom: 0;
text-transform: capitalize;
font-weight: 600;
}
.iovrlp-colcont p{
margin-bottom: 0;
margin-top: 8px;
}
.common-list-wrap h5.title{
margin-bottom: 15px;
}
.cmnicon-overlapwrap{
padding-top: 15px;
}  @import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");
@font-face {
font-family: 'GoogleSans-Medium';
src: url(//phdprojects.org/wp-content/themes/projects/assets/fonts/GoogleSans-Medium.eot);
src: url(//phdprojects.org/wp-content/themes/projects/assets/fonts/GoogleSans-Medium.eot?#iefix) format('embedded-opentype'),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/GoogleSans-Medium.svg#GoogleSans-Medium) format('svg'),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/GoogleSans-Medium.ttf) format('truetype'),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/GoogleSans-Medium.woff) format('woff'),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/GoogleSans-Medium.woff2) format('woff2');
font-weight: normal;
font-style: normal;
} @font-face {
font-family: "Flaticon";
src: url(//phdprojects.org/wp-content/themes/projects/assets/fonts/Flaticon.eot);
src: url(//phdprojects.org/wp-content/themes/projects/assets/fonts/Flaticond41dd41d.eot?#iefix) format("embedded-opentype"),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/Flaticon.woff) format("woff"),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/Flaticon.ttf) format("truetype"),
url(//phdprojects.org/wp-content/themes/projects/assets/fonts/Flaticon.svg#Flaticon) format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "Flaticon";
src: url(//phdprojects.org/wp-content/themes/projects/assets/fonts/Flaticon.svg#Flaticon) format("svg");
}
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
font-family: Flaticon;
font-style: normal;
}
.flaticon-email:before { content: "\f100"; }
.flaticon-call:before { content: "\f101"; }
.flaticon-location:before { content: "\f102"; }
.flaticon-play-button:before { content: "\f103"; }
.flaticon-user:before { content: "\f104"; }
.flaticon-check:before { content: "\f105"; }
.flaticon-development:before { content: "\f106"; }
.flaticon-like:before { content: "\f107"; }
.flaticon-checked:before { content: "\f108"; }
.flaticon-tick:before { content: "\f109"; }
.flaticon-plus:before { content: "\f10a"; }
.flaticon-more:before { content: "\f10b"; }
.flaticon-quotation:before { content: "\f10c"; }
.flaticon-upload:before { content: "\f10d"; }
:root {
--ed-ff-newfont1: "Lexend", sans-serif;
--ed-ff-newfontgs: "GoogleSans-Medium", sans-serif;
--ed-ff-newfont: "Poppins", sans-serif;
}
.clearfix::after {
content: "";
display: table;
clear: both;
visibility: hidden;
line-height: 0;
height: 0; 
}
.fi{
display: block;
}
p { font-family: var(--ed-ff-newfont);
}
@keyframes boxpulse {
0% {
-moz-box-shadow: 0 0 0 0 rgb(46 1 171 / 80%);
box-shadow: 0 0 0 0 rgb(46 1 171 / 80%);
}
70% {
-moz-box-shadow: 0 0 0 10px rgb(46 1 171 / 0);
box-shadow: 0 0 0 10px rgb(46 1 171 / 0);
}
100% {
-moz-box-shadow: 0 0 0 0 rgb(46 1 171 / 0);
box-shadow: 0 0 0 0 rgb(46 1 171 / 0);
}
}
@keyframes boxpulse2 {
0% {
-moz-box-shadow: 0 0 0 0 rgb(255 50 147 / 80%);
box-shadow: 0 0 0 0 rgb(255 50 147 / 80%);
}
70% {
-moz-box-shadow: 0 0 0 10px rgb(255 50 147 / 0);
box-shadow: 0 0 0 10px rgb(255 50 147 / 0);
}
100% {
-moz-box-shadow: 0 0 0 0 rgb(255 50 147 / 0);
box-shadow: 0 0 0 0 rgb(255 50 147 / 0);
}
} .elementor-template-full-width .site-content.container{
max-width: 100%;
width: 100%;
margin: 0 auto;
padding-right: 0;
padding-left: 0;
}
.elementor-template-full-width .container.main-content-area {
max-width: 100%;
width: 100%;
margin: 0 auto;
padding: 0;
}
.page-id-11368 .site-content.container{
max-width: 100%;
width: 100%;
margin: 0 auto;
padding-right: 0;
padding-left: 0;
}
.page-id-11368 .container.main-content-area {
max-width: 100%;
width: 100%;
margin: 0 auto;
padding: 0;
}
.custom-bbcontainer{
max-width: 1170px;
width: 100%;
margin: 0 auto;
} :root{
--wp--style--global--content-size: 100%;
}
.has-global-padding {
padding-right: 0;
padding-left: 0;
}
.page.page-id-8 .wp-block-group-is-layout-constrained.wp-block-group .wp-block-spacer{
display: none;
}
.page.page-id-8 .wp-block-group-is-layout-constrained.wp-block-group .wp-block-post-title{
display: none;
}
.bg-main-blueshad{
background-color: var(--ed-color-bg-bluebg);
}
.bold-text{
color: #000; font-weight: 400;
}
.bold-text.pinkclr-hglght{ color: #ff0b55;
}
.blueclr-hglght,.bold-text.blueclr-hglght{ color: #007ee5;
}
.blueclr-text{
color: #007ee5;
}
.pinkclr-text{
color: #ff0b55;
}
b.pinkclr-text,b.blueclr-text,b.blueclr-hglght,b.pinkclr-hglght,.bold-text.blueclr-hglght,.bold-text.pinkclr-hglght{
font-weight: 400;
}
.inner-subhd .main-title1{
font-size: 25px;
line-height: 34px!important;
}
.main-title1 {
font-size: 30px;
}
.hero-img-wrap {
max-width: 100%;
width: 100%;
height: auto;
position: relative;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.hero-img-wrap .hero-img-shape{
right: -51px;z-index: -1;
}
@keyframes textShine {
0% {
background-position: 0% 50%;
}
100% {
background-position: 100% 50%;
}
}
.shine-text{ font-size: 1.9rem;
font-size: inherit;
font-weight: bold;
margin: 5px;
background: linear-gradient(
to right,
#03045e 20%,
#ff006e 30%,
#7209b7 70%,
#3a0ca3 80%
);
background: linear-gradient(to right,#ba01c9 20%,#ec00c0 30%,#ec008b 70%,#c701c9 80%);
background: linear-gradient(to right,#1fc0b8 20%,#1e419f 30%,#3f51b5 70%,#4b117f 80%);
background: linear-gradient(
to right,
#007ee5 20%,
#ff006e 30%,
#007ee5 70%,
#e21071 80%
);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-fill-color: transparent;
background-size: 500% auto;
animation: textShine 5s ease-in-out infinite alternate;
}
.shine-textbg{ font-size: 1.9rem;
font-weight: bold;
margin: 5px;
background: linear-gradient(
to right,
#03045e 20%,
#ff006e 30%,
#7209b7 70%,
#3a0ca3 80%
);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-fill-color: transparent;
background-size: 500% auto;
animation: textShine 5s ease-in-out infinite alternate;
}
.text-justify{
text-align: justify;
}
.page-header{ background-color:#007ee5 ;
background: linear-gradient(90deg,#00308f 60%,rgb(54,9,51));
background: linear-gradient(90deg,#2e01ab 60%,rgb(54,9,51));
background: linear-gradient(90deg,#0575E6 60%,#2e01ab );
background: radial-gradient(circle, #007ee5, #00c3ff);
padding: 130px 0;
}
.hero-img-wrap .count-title{
font-size: 16px;
font-weight: 500;
}
.hero-img-wrap .hero-text-element {
background-color: rgb(226 16 113 / 90%);
font-family: var(--ed-ff-newfont);
color: var(--ed-color-common-white);
width: 200px;
background: rgb(255 11 85 / 90%);
font-weight: 700;
}
.bg-main-white{
background: #fff;
}
.common-hlist{
list-style: none;
}
.common-hlist li{
border-right: 1px solid #cbc9c9;
padding: 0 14px;
font-size: 14px;
}
.common-hlist li.border-rnone{
border-right: none;
}
body{
font-family: var(--ed-ff-newfont);
color: #000;
}
.text-paragraph{
color: #000; font-family: var(--ed-ff-newfont);
font-size: 15px;
line-height: 28px;
font-weight: 400;
letter-spacing: 0.1px;
}
p{
color: #000;
font-size: 15px;
line-height: 28px; font-family: var(--ed-ff-newfont);
font-weight: 400;
letter-spacing: 0.1px;
}
.pinkicon-card .fi{
color: #e21071;
font-size: 30px;
padding-right: 15px;
}
.cuscmn-mainhd{
text-align: center;
}
.cuscmn-mainhd.text-justify{
text-align: justify;
}
.cuscmn-mainhd .common-head.text-justify{
text-align: justify;
}
.cuscmn-mainhd .common-head.text-left{
text-align: left;
}
.cuscmn-mainhd .common-head {
font-family: var(--ed-ff-heading);
font-size: 36px;
text-align: center;
font-weight: 600;
line-height: 46px!important;
}
.cuscmn-mainhd.section-hdtitle{
text-align: left;
}
.cuscmn-mainhd.section-hdtitle .common-head{
text-align: left;
font-size: 36px;
line-height: 46px!important;
}  
.cuscmn-mainhd .cushead-line{
display: inline-block;
position: relative;
padding-bottom: 0px;
margin-bottom: 3px;
}
.cuscmn-mainhd .cushead-line::after{
content: "";
width: 50%;
display: block;
height: 3px;
left: 0;
right: 0;
position: absolute;
margin: 0 auto 0;
background: #ef0107;
border-radius: 5px; bottom: -2px;
background: linear-gradient(to right, #a301c9 0%, #ba01c9 25%,#db10ee 50%, #ee10eb 75%,#c701c9 100%);
background: linear-gradient(to right, #00bcd4 0%,#673ab7 25%,#3f51b5 50%,#2196f3 75%,#00bcd4 100%);
}
.cuscmn-mainhd{
position: relative;
}
.cuscmn-mainhd i{  }
.cuscmn-gradhd .cushead-gradline{
display: inline-block;
position: relative;
padding-bottom: 0px;
margin-bottom: 3px;
}
.cuscmn-gradhd .cushead-gradline::after{
content: "";
width: 50%;
display: block;
height: 3px;
left: 0;
right: 0;
position: absolute;
margin: 0 auto 0;
background: #ef0107;
border-radius: 5px;
animation: rotateline 20s infinite linear; 
-webkit-animation: rotateline 20s infinite linear; bottom: -30px;
background: linear-gradient(to right, #a301c9 0%, #ba01c9 25%,#db10ee 50%, #ee10eb 75%,#c701c9 100%);
background: linear-gradient(to right, #00bcd4 0%,#673ab7 25%,#3f51b5 50%,#2196f3 75%,#00bcd4 100%);
}
.cuscmn-gradhd .cushead-gradline-dash{
display: inline-block;
position: relative;
padding-bottom: 0px;
margin-bottom: 3px
}
.cuscmn-gradhd .cushead-gradline-dash::after {
content: "";
width: 50%;
display: block;
height: 3px;
left: 0;
right: 0;
position: absolute;
margin: 0 auto 0;
background: #ef0107;
border-radius: 5px;
bottom: -30px;
animation: rotateline 100s infinite linear; 
-webkit-animation: rotateline 100s infinite linear; background: linear-gradient(to left, transparent 0%,transparent 25%,transparent 25%,#0575E6 30%,#0575E6 100%);
background-size: 11px;
border-radius: 0px;
}
.cuscmn-gradhd.pinkdash .cushead-gradline-dash::after{
background: linear-gradient(to left, transparent 0%,transparent 25%,transparent 25%,#ff0b55 30%,#ff0b55 100%);
background-size: 11px;
}
.cuscmn-gradhd{
position: relative;
margin-bottom: 5px;
}
.cuscmn-mainhd i {
font-size: 18px;
line-height: 18px;
width: 60px;
height: 55px;
border-radius: 50%;
display: flex;
align-items: center;
background: #fff;
text-align: center;
margin: 0 auto;
position: relative;
justify-content: center;    
color: #000;
}
.pinkfull-bgsection .cuscmn-mainhd i{
background: #fff3f3;
}
.pinkfull-bgsection.btwnpink-clrsection .cuscmn-mainhd i{ background: rgb(255 181 203);
}
.bluefull-bgsection .cuscmn-mainhd i{
background: rgb(240 247 254 / 90%);
}
.bluefull-bgsection.btwnblue-clrsection .cuscmn-mainhd i{
background: rgb(209 229 250 / 90%);
}
.custom-zigsection{
margin-top: 25px;
}
@-webkit-keyframes rotateline {
from {
background-position: -3000px;
}
to { 
background-position: 0px;
}
}
@keyframes rotateline {
from {
background-position: -3000px;
}
to { 
background-position: 0px;
}
}
.right-border .border-rnone {
border-right: none;
}
.intro-row .cuscmn-mainhd{
padding-bottom: 20px;
} .divider-borderbg{
position: relative;
padding: 0px;
margin: 0;
background: #ef0107;
border-radius: 0; animation: rotateline 100s infinite linear;
-webkit-animation: rotateline 100s infinite linear;    
background: linear-gradient(to left, #ff0b55 0%,#ff0b55 45%,#ff0b55 45%,#000 45%,#000 100%);
background-size: 34px;
height: 3px;
margin: 30px auto 0;
width: 50%;
display: flex;
justify-content: space-between;
}
.divider-borderbg:before,.divider-borderbg:after {
content: "xxx";  display: block;
color: #FF0B55;
font-size: 28px;
font-weight: 500;
line-height: 10px;
margin-top: -7px;
text-transform: lowercase;
font-family: 'Outfit';
letter-spacing: 2px;
}
.divider-borderbg:before{
margin-left: -46px;
}
.divider-borderbg:after{
margin-right: -46px;
}
.btmdouble-contain .bordertop-btmdouble{
padding-right:20px;
padding-left:20px;
}
.bordertop-btmdouble{
position: relative; padding: 20px 0px;
}
.bordertop-btmdouble:before {
content: "";    
display: block;
border-bottom: 3px solid #ff0b55;
border-top: 3px solid #ff0b55;
height: 7px;
width: 100px;
background-color: transparent;
display: flex;
margin-left: 0;
position: absolute;
top: 0;
left: 0;
}
.bordertop-btmdouble:after {
content: "";    
display: block;
border-bottom: 3px solid #ff0b55;
border-top: 3px solid #ff0b55;
height: 7px;
width: 100px;
background-color: transparent;
display: flex;
margin-left: 0;
position: absolute;
bottom: 0;
right: 0;
}
.bluehdbdr-double.bordertop-btmdouble:before,.bluehdbdr-double.bordertop-btmdouble:after{
border-color: #007ee5;
}
.btmdouble-contain{
position: relative;
}
.btmdouble-contain:before {
content: "";    
display: block;
border-right: 3px solid #ff0b55;
border-left: 3px solid #ff0b55;
height: 100px;
width: 7px;
background-color: transparent;
display: flex;
margin-left: 0;
position: absolute;
top: 0;
left: 0;
}
.btmdouble-contain:after {
content: "";    
display: block;
border-right: 3px solid #ff0b55;
border-left: 3px solid #ff0b55;
height: 100px;
width: 7px;
background-color: transparent;
display: flex;
margin-left: 0;
position: absolute;
bottom: 0;
right: 0;
}
.bluehdbdr-double.btmdouble-contain:before,.bluehdbdr-double.btmdouble-contain:after{
border-color: #007ee5;
}
.borderonly-dotted {
position: relative;
padding: 10px 0;
}
.borderonly-dotted:before ,.borderonly-dotted:after{
content: "";
display: block;
border-bottom: 4px dotted #ff0b55; height: 5px;
width: 100px;
background-color: transparent;
display: flex;
margin-left: 0;
position: absolute;
top: 0;
left: 0;
letter-spacing: 0;
}
.borderonly-dotted:after{
left: auto;
right: 0;
top: auto;
bottom: 0;
}
.pinksecside-borderbg{
border-left: 3px solid #ff0b55;
padding: 10px 30px 25px;
background: #fff3f3;
margin-top: 25px;
border-radius: 0 15px 15px 0;
} .tick-before::before {
width: 18px;
min-width: 18px;
height: 18px;
min-height: 18px;
margin-right: 15px;
background-color: #007ee5;
}
.common-list-wrap .common-list-style{
list-style: none;
}
.common-list-style li{
padding-left: 1.9rem;  
align-items: center;
padding: 0;
margin: 0 0 15px;
gap: 1rem;
}
.common-list-style li.tick-before p{
margin-bottom: 0;
}
.common-list-style li.tick-before .fi{
color: #ff0b55;
font-size: 20px;
justify-content: center;
display: flex;
box-shadow: 0px 1px 7px 0px rgb(0 0 0 / 40%);
border-radius: 50%;
}
.common-list-style.blueclr-liststyle li.tick-before .fi{
color: #007ee5;
}
.common-list-style li.tick-before .fi.fi-sr-badge-check{
box-shadow:none;
}
.iconlist-blk .fi{ color: #ff0b55;
font-size: 30px;
line-height: 30px;
padding-right: 15px;
}
.iconlist-blk .fi::before{
font-size: 30px;
line-height: 40px;
}
.iconlist-mainblk .iconlist-blk{
border-right: 1px solid #cbc9c9;
justify-content: center;
align-items: center;
gap: 10px;
}
.commonmain-midblock .iconlist-mainblk .iconlist-blk{
gap: 0;
justify-content: flex-start;
padding: 0 15px;
}
.iconlist-mainblk .iconlist-blk.border-rnone{
border-right: none;
}
.commombb-mainsection .text-paragraph{
text-align: justify;
}
.abtprcs-wrap{
border-right: 1px dashed rgba(0,0,0,0.4);
padding-top: 2px;
padding-bottom: 10px;
text-align: center;
position: relative;
z-index: 99;
}
.abtprcs-card .card-content{
text-align: justify;
}
.abtprcs-card {
padding: 0 15px;
}
.abtprcs-card .card-imgblk{
padding-top: 15px;
}
.whychose-section .iconlist-mainblk .iconlist-blk span{
width: 66%; 
text-align: left;
}
.sevice_innerblk .row>*{ }
.srvce_topcont{ margin: 0 auto -2rem;
text-align: -webkit-center; padding: 12px;    
background: #fea621;
z-index: 50;
position: relative;
border-radius: 10px;
}
.srvce_topcont img{
width: 100%;
}
.srvce_topcont.ylwpnk_gradbg{
background: linear-gradient(90deg,#ff0f7b,#f89b29);
}
.srvce_botcont{
border-radius: 20px;
padding: 0;
margin: 2px 0 0;
}
.srvce_botcont h4{
color: #ff0b55;
text-align: center;
} .srvce_botcont p{
color: #000;
line-height: 28px;
font-size: 15px;
font-weight: 300;
}
.srvce_botcont .minhgt-div{
height: auto;
overflow-y: auto;
position: relative;
padding: 0;
margin-bottom: 0;
}
.sevice_innerblk .sevice_clm-grid:hover {
box-shadow: 0 0 5px #00bcd4;
}
.sevice_clm-grid {
border-color: transparent;
box-shadow: 0 0 5px #777;
border-radius: 10px;
padding: 15px 16px;
background: #fff;
margin-bottom: 20px;
} .srvce_botcont .minhgt-div::-webkit-scrollbar {
width: 5px;
}
.srvce_botcont .minhgt-div::-webkit-scrollbar-track {
background-color: #fff;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.srvce_botcont .minhgt-div::-webkit-scrollbar-thumb {
-webkit-border-radius: 5px;
border-radius: 5px;
background: rgba(0,0,0,0.5); 
}
.srvce_botcont a.more{
color: #ef0107;
font-weight: bold; 
font-size: 17px;
display: inline-block;
}
.serve_contentblk h3 {
color: #000;
font-size: 2rem;
margin-bottom: 20px;
}
.serve_innerblk .serve_row{
padding-top: 10px;
padding-bottom: 30px;
}
.serve_row [class*="col"]{ }
.sevice_innerblk .pink-iconbg{
background: #ba01c9;
background-color: transparent;
}
.srvce_topcont{
margin: 0 auto;
font-size: 1.8rem;
line-height: 1.8rem;
padding: 5px 10px;
}
.srvce_topcont i::before{
line-height: inherit;
}
.srvce_topcont i{
line-height: inherit;
display: block;
color: #007ee5;
font-size: 40px;
line-height: 40px;
padding: 5px 0;
} .sevice_clm {
border-color: transparent;
box-shadow: 0 0 5px #777;
border-radius: 10px;
padding: 18px 20px 20px;
background: #fff;
margin: 0 8px 30px; }
.sevice_innerblk .sevice_clm:hover{
box-shadow: 0 0 5px #00bcd4 ;
}
.service-row .service-mngrd{
display: flex;
}
.bluesection-wrap .srvce_botcont{
box-shadow: none;
padding:   0;
border-radius: 0;
text-align: justify;
}
.sevice_clm .srvce_topcont i{
transition: all 0.5s ease-in-out;
}
.sevice_clm:hover .srvce_topcont i{
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
} .bluehalf-shadbg{
background: linear-gradient(to left, rgb(240 247 254 / 70%) ,rgb(255 255 255 / 10%) 114%);
background: linear-gradient(to left, rgb(129 197 253 / 10%) ,rgb(255 255 255 / 10%) 114%);
background-attachment: fixed;
} .animte-section{
position: relative;
overflow: hidden;
z-index: 1;
}
.round-p-animation {position: absolute; bottom: 0; left:-100px; margin-top: -50px; z-index: -1; background: transparent; width: 200px; height: 200px; border: 10px solid rgba(0, 126, 229,0.1); -webkit-border-radius: 100%;
border-radius: 100%; text-align: center; display: inline-block; -webkit-transition: .15s ease-in-out; transition: .15s ease-in-out; -webkit-transition-property: color, background, border-color; transition-property: color, background, border-color; }
.round-p-animation:after, .round-p-animation:before {content: ''; border: 10px solid; border-color: inherit; width: 270%; height: 270%; -webkit-border-radius: 100%; border-radius: 100%;
position: absolute; left: -85%; top: -85%; opacity: 1; -webkit-animation: 2s videomodule-anim linear infinite; animation: 2s videomodule-anim linear infinite; }
.round-p-animation:before {-webkit-animation-delay: .5s; animation-delay: .5s; }
@-webkit-keyframes videomodule-anim {
0% {
-webkit-transform: scale(0.68);
transform: scale(0.68); }
100% {
-webkit-transform: scale(1.2);
transform: scale(1.2);
opacity: 0; } }
@keyframes videomodule-anim {
0% {
-webkit-transform: scale(0.68);
transform: scale(0.68); }
100% {
-webkit-transform: scale(1.2);
transform: scale(1.2);
opacity: 0; } } .rotateme{
animation-name: rotateme; 
animation-duration: 40s; 
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: rotateme; 
-webkit-animation-duration: 40s; 
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: rotateme; 
-moz-animation-duration: 40s; 
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: rotateme; 
-ms-animation-duration: 40s; 
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: rotateme; 
-o-animation-duration: 40s; 
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
@keyframes rotateme {
from {
transform: rotate(0deg);
}
to { 
transform: rotate(360deg);
}
}
@-webkit-keyframes rotateme {
from {
-webkit-transform: rotate(0deg);
}
to { 
-webkit-transform: rotate(360deg);
}
}
@-moz-keyframes rotateme {
from {
-moz-transform: rotate(0deg);
}
to { 
-moz-transform: rotate(360deg);
}
}
@-o-keyframes rotateme {
from {
-o-transform: rotate(0deg);
}
to { 
-o-transform: rotate(360deg);
}
}
.pattern-3 {
position: absolute;
right: 0;
left: 0;
transform: translateY(-74%);
top: 50%;
transform: translateY(-50%);
margin-right: auto;
text-align: center;
z-index: -1;
margin: 0 auto;
width: 55%;
}
.pattern-3 .img-fluid{
width: 100%;
width: 75%;
}
.custom-bbcontainer .movingsection-cusbg {
padding-left: 40px;
padding-right: 40px;
}
.rotateme {
animation: rotateme 40s infinite linear;
-webkit-animation: rotateme 40s infinite linear;
-moz-animation: rotateme 40s infinite linear;
-ms-animation: rotateme 40s infinite linear;
-o-animation-timing-function: linear;
}
.backgroundmove-animate{background-repeat: repeat !important; background-size: auto !important; animation: animatedBackground 10s linear infinite;
-ms-animation: animatedBackground 10s linear infinite;
-moz-animation: animatedBackground 10s linear infinite;
-webkit-animation: animatedBackground 10s linear infinite;background-attachment: fixed;
background-color: rgb(240 247 254 / 90%);
padding: 60px 0;
box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%);
overflow: visible;
margin-top: 8px; }
.pink-animatecontact .backgroundmove-animate{
background-color: rgb(229 10 76 / 90%);
}
@keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}
@-webkit-keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}
@-ms-keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}
@-moz-keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; }
}
.mt-35{
margin-top: 35px;
}
.py-30{
padding: 30px 0;
}
.py-50{
padding: 50px 0;
}
.py-60{
padding: 60px 0;
}
.pt-50{
padding-top: 50px;
}
.pt-60{
padding-top: 60px;
}
.pb-50{
padding-bottom: 50px;
}
.pb-60{
padding-bottom: 60px;
}
.topmenu .navbar-nav{
display: block;
}
.topmenu .navbar-nav .dropdown-menu{
position: absolute;
}
.topmenu .navbar-nav .menu-item .dropdown-toggle::after{
display: none;
}
.navbar.navbar-default{
padding-bottom: 0;
}
.elementor-widget-container .page-header{
margin: 0;
}
#content.site-content {
margin-top: 0px;
} .topattach-section{
padding: 20px;
}
.boxshadow-inner{
position: relative;
z-index: 1000;
margin-top: -100px;
box-shadow: 0 0 15px 15px rgb(0 0 0 / 12%);
background: #fff;
border-radius: 5px;
padding: 50px 30px 50px;
box-shadow: 0 0 12px 4px rgb(255 11 85 / 30%);
border: 1px solid rgb(255 11 85 / 35%);
} .title-btmtxt{
font-size: 14px;
color: #000;font-weight: 500;
}
.intro-row{
align-items: center;
}
.rytinner-list .iconlist-blk{
display: flex;
align-items: center;
}
.rytinner-list .common-smlist-style li .fi{
font-size: 20px;
min-width: 42px;
min-height: 42px;
width: 42px;
height: 42px;
line-height: 40px;
}
.rytinner-list .common-smlist-style li .fi::before {
line-height: 42px;
font-size: 20px;
}
.common-rightsec{ padding-left: 4%;
}
.bottom-commongrid{
padding-top: 45px;
}
.rytinner-list li .fi{
font-size: 25px;
min-width: 52px;
min-height: 52px;
border-radius: 50%;
box-shadow: 0px 2px 8px rgb(0 0 0 / 35%);
transition: all 0.5s ease-in-out;
text-align: center;
line-height: 52px;
padding: 0;
background: #007ee5;
background: #0575E6;
background: #FF0B55;
color: #fff;
width: 52px;
height: 52px;
display: inline-block;
}
.rytinner-list li .fi::before {
line-height: 50px;
font-size: 25px;
}
.rytinner-list li span{
font-weight: 500;
}
.page-header-content .sub-title .inner-page{
color: #000;
}
.page-header-content .sub-title a{
color: #000;
}
.prcs_content_inner .prcswhle-img{
max-width: 100%;
width: 60px;
height: 60px;
}
.prcs_numblk .txGr{
background: linear-gradient(90deg,#ff0f7b,#f89b29);
border: none;
border-radius: 50%;
-webkit-border-radius: 50%;
color: #fff;
font-size: 25px;
font-weight: 600;
margin-top: 20px;
padding: 10px 10px;
width: 60px;
height: 60px;
display: block;
text-align: center; margin: 0 auto;
font-weight: bold;
position: relative;
z-index: 50;
background: #138808;
}
.process_innerblk .row:nth-child(even) .prcs_numblk .txGr{
background: #ef0107;
}
.process_innerblk .prcs_contmain {
border: 3px solid #ffd700;
border-radius: 15px;
padding: 25px 20px 12px;
text-align: center;
background: #ffd700;
}
.process_innerblk .row:hover .prcs_contmain,.process_innerblk .row:focus .prcs_contmain{
border-color: transparent;
box-shadow: 0 0 10px #ffff00;
}
.prcs_contmain .prcs_head{
color: #000;
font-size: 23px;
margin-bottom: 20px;
}
.prcs_contmain .prcs_inrtxt {
margin: 20px 0 0;
}
.prcs_contmain .prcs_inrtxt p{
text-align: center;
}
.process_innerblk .row.align-items-center{
position: relative;
}
.process_innerblk .row.align-items-center::before{
content: "";
width: 5px;
height: 100%;
background: linear-gradient(90deg,#ff0f7b,#f89b29);
position: absolute;
top: 0;
left: 0;
right: 0;
margin: 0 auto;
z-index: 10;
background: #138808;
}
.process_innerblk .row.align-items-center:nth-child(even)::before{
background: #ef0107;
}
.prcsmain_horzblk .prcshorz_emty {
width: 100%;
}
.prcshorz_inrblk {
position: relative;
}
.prcsmain_horzblk .prcshorz_inrblk::before{
content: "";
width: 2pt;
height: 60px;
position: absolute;
bottom: -23px;
left: 0;
right: 0;
margin: 0 auto;
z-index: -1; background: repeating-linear-gradient(180deg,  #ff0b55 0%,  #ff0b55 15%,  transparent 15%,  transparent 20%,  #0575e6 20%,  #0575e6 33%,  transparent 33%,  transparent 38%);
background-size: 100% 60px;
}
.prcsmain_horzblk.column-even .prcshorz_inrblk::before{
bottom: 0;top: -28px;
}
.process_horzinnerblk .prcsmain_horzblk .prcshorz_contmain{
display: flex;
flex-direction: column;
}
.process_horzinnerblk .prcsmain_horzblk.column-odd .prcshorz_contmain{
flex-direction: column;
}
.process_horzinnerblk .prcsmain_horzblk.column-even .prcshorz_contmain{
flex-direction: column-reverse;
}
.process_horzinnerblk .process_horzrow .prcsmain_horzblk{
position: relative;
}
.process_horzinnerblk .process_horzrow .prcsmain_horzblk::before{
content: "";
width: 100%;
height: 2pt;
background: linear-gradient(90deg,#ff0f7b,#f89b29);
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 0;
right: 0;
margin: 0 auto;
z-index: 10; background: repeating-linear-gradient(  90deg,  #ff0b55 0%,  #ff0b55 15%,  transparent 15%,  transparent 20%,  #0575e6 20%,  #0575e6 33%,  transparent 33%,  transparent 38%);
background-size: 80px 100%;
}
@keyframes moveStripes {
0% {
background-position: 0 0;
}
100% {
background-position: 80px 0;
}
}
.process_horzinnerblk .process_horzrow .prcsmain_horzblk.column-even::before{ background: repeating-linear-gradient(270deg,  #ff0b55 0%,  #ff0b55 15%,  transparent 15%,  transparent 20%,  #0575e6 20%,  #0575e6 33%,  transparent 33%,  transparent 38%);
background-size: 80px 100%;  
}
.prcsmain_horzblk .prcshorz_inrtxt {
padding: 15px 15px;
background: #fff;
box-shadow: 0 0 10px 2px rgb(0 0 0 / 30%);
border-radius: 5px; box-shadow: 0 0 8px 2px rgb(0 126 229 / 20%);
border: 1px solid rgb(0 126 229 / 30%);
} .prcshorz_contmain {
position: relative;
}
.prcshorz_numblk {
width: 60px;
height: 60px;
margin: 18px auto;
border-radius: 50%; background-color: #007ee5;  
background: linear-gradient(135deg,    #007ee5 20%,     #007ee5 30%,    #ff006e 85%,    #e21071 100%  );
text-align: center;
z-index: 10;
position: relative;
animation: boxpulse infinite 1.5s ease-in-out; margin: 22px auto;
}
.process_horzrow .prcsmain_horzblk.column-even .prcshorz_numblk{
}
.process_horzrow .prcsmain_horzblk p{
margin-bottom: 0;
}
.prcshorz_numblk span{
display: block;
}
.prcshorz_numblk{
color: #ff1493;
font-size: 30px;
}
.prcshorz_numblk .fi{
color: #fff;
font-size: 30px;
line-height: 67px;
}
.prcshorz_numblk .fi::before{
font-size: 30px;
line-height: 60px;
}
.process_horzinnerblk{
padding: 30px 0 0;
}
.page-header-content .inner-page{
color: #fff;
font-size: 48px;
font-weight: 600;
margin-bottom: 15px;
line-height: 65px;
display: inline-block;
} img.width100{
width: 100%;
}
.imgmain-bgpos{
position: relative;
}
.imgpos-section{
z-index: 10;
position: relative;
padding: 0 6% 6% 0;
}
.img-bgpos{
background: #0BDA51;
position: absolute;
top: 30px;
right: 0;
width: calc(100% - 18%);
height: calc(100% - 20px);
background: linear-gradient(180deg, #ADFF2F 0%, 23%, #0BDA51 46%, 73%, #40a829 100%);
}
.leftcol-imgblk{
float: left;
width: 50%;
}
.leftcol-imgblk.width43{
width: 43%;
}
.rightcol-imgblk{
float: right;
width: 50%;
}
.rightcol-imgblk.width43{
width: 43%;
}
.leftcol-imgblk.width45{
width: 45%;
}
.rightcol-imgblk.width45{
width: 45%;
}
img.width100{
width: 100%;
}
.imgmain-bgpos{
position: relative;
}
.imgpos-section{
z-index: 10;
position: relative;
padding: 0 6% 6% 0;
animation: hero-anim 2s infinite linear alternate-reverse;
}
.img-bgpos{
background: #0BDA51;
position: absolute;
top: 40px;
right: 0;
width: calc(100% - 50px);
height: calc(100% - 30px);    
background: linear-gradient(180deg, #fa479e 0%, 27%, #f20773 56%, #3295e7 100%);
background: linear-gradient(90deg,#0575E6 60%,#2e01ab );
margin: 0;
}
.imgpos-section img{
box-shadow: 0 0 2px 3px rgb(0 0 0 / 10%);
}
.imgpos-section .border-rad20{
border-radius: 0 40px 0 30px;
}
.imgpos-section img.boxsdw-none{
box-shadow: none;
}
.zigzag-leftsection .imgpos-section{
padding:  0 0 6% 6% ;
}
.zigzag-leftsection .img-bgpos{
right: auto;
left: 0;border-radius: 20px;
}
.hero-img-wrap .hero-text-element{
left: -30px;
}
.zigzag-leftsection .leftcol-imgblk{
margin-right: 30px;
}
.commombb-mainsection .custom-hovbutton {
background-color: #fff;
background-color: #000;
color: #fff;
display: inline-flex;
align-items: center;
font-size: 18px;
font-weight: 600;
line-height: 1;
padding: 17px 40px;
border-radius: 100px;
transition: all 0.3s ease-in-out;
overflow: hidden;
text-transform: capitalize;
position: relative;
z-index: 1;
}
.commombb-mainsection .custom-hovbutton i {
margin-left: 10px;
font-size: 16px;
margin-top: 1px;
}
.commombb-mainsection .custom-hovbutton:before {
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgba(255, 255, 255, 0.2);
background-color: #ff0b55;
transform-origin: right center;
transform: scale(0, 1);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
z-index: -1;
}
.commombb-mainsection .custom-hovbutton.whatapp-green:before{
background-color: #2ebf20;
}
.whychoose-section {
padding-top: 25px;
}
.section-heading .section-title span {
color: #007ee5;
}
.section-heading .section-title span.pinkclr-text {
color: #ff0b55;
}
.contact-rpwsinner .custom-hovbutton{
margin-top: 20px;
}
.commombb-mainsection .custom-hovbutton:before {
background-color: #ff0b55;
}
.commombb-mainsection .custom-hovbutton:hover {
}
.commombb-mainsection .custom-hovbutton:hover:before {
transform-origin: left center;
transform: scale(1, 1);
}
.contactsec-bg{
background-color: rgba(0,0,0,0.2);
background-attachment: fixed;
background-size: cover;
background-position: center center;
padding: 50px 0 40px;
position: relative;
z-index: 1;
}
.contactsec-bg::before {
content: "";
background: rgba(0,0,0,0.2);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.contact-rpwssection .common-head {
color: #fff;
font-size: 48px;
font-weight: 600;
margin-bottom: 15px;
line-height: 65px!important;
display: inline-block;
}
.contact-rpwssection p{
color: #fff;
}
.common-list-style li .flaticon-tick{
font-size: 22px;
color: #ff0b55;
font-weight: 500;
}
.blueclr-liststyle.common-list-style li .flaticon-tick{
color: #0575e6;
}
.right-rpwssection .common-list-style li{
margin-bottom: 8px;
}
.right-rpwssection .common-list-style li p{
font-weight: 500;
}
.border-withgradient{
justify-content: center;
align-items: center;
position: relative; padding: 30px;
border-radius: 12px;
overflow: hidden;    
z-index: 1;
border: 2px solid rgb(0 126 229 / 40%);
margin-bottom: 60px;
box-shadow: 4px 4px 5px 0 rgb(0 0 0 / 30%);
}
.border-withgradient.pinkborder-withgradient{
border: 2px solid rgb(255 11 85 / 30%);
box-shadow: 4px 4px 5px 0 rgb(0 0 0 / 30%);
}
.bottomshad-imgsec .gradbtm-posimage{
position: absolute;
bottom: 0;
left: 0;
object-fit: cover;
object-position: bottom;
width: 18%;z-index: -1;
}
.topshad-imgsec .gradbtm-posimage{
position: absolute;
top: 0;
right: -1px;
object-fit: cover;
object-position: bottom;
width: 18%;
transform: rotate(180deg);z-index: -1;
}
.border-withgradient .right-rpwssection{
padding-top: 10px;
padding-bottom: 10px;
}
.importance-row{
justify-content: center;
align-items: center;
overflow: hidden;
}
.halgradient-background{
background: linear-gradient(to right, #fff3f3 0%,#fff3f3 42%, #f1f7fe 42%,#f1f7fe 100%);
padding: 0;
}
.halgradient-bgrevert{
background: linear-gradient(to right, #f1f7fe 0%,#f1f7fe 42%, #fff3f3 42%,#fff3f3 100%);
padding: 0;
}
.pinkfull-bgsection{
background: #fff3f3;
padding: 30px;
box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%);
margin-top: 8px;
}
.bluefull-bgsection{
background: rgb(240 247 254 / 90%);
padding: 30px;
box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%);
margin-top: 8px;
}
.bluefull-bgsection.btwnblue-clrsection{
background: rgb(209 229 250 / 90%);
}
.pinkfull-bgsection.btwnpink-clrsection{
background: rgb(255 11 85 / 30%); }
.bluefull-bgsection.darkblue-clrsection{
background: rgb(67 163 242);
}
.pinkfull-bgsection.darkpink-clrsection{
background: rgb(255 11 85 / 30%);
background: #fb4b80;
}
.custom-tablewrap .customtable-datarow .tablecol-cmnblk .fi{
font-size: 22px;
}
.commombb-mainsection .darkpink-clrsection p, .commombb-mainsection .darkblue-clrsection p{
color: #fff;
}
.commombb-mainsection .darkpink-clrsection b, .commombb-mainsection .darkblue-clrsection b{
color: #000!important;
}
.commombb-mainsection .darkpink-clrsection .cuscmn-btmgrad .cushead-btmgradline-dash,.commombb-mainsection .darkblue-clrsection .cuscmn-btmgrad .cushead-btmgradline-dash{
color: #fff;
}
.commombb-mainsection.darkpink-clrsection p, .commombb-mainsection.darkblue-clrsection p{
color: #fff;
}
.commombb-mainsection.darkpink-clrsection b, .commombb-mainsection.darkblue-clrsection b{
color: #000!important;
}
.commombb-mainsection.darkpink-clrsection .cuscmn-btmgrad .cushead-btmgradline-dash,.commombb-mainsection.darkblue-clrsection .cuscmn-btmgrad .cushead-btmgradline-dash{
color: #fff;
}
.innerhd-cmntle{
position: relative;
}
.innerhd-cmntle .subtitle::after{
content: "";
display: block;
width: 46px;
height: 2px;
background: #000;
margin-top: 5px;
border-radius: 10px;
}
.single-working-process-one .inner-content .title::after {
content: "";
display: block;
width: 46px;
height: 2px;
background: #000;
margin-top: 5px;
border-radius: 10px;
}
.single-working-process-one .inner-content .title::after {
content: "";
display: block;
width: 46px;
height: 2px;
background: #000;
margin-top: 5px;
border-radius: 10px;
}
.single-working-process-one .inner-content .shine-text{
background-image: linear-gradient( to left, #007ee5 20%, #ff006e 30%, #007ee5 70%, #e21071 80% );
}
.right-rpwssection{
border-left: 1px dashed #ddd;
padding-left: 3%;
padding-top: 50px;
padding-bottom: 50px;
}
.left-rpwssection{
padding-right: 3%;
}
.single-working-process-one {
display: flex;
align-items: center;
gap: 110px;
margin-bottom: 40px;
}
.single-working-process-one .left {
position: relative;
z-index: 5;
}
.single-working-process-one .left .icon {
height: 110px;
width: 110px;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
border-radius: 10px;padding: 15px;
position: relative; box-shadow: inset 0 0 32px 2px rgb(0 0 0 / 20%), -4px 5px 5px 0 rgb(0 0 0 / 30%);
}
.single-working-process-one .left .icon::after {
position: absolute;
content: "";
background: #e50a4c;
border: 5px solid #fff;
border-radius: 20px;
height: 19px;
width: 19px;
background-repeat: no-repeat;
background-position: center;
right: -8px;
top: 50%;
transform: translateY(-50%);
}
.single-working-process-one .inner-content {
border-radius: 10px;
padding: 40px 50px;
padding: 26px 30px 12px;
background: #fff;
position: relative;
z-index: 1; box-shadow: inset 0 0 32px 2px rgb(30 141 232 / 20%), 4px 4px 5px 0 rgb(0 0 0 / 30%);
}
.single-working-process-one .inner-content .number-main {
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
}
.single-working-process-one .inner-content .number-main::before {
content: "";
position: absolute;
width: 150px;
border: 1px dashed #474E52;
left: -150px;
z-index: -2;
}
.single-working-process-one .inner-content .number {
color: #fff;
width: 32px;
height: 32px;
border-radius: 500%;
background: #e50a4c;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 600;
left: -16px;
z-index: -1;
position: absolute;
top: 50%;
transform: translateY(-16px);
}
.single-working-process-one .inner-content .number-main::after {
content: "";
position: absolute;
height: 50px;
width: 50px;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background: #fff;
z-index: -2;
border-radius: 50%;
}
.single-working-process-one .inner-content .title {
color: #fff;
font-size: 20px;
margin-bottom: 15px;
}
.single-working-process-one .inner-content p.disc {
color: #C9C9C9;
}
.blueclor-textlist .common-list-style li p{
color: #261bb8;
color: #007ee5;
font-weight: 400;
}
.blueclor-textlist .common-list-style li p b{
color: #ff0b55;
font-weight: 500;
}
.blueclor-textlist .common-list-style li .flaticon-tick{
color: #000;
}
.working-process-one{  }
.working-process-one .workprocess-mainsection {
background: #ff0b55; 
position: relative;
z-index: 1;
padding: 50px 30px;
border-radius: 0 20px;
}
.working-process-one .custom-bbcontainer{
position: relative;
}
.working-process-one .custom-bbcontainer::before {
content: "";
width: calc(100% + 10px);
height: calc(100% - 10px);
position: absolute;
background: #007ee5;
filter: blur(1px);
filter: drop-shadow(2px 3px 6px #ff0b55);
left: 10px;
right: auto;
top: 25px;
z-index: -1;
border-radius: 20px 5px;
width: 100%;
} .text-whitesection .cuscmn-mainhd .common-head{
color: #000;
}
.text-whitesection p,.text-whitesection li{
color: #fff;
}
.text-blacksection .cuscmn-mainhd .common-head{
color: #fff;
}
.text-blacksection p,.text-blacksection li{
color: #000;
}
.single-working-process-one .left .icon img{ width: 100%;
height: auto;object-fit: cover;
}
.cuscmn-btmgrad .cushead-btmgradline-dash{
color: #000;
padding-bottom: 20px;
margin-bottom: 25px;display: inline-block;position: relative;
}
.cuscmn-btmgrad .cushead-btmgradline-dash::after {
content: "";
width: 50%;
display: block;
height: 3px;
left: 0;
right: 0;
position: absolute;
margin: 0 auto 0;
background: #000;
border-radius: 5px;
bottom: 0;
background: linear-gradient(to right, transparent 0%,#0575E6 40%,#0575E6 60%,transparent 100%);
}
.darkblue-clrsection .cuscmn-btmgrad .cushead-btmgradline-dash::after{
background: linear-gradient(to right, transparent 0%,#000 40%,#000 60%,transparent 100%);
}
.darkpink-clrsection .cuscmn-btmgrad .cushead-btmgradline-dash::after{
background: linear-gradient(to right, transparent 0%,#000 40%,#000 60%,transparent 100%);
}
.halgradient-bgrevert .left-rpwssection{
padding-right: 35px;
}
.commombb-mainsection .custom-hovbutton i.fi{
margin: 0;
padding: 0;
line-height: 20px;
font-size: 20px;
}
.commombb-mainsection .custom-hovbutton i.fi:before{
margin: 0;
padding: 0;
line-height: 22px;
font-size: 25px; display: block;
}
.googlemeet-rpwssection .contact-rpwsinner .custom-hovbutton{
animation: pulse infinite 1.5s ease-in-out, boxpulse infinite 1.5s ease-in-out;
padding: 15px;
margin-top: 20px;
}
.contact-rpwsinner .custom-hovbutton.roundbtn{
animation: pulse infinite 1.5s ease-in-out, boxpulse infinite 1.5s ease-in-out;
padding: 15px;
}
.whatsapp-rpwssection{ }
.contact-rpwsinner .commonmain-innersetion{
position: relative;
}
.contactshape{
position: absolute;
z-index: -1;
bottom: 0;
right: 0;
} .borderbtm-headwrap{
position: relative;
}
.borderbtm-headwrap .bdrbtm-hdtle{
text-align: center;  
padding-bottom: 16px;
position: relative;
}
.borderbtm-headwrap .bdrbtm-hdtle:before {
width: 60px;
height: 7px;
display: block;
content: "";
position: absolute;
bottom: -1px;
left: 0;
right: 0;
margin: 0 auto;
z-index: 2;
background: linear-gradient(90deg,#0575E6 60%,#2e01ab );
border-radius: 10px;
}
.borderbtm-headwrap .bdrbtm-hdtle:after {
width: 200px;
height: 1px;
display: block;
content: "";
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
z-index: 1;
bottom: 2px;
background: linear-gradient(90deg,#0575E6 60%,#2e01ab );
}
.tab-content .borderbtm-headwrap .bdrbtm-hdtle:after{
bottom: 1px;
}
.borderbtm-headwrap.pinkclrhd-wrap .bdrbtm-hdtle:before,.borderbtm-headwrap.pinkclrhd-wrap .bdrbtm-hdtle:after{
color: #FF0B55;
}
.borderside-headwrap{
position: relative;
}
.borderside-headwrap .bdrside-hdtle{
text-align: center;  
padding-bottom: 16px;
position: relative;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.borderside-headwrap .bdrside-hdtle:after, .borderside-headwrap .bdrside-hdtle:before {
content: " ";
display: block;
border-bottom: 1px solid #FF0B55;
border-top: 1px solid #FF0B55;
height: 5px;
width: 100px;
background-color: transparent;
}
.sectionside-headwrap{
position: relative;
}
.imagetop-lftposition{
position: relative;
animation: about-anim 2s infinite linear alternate-reverse;
}
.imagetop-lftposition:before{
content: " ";
display: block;
border-bottom: 1px solid #0575e6;
border-top: 1px solid #0575e6;
height: 5px;
width: 100px;
background-color: transparent;
display: flex;
margin-left: 100px;
}
.arrowpos-image{
position: absolute;
width: 120px;
left: 0;
top: -15px;
}
.imagetop-rightposition{
position: relative;
animation: about-anim 2s infinite linear alternate-reverse;
padding-bottom: 35px;
}
.imagetop-rightposition:before{
content: " ";
display: block;
border-bottom: 1px solid #0575e6;
border-top: 1px solid #0575e6;
height: 5px;
width: 100px;
background-color: transparent;
display: flex;
margin-left: auto;
margin-right: 100px; position: absolute;
bottom: -17px;
left: auto;
right: 0;
}
.imagetop-rightposition .arrowpos-image{
position: absolute;
width: 120px;
left: auto;right: 0;    
top: -25px;
transform: rotate(180deg);
}
.crucial-section li, .crucial-section li p{
color: #0575e6;
}
.btmgrad-only.cuscmn-gradhd .cushead-gradline-dash{
padding-bottom: 20px;
}
.btmgrad-only.cuscmn-gradhd .cushead-gradline-dash::after{
bottom: 0; 
}
.borderside-headwrap .bdrside-hdtle{
text-align: center;  
padding-bottom: 16px;
position: relative;
} .sectionside-headwrap:before{
content: " ";
display: block;
border-bottom: 1px solid #FF0B55;
border-top: 1px solid #FF0B55;
height: 5px;
width: 100px;
background-color: transparent;
display: flex;
}
.sectionside-headwrap:after {
content: " ";
display: block;
border-bottom: 1px solid #FF0B55;
border-top: 1px solid #FF0B55;
height: 5px;
width: 100px;
background-color: transparent;
display: flex;
margin-left: auto;
}
.movingborder-grad {
position: relative;
padding: 20px;
padding: 20px 0;
border-radius: 0;
border: none;
margin-bottom: 10px;
}
.bdrside-dotsection.custom-bbcontainer{
position: relative;
}
.bdrside-dotsection.custom-bbcontainer:before {
content: "...";  display: block;
color: #ff0b55;
font-size: 30px;
font-weight: 500;
line-height: 10px;
position: absolute;
top: -8pt;
left: 105px;
letter-spacing: 2px;
}
.bdrside-dotsection.custom-bbcontainer:after {
content: "...";  display: block;
color: #ff0b55;
font-size: 30px;
font-weight: 500;
line-height: 10px;
position: absolute;
bottom: 2.5pt;
right: 105px;
letter-spacing: 2px;
}
.bdrside-dotsection.bdrside-bluedot.custom-bbcontainer:after,.bdrside-dotsection.bdrside-bluedot.custom-bbcontainer:before{
color: #007ee5;
}
.movingborder-grad::before,
.movingborder-grad::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
border-radius: inherit;
pointer-events: none;
}
.movingborder-grad::before {
top: 0;
left: 0;
border-top: 2pt dashed #ff0b55;
width: 100px;
height: 2pt;
z-index: -1;
border-radius: 0;
}
.movingborder-grad::after {
bottom: 0;
right: 0;
border-bottom:2pt dashed #ff0b55;  
width: 100px;
height: 2pt;
z-index: -1;
border-radius: 0;
} .movingborder-grad.bdrside-bluedot::before,.movingborder-grad.bdrside-bluedot::after{
border-color: #007ee5;
}
.customtable-nrmlrow .tablecol-center{
text-align: center;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
}
.custom-tablewrap .customtable-hdrow .tablecol-center{
text-align: center;
}
.custom-tablewrap .customtable-datarow .tablecol-cmnblk{
padding: 12px 20px;
}
.custom-tablewrap .customtable-hdrow .tablecol-cmnblk{
padding: 12px 20px;
background-color:#0575e6 ;
color: #fff;
}
.custom-tablewrap .customtable-hdrow .tablecol-cmnblk h4{
color: #fff;
}
.custom-tablewrap .customtable-datarow .tablecol-cmnblk p{
margin-bottom: 0;
}
.customtable-datarow .tablecol-center{
text-align: center;
border-right: 1px solid #0575e6;
border-left: 1px solid #0575e6;
color:#0575e6 ;
}
.customtable-datarow .tablecol-center h4{
color:#0575e6 ;
}
.custom-tablewrap .customtable-datarow .tablecol-cmnblk{
border-bottom: 2px solid #0575e6;
}
.custom-tablewrap .custom-tablewrap-inner{
box-shadow: 0 0 5px 2px rgba(0,0,0,0.3);  
border-radius: 8px;
position: relative;
margin-top: 20px;
}
.bdrbtm-none.customtable-datarow .tablecol-cmnblk{
border-bottom: none;
}
.customtable-hdrow .tablecol-left{
border-top-left-radius: 8px;
}
.customtable-hdrow .tablecol-right{
border-top-right-radius: 8px;
}
.audience-section .imagetop-rightposition{
padding-bottom: 0;
}
.audience-section .imagetop-rightposition .arrowpos-image{
margin-top: -50px;
top: 0;
bottom: 0;
}
.rprocess_wrapper .rpstep-singlewrap {
display: flex;
align-items: center;
gap: 30px;
padding-bottom: 5px;
position: relative;
z-index: 1;
}
.rpstep-singlewrap:after {
position: absolute;
content: "";
display: block;
width: 1px;
left: 19px;
top: 0;
bottom: 0;
margin: auto;
height: 100%;
background: #0575E6;
z-index: -1;
}
.rpstep-singlewrap:first-child:after{
height: 60%;
top: auto;
}
.rpstep-singlewrap:last-child:after{
height: 60%;
bottom: auto;
}
.rpstep-singlewrap .rpstep-number .rpnumber {
background: linear-gradient(150deg,#0575E6 60%,#2e01ab );
text-align: center;
font-size: 20px;
color: #fff;
line-height: 40px;
font-weight: 700;
border-radius: 50%;
width: 40px;
min-width: 40px;
display: block;
height: 40px;
}
.rpstep-singlewrap .rpstep-number{
position: relative;
z-index: 1;
}
.rpstep-singlewrap .rpstep-number:after {
position: absolute;
content: "";
display: block;
width: 50px;
left: 36px;
top: 19px;
bottom: 0;
margin: 0;
height: 1px;
background: #0575E6;
z-index: -1;
}
.rpstep-singlewrap .rpstep-image{
min-width: 60px;
width: 60px;
}
.rpstep-singlewrap .rpinner-content{
width: calc(100% - 60px);
display: flex;
align-items: center;    
padding: 12px 20px;
gap: 20px;
position: relative;
z-index: 1;
}
.rpstep-singlewrap.singlewrap-odd .rpinner-content{
background-color: #f8f8f8;  
}
.rpstep-singlewrap.singlewrap-even .rpinner-content{
background-color: #fff;  
}
.rpstep-singlewrap .rpinner-content .rpstep-title{
font-weight: 500;
margin-bottom: 0;
}
.rprocess_wrapper{
margin-top: 23px;
}
.department-row .common-list-wrap {
border-left: 1px dashed #ddd;
padding-left: 15px;
flex: 1 1 auto!important;
}
.department-row .common-list-wrap.bdrdshleft-none {
border-left: 1px dashed transparent;
padding-left: 0;
}
.department-row .common-list-style li .flaticon-tick{
font-size: 20px;
}
.pinkcolor-list .common-list-style li, .pinkcolor-list .common-list-style li p{
color: #ff0b55;
}
.pinkcolor-list .common-list-style li i{
color: #000;
}
.bluecolor-list .common-list-style li, .bluecolor-list .common-list-style li p{
color: #0575e6;
}
.bluecolor-list .common-list-style li i{
color: #000;
}
.department-col{
display: flex;
}
.boxoverlap-left .bxovrlp-lftinr{
background: #ff0b55;
padding-right: 50px;
align-items: center;
padding: 30px 35px;
display: flex;
z-index: 1;
color: #fff;
border-radius: 5px 5px 5px 40px;
}
.boxoverlap-blue .boxoverlap-left .bxovrlp-lftinr{
background: #007ee5;
}
.boxoverlap-left .bxovrlp-lftinr .common-head{
color: #fff;
}
.boxoverlap-left .cuscmn-btmgrad .cushead-btmgradline-dash{
color: #fff;
padding-right: 12px;
}
.boxoverlap-ryt .boxoverlap-inner{
background: #fff;
position: relative;
box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%);
padding: 20px 20px;
margin-top: 35px;
margin-left: -35px;
z-index: 10;
border-radius: 5px;
border: 1px solid rgba(0,0,0,0.3);
border-left: 4px solid #000;
}
.boxoverlap-row {
position: relative;
padding: 10px 0;
}
.boxoverlap-row:before, .boxoverlap-row:after {
content: "";
display: block;
border-bottom: 4px solid #ff0b55; height: 5px;
width: 100px;
background-color: transparent;
display: flex;
margin-left: 0;
position: absolute;
bottom: 0;
left: 0;
letter-spacing: 0;
}
.boxoverlap-blue.boxoverlap-row:before, .boxoverlap-blue.boxoverlap-row:after{
border-color: #007ee5  ;
}
.boxoverlap-row:before {
left: auto;
right: 0;
top: 0;
bottom: auto;
}
.boxoverlap-blue .cuscmn-btmgrad .cushead-btmgradline-dash::after{
background: linear-gradient(to right, transparent 0%,#cc0440 40%,#cc0440 60%,transparent 100%);
}
.rowreverse-overlap.boxoverlap-row{
flex-direction: row-reverse;
}
.rowreverse-overlap .boxoverlap-left .bxovrlp-lftinr{
border-radius: 5px 5px 40px 5px;
}
.rowreverse-overlap .boxoverlap-ryt .boxoverlap-inner{
margin-left: 0;
margin-right: -35px;
border-left:none;
border-right: 4px solid #000;
}
.lefttop-olapbdr.boxoverlap-row:before{
left: 0;
right: auto;
top: 0;
bottom: auto;
}
.lefttop-olapbdr.boxoverlap-row:after{
right: 0;
left: auto;
}
.contact-rpwssection .contact-actions {
display: flex;
flex-direction: row;
align-items: center;
gap: 0;
justify-content: center;
}
.contact-rpwssection .cmnbtn-wrp{
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
border-right: 1px dashed #bbb;
padding: 0 20px;
}
.contact-rpwssection .cmnbtn-wrp.border-rnone{
border-right: none;
}
.contact-rpwssection .closing-note {
margin-top: 30px;
font-style: italic;
font-size: 15px;
color: #fff;
}
.course-nav{
display: flex;
align-items: center;
justify-content: center;
column-gap: 10px;
flex-wrap: wrap;
row-gap: 15px;
}
.course-nav .nav-item .nav-link {
padding: 10px 30px 10px 55px;
border-radius: 5px;
border: none;
color: #000; position: relative;
font-size: 15px;
font-weight: 500;
min-width: 120px;   
flex-direction: row-reverse;
background: #fff;
border: 1px solid #ff0b55;
border-radius: 50px;
transition: all 1s ease-in-out;
}
.course-nav .nav-item .nav-link.active{
background: #007ee5;
color: #fff;
border: 1px solid #007ee5;
}
.course-nav .nav-item .nav-link .fi {
border: 1px solid #ff0b55;
color: #ff0b55;
display: block;
transition: all 1s ease-in-out;
position: absolute;
top: 0px;
left: -2px;
right: auto;
margin: 0 auto;
font-size: 20px;
width: 49px;
height: 49px;
border-radius: 50%;
background: #fff;
line-height: 52px;
}
.cmnhd-btmbdr .cushead-btmbdrline:before {
content: "";
width: 15px;
height: 14px;
background: #007ee5;
display: block;
margin-left: -13px;
}
.cmnhd-btmbdr:after {
content: "";
width: 80px;
height: 5px;
display: block;
background: #007ee5;
margin: 0 auto;
}
.cmnhd-btmbdr .cushead-btmbdrline::after {
content: "";
width: 40%;
display: block;
height: 1px;
left: 0;
right: 0;
position: absolute;
margin: 0 auto 0;
background: #000;
border-radius: 5px;
bottom: 0;
background: #007ee5;
margin-bottom: 5px;
}
.course-nav .nav-item .nav-link.active .fi{
background: #000;
border-color: #000;
color: #fff;
}
.cuscmn-mainhd.cmnhd-btmbdr{
position: relative;
margin: 0 auto;
display: flex;
text-align: center;
align-items: center;
justify-content: center;
flex-direction: column;
}
.cmnhd-btmbdr .cushead-btmbdrline{
padding-bottom: 10px;
}
.course-tab-content .common-head{
font-size: 28px;
line-height: 38px!important;
}
.horizontal-cmntab{
padding: 16px 0;
}
.horizontal-cmntab .horztab-cmntop{
padding-bottom: 25px;
}
.horizontal-cmntab .tab-pane{
box-shadow: 4px 4px 5px 5px rgb(0 0 0 / 30%);
border-radius: 0 0 10px;
padding: 40px 40px;
border-top: 5px solid #007ee5;
}
.horizontal-cmntab .tab-content li{
border-bottom: none;
}
.course-tab-content.tab-content{
margin: 0 auto!important;
}
.tab-content .common-list-style li{
border-bottom: none;
overflow: unset;
}
.tab-content .tab-pane{
box-shadow: 4px 4px 5px 5px rgb(0 0 0 / 30%);
border-radius: 0 0 10px;
padding: 40px 40px;
border-top: 5px solid #007ee5;
position: relative;
margin-top: 25px;
}
.tab-pane:before {
content: "";
width: 0;
height: 0;
display: inline-block;
vertical-align: middle;
border-style: solid;
border-width: 0 18px 20px 18px;
border-color: transparent transparent #007ee5 transparent;
position: absolute;
top: -23px;
left: 0;
right: 0;
margin: 0 auto;
}
.e-con.tab-pane:before {
content: "";
width: 0;
height: 0;
display: inline-block;
vertical-align: middle;
border-style: solid;
border-width: 0 18px 20px 18px;
border-color: transparent transparent #007ee5 transparent;
position: absolute;
top: -23px;
left: 0;
right: 0;
margin: 0 auto;
}
.course-nav .nav-item .nav-link:before {
content: "";
width: 0;
height: 0;
display: inline-block;
vertical-align: middle;
border-style: solid;
border-width: 10px 10px 0 10px;
border-color: #007ee5 transparent transparent transparent;
position: absolute;
bottom: -10px;
left: 0;
right: 0;
margin: 0 auto;
opacity: 0;
visibility: hidden;
}
.course-nav .nav-item .nav-link.active:before{
opacity: 1;
visibility: visible;
} .headoverlap-left .cuscmn-mainhd {
background: linear-gradient(90deg,#007ee5,#ff0f58);
border-radius: 11px;
box-shadow: 15px 13px 24px 0 rgb(0 0 0 / 56%);
padding: 30px 20px;
position: relative;
z-index: 1;
}
.hdovrlp-inner{ background: #f8f8f8;
border-radius: 12px;
padding: 40px 20px 30px 70px;
position: relative;
}
.headoverlap-left .common-head h1{
font-size: 36px;
color: #fff;
}
.mobile-center .image-cuscol{
padding: 0 5%;
}
.institutional-row .common-list-wrap .bold-text{
font-weight: 600;
color: #007ee5;
}
.institutional-row .mobile-left .common-list-wrap .bold-text{
font-weight: 600;
color: #ff0b55;
}
.allcontact-section{
padding-top: 50px;
}
.moving-img-wrap{
max-width: 700px;
position: relative;
margin: 0 auto 60px;
width: 100%;
}
.moving-img-wrap .moving-img-final img {
border-radius: 20px;
object-fit: cover;
width: 100%;
}
.moving-img-wrap .moving-text-element {
position: absolute;
top: 30%;
right: -30%;
border: 10px solid #fff;
border-radius: 50px;
padding: 50px 30px 45px;
max-width: 330px;
background: rgb(0 126 229 / 90%);
transform: translateY(-50%);
text-align: center;
}
.moving-title{
font-weight: 500;
margin: 0;
display: block;
}
.moving-text-element .count-topicon .fi{
font-size: 26px;
margin-bottom: 8px;
}
.moving-img-final{
text-align: center;
}
.jump-animate {
-webkit-animation: jumpAni 7s linear infinite;
animation: jumpAni 7s linear infinite;
}
@-webkit-keyframes jumpAni {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes jumpAni {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.fancy-animation {
-webkit-animation: morph 6s ease-in-out infinite;
animation: morph 6s ease-in-out infinite;
}
@-webkit-keyframes morph {
0% {
border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
}
50% {
border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
}
100% {
border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
}
}
.moving-shapeimg{
position: absolute;
width: 250px;
height: 250px;
background: #ff2155;
left: -60px;
z-index: -1;
bottom: -60px;
background: linear-gradient(180deg, #f794c4 0%, 23%, #f9c9df 46%, 73%, #69b7f7 100%);
}
@keyframes morph {
0% {
border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
}
50% {
border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
}
100% {
border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
}
}
.commonrow-block .cmnrow-inrblk{
display: flex;
}
.commonrow-block .content-item{
display: flex;
align-items: center;
padding: 30px;
border: 1px solid #E0E5EB;
border-radius: 10px;
gap: 20px;
}
.commonrow-block .content-item .icon{
background-color: #ECF3F8;
height: 85px;
width: 85px;
min-width: 85px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease-in-out;
padding: 16px;
flex: 1 1 auto;
}
.commonrow-block .content-item:hover{ border: 1px solid rgb(0 126 229 / 20%);
box-shadow: 0px 10px 25px rgb(0 126 229 / 20%);
}
.commonrow-block .content-item:hover .icon{
background-color: #007ee5;
}
.commonrow-block .content-item:hover .icon img{
filter: brightness(0) invert(1);
}
.keyproblem-section .commonrow-wrap .commonrow-block {
justify-content: center;
}
.Benefit-section .left-rpwssection .common-list-wrap{
padding-top: 15px;
}
.content-needtxt{
color: #01bb01;
font-weight: 500;
} .faq_blks .accordion .card .card-header{
border-radius: 8px 8px 0 0;
border: 1px solid transparent;
box-sizing: border-box; 
margin-bottom: 0;
padding: 14px 58px 14px 20px;
position: relative;    
background: linear-gradient(270deg,#0575E6,#2e01ab );
background: linear-gradient(270deg,#0575e6,#ff0b55 );
border: none;
color: #fff;
background-color: #0575e6;
}
.faq_blks .accordion .card .card-header .accordion-button{
font-size: 18px;
line-height: 31px;
color: #fff;
cursor: pointer;
padding: 0;
border: none;
position: static;
}
.faq_blks .accordion .card .card-header i{
color: #04031B;
width: 32px;
height: 32px;
border-radius: 50%;
text-align: center;
position: absolute;
right: 20px;
top: 50%; 
transform: translateY(-50%);
font-weight: normal;
background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
box-shadow: 0px 0px 17.0303px #00bcd4, 0px 0px 65.9298px #00bcd4, inset 0px 0px 6.59298px #00bcd4;
box-shadow: 0px 0px 17.0303px #0575e6, 0px 0px 65.9298px #0575e6, inset 0px 0px 6.59298px #0575e6; }
.faq_blks .accordion .card .card-header i:before{
font-size: 22px;
line-height: 32px;
} .faq_blks .accordion-button .fa::before {
content: "\f106";
line-height: 32px!important;
}
.faq_blks .accordion-button.collapsed .fa::before{
content: "\f107";
line-height: 32px!important;
}
.accordion-button::after{
display: none;
} .faq_blks .accordion .card .card-body p{
font-weight: normal;
font-size: 14pxrem;
line-height: 28px;
color: #fff; 
margin-bottom: 20px;
}
.faq_blks .accordion .card .card-header .accordion-button span{
color: #fff;
}
.faq_blks .accordion .card{
background: transparent;border: none;margin-bottom: 15px;box-shadow: none;
}
.faq_blks .accordion .card .card-body{
padding: 20px 15px 2px;
background: rgb(30 65 159 / 30%);
border-radius: 0 0 8px 8px;
background: linear-gradient(270deg,#0575e6,#ff0b55 );
border-top: 1px solid rgba(0,0,0,0.3);
}
.course-tab-content .tab-pane .e-grid{
grid-template-rows: auto 1fr!important;
}
.course-tab-content .toptab-head{
font-size: 36px;
line-height: 48px!important;
}
.introparts-section .boxoverlap-row{
padding-bottom: 25px;
}
.sevice_clm.pinkclr-bgcol{
background: rgb(255 11 85 / 4%);
border: 1px solid rgb(255 11 85 / 30%);
}
.pinkclr-bgcol .srvce_botcont h4{
color: #007ee5;
}
.course-tab-content .commombb-mainsection p{
text-align: justify;
margin-bottom: 0;
}
.course-tab-content .commombb-mainsection .common-list-style li.tick-before p{
text-align: left;
}
.aimbottom-section .common-list-wrap h5.title{
margin: 15px 0!important;
}
.zigright-bdrsec{
width: 35%;
margin-left: 5%;
}
.zigright-bdrsec .imgpos-section{
background: linear-gradient(45deg,#ffdbe8,#cafdff);
padding: 20px 25px;    
border-right: 5px solid #007ee5;
border-radius: 15px 0 0 15px;
animation: hero-anim 2s infinite linear alternate-reverse;
}
.zigright-bdrsec .imgpos-section p{
color: #007ee5;
font-weight: 500;
}
.zigright-bdrsec .imgpos-section p.zigbdr-tle{
font-weight: 500;
font-size: 16px;
color: #ff0b55;
margin-bottom: 20px;
}
.zigright-bdrsec .common-list-style li.tick-before .fi{
color: #ff0b55;
}
.fivecstep-section .rpstep-singlewrap .rpinner-content{
padding: 18px 20px;
gap: 25px;
}
.fivecstep-section .rpstep-singlewrap h5.rpstep-title{
font-weight: 500;
margin-bottom: 10px;
font-size: 18px;
color: #ff0b55;
}
.fivecstep-section .rpstep-singlewrap.singlewrap-odd .rpinner-content .rpstep-title{
color: #007ee5;
}
.colbxshdw-wrap .colbxshdw-block{
background: rgba(255, 255, 255, 0.15);
box-shadow: 0px 7px 35px rgb(18 38 37 / 13%); border-radius: 20px;
padding: 40px;
position: relative;
z-index: 1;
overflow: hidden;
transition: all 0.5s ease-in-out;
border: 1px solid rgb(255 11 85 / 10%);
}
.colbxshdw-wrap .colbxshdw-block .boxshdw-shape {
background: rgb(255 11 85 / 38%);
filter: blur(50px);
width: 80px;
height: 80px;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.colbxshdw-wrap .colbxshdw-block.bluebx-shdw .boxshdw-shape{  
background: rgb(0 126 229 / 50%);
}
.colbxshdw-wrap .colbxshdw-block.bluebx-shdw{
border: 1px solid rgb(0 126 229 / 10%);
}
.colbxshdw-block.bluebx-shdw .boxshdw-title h5{
color: #007ee5;
}
.padsm-blkwrap .colbxshdw-wrap .colbxshdw-block{
padding: 30px 25px;
}
.colbxshdw-wrap.colbxshdw-midwrap .colbxshdw-block .boxshdw-shape{
opacity: 0;
visibility: hidden;
}
.colbxshdw-wrap.colbxshdw-evenwrap .colbxshdw-block .boxshdw-shape{
left: auto;
right: 0;
}
.colbxshdw-wrap{
margin-bottom: 20px;
display: flex;
}
.colbxshdw-wrap .colbxshdw-block:hover {
transform: translateY(-8px);
}
.colbxshdw-block .boxshdw-title{
text-align: center;
}
.colbxshdw-block .boxshdw-title h5{
font-size: 20px;
line-height: 32px;
margin-bottom: 10px;
color: #ff0b55;
}
.cuscmn-colbxshdw{
margin: 5px 0 38px;
}
.fullshdw-bgwrap{
position: relative;
z-index: 1;
overflow: hidden;
padding: 52px 30px 20px;
border-radius: 20px;
border: 1px solid rgb(255 11 85 / 10%);
margin-top: -32px;
width: calc(100% - 100px);
margin-left: auto;
}
.fullshdw-bgwrap::before{
content: "";
display: block;
width: 100%;
height: 100%;
background: rgb(255 11 85 / 10%);
filter: blur(50px);
z-index: -1;
position: absolute;
left: 0;
top: 0;
}
.fullshdw-bgwrap.blueshdw-bgwrap:before{  
background: rgb(0 126 229 / 10%);
border: 1px solid rgb(0 126 229 / 20%);
}
.fullshdw-bgsection .overlap-tophead{
background: #ff0b55;
width: auto;
display: inline-flex;
padding: 14px 20px 16px;
border-radius: 10px;
margin-bottom: 0;
box-shadow: 5px 7px 14px 0 rgb(0 0 0 / 37%);
}
.fullshdw-bgsection.fullshdw-bgblue .overlap-tophead{
background: #007ee5;
}
.fullshdw-bgsection .overlap-tophead .common-head{
color: #fff;
}
.common-list-style.rythorz-listwrap{
display: flex;
flex-wrap: wrap;
}
.common-list-style.rythorz-listwrap li{
text-align: left;
width: 50%;
padding: 0 10px;
}
.common-list-style.rythorz-listwrap li p{
text-align: left;
}
.fullclrbg-row{
border-radius: 300px;
background: rgb(0 126 229 / 10%);
border: 1px solid rgb(0 126 229 / 20%);
padding: 40px 50px 40px;
align-items: center;
}
.rythorz-listwrap{
border-left: 1px dashed #77bbf4;
padding: 10px 20px;
}
.cusinner-title{
font-size: 20px;
line-height: 32px!important;
}
b.fw500{
font-weight: 500;
} .fullclr-boxfillbg{
border-radius: 5px;
background: #fff;
border: 1px solid rgb(255 11 85 / 50%);
padding: 0 ;
}
.fullclr-boxfillbg .fulclr-boxblk{  
border-bottom:1px solid rgb(255 11 85 / 30%);
border-radius: 5px 5px 0 0;
padding-bottom: 35px;
padding-top: 35px;
padding-left: 4%;
padding-right: 4%;
margin-bottom: 20px;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
background: linear-gradient(125deg,#ffdbe8 0%,#ffdbe8 36%,#cafdff 38%,#cafdff 100%);
background: linear-gradient(125deg,#ffdbe8 0%,#ffdbe8 36%,#cce8fa 38%,#cafdff 100%);
}
.fulclrlist{
padding: 0 4% 35px;
position: relative;
overflow: hidden;
z-index: 1;
}
.fulclrlist:before{
content: "";
width: 28%;
height: 35%;
background: #cafdff;
background: #ffdbe8;
display: block;
position: absolute;
right: 0;
bottom: 0;
transform: skew(-15deg, 0deg);
bottom: 0;
right: -3px;
transform: skew(0,-31deg);
transform-origin: bottom right;
filter: blur(15px);
z-index: -1;
}
.fulclr-boxblk .fboxblk-head{
width: 35%;
text-align: left;
padding-right: 4%;
}
.fulclr-boxblk .fboxblk-hdcont{
width: 65%;
padding-left: 5%;
}
.fulclrlist .fulclrbx{
background-color: #fff
transition: .5s all ease;
padding: 22px 0 0;
} .common-list-wrap .list-title{
font-weight: 500;
font-size: 18px;
margin-bottom: 20px;
}
.listbdr-cmnbg {
border-left: 5px solid #007ee5;
padding: 10px 25px;
background: rgb(255 10 84 / 14%);
background: linear-gradient(45deg,#ffdbe8,#cafdff);
border-radius: 0 10px 10px 0;
height: 100%;
padding: 20px 25px 10px;
box-shadow: 0 6px 10px rgb(0 0 1 / 20%);
}
.listbdr-cmnbg li p b{
font-size: 16px;
width: 20px;
display: inline-block;
vertical-align: middle;
}
.listbdr-cmnbg li p{
font-weight: 500;
}
.construct-mixedsection .common-list-wrap{
margin-bottom: 20px;
}
.common-list-wrap .listbold-txt{
margin-right: 10px;
}
.scroll-btn {
position: fixed;
bottom: 40px;
right: 20px;
background: #21527B;
color: white;
padding: 10px 15px;
border-radius: 30px;
display: none;
z-index: 999;
text-decoration: none;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
transition: opacity 0.3s ease;
}
.scroll-btn.show {
display: block;
} @keyframes shakebg {
0% {
transform: rotate(10.07deg) scale(1);
}
50% {
transform: rotate(-10.07deg) scale(1); }
100% {
transform: rotate(10.07deg) scale(1);
}
}
.pinkcontain-boxshadow .zigzag-leftsection .img-bgpos {
right: auto;
left: 0; background: linear-gradient(180deg, #f794c4 0%, 23%, #f9c9df 46%, 73%, #69b7f7 100%);
opacity: 0.3;
filter: blur(1.1px);
border-radius: 40px;
transform: rotate(-10.07deg);
width: calc(100% - 40px);
height: calc(100% - 30px);
display: block;
position: absolute;
left: 5%;
top: 0;
z-index: -2;
animation: shakebg 8s 0s ease infinite;
}
.pinkcontain-boxshadow .zigzag-leftsection .imgpos-section{
animation: none;
}
.containbox-cmngrad{
background: linear-gradient(180deg, rgb(247 148 196 / 30%) 0%, 23%, rgb(249 201 223 / 30%) 46%, 73%, rgb(105 183 247 / 30%) 100%);
border-radius: 50px;
margin: 70px auto;
padding: 40px 50px;
border: 1px solid #e4e9f9;
position: relative;
background: linear-gradient(180deg, #fde2ef 0%, 23%, rgb(248 232 242) 46%, 73%, rgb(215 233 252) 100%);
background: linear-gradient(180deg, #ffdbe8 0%, 23%, rgb(248 232 242) 46%, 73%, #cafdff 100%);
background: linear-gradient(45deg,#ffdbe8,#cafdff);
}
.containbox-cmngrad::before{
content: "";
background: linear-gradient(180deg, rgb(247 148 196 / 50%) 0%, 23%, rgb(249 201 223 / 50%) 46%, 73%, rgb(105 183 247 / 50%) 100%);
opacity: 0.3;
filter: blur(1.1px);
border-radius: 40px;
transform: rotate3d(1, 1, 1, -14deg);
width: calc(100% + 20px);
height: calc(100% - 20px);
display: block;
position: absolute;
left: -1%;
top: 0;
z-index: -2;
opacity: 0.4;
filter: blur(1.08px);
background: linear-gradient(45deg, #ffdbe8 0%, 23%, rgb(248 232 242) 46%, 73%, #cafdff 100%);
}
.rytinner-list li .fi{
font-size: 14px;
min-width: 28px;
min-height: 28px;
width: 28px;
height: 28px;
line-height: 25px;
}
.rytinner-list li .fi::before {
line-height: 28px;
font-size: 12px;
}
.rytinner-list .common-smlist-style li .fi{
font-size: 14px;
min-width: 28px;
min-height: 28px;
width: 28px;
height: 28px;
line-height: 25px;
}
.rytinner-list .common-smlist-style li .fi::before {
line-height: 28px;
font-size: 12px;
}
.rytinner-list .common-smlist-style.common-onlyicon-list li .fi{
background: transparent;
color: #007ee5;
box-shadow: 0px 2px 4px 2px rgb(0 126 229 / 35%);
}
.rytinner-list .common-smlist-style.common-onlyicon-list li .fi::before{
line-height: 28px;
font-size: 15px;
}
.prcshorz_numblk .fi::before {
font-size: 16px;
line-height: 35px;
}
.prcshorz_numblk .fi {
color: #fff;
font-size: 16px;
line-height: 35px;
}
.prcshorz_numblk {
width: 35px;
height: 35px;
}
.dashbdr-multi {
width: 100%;
height: 1px;
display: block;
position: relative;
margin-bottom: 0em;
padding: 2em 0;
}
.dashbdr-multi:after, .dashbdr-multi:before {
content: "";
position: absolute;
width: 100%;
height: 1px;
bottom: 50%;
left: 0;
}
.dashbdr-multi:before {
background: linear-gradient(90deg, #10111F 0%, #10111F 50%, transparent 50%, transparent 100%);
background-size: 15px;
background-position: center;
z-index: 1;
}
.dashbdr-multi:after {
transition: opacity 0.3s ease, animation 0.3s ease;
background: linear-gradient(to right, #04f316 5%, #f3f703 15%, #f9e804 25%, #34ef28 35%, #18cf15 45%, #e9e680 55%, #a6e708 65%, #08e9d5 75%, #07fde7 85%, #05f782 95%);
background-size: 200%;
background-position: 0%;
animation: bar 15s linear infinite;
}
@keyframes bar {
0% {
background-position: 0%;
}
100% {
background-position: 200%;
}
}
.prcsmain_horzblk .prcshorz_inrtxt::after {
content: "";
width: 55px;
height: 30px;
background: rgb(0 126 229 / 50%);
display: block;
position: absolute;
right: 0;
bottom: 0;
transform: skew(-15deg, 0deg);
bottom: 0;
right: -3px;    
transform: skew(0,-31deg);
transform-origin: bottom right;
filter: blur(4.5px);
}
.prcsmain_horzblk .prcshorz_inrtxt{
overflow: hidden;
}
.whychoose-section .bdrside-dotsection.custom-bbcontainer:before,.whychoose-section .bdrside-dotsection.custom-bbcontainer:after{
display: none;
}
.whychoose-section .movingborder-grad::before,.whychoose-section .movingborder-grad::after{
background: repeating-linear-gradient( 45deg, #ff0b55 0%, #ff0b55 18%, transparent 18%, transparent 25% );
background-size: 80px 100%;
height: 3pt;
width: 12%;
border: none;
}
.audience-section .btmdouble-contain:before,.audience-section .btmdouble-contain:after{
display: none;
} .chooseright-section .btmdouble-contain:before,.chooseright-section .btmdouble-contain:after{
display: none;
}
.chooseright-section .bordertop-btmdouble:before,.chooseright-section .bordertop-btmdouble:after{  
height: 11px;
background-image: linear-gradient(45deg, #ff0b55 25%, transparent 25%), linear-gradient(-45deg, #ff0b55 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ff0b55 75%), linear-gradient(-45deg, transparent 75%, #ff0b55 75%);
background-size: 11px 11px;
background-position: center;
background-repeat: repeat-x;
width: 20%;
border: none;
}
.chooseright-section .bordertop-btmdouble{
padding: 40px 0 30px;
}
.rpstep-singlewrap .rpstep-number .rpnumber{
font-size: 12px;
width: 28px;
min-width: 28px;
height: 28px;
line-height: 29px;
font-weight: 600;
}
.rpstep-singlewrap .rpstep-number:after{
width: 70px;
left: 15px;
top: 13px;
}
.rpstep-singlewrap:after{
left: 13px;
}
.rpstep-singlewrap:last-child:after{
height: 58%;
}
.support-contactinner .contact-container {
background: rgba(255, 255, 255, 0.15);
box-shadow: 0px 10px 35px rgb(18 38 37 / 15%);    
border-radius: 20px; overflow: hidden;
display: flex;
flex-wrap: wrap;
}
.support-contactinner .left-panel {
background: linear-gradient(135deg, #007ee5, #00c3ff);
color: white;
padding: 40px 30px; display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.support-contactinner .left-panel h2 {
font-size: 30px;
font-weight: 700;
color: #fff;
line-height: 42px!important;
padding-bottom: 12px;
}
.support-contactinner .left-panel p {
margin-top: 15px;
line-height: 1.6;
color: #fff;
text-align: center;
}
.support-contactinner .right-panel {
padding: 50px 40px; }
.support-contactinner .contact-rpwsinner .custom-hovbutton.roundbtn{
padding: 12px;
animation: boxpulse infinite 1.5s ease-in-out;
background: transparent;  
}
.contact-rpwsinner .sprtcon-btxt{
font-weight: 500;
}
.support-contactinner .form-group {
margin-bottom: 28px;
}
.support-contactinner input.form-control{
height: 50px;
}
.support-contactinner .form-control {
border-radius: 8px;
box-shadow: none;
transition: all 0.3s ease;
border: 1px solid #dfdbdc;
color: #000;
box-shadow: 0 3px 6px rgb(0 0 0 / 18%);
padding: 5px 20px;
}
.support-contactinner .form-group.btnform-group{
text-align: center;
padding-top: 20px;
margin-bottom: 0;
}
.support-contactinner .form-control:focus {
border-color: #007ee5;
box-shadow: 0 0 0 0.2rem rgba(0, 126, 229, 0.25);
}
.support-contactinner .btn-custom {
background: linear-gradient(135deg, #007ee5, #00c3ff);
background: linear-gradient(135deg, #007ee5 10%, #00c3ff 100%);
border: none;
color: white;
border-radius: 10px;
padding: 12px 25px;
font-weight: 600;
position: relative;
overflow: hidden;
transition: all 0.3s ease-in-out;
z-index: 1;
font-size: 15px;
}
.support-contactinner .btn-custom:hover {
background: linear-gradient(135deg, #006ac0, #00b0e0);
color: #fff;
}
.support-contactinner .btn-custom:focus,.support-contactinner .btn-custom:active {
background: linear-gradient(135deg, #006ac0, #00b0e0);
color: #fff;
}
.support-contactinner .btn-custom::before {
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgba(255, 255, 255, 0.2);
transform-origin: right center;
transform: scale(0, 1);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
z-index: -1;
}
.support-contactinner .btn-custom:active::before,.support-contactinner .btn-custom:hover::before {
transform-origin: left center;
transform: scale(1, 1);
}
.support-contactinner .support-form{
padding-top: 20px;
}
.shake {
animation: shake 0.3s ease-in-out 1;
}
@keyframes shake {
0%, 100% { transform: translateX(0); }
25% { transform: translateX(-5px); }
50% { transform: translateX(5px); }
75% { transform: translateX(-5px); }
}
.support-overlayinner.support-contactinner .left-panel{
background: none;
padding: 40px 0;
}
.support-overlayinner.support-contactinner .contact-container{
background: none;
box-shadow: none;
border-radius: 0;
overflow: unset;
}
.support-overlayinner.support-contactinner .suprtleft-cont{
background-color: #007ee5;
background: linear-gradient(135deg, #007ee5 10%, #00c3ff 100%);
z-index: 1;
padding: 20px 30px 30px;
margin-right: -25%;
border-radius: 2px;
}
.support-overlayinner.support-contactinner .sprtpink-section .suprtleft-cont{
background-color: #ff0b55;
background: radial-gradient(circle, #ff0b55, #ff4f81);
}
.support-contactinner .left-panel.sprtpink-ntovrlysection{
background-color: #ff0b55;
background: radial-gradient(circle, #ff0b55, #ff4f81);
}
.support-overlayinner .supwhite-section .cmnbtn-wrp .cmnbtn-innerwrp {
background: #fff;
height: 100%;
padding: 18px 8px;
border-radius: 5px;
box-shadow: 0 2px 7px rgb(0 0 0 / 15%);
}
.support-overlayinner .supwhite-section .cmnbtn-wrp {
margin-bottom: 12px;
border-bottom: none;
border-right: none;
padding-top: 0;
padding-bottom: 0;
padding-right: 5px;
padding-left: 5px;
}
.support-overlayinner .cmnbtn-wrp{  
border-right: 1px dashed rgba(255,255,255,0.6);
padding: 20px 15px;
padding: 20px 5px;
}
.support-overlayinner .cmnbtn-wrp.gmeet-btn , .support-overlayinner .cmnbtn-wrp.phone-btn{
border-bottom: 1px dashed rgba(255,255,255,0.6);
}
.support-overlayinner .supwhite-section .cmnbtn-wrp.gmeet-btn , .support-overlayinner .supwhite-section .cmnbtn-wrp.phone-btn{
border-bottom: none;
}
.support-overlayinner .cmnbtn-wrp .fi{
font-size: 21px;
}
.support-overlayinner .cmnbtn-wrp.border-rnone{
border-right: none;
}
.support-overlayinner .supwhite-section .fi{
color: #ff0b55;
font-size: 22px;
}
.support-overlayinner .suprt-btn{
margin-bottom: 10px;
display: block;
}
.support-overlayinner .sprtcon-head{
font-size: 18px;display: block;color: #fff;
}
.support-overlayinner .sprtcon-btxt{
color: #000;color: #fff;
font-size: 14px;display: block;
word-break: break-word;
overflow-wrap: anywhere;
white-space: normal;
}
.support-overlayinner .supwhite-section .sprtcon-btxt{
color: #000;
}
.support-overlayinner .supwhite-section .sprtcon-head{
color: #000;
}
.support-overlayinner.support-contactinner .right-panel{
border-radius: 2px;
margin-left: auto;
padding-left: 12%;
background: rgba(255, 255, 255, 0.15);
box-shadow: 0px 10px 35px rgb(18 38 37 / 15%);
border-radius: 2px;
} .page-id-11368 .cuscommon-phdfooter{
display: none;
}
.page-id-11368 .navbar .topright{
align-items: flex-end;
display: flex;
flex-wrap: wrap;
float: none;
justify-content: flex-end;
flex-direction: column;
padding-left: 0;
padding-right: 0;
}
.page-id-11368 .navbar .topright ul.socialicons{
margin: 0 0 10px;
}
.page-id-11368 .topryt-inner p{
margin-top: 0;
margin-bottom: 10px;
}
.page-id-11368 .topryt-inner .topryt-subtext{
display: none;
}
.page-id-11368 .topright p a{
color: #ff0b55 !important;
color: #000 !important;
font-weight: 500;
font-size: 15px;
}
.page-id-11368 .topright p{
display: flex;
align-items: center;
}
.page-id-11368 .topright .topryt-sublink:before{
font-family: uicons-solid-rounded !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 30px;
-webkit-font-smoothing: antialiased;
margin-right: 12px;
font-size: 16px;
display: block;
color: #ff0b55;
} .page-id-11368 .topmenu{
display: none;
}
.page-id-11368 .topright .topryt-sublink{
display: flex;
align-items: center;
}
.page-id-11368 .topright .callus-head .topryt-sublink:before{
content: "\fa43";
}
.page-id-11368 .topright .emailus-head .topryt-sublink:before{
content: "\f5d1";
}
.page-id-11368 .navbar-header #logo {
padding: 0 30px 0 0;
}
.page-id-11368 .navbar-header #logo img{
width: 60%;
}
.page-id-11368 .headerrow{
padding-top: 0!important;
display: flex;
align-items: center;width: 80%;
}
.page-id-11368 .headerimg .headerrow img{
margin-top: 0!important;
}
.page-id-11368 .navbar.navbar-default{
background: #fff;border: none;padding-top: 18px;
}
.page-id-11368 .topmid h2{
margin: 10px 0px 0;
}
.page-id-11368 .topright .dsupport-nonerpwspg{
display: none!important;
}
.page-id-11368 .topright .whatsapp-head.dblock-rpwspage{
display: block!important;
}
.page-id-11368 .topright .topryt-sublink.whatsapplink:before{
content: "\f1d2";
font-family: uicons-brands !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.page-id-11368 .site-footer{
display: none;
}
.page-id-11368 .search-input1{
display: none;
}
.page-id-11368 #footer-area{
display: none;
}
.page-id-11368 .site-content.container{
padding-bottom: 0;
} .customphd-header a.active{
color: #ff0055; 
font-weight: bold;  
}
.customphd-scrollhdsection.scrolheader-overlay{margin-bottom: -30px;}
.customphd-scrollhdsection.scrolheader-overlay .cusphd-scrolheadinner{
background: #000;border-radius: 100px;
}
.customphd-scrollhdsection {
background: #000;
background: none;    
z-index: 99999;
position: relative;
margin-top: 10px;
border-top: 1px solid rgba(0, 0, 0, 0.1);
margin-bottom: 8px;
}
.customphd-scrolheader.scrolheader-dark{
background: #000;
}
.customphd-scrolheader{
-webkit-transition: 0.4s ease-in-out;
transition: 0.4s ease-in-out;    
}
.cusphd-scrolheadinner{
-webkit-transition: 0.8s ease-in-out;
transition: 0.8s ease-in-out;
}
.customphd-scrolheader.fixed-top-custom {
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
z-index: 9999;
background: #fff;     
-webkit-animation: stickyAni 0.4s ease-in-out;
animation: stickyAni 0.4s ease-in-out; box-shadow: 0 8px 12px rgb(0 0 0 / 30%);
padding: 12px 10px;
}
.scrolheader-light.customphd-scrolheader .scrolhd-list .scrolhd-links:after{
content: "";
width: 22px;
display: block;
height: 3pt;
background: #00bbfc;
background: #ff3e76;
border-radius: 10pt;    
position: absolute;
left: 0;
bottom: -2pt;
transition: 0.8s ease-in-out;
}
.scrolheader-light.customphd-scrolheader .scrolhd-list .scrolhd-links:hover:after{
background: #00bbfc;
width: 100%;
}
.scrolheader-light.customphd-scrolheader .scrolhd-list .scrolhd-links.active:after{
background: #00bbfc;
width: 100%;
}
@keyframes stickyAni {
0% {
-webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
transform: translate3d(0, -40px, 0) scaleY(0.8);
opacity: 0.7;
}
100% {
-webkit-transform: translate3d(0, 0, 0) scaleY(1);
transform: translate3d(0, 0, 0) scaleY(1);
opacity: 1;
}
}
.customphd-scrolheader .scrolhd-list .scrolhd-listitems{
margin: 0 5px;
padding: 13px 30px;
}
.customphd-scrolheader .scrolhd-list {
list-style: none;
display: flex;
align-items: center;
justify-content: center;
}
.customphd-scrolheader .scrolhd-list .scrolhd-links{
color: #000;
display: block;
padding: 0;
font-size: 15px;
font-weight: 500;
line-height: 32px;
font-family: var(--ed-ff-heading);
border-bottom: 1px solid #a7a0a0;
position: relative;
}
.customphd-scrolheader .scrolhd-list .scrolhd-links.active{
color: #ff0055; 
}
.fixed-top-custom.customphd-scrolheader .scrolhd-list .scrolhd-links{
color: #000;
}
.fixed-top-custom.customphd-scrolheader .scrolhd-list .scrolhd-links.active{
color: #ff0055;
}
body,.wp-site-blocks {
overflow-x: hidden;
}
.navbar .container{
max-width: 1170px;
width: 100%;
} .fullfooter-dark{
background-color: #007ee5; background: linear-gradient(90deg, #007ee5 , #00c3ff );
color: #fff;    
}
.customphd-fullfooter{
padding: 60px 0 20px;
}
.footful-logo .logo-image{
filter: brightness(0)invert(1);
}
.fullfooter-dark p,.fullfooter-dark ul li,.fullfooter-dark li a,.fullfooter-dark h4,.fullfooter-dark h6{
color: #fff;
} 
.footful-connect .ftcnct-cmnblk {
display: flex;
gap: 12px;
margin-bottom: 15px;
}
.ftcnct-cmnblk .ftcnect-lftblk {
margin-top: 2px;
margin-left: 2px;
}
.ftcnct-cmnblk .sprtcon-head{
font-size: 17px;
margin-bottom: 2px;
line-height: 25px;
font-weight: 600;
}
.ftcnct-cmnblk .ftcnect-rytblk p{
margin-bottom: 0;
}
.cusphd-fullfooterinner .footful-cmnhd{
letter-spacing: 0.1px;
font-size: 22px;
line-height: 35px;
margin-bottom: 15px;
position: relative;
display: inline-block;
padding-bottom: 12px;
}
.footful-cmnhd::after {
content: "";
display: block;
width: 60px;
height: 3pt;
background: #fff;
position: absolute;
left: 0;
bottom: 0;
}
.footful-cmnhd.ftcmnhd-center::after {
left: 0;
bottom: 0;
right: 0;
margin: 0 auto;
width: 35%;
}
.footful-cmnhd::before {
content: "";
display: block;
width: 100%;
height: 1pt;
background: #fff;
position: absolute;
bottom: 3px;
left: 0;
}
.customfull-footcol .cusfoot-listwrap .common-list-style li .fa{
font-size: 12px;
}
.customfull-footcol .cusfoot-listwrap .common-list-style li{
align-items: center;
padding: 0;
margin: 0 0 15px;
gap: 12px;
text-align: left;
}
.customfull-footcol .footful-para{
margin-top: 20px;
margin-bottom: 5px;
}
.footful-para p{
text-align: justify;
}
.cusphd-fullfooterinner .footfull-colone{
padding-right: 3%;
}
.client-ftlist .client-ftlist-style{
display: flex;  
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.client-ftlist .client-ftlist-style li{
margin: 0 0 15px;
}
.client-ftlist .client-ftlist-style li p{ padding: 0 13px;
line-height: 17px;
margin: 8px 0;
}
.customphd-clientfooter .cusphd-fullfooterinner{
text-align: center;
}
.customphd-clientfooter .client-ftlist{
margin-top: 22px;
}
.customphd-footerclientsection .customphd-clientfooter .cusphd-fullfooterinner{ padding: 35px 0 30px;
border-bottom: 1px dashed rgba(255,255,255,0.5);
}
.phdscroll-top {
position: fixed;
right: 30px;
bottom: 20px;
height: 50px;
width: 50px;
cursor: pointer;
display: block;
border-radius: 50px;
z-index: 10000;
opacity: 1;
visibility: hidden;
-webkit-transform: translateY(45px);
transform: translateY(45px);
-webkit-transition: all 300ms linear;
transition: all 300ms linear;
}
.phdscroll-top.show {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.phdscroll-top .progress-circle path {
stroke: #ff3e76;
stroke-width: 20px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all 400ms linear;
transition: all 400ms linear;
}
.phdscroll-top svg {
color: #ff3e76;
border-radius: 50%;
background: #fff;
}
.phdscroll-top svg path {
fill: none;
}
.phdscroll-top:after {
content: "\f062";
font-family: 'FontAwesome';
position: absolute;
text-align: center;
line-height: 47px;
font-size: 18px;
color: #ff3e76;
left: 0;
top: 0;
height: 50px;
width: 50px;
cursor: pointer;
display: block;
z-index: 1;
border: 2px solid #ff3e76;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 50%;
font-weight: normal;
box-shadow: 0px 3px 6px rgb(0 0 0 / 40%);
}
.custom-whatsapp-button{
background-color: #4dc247;
color: #fff;
display: inline-flex;
align-items: center;
font-size: 25px;
font-weight: 600;
line-height: 18px;
padding: 0;
border-radius: 100px;
transition: all 0.3s ease-in-out;
overflow: hidden;
text-transform: capitalize;
position: relative;
z-index: 1;
justify-content: center;
min-width: 50px;
height: 50px;
}
.custom-whatsapp-button:hover,.custom-whatsapp-button:focus,.custom-whatsapp-button:active{
color: #fff;
}
.phdfix-whatsapp{
padding-left: 0px;
padding-right: 0px;
position: fixed ;
z-index: 16000160 ;
bottom: 90px ;
text-align: center ;
height: 50px;
min-width: 50px;
border-radius: 25px;
visibility: visible;
transition: none ;
background-color: #4dc247;
box-shadow: 2px 2px 6px rgb(0 0 0 / 40%);
right: 30px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
.reviewfooter-inner{
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #fff;
border-radius: 100px;
background: #fff;
z-index: 100;
position: relative;
margin: 0 auto;
width: calc(100% - 30px);
padding: 8px 0;
box-shadow: 0px 1px 7px 0px rgb(0 0 0 / 25%);
}
.reviewfooter-inner .footful-cmnhdryt .common-list-style{
display: flex;
flex-wrap: wrap; align-items: center;
justify-content: center;
margin-bottom: 0;
}
.common-list-style li.tick-before .fi{
font-size: 16px;
box-shadow: 0px 1px 7px 0px rgb(0 0 0 / 30%);
color: #007ee5;
}
.footful-cmnhdryt .common-list-style li{
margin: 6px 10px;
gap: 10px;
}
.footful-cmnhdryt .common-list-style li p{
margin-bottom: 0;
color: #ff0b55;
font-weight: 500;
}
.reviewfooter-inner .footful-cmnhdleft{
margin-right: 15px;
margin-bottom: 0;
border-right: 1px dashed rgba(0,0,0,0.15);
padding: 7px 20px 10px;
min-width: 165px;
color: #000;
}
.customphd-reviewfooter .custom-bbcontainer{
position: relative;
z-index: 1;
}
.customphd-reviewfooter .custom-bbcontainer::before {
content: "";
width: 100%;
height: 1px;
position: absolute;
left: 0;
border: 1px dashed rgba(255,255,255,0.5);
z-index: -1;
top: 50%;
}
.customphd-reviewfooter{
margin: -1px 0;
}  .support-commonform .form-message .alert{
margin: 20px 0 10px;
}
.customphd-scrolheader.fixed-top-custom{
padding: 5px 10px 12px;
}
.Benefit-section .left-rpwssection .cuscmn-mainhd .common-head.text-justify{
text-align: center;
} @media screen and (min-width: 1028px){
}
@media only screen and (min-width: 992px){
.headoverlap-left .cuscmn-mainhd {
max-width: 250px;
transform: translateX(70px);
}
}
@media screen and (min-width: 992px){
.sevice_clm-grid.col-md-3 {    
width: calc(33% - 16px);
margin-right: 8px;
margin-left: 8px;
}
.process_innerblk .row:nth-child(even) {
flex-direction: row-reverse;
}
.process_horzinnerblk .prcsmain_horzblk{
width: 20%;
}
}
@media screen and (min-width: 768px){
.py-md-100{
padding:100px 0 ;
}
.py-md-90{
padding:90px 0 ;
}
.py-md-60{
padding:60px 0 ;
}
.py-md-40{
padding:40px 0 ;
}
.pt-md-100{
padding-top:100px;
}
.pt-md-90{
padding-top:90px;
}
.pb-md-100{
padding-bottom:100px;
}
.pb-md-90{
padding-bottom:90px;
}
.sevice_clm-grid.col-md-3 {
width: calc(25% - 16px);
margin-right: 8px;
margin-left: 8px;
}
}
@media screen and (min-width: 1170px){ .prcsmain_horzblk .prcshorz_inrtxt {
height: 118px;
min-width: 300px;
text-align: justify;
left: -38%;
position: relative;
overflow: hidden;
}
.prcsmain_horzblk .prcshorz_emty {
width: 100%;
height: 115px;
}
.process_horzinnerblk{
width: 88%;
margin: 0 auto;
}
.halgradient-background .importance-row {
background: linear-gradient(to right, #fff3f3 0%,#fff3f3 42%, #f1f7fe 42%,#f1f7fe 100%);
}
}
@media screen and (max-width: 1170px){
.custom-bbcontainer{
padding-right: 20px;
padding-left: 20px;
}
.e-con.e-flex{
--width: calc(100% - 2pt);
}
.bdrside-dotsection.custom-bbcontainer:before{
top: -9pt;
left: 125px;
}
.bdrside-dotsection.custom-bbcontainer:after{
bottom: 3pt;
right: 125px;
}
.tab-content .tab-pane{
width:calc(100% - 40px) ;
margin-right: auto;
margin-left: auto;
} .btmdouble-contain:before{
left: 15px;
}
.btmdouble-contain:after{
right: 15px;
}
.prcsmain_horzblk .prcshorz_inrtxt{
height: 140px;
min-width: 245px;position: relative;
left: -40%;
}
.prcsmain_horzblk .prcshorz_emty {
height: 140px;
}
.process_horzinnerblk {
width: 88%;
margin: 0 auto;
}
.suprtful-row{
--bs-gutter-x: 0;
}
}
@media screen and (max-width:1150px){
.moving-img-wrap .moving-text-element{
right: -20%;
}
.contact-rpwssection .contact-actions{
flex-direction: column;
padding-top: 0;
}
.tab-content .tab-pane{
padding: 40px 30px;
}
.support-contactinner .contact-container{
width: calc(100% - 15px);
margin: 0 auto;
padding: 0;
overflow: hidden;
}
}
@media screen and (max-width:1024px){
.page-id-11368 .mob-menu-header-holder.mobmenu{
display: none;
}
}
@media screen and (max-width:992px){
.iconlist-mainblk .iconlist-blk{
padding: 0 10px;
} .prcsmain_horzblk .prcshorz_inrtxt {
height: auto;
min-width: auto;
}
.process_horzinnerblk .process_horzrow .prcsmain_horzblk{
width: 100%;
}
.process_horzinnerblk .process_horzrow .prcsmain_horzblk::before{
width: 5px;
height: 100%;
top: 0;
transform: translateY(0%);
width: 1.5pt;
background: repeating-linear-gradient( 180deg, #ff0b55 0%, #ff0b55 15%, transparent 15%, transparent 20%, #0575e6 20%, #0575e6 33%, transparent 33%, transparent 38%);
background-size: 100% 70px;
}
.process_horzinnerblk .process_horzrow .prcsmain_horzblk.column-even::before{
background: repeating-linear-gradient(360deg, #ff0b55 0%, #ff0b55 15%, transparent 15%, transparent 20%, #0575e6 20%, #0575e6 33%, transparent 33%, transparent 38%);
background-size: 100% 70px;
}
.prcsmain_horzblk .prcshorz_emty{
height: auto;
}
.process_horzinnerblk .prcsmain_horzblk .prcshorz_contmain{
justify-content: center;
align-items: center;flex-direction: row;
}
.process_horzinnerblk .prcsmain_horzblk.column-odd .prcshorz_contmain{
flex-direction: row;
}
.prcshorz_inrblk,.prcsmain_horzblk .prcshorz_emty{
width: calc(45% - 30px);
}
.prcsmain_horzblk .prcshorz_inrblk::before{
bottom: 0;
top: 50%;
transform: translateY(-50%);
right: -40px;
left: auto;
width: 50%;
height: 5px;
right: -55px;
height: 1.5pt;
background: repeating-linear-gradient(270deg, #ff0b55 0%, #ff0b55 15%, transparent 15%, transparent 20%, #0575e6 20%, #0575e6 33%, transparent 33%, transparent 38%);
background-size: 70px 100%;
}
.prcsmain_horzblk.column-even .prcshorz_inrblk::before{
left: -40px;
right: auto;
bottom: 0;
top: 50%;
transform: translateY(-50%);
left: -55px;
}
.process_horzinnerblk .prcsmain_horzblk.column-even .prcshorz_contmain{
flex-direction: row-reverse;
}
.prcsmain_horzblk .prcshorz_inrtxt{
position: static;
}
.prcsmain_horzblk .prcshorz_inrtxt::after{
width: 0;
height: 0;
border-left: 45px solid transparent;
border-top: 26px solid rgb(0 126 229 / 50%);
transform: skew(0,-31deg);
background: transparent;
right: 0;
bottom: 1px;
filter: blur(2.5px);
}
.process_horzinnerblk{
width: 100%;
}
.moving-img-wrap{
max-width: 500px;
}
.moving-title{
font-size: 14px;
line-height: 24px;
display: block;
}
.moving-img-wrap .moving-text-element{
top: 19%;
right: -20%;
border: 5px solid #fff;
border-radius: 50px;
padding: 30px 20px 30px;
max-width: 230px;
}
.Benefit-section .left-rpwssection .cuscmn-mainhd .common-head{
text-align: center;
}  
.tab-content .tab-pane{
padding: 40px 20px;
}
.zigright-bdrsec{
padding-right: 0!important;
}
.boxoverlap-left .bxovrlp-lftinr{
padding: 30px 40px 30px 24px;
}
.boxoverlap-row .boxoverlap-left{
width: 40%;
}
.boxoverlap-left .bxovrlp-lftinr{
padding: 30px 30px 30px 15px;
border-radius: 5px 40px 5px 0;
}
.boxoverlap-row .boxoverlap-ryt{
width: 60%;
}
}
@media screen and (max-width: 991px){
.department-row .department-colthree .common-list-wrap{
border-left: none;
padding-left: 0;
}
}
@media screen and (max-width: 767px){
.elementor-widget-container .page-header{
text-align: center;
}
.sevice_clm-grid.col-md-3 {
width: calc(33% - 16px);
margin-right: 8px;
margin-left: 8px;    
}
.mastermain-btmblock .iconlist-mainblk .iconlist-blk span{
width: 66%;
text-align: left;
}
.boxshadow-inner{
padding: 50px 20px 50px;
}
.rightcol-imgblk {
float: none;
width: 100%;
max-width: 500px;
margin: 0 auto;
padding: 0 30px 10px!important;
}
.hero-img-wrap .hero-img-shape{
right: -35px;    width: 46%;
}
.single-working-process-one .left .icon{
height: 60px;
width: 60px;
padding: 10px ;
}
.single-working-process-one{
gap: 42px;
}
.single-working-process-one .inner-content .number{
width: 25px;
height: 25px;font-size: 12px;
left: -13px;
transform: translateY(-13px);
}
.moving-img-wrap .moving-text-element{
position: static;
width: 100%;
animation: none;
transform: none;
max-width: 100%;
}
.moving-img-final {
margin: 0 auto;
margin-top: -25px;
width: 90%;
text-align: center;
}
.zigzag-leftsection .imgpos-section {
padding: 0 0 10px;
}
.zigzag-leftsection .leftcol-imgblk{
padding-right: 0!important;
padding-left: 0!important;
margin: 0 auto 10px!important;
float: none;
}
.containbox-cmngrad{
margin: 20px auto;
padding: 40px 6%;
}
.hero-section{
padding-bottom: 10px!important;
}
.zigzag-leftsection .leftcol-imgblk{
width: 100%; max-width: 100%;
}
.zigzag-rightsection .rightcol-imgblk{
width: 100%; max-width: 100%;
}
.rightcol-imgblk.width43 {
width: 100%; max-width: 100%;
}
.leftcol-imgblk.width43{
width: 100%; max-width: 100%;
}
.zigzag-leftsection .leftcol-imgblk{
text-align: center;
}
.zigzag-rightsection .rightcol-imgblk{
text-align: center;
}
.rightcol-imgblk.width43 {
text-align: center;
}
.leftcol-imgblk.width43 .imgpos-section{
text-align: center;
}
.leftcol-imgblk.pe-3{
padding-right: 0!important; 
}
.custom-zigsection .rightcol-contblk{
padding-right: 0!important;
padding-left: 0!important;
}
.support-contactinner .right-panel{
padding: 40px 6%;
}
.support-contactinner .left-panel{
padding: 40px 6%;
}
.support-overlayinner.support-contactinner .left-panel{ padding: 0;
}
.support-overlayinner.support-contactinner .suprtleft-cont{
margin-right: 0;
margin-bottom: -30px; width: 100%;
border-radius: 15px;
}
.support-overlayinner.support-contactinner .right-panel{
padding: 55px 6% 30px;
}
.support-overlayinner .supwhite-section .cmnbtn-wrp{
width: 50%;
}
.support-overlayinner .cmnbtn-wrp{
width: 50%;
}
.boxoverlap-row .boxoverlap-left{
width: 40%;
}
.boxoverlap-left .bxovrlp-lftinr{
padding: 30px 30px 30px 15px;
border-radius: 5px 40px 5px 0;
}
.boxoverlap-row .boxoverlap-ryt{
width: 60%;
}
.boxoverlap-ryt .boxoverlap-inner{
margin-top: 28px;
margin-left: -28px;
padding: 15px 20px;
}
.rowreverse-overlap .boxoverlap-ryt .boxoverlap-inner{
margin-right: 0;
}
.rowreverse-overlap .boxoverlap-left .bxovrlp-lftinr{
border-radius: 5px 40px 5px 0;
}
.hero-img-wrap .hero-text-element{
width: 150px;
padding: 15px;
bottom: 18%;
}
.hero-img-wrap .count-title {
font-size: 14px;
}
.hero-img-wrap{
margin-top: 30px;
}
.imgpos-section{
padding: 0 0 6%;
}
.navbar .container{
justify-content: center;
}
.page-id-11368 .navbar .topright {
width: 100%;
justify-content: center;
align-items: center;
}
.page-id-11368 .navbar .topcenter{
padding-top: 20px;
padding-bottom: 20px;
}
.hdovrlp-inner{
padding: 40px 20px 30px 20px;
}
.headoverlap-left .cuscmn-mainhd{
padding: 20px 15px 18px;
}
.headoverlap-left .common-head h1{
font-size: 28px;
}
.institutional-row .mobile-center{
margin-bottom: 15px;
margin-top: 5px;
}
.tab-content .tab-pane {
padding: 40px 5px;
}
.fulclr-boxblk .fboxblk-head {
width: 100%;
text-align: center;
padding-right: 0;
}
.fulclr-boxblk .fboxblk-hdcont {
width: 100%;
padding: 15px 0 0;
}
.fullshdw-bgwrap{
margin-left: auto;width: calc(100% - 30px);
}
.rythorz-listwrap{
border-left: none;
border-top: 1px dashed #77bbf4;
padding: 10px 20px;
margin-top: 12px;
}
.common-list-style.rythorz-listwrap li{
width: 100%;
}
.right-rpwssection{
border-left: none;
padding-left: 0;
}
.contact-rpwssection .cmnbtn-wrp{
border-right: none;
}
.client-ftlist .client-ftlist-style li{
margin: 0 0 8px;
}
.reviewfooter-inner{
width: 100%;
max-width: 600px;
flex-wrap: wrap;
padding: 8px 0 12px;
}
.reviewfooter-inner .footful-cmnhdleft{
border-bottom: 1px dashed rgba(0,0,0,0.15);
border-right: none;
margin-right: 0;
margin-bottom: 10px;
}
.footful-logo{
text-align: center;
}
.customphd-reviewfooter{
margin-top: -1px;
}
.client-ftlist .client-ftlist-style li p{
margin: 5px 0;
}
.working-process-one .custom-bbcontainer::before{
width: calc(100% - 24px);
left: 12px;
}
}
@media screen and (max-width: 576px){
.page-header{
padding: 80px 0 100px;
}
.sevice_clm-grid.col-md-3 {
width: 100%;
margin-right: 8px;
margin-left: 8px;
}
.prcshorz_inrblk, .prcsmain_horzblk .prcshorz_emty{
width: 100%;
}
.process_horzinnerblk .prcsmain_horzblk.column-odd .prcshorz_contmain{
flex-direction: column-reverse;
}
.process_horzinnerblk .prcsmain_horzblk.column-even .prcshorz_contmain{
flex-direction: column-reverse;
}
.prcsmain_horzblk .prcshorz_inrblk::before{
display: none;
}
.process_horzinnerblk .process_horzrow .prcsmain_horzblk::before{
z-index: -1;
}
.process_horzinnerblk .process_horzrow .prcsmain_horzblk:first-child .prcshorz_numblk{
margin-top: 0;
}
body{
font-size: 13px;
}
p{
font-size: 13px;
line-height: 24px;
}
.text-paragraph{
font-size: 13px;
line-height: 24px;
}
.cuscmn-mainhd .common-head{
font-size: 30px;line-height: 40px!important;
}
.course-tab-content .common-head{
font-size: 26px;line-height: 33px!important;
}
.page-header-content .inner-page{
font-size: 40px;
line-height: 58px;
}
.blueclor-textlist .common-list-style li p{
font-weight: 400;
}
p {
font-size: 12px;
line-height: 20px;
}
.common-list-style li .flaticon-tick{
font-size: 15px;
}
.single-working-process-one .inner-content .common-list-style li{
gap: 0.5rem;
}
.single-working-process-one .inner-content{
padding: 20px 15px 12px;
}
.single-working-process-one .inner-content .title{
font-size: 16px;
}
.single-working-process-one{
gap: 35px;
margin-bottom: 30px;
}
.single-working-process-one .inner-content .number-main::after{
height: 38px;
width: 38px;
}
.support-contactinner .row .form-group{
flex: 0 0 auto;
}
.support-overlayinner .supwhite-section .cmnbtn-wrp{
width: 100%;
}
.support-overlayinner .cmnbtn-wrp{
width: 100%;
}
.support-contactinner .left-panel h2{
font-size: 28px;line-height: 37px!important;
}
.support-overlayinner .cmnbtn-wrp{
border-bottom: 1px dashed #fff;
border-right: none!important;
}
.support-overlayinner .cmnbtn-wrp.wtsapp-btn{
border-bottom:none!important;
}
.boxoverlap-row .boxoverlap-ryt {
width: calc(100% - 20px);
margin: 0 auto;
}
.boxoverlap-row .boxoverlap-left {
width: 100%;
margin-top: 10px;
}
.boxoverlap-left .bxovrlp-lftinr{
border-radius: 5px 40px 5px 0;
padding: 30px 30px;
justify-content: center;
}
.boxoverlap-ryt .boxoverlap-inner {
margin-top: -25px;
margin-left: 0;
padding: 15px 20px;
margin-bottom: 10px;
}
.zigzag-rightsection .rightcol-imgblk {
width: 100%;
max-width: 100%;
padding: 0 0 10px!important;
}
.common-list-style.rythorz-listwrap li{
width: 100%;    
}
.fullclrbg-row{
padding: 65px 30px;
}
}
@media screen and (max-width: 575px){
.department-row .common-list-wrap{
border-left: none;
padding-left: 0;
}
}
@media screen and (max-width: 480px){
.single-working-process-one{
flex-direction: column;
}
.single-working-process-one .left .icon::after{
height: 18px;
width: 18px;
border: 4px solid #fff;
right: auto;
top: auto;
transform: translateY(0%);
bottom: -10px;
}
.single-working-process-one .inner-content .number-main::before{
display: none;
}
.single-working-process-one .inner-content .number-main{
top: 0;
left: 50%;
transform: translateY(0%);
transform: translateX(-50%)
}
}