/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* You can add global styles to this file, and also import other style files */
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.infinite {
  animation-iteration-count: infinite;
}
.animated.hinge {
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
  animation-duration: .75s;
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    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 {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  0% {
    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);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  0%, 100% {
    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 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);
  }

  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    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);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  0% {
    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);
  }

  100% {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  11.1% {
    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)
  }
  100% {
    transform: none
  }
}
.jello{
    animation-name:jello;

    transform-origin: center
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    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);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    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);
  }

  100% {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    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);
  }

  100% {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    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);
  }

  100% {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    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, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    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);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    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;
  }

  100% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    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);
  }

  100% {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    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);
  }

  100% {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    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 {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    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 {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }

  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    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;
  }

  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInStable {
 0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  33.333% {
    opacity: 1;
 transform: scale3d(1.1, 1.1, 1.1);
  }
  
  66.666666% {
    opacity: 1;
 transform: scale3d(1, 1, 1);
  }
}
.zoomInStable {
  animation-name: zoomInStable;
}
@keyframes zoomInDown {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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 {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}
}
.blocker{position:fixed;top:0;right:0;bottom:0;left:0;width:100%;height:100%;overflow:auto;z-index:1;padding:20px;box-sizing:border-box;background-color:#000;background-color:rgba(0,0,0,0.75);text-align:center}
.blocker:before{content:"";display:inline-block;height:100%;vertical-align:middle;margin-right:-0.05em}
.blocker.behind{background-color:transparent}
.modal{display:none;vertical-align:middle;position:relative;z-index:2;max-width:500px;box-sizing:border-box;width:90%;background:#fff;padding:15px 30px;border-radius:8px;-o-box-shadow:0 0 10px #000;-ms-box-shadow:0 0 10px #000;box-shadow:0 0 10px #000;text-align:left}
.modal a.close-modal{position:absolute;top:-12.5px;right:-12.5px;display:block;width:30px;height:30px;text-indent:-9999px;background-size:contain;background-repeat:no-repeat;background-position:center center;background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==')}
.modal-spinner{display:none;position:fixed;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);padding:12px 16px;border-radius:5px;background-color:#111;height:20px}
.modal-spinner>div{border-radius:100px;background-color:#fff;height:20px;width:2px;margin:0 1px;display:inline-block;animation:sk-stretchdelay 1.2s infinite ease-in-out}
.modal-spinner .rect2{animation-delay:-1.1s}
.modal-spinner .rect3{animation-delay:-1.0s}
.modal-spinner .rect4{animation-delay:-0.9s}
@keyframes sk-stretchdelay{0%,40%,100%{transform:scaleY(0.5);-webkit-transform:scaleY(0.5)}20%{transform:scaleY(1.0);-webkit-transform:scaleY(1.0)}}
/*!
 * Bootstrap v4.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}
*,::after,::before{box-sizing:border-box}
html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}
article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}
body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}
[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}
hr{box-sizing:content-box;height:0;overflow:visible}
h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}
p{margin-top:0;margin-bottom:1rem}
abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}
address{margin-bottom:1rem;font-style:normal;line-height:inherit}
dl,ol,ul{margin-top:0;margin-bottom:1rem}
ol ol,ol ul,ul ol,ul ul{margin-bottom:0}
dt{font-weight:700}
dd{margin-bottom:.5rem;margin-left:0}
blockquote{margin:0 0 1rem}
b,strong{font-weight:bolder}
small{font-size:80%}
sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}
sub{bottom:-.25em}
sup{top:-.5em}
a{color:#007bff;text-decoration:none;background-color:transparent}
a:hover{color:#0056b3;text-decoration:underline}
a:not([href]){color:inherit;text-decoration:none}
a:not([href]):hover{color:inherit;text-decoration:none}
code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}
pre{margin-top:0;margin-bottom:1rem;overflow:auto}
figure{margin:0 0 1rem}
img{vertical-align:middle;border-style:none}
svg{overflow:hidden;vertical-align:middle}
table{border-collapse:collapse}
caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}
th{text-align:inherit}
label{display:inline-block;margin-bottom:.5rem}
button{border-radius:0}
button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}
button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}
button,input{overflow:visible}
button,select{text-transform:none}
select{word-wrap:normal}
[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}
[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}
[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}
input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}
input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}
textarea{overflow:auto;resize:vertical}
fieldset{min-width:0;padding:0;margin:0;border:0}
legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}
progress{vertical-align:baseline}
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}
[type=search]{outline-offset:-2px;-webkit-appearance:none}
[type=search]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}
output{display:inline-block}
summary{display:list-item;cursor:pointer}
template{display:none}
[hidden]{display:none!important}
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}
.h1,h1{font-size:2.5rem}
.h2,h2{font-size:2rem}
.h3,h3{font-size:1.75rem}
.h4,h4{font-size:1.5rem}
.h5,h5{font-size:1.25rem}
.h6,h6{font-size:1rem}
.lead{font-size:1.25rem;font-weight:300}
.display-1{font-size:6rem;font-weight:300;line-height:1.2}
.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}
.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}
.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}
hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}
.small,small{font-size:80%;font-weight:400}
.mark,mark{padding:.2em;background-color:#fcf8e3}
.list-unstyled{padding-left:0;list-style:none}
.list-inline{padding-left:0;list-style:none}
.list-inline-item{display:inline-block}
.list-inline-item:not(:last-child){margin-right:.5rem}
.initialism{font-size:90%;text-transform:uppercase}
.blockquote{margin-bottom:1rem;font-size:1.25rem}
.blockquote-footer{display:block;font-size:80%;color:#6c757d}
.blockquote-footer::before{content:"\2014\00A0"}
.img-fluid{max-width:100%;height:auto}
.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}
.figure{display:inline-block}
.figure-img{margin-bottom:.5rem;line-height:1}
.figure-caption{font-size:90%;color:#6c757d}
code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}
a>code{color:inherit}
kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}
kbd kbd{padding:0;font-size:100%;font-weight:700}
pre{display:block;font-size:87.5%;color:#212529}
pre code{font-size:inherit;color:inherit;word-break:normal}
.pre-scrollable{max-height:340px;overflow-y:scroll}
.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}
@media (min-width:576px){.container{max-width:540px}}
@media (min-width:768px){.container{max-width:720px}}
@media (min-width:992px){.container{max-width:960px}}
@media (min-width:1200px){.container{max-width:1140px}}
.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}
@media (min-width:576px){.container,.container-sm{max-width:540px}}
@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}
@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}
@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}
.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}
.no-gutters{margin-right:0;margin-left:0}
.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}
.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}
.col{flex-basis:0;flex-grow:1;max-width:100%}
.row-cols-1>*{flex:0 0 100%;max-width:100%}
.row-cols-2>*{flex:0 0 50%;max-width:50%}
.row-cols-3>*{flex:0 0 33.333333%;max-width:33.333333%}
.row-cols-4>*{flex:0 0 25%;max-width:25%}
.row-cols-5>*{flex:0 0 20%;max-width:20%}
.row-cols-6>*{flex:0 0 16.666667%;max-width:16.666667%}
.col-auto{flex:0 0 auto;width:auto;max-width:100%}
.col-1{flex:0 0 8.333333%;max-width:8.333333%}
.col-2{flex:0 0 16.666667%;max-width:16.666667%}
.col-3{flex:0 0 25%;max-width:25%}
.col-4{flex:0 0 33.333333%;max-width:33.333333%}
.col-5{flex:0 0 41.666667%;max-width:41.666667%}
.col-6{flex:0 0 50%;max-width:50%}
.col-7{flex:0 0 58.333333%;max-width:58.333333%}
.col-8{flex:0 0 66.666667%;max-width:66.666667%}
.col-9{flex:0 0 75%;max-width:75%}
.col-10{flex:0 0 83.333333%;max-width:83.333333%}
.col-11{flex:0 0 91.666667%;max-width:91.666667%}
.col-12{flex:0 0 100%;max-width:100%}
.order-first{order:-1}
.order-last{order:13}
.order-0{order:0}
.order-1{order:1}
.order-2{order:2}
.order-3{order:3}
.order-4{order:4}
.order-5{order:5}
.order-6{order:6}
.order-7{order:7}
.order-8{order:8}
.order-9{order:9}
.order-10{order:10}
.order-11{order:11}
.order-12{order:12}
.offset-1{margin-left:8.333333%}
.offset-2{margin-left:16.666667%}
.offset-3{margin-left:25%}
.offset-4{margin-left:33.333333%}
.offset-5{margin-left:41.666667%}
.offset-6{margin-left:50%}
.offset-7{margin-left:58.333333%}
.offset-8{margin-left:66.666667%}
.offset-9{margin-left:75%}
.offset-10{margin-left:83.333333%}
.offset-11{margin-left:91.666667%}
@media (min-width:576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}
@media (min-width:768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}
@media (min-width:992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}
@media (min-width:1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}
.table{width:100%;margin-bottom:1rem;color:#212529}
.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}
.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}
.table tbody+tbody{border-top:2px solid #dee2e6}
.table-sm td,.table-sm th{padding:.3rem}
.table-bordered{border:1px solid #dee2e6}
.table-bordered td,.table-bordered th{border:1px solid #dee2e6}
.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}
.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}
.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}
.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}
.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}
.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}
.table-hover .table-primary:hover{background-color:#9fcdff}
.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}
.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}
.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}
.table-hover .table-secondary:hover{background-color:#c8cbcf}
.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}
.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}
.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}
.table-hover .table-success:hover{background-color:#b1dfbb}
.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}
.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}
.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}
.table-hover .table-info:hover{background-color:#abdde5}
.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}
.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}
.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}
.table-hover .table-warning:hover{background-color:#ffe8a1}
.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}
.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}
.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}
.table-hover .table-danger:hover{background-color:#f1b0b7}
.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}
.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}
.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}
.table-hover .table-light:hover{background-color:#ececf6}
.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}
.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}
.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}
.table-hover .table-dark:hover{background-color:#b9bbbe}
.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}
.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}
.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}
.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}
.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}
.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}
.table-dark{color:#fff;background-color:#343a40}
.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}
.table-dark.table-bordered{border:0}
.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}
.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}
@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}
@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}
@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}
@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}
.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}
.table-responsive>.table-bordered{border:0}
.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}
@media (prefers-reduced-motion:reduce){.form-control{transition:none}}
.form-control::-ms-expand{background-color:transparent;border:0}
.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}
.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}
.form-control::placeholder{color:#6c757d;opacity:1}
.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}
select.form-control:focus::-ms-value{color:#495057;background-color:#fff}
.form-control-file,.form-control-range{display:block;width:100%}
.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}
.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}
.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}
.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}
.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}
.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}
.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}
select.form-control[multiple],select.form-control[size]{height:auto}
textarea.form-control{height:auto}
.form-group{margin-bottom:1rem}
.form-text{display:block;margin-top:.25rem}
.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}
.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}
.form-check{position:relative;display:block;padding-left:1.25rem}
.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}
.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}
.form-check-label{margin-bottom:0}
.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}
.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}
.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}
.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}
.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}
.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}
.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}
.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}
.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}
.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}
.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}
.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}
.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}
.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}
.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}
.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}
.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}
.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}
.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}
.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}
.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}
.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}
.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}
.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}
.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}
.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}
.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}
.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}
.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}
.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}
.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}
.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}
.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}
.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}
.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}
.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}
.form-inline{display:flex;flex-flow:row wrap;align-items:center}
.form-inline .form-check{width:100%}
@media (min-width:576px){.form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}
.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;cursor:pointer;-webkit-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}
@media (prefers-reduced-motion:reduce){.btn{transition:none}}
.btn:hover{color:#212529;text-decoration:none}
.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}
.btn.disabled,.btn:disabled{opacity:.65}
a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}
.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}
.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}
.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}
.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}
.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}
.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}
.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}
.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}
.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}
.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}
.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}
.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}
.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}
.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}
.btn-success.focus,.btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}
.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}
.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}
.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}
.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}
.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}
.btn-info.focus,.btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}
.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}
.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}
.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}
.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}
.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}
.btn-warning.focus,.btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}
.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}
.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}
.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}
.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}
.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}
.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}
.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}
.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}
.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}
.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}
.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}
.btn-light.focus,.btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}
.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}
.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}
.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}
.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}
.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}
.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}
.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}
.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}
.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}
.btn-outline-primary{color:#007bff;border-color:#007bff}
.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}
.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}
.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}
.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}
.btn-outline-secondary{color:#6c757d;border-color:#6c757d}
.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}
.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}
.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}
.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}
.btn-outline-success{color:#28a745;border-color:#28a745}
.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}
.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}
.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}
.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}
.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}
.btn-outline-info{color:#17a2b8;border-color:#17a2b8}
.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}
.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}
.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}
.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}
.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}
.btn-outline-warning{color:#ffc107;border-color:#ffc107}
.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}
.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}
.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}
.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}
.btn-outline-danger{color:#dc3545;border-color:#dc3545}
.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}
.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}
.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}
.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}
.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}
.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}
.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}
.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}
.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}
.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}
.btn-outline-dark{color:#343a40;border-color:#343a40}
.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}
.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}
.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}
.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}
.btn-link{font-weight:400;color:#007bff;text-decoration:none}
.btn-link:hover{color:#0056b3;text-decoration:underline}
.btn-link.focus,.btn-link:focus{text-decoration:underline;box-shadow:none}
.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}
.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}
.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}
.btn-block{display:block;width:100%}
.btn-block+.btn-block{margin-top:.5rem}
input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}
.fade{transition:opacity .15s linear}
@media (prefers-reduced-motion:reduce){.fade{transition:none}}
.fade:not(.show){opacity:0}
.collapse:not(.show){display:none}
.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}
@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}
.dropdown,.dropleft,.dropright,.dropup{position:relative}
.dropdown-toggle{white-space:nowrap}
.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}
.dropdown-toggle:empty::after{margin-left:0}
.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}
.dropdown-menu-left{right:auto;left:0}
.dropdown-menu-right{right:0;left:auto}
@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}
@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}
@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}
@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}
.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}
.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}
.dropup .dropdown-toggle:empty::after{margin-left:0}
.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}
.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}
.dropright .dropdown-toggle:empty::after{margin-left:0}
.dropright .dropdown-toggle::after{vertical-align:0}
.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}
.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}
.dropleft .dropdown-toggle::after{display:none}
.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}
.dropleft .dropdown-toggle:empty::after{margin-left:0}
.dropleft .dropdown-toggle::before{vertical-align:0}
.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}
.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}
.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}
.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}
.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}
.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}
.dropdown-menu.show{display:block}
.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}
.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}
.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}
.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}
.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}
.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}
.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}
.btn-toolbar .input-group{width:auto}
.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}
.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}
.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}
.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}
.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}
.dropleft .dropdown-toggle-split::before{margin-right:0}
.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}
.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}
.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}
.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}
.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}
.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}
.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}
.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}
.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}
.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}
.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;flex:1 1 0%;min-width:0;margin-bottom:0}
.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}
.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}
.input-group>.custom-file .custom-file-input:focus{z-index:4}
.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}
.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}
.input-group>.custom-file{display:flex;align-items:center}
.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}
.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}
.input-group-append,.input-group-prepend{display:flex}
.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}
.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}
.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}
.input-group-prepend{margin-right:-1px}
.input-group-append{margin-left:-1px}
.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}
.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}
.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}
.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}
.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}
.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}
.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}
.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}
.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}
.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}
.custom-control-inline{display:inline-flex;margin-right:1rem}
.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}
.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}
.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}
.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}
.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}
.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}
.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}
.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}
.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}
.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}
.custom-checkbox .custom-control-label::before{border-radius:.25rem}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}
.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}
.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}
.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}
.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}
.custom-radio .custom-control-label::before{border-radius:50%}
.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}
.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}
.custom-switch{padding-left:2.25rem}
.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}
.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}
@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}
.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;transform:translateX(.75rem)}
.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}
.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}
.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}
.custom-select:focus::-ms-value{color:#495057;background-color:#fff}
.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}
.custom-select:disabled{color:#6c757d;background-color:#e9ecef}
.custom-select::-ms-expand{display:none}
.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}
.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}
.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}
.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}
.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}
.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}
.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}
.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}
.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}
.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}
.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}
.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}
.custom-range:focus{outline:0}
.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}
.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}
.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}
.custom-range::-moz-focus-outer{border:0}
.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}
@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}
.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}
.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}
.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}
@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}
.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}
.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}
.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}
@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}
.custom-range::-ms-thumb:active{background-color:#b3d7ff}
.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}
.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}
.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}
.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}
.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}
.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}
.custom-range:disabled::-moz-range-track{cursor:default}
.custom-range:disabled::-ms-thumb{background-color:#adb5bd}
.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}
@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}
.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}
.nav-link{display:block;padding:.5rem 1rem}
.nav-link:focus,.nav-link:hover{text-decoration:none}
.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}
.nav-tabs{border-bottom:1px solid #dee2e6}
.nav-tabs .nav-item{margin-bottom:-1px}
.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}
.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}
.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}
.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}
.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}
.nav-pills .nav-link{border-radius:.25rem}
.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}
.nav-fill .nav-item{flex:1 1 auto;text-align:center}
.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}
.tab-content>.tab-pane{display:none}
.tab-content>.active{display:block}
.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}
.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}
.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}
.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}
.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}
.navbar-nav .nav-link{padding-right:0;padding-left:0}
.navbar-nav .dropdown-menu{position:static;float:none}
.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}
.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}
.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}
.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}
.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}
@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}
@media (min-width:576px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}
@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}
@media (min-width:768px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}
@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}
@media (min-width:992px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}
@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}
@media (min-width:1200px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}
.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}
.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}
.navbar-expand .navbar-nav{flex-direction:row}
.navbar-expand .navbar-nav .dropdown-menu{position:absolute}
.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}
.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{flex-wrap:nowrap}
.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}
.navbar-expand .navbar-toggler{display:none}
.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}
.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}
.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}
.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}
.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}
.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}
.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}
.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}
.navbar-light .navbar-text{color:rgba(0,0,0,.5)}
.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}
.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}
.navbar-dark .navbar-brand{color:#fff}
.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}
.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}
.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}
.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}
.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}
.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}
.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}
.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}
.navbar-dark .navbar-text a{color:#fff}
.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}
.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}
.card>hr{margin-right:0;margin-left:0}
.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}
.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}
.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}
.card-title{margin-bottom:.75rem}
.card-subtitle{margin-top:-.375rem;margin-bottom:0}
.card-text:last-child{margin-bottom:0}
.card-link:hover{text-decoration:none}
.card-link+.card-link{margin-left:1.25rem}
.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}
.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}
.card-header+.list-group .list-group-item:first-child{border-top:0}
.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}
.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}
.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}
.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}
.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}
.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}
.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}
.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}
.card-deck .card{margin-bottom:15px}
@media (min-width:576px){.card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}
.card-group>.card{margin-bottom:15px}
@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}
.card-columns .card{margin-bottom:.75rem}
@media (min-width:576px){.card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}
.accordion>.card{overflow:hidden}
.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}
.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}
.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}
.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}
.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}
.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}
.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}
.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}
.breadcrumb-item.active{color:#6c757d}
.pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}
.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}
.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}
.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}
.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}
.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}
.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}
.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}
.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}
.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}
.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}
.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}
.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}
.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}
.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}
@media (prefers-reduced-motion:reduce){.badge{transition:none}}
a.badge:focus,a.badge:hover{text-decoration:none}
.badge:empty{display:none}
.btn .badge{position:relative;top:-1px}
.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}
.badge-primary{color:#fff;background-color:#007bff}
a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}
a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}
.badge-secondary{color:#fff;background-color:#6c757d}
a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}
a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}
.badge-success{color:#fff;background-color:#28a745}
a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}
a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}
.badge-info{color:#fff;background-color:#17a2b8}
a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}
a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}
.badge-warning{color:#212529;background-color:#ffc107}
a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}
a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}
.badge-danger{color:#fff;background-color:#dc3545}
a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}
a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}
.badge-light{color:#212529;background-color:#f8f9fa}
a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}
a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}
.badge-dark{color:#fff;background-color:#343a40}
a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}
a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}
.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}
@media (min-width:576px){.jumbotron{padding:4rem 2rem}}
.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}
.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}
.alert-heading{color:inherit}
.alert-link{font-weight:700}
.alert-dismissible{padding-right:4rem}
.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}
.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}
.alert-primary hr{border-top-color:#9fcdff}
.alert-primary .alert-link{color:#002752}
.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}
.alert-secondary hr{border-top-color:#c8cbcf}
.alert-secondary .alert-link{color:#202326}
.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}
.alert-success hr{border-top-color:#b1dfbb}
.alert-success .alert-link{color:#0b2e13}
.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}
.alert-info hr{border-top-color:#abdde5}
.alert-info .alert-link{color:#062c33}
.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}
.alert-warning hr{border-top-color:#ffe8a1}
.alert-warning .alert-link{color:#533f03}
.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}
.alert-danger hr{border-top-color:#f1b0b7}
.alert-danger .alert-link{color:#491217}
.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}
.alert-light hr{border-top-color:#ececf6}
.alert-light .alert-link{color:#686868}
.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}
.alert-dark hr{border-top-color:#b9bbbe}
.alert-dark .alert-link{color:#040505}
@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}
.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}
.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}
@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}
.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}
.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}
@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}
.media{display:flex;align-items:flex-start}
.media-body{flex:1}
.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0}
.list-group-item-action{width:100%;color:#495057;text-align:inherit}
.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}
.list-group-item-action:active{color:#212529;background-color:#e9ecef}
.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}
.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}
.list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}
.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}
.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}
.list-group-item+.list-group-item{border-top-width:0}
.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}
.list-group-horizontal{flex-direction:row}
.list-group-horizontal .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}
.list-group-horizontal .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}
.list-group-horizontal .list-group-item.active{margin-top:0}
.list-group-horizontal .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}
.list-group-horizontal .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}
@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm .list-group-item.active{margin-top:0}.list-group-horizontal-sm .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}
@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md .list-group-item.active{margin-top:0}.list-group-horizontal-md .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}
@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg .list-group-item.active{margin-top:0}.list-group-horizontal-lg .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}
@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl .list-group-item.active{margin-top:0}.list-group-horizontal-xl .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}
.list-group-flush .list-group-item{border-right-width:0;border-left-width:0;border-radius:0}
.list-group-flush .list-group-item:first-child{border-top-width:0}
.list-group-flush:last-child .list-group-item:last-child{border-bottom-width:0}
.list-group-item-primary{color:#004085;background-color:#b8daff}
.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}
.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}
.list-group-item-secondary{color:#383d41;background-color:#d6d8db}
.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}
.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}
.list-group-item-success{color:#155724;background-color:#c3e6cb}
.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}
.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}
.list-group-item-info{color:#0c5460;background-color:#bee5eb}
.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}
.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}
.list-group-item-warning{color:#856404;background-color:#ffeeba}
.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}
.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}
.list-group-item-danger{color:#721c24;background-color:#f5c6cb}
.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}
.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}
.list-group-item-light{color:#818182;background-color:#fdfdfe}
.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}
.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}
.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}
.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}
.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}
.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}
.close:hover{color:#000;text-decoration:none}
.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}
button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}
a.close.disabled{pointer-events:none}
.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}
.toast:not(:last-child){margin-bottom:.75rem}
.toast.showing{opacity:1}
.toast.show{display:block;opacity:1}
.toast.hide{display:none}
.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}
.toast-body{padding:.75rem}
.modal-open{overflow:hidden}
.modal-open .modal{overflow-x:hidden;overflow-y:auto}
.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}
.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}
.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}
@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}
.modal.show .modal-dialog{transform:none}
.modal.modal-static .modal-dialog{transform:scale(1.02)}
.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}
.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}
.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}
.modal-dialog-scrollable .modal-body{overflow-y:auto}
.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}
.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}
.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}
.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}
.modal-dialog-centered.modal-dialog-scrollable::before{content:none}
.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}
.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}
.modal-backdrop.fade{opacity:0}
.modal-backdrop.show{opacity:.5}
.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}
.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}
.modal-title{margin-bottom:0;line-height:1.5}
.modal-body{position:relative;flex:1 1 auto;padding:1rem}
.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}
.modal-footer>*{margin:.25rem}
.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}
@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}
@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}
@media (min-width:1200px){.modal-xl{max-width:1140px}}
.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}
.tooltip.show{opacity:.9}
.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}
.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}
.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}
.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}
.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}
.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}
.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}
.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}
.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}
.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}
.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}
.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}
.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}
.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}
.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}
.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}
.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}
.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}
.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}
.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}
.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}
.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}
.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}
.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}
.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}
.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}
.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}
.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}
.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}
.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}
.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}
.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}
.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}
.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}
.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}
.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}
.popover-header:empty{display:none}
.popover-body{padding:.5rem .75rem;color:#212529}
.carousel{position:relative}
.carousel.pointer-event{touch-action:pan-y}
.carousel-inner{position:relative;width:100%;overflow:hidden}
.carousel-inner::after{display:block;clear:both;content:""}
.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}
@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}
.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}
.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}
.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}
.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}
.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}
.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}
@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}
.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}
@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}
.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}
.carousel-control-prev{left:0}
.carousel-control-next{right:0}
.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}
.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}
.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}
.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}
.carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}
@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}
.carousel-indicators .active{opacity:1}
.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}
@keyframes spinner-border{to{transform:rotate(360deg)}}
.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:spinner-border .75s linear infinite}
.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}
@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1}}
.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;animation:spinner-grow .75s linear infinite}
.spinner-grow-sm{width:1rem;height:1rem}
.align-baseline{vertical-align:baseline!important}
.align-top{vertical-align:top!important}
.align-middle{vertical-align:middle!important}
.align-bottom{vertical-align:bottom!important}
.align-text-bottom{vertical-align:text-bottom!important}
.align-text-top{vertical-align:text-top!important}
.bg-primary{background-color:#007bff!important}
a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}
.bg-secondary{background-color:#6c757d!important}
a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}
.bg-success{background-color:#28a745!important}
a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}
.bg-info{background-color:#17a2b8!important}
a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}
.bg-warning{background-color:#ffc107!important}
a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}
.bg-danger{background-color:#dc3545!important}
a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}
.bg-light{background-color:#f8f9fa!important}
a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}
.bg-dark{background-color:#343a40!important}
a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}
.bg-white{background-color:#fff!important}
.bg-transparent{background-color:transparent!important}
.border{border:1px solid #dee2e6!important}
.border-top{border-top:1px solid #dee2e6!important}
.border-right{border-right:1px solid #dee2e6!important}
.border-bottom{border-bottom:1px solid #dee2e6!important}
.border-left{border-left:1px solid #dee2e6!important}
.border-0{border:0!important}
.border-top-0{border-top:0!important}
.border-right-0{border-right:0!important}
.border-bottom-0{border-bottom:0!important}
.border-left-0{border-left:0!important}
.border-primary{border-color:#007bff!important}
.border-secondary{border-color:#6c757d!important}
.border-success{border-color:#28a745!important}
.border-info{border-color:#17a2b8!important}
.border-warning{border-color:#ffc107!important}
.border-danger{border-color:#dc3545!important}
.border-light{border-color:#f8f9fa!important}
.border-dark{border-color:#343a40!important}
.border-white{border-color:#fff!important}
.rounded-sm{border-radius:.2rem!important}
.rounded{border-radius:.25rem!important}
.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}
.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}
.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}
.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}
.rounded-lg{border-radius:.3rem!important}
.rounded-circle{border-radius:50%!important}
.rounded-pill{border-radius:50rem!important}
.rounded-0{border-radius:0!important}
.clearfix::after{display:block;clear:both;content:""}
.d-none{display:none!important}
.d-inline{display:inline!important}
.d-inline-block{display:inline-block!important}
.d-block{display:block!important}
.d-table{display:table!important}
.d-table-row{display:table-row!important}
.d-table-cell{display:table-cell!important}
.d-flex{display:flex!important}
.d-inline-flex{display:inline-flex!important}
@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}
@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}
@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}
@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}
@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}
.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}
.embed-responsive::before{display:block;content:""}
.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}
.embed-responsive-21by9::before{padding-top:42.857143%}
.embed-responsive-16by9::before{padding-top:56.25%}
.embed-responsive-4by3::before{padding-top:75%}
.embed-responsive-1by1::before{padding-top:100%}
.flex-row{flex-direction:row!important}
.flex-column{flex-direction:column!important}
.flex-row-reverse{flex-direction:row-reverse!important}
.flex-column-reverse{flex-direction:column-reverse!important}
.flex-wrap{flex-wrap:wrap!important}
.flex-nowrap{flex-wrap:nowrap!important}
.flex-wrap-reverse{flex-wrap:wrap-reverse!important}
.flex-fill{flex:1 1 auto!important}
.flex-grow-0{flex-grow:0!important}
.flex-grow-1{flex-grow:1!important}
.flex-shrink-0{flex-shrink:0!important}
.flex-shrink-1{flex-shrink:1!important}
.justify-content-start{justify-content:flex-start!important}
.justify-content-end{justify-content:flex-end!important}
.justify-content-center{justify-content:center!important}
.justify-content-between{justify-content:space-between!important}
.justify-content-around{justify-content:space-around!important}
.align-items-start{align-items:flex-start!important}
.align-items-end{align-items:flex-end!important}
.align-items-center{align-items:center!important}
.align-items-baseline{align-items:baseline!important}
.align-items-stretch{align-items:stretch!important}
.align-content-start{align-content:flex-start!important}
.align-content-end{align-content:flex-end!important}
.align-content-center{align-content:center!important}
.align-content-between{align-content:space-between!important}
.align-content-around{align-content:space-around!important}
.align-content-stretch{align-content:stretch!important}
.align-self-auto{align-self:auto!important}
.align-self-start{align-self:flex-start!important}
.align-self-end{align-self:flex-end!important}
.align-self-center{align-self:center!important}
.align-self-baseline{align-self:baseline!important}
.align-self-stretch{align-self:stretch!important}
@media (min-width:576px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}
@media (min-width:768px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}
@media (min-width:992px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}
@media (min-width:1200px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}
.float-left{float:left!important}
.float-right{float:right!important}
.float-none{float:none!important}
@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}
@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}
@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}
@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}
.overflow-auto{overflow:auto!important}
.overflow-hidden{overflow:hidden!important}
.position-static{position:static!important}
.position-relative{position:relative!important}
.position-absolute{position:absolute!important}
.position-fixed{position:fixed!important}
.position-sticky{position:sticky!important}
.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}
.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}
@supports (position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}
.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}
.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}
.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}
.shadow-none{box-shadow:none!important}
.w-25{width:25%!important}
.w-50{width:50%!important}
.w-75{width:75%!important}
.w-100{width:100%!important}
.w-auto{width:auto!important}
.h-25{height:25%!important}
.h-50{height:50%!important}
.h-75{height:75%!important}
.h-100{height:100%!important}
.h-auto{height:auto!important}
.mw-100{max-width:100%!important}
.mh-100{max-height:100%!important}
.min-vw-100{min-width:100vw!important}
.min-vh-100{min-height:100vh!important}
.vw-100{width:100vw!important}
.vh-100{height:100vh!important}
.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}
.m-0{margin:0!important}
.mt-0,.my-0{margin-top:0!important}
.mr-0,.mx-0{margin-right:0!important}
.mb-0,.my-0{margin-bottom:0!important}
.ml-0,.mx-0{margin-left:0!important}
.m-1{margin:.25rem!important}
.mt-1,.my-1{margin-top:.25rem!important}
.mr-1,.mx-1{margin-right:.25rem!important}
.mb-1,.my-1{margin-bottom:.25rem!important}
.ml-1,.mx-1{margin-left:.25rem!important}
.m-2{margin:.5rem!important}
.mt-2,.my-2{margin-top:.5rem!important}
.mr-2,.mx-2{margin-right:.5rem!important}
.mb-2,.my-2{margin-bottom:.5rem!important}
.ml-2,.mx-2{margin-left:.5rem!important}
.m-3{margin:1rem!important}
.mt-3,.my-3{margin-top:1rem!important}
.mr-3,.mx-3{margin-right:1rem!important}
.mb-3,.my-3{margin-bottom:1rem!important}
.ml-3,.mx-3{margin-left:1rem!important}
.m-4{margin:1.5rem!important}
.mt-4,.my-4{margin-top:1.5rem!important}
.mr-4,.mx-4{margin-right:1.5rem!important}
.mb-4,.my-4{margin-bottom:1.5rem!important}
.ml-4,.mx-4{margin-left:1.5rem!important}
.m-5{margin:3rem!important}
.mt-5,.my-5{margin-top:3rem!important}
.mr-5,.mx-5{margin-right:3rem!important}
.mb-5,.my-5{margin-bottom:3rem!important}
.ml-5,.mx-5{margin-left:3rem!important}
.p-0{padding:0!important}
.pt-0,.py-0{padding-top:0!important}
.pr-0,.px-0{padding-right:0!important}
.pb-0,.py-0{padding-bottom:0!important}
.pl-0,.px-0{padding-left:0!important}
.p-1{padding:.25rem!important}
.pt-1,.py-1{padding-top:.25rem!important}
.pr-1,.px-1{padding-right:.25rem!important}
.pb-1,.py-1{padding-bottom:.25rem!important}
.pl-1,.px-1{padding-left:.25rem!important}
.p-2{padding:.5rem!important}
.pt-2,.py-2{padding-top:.5rem!important}
.pr-2,.px-2{padding-right:.5rem!important}
.pb-2,.py-2{padding-bottom:.5rem!important}
.pl-2,.px-2{padding-left:.5rem!important}
.p-3{padding:1rem!important}
.pt-3,.py-3{padding-top:1rem!important}
.pr-3,.px-3{padding-right:1rem!important}
.pb-3,.py-3{padding-bottom:1rem!important}
.pl-3,.px-3{padding-left:1rem!important}
.p-4{padding:1.5rem!important}
.pt-4,.py-4{padding-top:1.5rem!important}
.pr-4,.px-4{padding-right:1.5rem!important}
.pb-4,.py-4{padding-bottom:1.5rem!important}
.pl-4,.px-4{padding-left:1.5rem!important}
.p-5{padding:3rem!important}
.pt-5,.py-5{padding-top:3rem!important}
.pr-5,.px-5{padding-right:3rem!important}
.pb-5,.py-5{padding-bottom:3rem!important}
.pl-5,.px-5{padding-left:3rem!important}
.m-n1{margin:-.25rem!important}
.mt-n1,.my-n1{margin-top:-.25rem!important}
.mr-n1,.mx-n1{margin-right:-.25rem!important}
.mb-n1,.my-n1{margin-bottom:-.25rem!important}
.ml-n1,.mx-n1{margin-left:-.25rem!important}
.m-n2{margin:-.5rem!important}
.mt-n2,.my-n2{margin-top:-.5rem!important}
.mr-n2,.mx-n2{margin-right:-.5rem!important}
.mb-n2,.my-n2{margin-bottom:-.5rem!important}
.ml-n2,.mx-n2{margin-left:-.5rem!important}
.m-n3{margin:-1rem!important}
.mt-n3,.my-n3{margin-top:-1rem!important}
.mr-n3,.mx-n3{margin-right:-1rem!important}
.mb-n3,.my-n3{margin-bottom:-1rem!important}
.ml-n3,.mx-n3{margin-left:-1rem!important}
.m-n4{margin:-1.5rem!important}
.mt-n4,.my-n4{margin-top:-1.5rem!important}
.mr-n4,.mx-n4{margin-right:-1.5rem!important}
.mb-n4,.my-n4{margin-bottom:-1.5rem!important}
.ml-n4,.mx-n4{margin-left:-1.5rem!important}
.m-n5{margin:-3rem!important}
.mt-n5,.my-n5{margin-top:-3rem!important}
.mr-n5,.mx-n5{margin-right:-3rem!important}
.mb-n5,.my-n5{margin-bottom:-3rem!important}
.ml-n5,.mx-n5{margin-left:-3rem!important}
.m-auto{margin:auto!important}
.mt-auto,.my-auto{margin-top:auto!important}
.mr-auto,.mx-auto{margin-right:auto!important}
.mb-auto,.my-auto{margin-bottom:auto!important}
.ml-auto,.mx-auto{margin-left:auto!important}
@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}
@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}
@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}
@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}
.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}
.text-justify{text-align:justify!important}
.text-wrap{white-space:normal!important}
.text-nowrap{white-space:nowrap!important}
.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.text-left{text-align:left!important}
.text-right{text-align:right!important}
.text-center{text-align:center!important}
@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}
@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}
@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}
@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}
.text-lowercase{text-transform:lowercase!important}
.text-uppercase{text-transform:uppercase!important}
.text-capitalize{text-transform:capitalize!important}
.font-weight-light{font-weight:300!important}
.font-weight-lighter{font-weight:lighter!important}
.font-weight-normal{font-weight:400!important}
.font-weight-bold{font-weight:700!important}
.font-weight-bolder{font-weight:bolder!important}
.font-italic{font-style:italic!important}
.text-white{color:#fff!important}
.text-primary{color:#007bff!important}
a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}
.text-secondary{color:#6c757d!important}
a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}
.text-success{color:#28a745!important}
a.text-success:focus,a.text-success:hover{color:#19692c!important}
.text-info{color:#17a2b8!important}
a.text-info:focus,a.text-info:hover{color:#0f6674!important}
.text-warning{color:#ffc107!important}
a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}
.text-danger{color:#dc3545!important}
a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}
.text-light{color:#f8f9fa!important}
a.text-light:focus,a.text-light:hover{color:#cbd3da!important}
.text-dark{color:#343a40!important}
a.text-dark:focus,a.text-dark:hover{color:#121416!important}
.text-body{color:#212529!important}
.text-muted{color:#6c757d!important}
.text-black-50{color:rgba(0,0,0,.5)!important}
.text-white-50{color:rgba(255,255,255,.5)!important}
.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}
.text-decoration-none{text-decoration:none!important}
.text-break{word-break:break-word!important;overflow-wrap:break-word!important}
.text-reset{color:inherit!important}
.visible{visibility:visible!important}
.invisible{visibility:hidden!important}
@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}
/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y; }
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d; }
.owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
.owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    user-select: none; }
.owl-carousel.owl-loaded {
    display: block; }
.owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
.owl-carousel.owl-hidden {
    opacity: 0; }
.owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    user-select: none; }
.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
.owl-carousel.owl-rtl {
    direction: rtl; }
.owl-carousel.owl-rtl .owl-item {
    float: right; }
/* No Js */
.no-js .owl-carousel {
  display: block; }
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
  z-index: 0; }
.owl-carousel .owl-animated-out {
  z-index: 1; }
.owl-carousel .fadeOut {
  animation-name: fadeOut; }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  /* background: url("owl.video.play.png") no-repeat; */
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}
.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}
.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.select2-container .select2-selection--single .select2-selection__clear{position:relative}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}
.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}
.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}
.select2-container .select2-search--inline{float:left}
.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}
.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}
.select2-results{display:block}
.select2-results__options{list-style:none;margin:0;padding:0}
.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}
.select2-results__option[aria-selected]{cursor:pointer}
.select2-container--open .select2-dropdown{left:0}
.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}
.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}
.select2-search--dropdown{display:block;padding:4px}
.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}
.select2-search--dropdown.select2-search--hide{display:none}
.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}
.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}
.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}
.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}
.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}
.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}
.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}
.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}
.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}
.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}
.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}
.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px;padding:1px}
.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}
.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}
.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}
.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}
.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}
.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}
.select2-container--default .select2-results__option[role=group]{padding:0}
.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}
.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}
.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}
.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}
.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}
.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}
.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}
.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}
.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}
.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}
.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}
.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}
.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}
.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}
.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}
.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}
.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}
.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}
.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}
.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}
.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}
.select2-container--classic .select2-dropdown--above{border-bottom:none}
.select2-container--classic .select2-dropdown--below{border-top:none}
.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}
.select2-container--classic .select2-results__option[role=group]{padding:0}
.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}
.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}
.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}
.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    zoom: 1;
    display: inline;
    
}
.chosen-container * {
    box-sizing: border-box
}
.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    z-index: 990;
    width: 100%;
    border: 1px solid #dbdbdb;
    background-color: #fff;
    border-top: 0;
    border-radius: 0 0 4px 4px
}
.chosen-container.chosen-with-drop .chosen-drop {
    left: 0
}
.chosen-container a {
    cursor: pointer
}
.chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 18px;
    height: 61px;
    line-height: 66px;
    border: 1px solid #dbdbdb;
    border: 1px solid transparent;
    /*box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .08);*/
    background-color: #fff;
    color: #888;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
    border-radius: 8px
}
.chosen-container-active.chosen-with-drop .chosen-single {
    border-radius: 4px 4px 0 0
}
.chosen-container-active .chosen-drop,
.chosen-container-single .chosen-drop {
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}
.chosen-container-active.chosen-with-drop .chosen-drop {
    opacity: 1;
    visibility: visible
}
.chosen-container-single .chosen-default {
    color: #999
}
.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #888
}
.chosen-container-single .chosen-single-with-deselect span {
    margin-right: 38px
}
.chosen-container-single .chosen-single div {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 18px;
    height: 100%
}
.chosen-container-single .chosen-single div:after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    font-size: 18px;
    margin: 1px 0 0;
    right: 20px;
    position: relative;
    width: auto;
    height: auto;
    display: inline-block;
    color: silver;
    float: right;
    font-weight: 900;
    transition: transform .3s;
    transform: rotate(0deg)
}
.chosen-container-active.chosen-with-drop .chosen-single div:after {
    transform: rotateX(180deg)
}
.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 3px 8px;
    white-space: nowrap
}
.chosen-container-single .chosen-search input[type=text] {
    margin: 1px 0;
    padding: 6px 20px 6px 6px;
    width: 100%;
    height: 40px;
    outline: 0;
    margin-bottom: 10px!important;
    border: 1px solid #ddd!important;
    background-color: #fbfbfb!important;
    display: block;
    position: relative;
    z-index: 9;
    background-color: #fafafa;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .04)
}
.chosen-container-single .chosen-search:before {
    content: "\f002";
    font-family: fontawesome;
    font-size: 15px;
    margin: 0 15px 0 0;
    top: 12px;
    position: relative;
    width: 11px;
    height: 5px;
    display: inline-block;
    color: #aaa;
    float: right;
    font-weight: 400;
    z-index: 10;
    transition: transform .3s
}
.chosen-container-single .chosen-drop {
    margin-top: -1px;
    background-clip: padding-box
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    left: -9999px
}
.chosen-container .chosen-results {
    color: #888;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 4px 8px 0;
    padding: 0 4px 0 8px;
    max-height: 300px
}
.chosen-container .chosen-results li {
    display: none;
    margin: 0;
    padding: 9px 10px;
    list-style: none;
    line-height: 15px;
    word-wrap: break-word;
    -webkit-touch-callout: none
}
.chosen-container-multi .chosen-results li {
    padding: 10px 18px;
    transition: color .3s
}
.chosen-container .chosen-results li.active-result {
    display: list-item;
    cursor: pointer
}
.chosen-container .chosen-results li.disabled-result {
    display: list-item;
    color: #ccc;
    cursor: default
}
.chosen-container .chosen-results li.highlighted {
    background-color: transparent;
    border-radius: 0;
    color: #66676b;
    transition: color .2s ease-in-out
}
.chosen-container .chosen-results li.no-results {
    color: #888;
    display: list-item;
    background-color: #fff
}
.chosen-container-multi .chosen-results li.no-results {
    background-color: #fff
}
.chosen-container .chosen-results li.group-result {
    display: list-item;
    font-weight: 700;
    cursor: default
}
.chosen-container .chosen-results li.group-option {
    padding-left: 15px
}
.chosen-container .chosen-results li em {
    font-style: normal;
    text-decoration: underline
}
.chosen-container-multi .chosen-choices {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 18px;
    height: auto;
    border: 1px solid #dbdbdb;
    background-color: #fff;
    text-decoration: none;
    white-space: nowrap;
    line-height: 33px;
    cursor: pointer;
    margin: 0;
    border-radius: 8px;
    
}
.chosen-container-multi.chosen-with-drop .chosen-choices {
    border-radius: 4px 4px 0 0
}
.chosen-container-multi .chosen-choices li {
    float: left;
    list-style: none
}
.chosen-container-multi .chosen-choices li.search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap
}
.chosen-container-multi .chosen-choices li.search-field input[type=text] {
    margin: 0;
    padding: 0;
    height: 49px;
    outline: 0;
    border: 0!important;
    background: 0 0!important;
    color: #888;
    line-height: normal;
    font-weight: 500;
    box-shadow: none;
    transition: none
}
.chosen-container-multi .chosen-choices li.search-choice {
    position: relative;
    margin: 10px 6px 0 -4px;
    padding: 0 25px 0 8px;
    max-width: 100%;
    background-color: #66676b;
    line-height: 29px;
    color: #fff;
    cursor: default;
    font-weight: 500;
    border-radius: 3px
}
.chosen-container-multi .chosen-choices li.search-choice span {
    word-wrap: break-word
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    position: absolute;
    top: -2px;
    right: 7px;
    display: block
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before {
    content: "\f00d";
    font-family: fontawesome;
    font-size: 13px;
    top: 1px;
    position: relative;
    width: 11px;
    height: 5px;
    display: inline-block;
    color: #fff;
    float: right;
    font-weight: 400
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
    padding-right: 5px;
    border: 1px solid #ccc;
    background-color: #e4e4e4;
    color: #888
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
    background: #d4d4d4
}
.chosen-container-multi .chosen-results {
    margin: 0;
    padding: 0
}
.chosen-container-multi .chosen-drop .result-selected {
    display: list-item;
    color: #ccc;
    cursor: default
}
.chosen-container.chosen-container-multi .chosen-drop {
    opacity: 0;
    visibility: hidden;
    padding: 10px 0
}
.chosen-container.chosen-container-multi.chosen-with-drop.chosen-container-active .chosen-drop {
    opacity: 1;
    visibility: visible
}
.chosen-container-active .chosen-single,
.chosen-container-active .chosen-choices,
.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #e0e0e0
}
.chosen-container-active.chosen-with-drop .chosen-single div {
    border-left: none;
    background: 0 0
}
.chosen-container-active .chosen-choices li.search-field input[type=text] {
    color: #888!important
}
.chosen-drop::-webkit-scrollbar {
    width: 10px
}
.chosen-drop::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, .05);
    border-radius: 10px
}
.chosen-drop::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .2)
}
.chosen-drop::-webkit-scrollbar-thumb:hover {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .3)
}
/* 
Superio | Just another HTML Template

Template Name: Superio
Author: Creative Layers
Version: 1.0.0

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Content Elements 
5. Main Header / Two / Three / Four / Five
6. Sticky Header
7. Mobile Header
8. Login Popup
9. Page Title
10. Section Title
11. Banner Section / One to Ten
12. Work Section
13. Job Categories
14. Job Section / Two / Three / Four / Five / Six
15. Job Detail Section / Style two
16. Features Section
17. Testimonial Section / Two / Three / Four
18. Clients Section / Two
19. About Section / Two / Three
20. Fun Fact Section
21. Recruiter Section 
22. Jobseeker Section
23. Candidates Section / Two
24. Candidate Detail Section
25. Listing Section 
26. Listing Show More
27. Listing Pagination
28. Listing Section Two / Three / Four
29. Listing Maps
30. Top Companies
31. Ads Section
32. Registeration Banners
33. News Section / Two / Three
34. Blog Grid
35. Blog Single
36. Products Section
37. Shop Single
38. Product Tabs
39. Cart Section
40. CheckOut Page
41. Order Slip
42. App Section
43. Pricing Section
44. Process Section
45. steps Section
46. Call To Action / Two / Three / Four
47. Browse Jobs
48. Subscribe Section / Two
49. Faqs Section
50. TNC Section
51. Map Section
52. Contact Section
53. Login Section
54. Invoice Section
55. Main Footer / Two / Three / Four / Five / Six
56. Dashboard
57. User Sidebar
58. Chat Widget
**********************************************/
/*** 

====================================================================
Reset
====================================================================

***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}
/*** 

====================================================================
Global Settings
====================================================================

***/
body {
  font-size: 16px;
  color: #363636;
  line-height: 28px;
  font-weight: 400;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "Jost", sans-serif;
  font-style: normal;
}
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
  line-height: 1.2em;
}
section {
  position: relative;
}
textarea {
  overflow: hidden;
  resize: none;
}
button {
  background-color: transparent;
  outline: none !important;
  cursor: pointer;
  min-width: auto;
}
p,
.text {
  font-size: 15px;
  color: #696969;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
}
::-webkit-input-placeholder {
  color: inherit;
}
::-moz-input-placeholder {
  color: inherit;
}
::-ms-input-placeholder {
  color: inherit;
}
.auto-container {
  position: static;
  max-width: 1310px;
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}
.small-container {
  position: static;
  max-width: 900px;
  padding: 0px 15px;
  margin: 0 auto;
}
.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
  z-index: 1;
  background-color: #ffffff;
  transition: all 300ms ease;
}
.section {
  padding: 60px 0 30px;
}
.bg_alice {
  background-color: #f9fafc;
}
ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
/******************
** \reset select 2
******************/
.select2-container--open,
.select2-dropdown--below,
.select2-drop {
  z-index: 99;
}
.select2-container .select2-choice {
  position: relative;
  z-index: 2;
}
.select2-container {
  max-width: 100%;
  z-index: 9;
}
.select2-container li:before {
  display: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  padding: 6px 10px;
  border: 0;
}
.select2-dropdown,
.select2-search--dropdown {
  border-color: #e0e6ea;
}
.select2-container--default .select2-results__option {
  position: relative;
  color: #4b4342;
  font-weight: 500;
  font-size: 17px;
  padding: 13px 10px;
  line-height: 20px;
  border-top: 1px solid #f1f1f1;
  transition: all 300ms ease;
}
.select2-search--dropdown,
.select2-results .select2-result-label {
  padding: 0;
}
.select2-container--default .select2-results__option[aria-selected="true"],
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: transparent;
  color: var(--talaneo);
}
.select2-container--default .select2-selection--single {
  position: relative;
  width: 100%;
  display: block;
  color: #5c6770;
  font-size: 14px;
  line-height: 30px;
  padding: 10px 18px;
  height: 54px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid #e6e8ed;
  transition: all 300ms ease;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  width: 36px;
  height: 100%;
  background: none;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: block;
  left: 0;
  top: -1px;
  margin: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent !important;
  background: none;
  background-color: inherit;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b:before {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -10px;
  content: "\f107";
  opacity: 0.25;
  font-family: "Font Awesome 6 Pro";
  line-height: 20px;
  font-size: 17px;
  color: inherit;
  font-weight: 900;
}
.chosen-container-single .chosen-single div:after {
  top: 50%;
  margin-top: -10px;
  line-height: 20px;
  right: 20px;
  color: #2f2d51;
  content: "\f17c";
  font-family: "Flaticon";
  font-size: 10px;
}
.chosen-container-single .chosen-single span {
  min-width: 80px;
}
.chosen-container .chosen-drop,
.chosen-container .chosen-results {
  border: 0 !important;
  outline: none !important;
  border-radius: 0px 0px 8px 8px !important;
  margin-top: -3px;
}
/***

=======================
List Style one
=======================

***/
.list-style-one {
  position: relative;
}
.list-style-one li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 26px;
  color: #202124;
  font-weight: 400;
  cursor: default;
  margin-bottom: 20px;
}
.list-style-one i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 17px;
  line-height: 26px;
  content: "\f172";
}
/***

=======================
List Style Two
=======================

***/
.list-style-two {
  position: relative;
}
.list-style-two li {
  position: relative;
  font-size: 14px;
  line-height: 19px;
  color: #696969;
  cursor: default;
  padding-left: 22px;
  margin-bottom: 20px;
}
.list-style-two li:before {
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #c4c4c4;
  border-radius: 50%;
  content: "";
}
/*** 
==========================
Social Icons
==========================
***/
.social-icon-one {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon-one li {
  position: relative;
  margin: 0 6px 10px;
}
.social-icon-one li a {
  position: relative;
  display: block;
  font-size: 14px;
  color: #7b8094;
  height: 45px;
  width: 45px;
  border: 2px solid #323950;
  line-height: 43px;
  text-align: center;
  border-radius: 50%;
  transition: all 300ms ease;
}
.social-icon-one li a:hover {
  background-color: #323950;
}
/* Social Icon Two*/
.social-icon-two {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon-two li {
  position: relative;
  margin: 0 6px 10px;
}
.social-icon-two li a {
  position: relative;
  display: block;
  font-size: 14px;
  color: #9fa9b8;
  height: 45px;
  width: 45px;
  border: 2px solid #f7f8f9;
  line-height: 43px;
  text-align: center;
  border-radius: 50%;
  transition: all 300ms ease;
}
.social-icon-two li a:hover {
  background-color: #f7f8f9;
  color: #32383d;
}
/* Social Icon Three*/
.social-icon-three {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.social-icon-three li {
  position: relative;
  width: 50%;
  margin-bottom: 35px;
}
.social-icon-three li a {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 65px;
  min-height: 45px;
  color: #32383d;
}
.social-icon-three li a span {
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0;
  font-size: 14px;
  border: 2px solid #f7f8f9;
  align-items: center;
  color: #32383d;
  height: 45px;
  width: 45px;
  line-height: 43px;
  transition: all 300ms ease;
}
.social-icon-three li a:hover span {
  background-color: #f7f8f9;
}
/* Social Icon Four*/
.social-icon-four {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.social-icon-four li {
  position: relative;
  margin-right: 25px;
}
.social-icon-four li a {
  font-size: 13px;
  line-height: 24px;
  color: #ffffff;
  transition: all 300ms ease;
}
.social-icon-four li a:hover {
  color: #ffa737;
}
/*** 

====================================================================
Content Elements
====================================================================

***/
.content-elements {
  position: relative;
  padding: 60px 0 10px;
}
.content-elements .auto-container {
  max-width: 1200px;
}
.content-elements .column {
  position: relative;
  margin-bottom: 50px;
}
.content-elements h4.title {
  position: relative;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 30px;
}
.margin-bottom-50 {
  margin-bottom: 50px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-top-70 {
  margin-top: 70px;
}
.margin-top-50 {
  margin-top: 50px;
}
.margin-top-40 {
  margin-top: 40px;
}
.margin-top-30 {
  margin-top: 30px;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-top-10 {
  margin-top: 10px;
}
.width-10 {
  width: 10%;
}
.width-20 {
  width: 20%;
}
.width-30 {
  width: 30%;
}
.width-40 {
  width: 40%;
}
.width-50 {
  width: 50%;
}
.width-60 {
  width: 60%;
}
.width-70 {
  width: 70%;
}
.width-80 {
  width: 80%;
}
.width-90 {
  width: 90%;
}
.width-100 {
  width: 100%;
}
.content-elements .buttons {
  margin-bottom: 20px;
}
.content-elements .buttons .column {
  margin-bottom: 30px;
}
.content-elements .buttons .theme-btn {
  margin-right: 20px;
  margin-bottom: 20px;
}
/*==========================
Owl Carousel Dots
===========================*/
.default-dots .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}
.default-dots .owl-dot {
  position: relative;
  height: 8px;
  width: 8px;
  background: #bfc8cb;
  border-radius: 10px;
  transition: all 300ms ease;
  margin: 0 5px;
}
.default-dots .owl-dot.active {
  background: #202124;
  width: 20px;
}
.default-dots.light .owl-dot {
  background: #bfc8cb;
}
.default-dots.light .owl-dot.active {
  background: #ffffff;
}
/*==========================
Owl Carousel Default Nav
===========================*/
.owl-carousel.no-arrows .owl-nav {
  display: none;
}
.owl-carousel.no-dots .owl-dots {
  display: none;
}
.default-nav .owl-nav {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin-top: -25px;
  transition: all 500ms ease;
}
.default-nav .owl-next,
.default-nav .owl-prev {
  position: absolute;
  left: -80px;
  top: 0;
  height: 50px;
  width: 50px;
  color: #021f4a;
  background: #ffffff;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transition: all 500ms ease;
}
.default-nav .owl-next {
  left: auto;
  right: -80px;
}
.default-nav .owl-next:hover,
.default-nav .owl-prev:hover {
  color: #ffffff;
  background-color: #021f4a;
}
/*== Owl Dots ===*/
.default-nav .owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.default-nav .owl-dot {
  position: relative;
  height: 14px;
  width: 14px;
  border: 2px solid #b9c1d0;
  border-radius: 50%;
  margin: 0 8px;
  transition: all 300ms ease;
}
.default-nav .owl-dot.active,
.default-nav .owl-dot:hover {
  background: #b9c1d0;
}
/*==========================
Message Box
===========================*/
.message-box {
  position: relative;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  min-height: 75px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.message-box p {
  color: inherit;
  font-size: 16px;
  line-height: 25px;
}
.message-box a {
  color: inherit;
  text-decoration: underline;
  transition: all 300ms ease;
}
.message-box .close-btn {
  position: absolute;
  z-index: 1;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 80px;
  font-size: 24px;
  text-align: center;
  display: -webkit-box;
  color: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 300ms ease;
}
.close_icon:before {
  position: relative;
  left: 10px;
  content: "\f175";
  height: 17px;
  width: 1px;
  font-size: 11px;
  font-weight: 700;
  font-family: "Flaticon";
}
/* Message Info */
.message-box.info {
  background-color: #cde9f6;
  color: #4780aa;
}
/* Message warning */
.message-box.warning {
  background-color: #f7f3d7;
  color: #927238;
}
/* Message success */
.message-box.success {
  background-color: #def2d7;
  color: #5b7052;
}
/* Message Error */
.message-box.error {
  background-color: #ecc8c5;
  color: #ab3331;
}
/*==========================
Default Tabs
===========================*/
.default-tabs {
  position: relative;
  overflow: hidden;
}
.default-tabs .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.default-tabs .tab-buttons li {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  color: #202124;
  flex: none;
  order: 0;
  flex-grow: 0;
  line-height: 20px;
  padding: 5px 20px;
  background: var(--talaneo-bg-light);
  border: 1px solid var(--talaneo-bg-light);
  border-radius: 8px;
  cursor: pointer;
  margin: 0 7px 14px;
  transition: all 300ms ease;
}
.default-tabs .tab-buttons li.active-btn {
  background-color: transparent;
  border: 1px solid #ecedf2;
  color: #202124;
}
.default-tabs .tabs-content {
  position: relative;
  width: 100%;
  padding: 25px 0;
}
.default-tabs .tabs-content p {
  margin-bottom: 24px;
}
.default-tabs .tabs-content p:last-child {
  margin-bottom: 0;
}
/* Style Two */
.default-tabs.style-two .tab-buttons {
  background: #ffffff;
  border-bottom: 1px solid #e7e7ec;
}
.default-tabs.style-two .tab-buttons li {
  padding: 9px 10px;
  border-radius: 0;
  border: 0;
  font-size: 16px;
  color: #696969;
  border-bottom: 3px solid transparent;
  background: none;
  margin: 0;
  margin-right: 40px;
}
.default-tabs.style-two .tab-buttons li.active-btn {
  color: var(--talaneo);
  border-bottom: 3px solid #5c6770;
}
/*==========================
Accordian Box
===========================*/
.accordion-box {
  position: relative;
  margin-bottom: 30px;
}
.accordion-box .block {
  position: relative;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ecedf2;
  transition: all 300ms ease;
}
.accordion-box .block .acc-btn {
  position: relative;
  font-size: 16px;
  padding: 17px 30px;
  line-height: 30px;
  color: #202124;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 300ms ease;
}
.accordion-box .block.active-block {
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  color: #2f2d51;
  font-size: 15px;
  transition: all 300ms ease;
}
.accordion-box .block .acc-btn.active .icon:before {
  content: "\f068";
}
.accordion-box .block .acc-content {
  position: relative;
  display: none;
}
.accordion-box .block .acc-content.current {
  display: block;
}
.accordion-box .block .content {
  position: relative;
  padding: 24px 30px 26px;
  border-top: 1px solid #ecedf2;
}
.accordion-box .block .content p {
  position: relative;
  font-size: 15px;
  line-height: 24px;
  color: #696969;
  font-weight: 400;
  margin-bottom: 24px;
  transition: all 300ms ease;
}
.accordion-box .block .content p:last-child {
  margin-bottom: 0;
}
/*======================
Checkbox 
=======================*/
.checkbox-outer {
  position: relative;
  margin-bottom: 30px;
}
.checkboxes {
  list-style: none;
  padding: 0;
}
.checkboxes.inline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.checkboxes li {
  margin-right: 20px;
  margin-bottom: 10px;
}
.checkboxes label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 28px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
}
.checkboxes label span {
  color: #909090;
}
.checkboxes input[type="checkbox"] {
  display: none;
}
.checkboxes label:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 2px;
  background-color: #fff;
  border: 1px solid #ecedf2;
  border-radius: 10px;
  box-sizing: border-box;
  transition: all 0.25s;
  font-family: "Font Awesome 6 Pro";
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  line-height: 17px;
}
.checkboxes input[type="checkbox"]:checked + label:before {
  content: "\f00c";
  background: var(--talaneo);
  border: 1px solid var(--talaneo);
}
.checkboxes.square label:before {
  border-radius: 2px;
}
.checkboxes.two-column:after {
  display: table;
  clear: both;
  content: "";
}
.checkboxes.two-column li {
  display: flex;
  position: relative;
  float: left;
  margin: 0;
  min-width: 50%;
  padding-right: 10px;
}
.checkbox-outer .view-more {
  position: relative;
}
.checkbox-outer .view-more {
  font-size: 13px;
  line-height: 20px;
  color: var(--talaneo);
  font-weight: 400;
  display: flex;
  align-items: center;
}
.checkbox-outer .view-more .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  font-weight: 900;
  font-size: 10px;
  border-radius: 50%;
  margin-right: 10px;
  background: rgba(25, 103, 210, 0.15);
  border-radius: 60px;
}
/*======================
Radio bOX
=======================*/
.radio-box {
  position: relative;
}
.radio-box label {
  position: relative;
  display: block;
  font-size: 15px;
  color: #696969;
  line-height: 20px;
  padding-left: 30px;
  cursor: pointer;
  margin-bottom: 18px;
}
.radio-box label:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 16px;
  width: 16px;
  background: #ffffff;
  content: "";
  border: 1px solid #ecedf2;
  border-radius: 50px;
  background: #ffffff;
  transition: all 300ms ease;
}
.radio-box label:after {
  position: absolute;
  content: "";
  left: 4px;
  top: 4px;
  height: 8px;
  width: 8px;
  border-radius: 5px;
  overflow: hidden;
  background: transparent;
  text-align: center;
}
.radio-box input[type="radio"] {
  display: none;
}
.radio-box input[type="radio"]:checked + label {
  border-color: var(--talaneo);
}
.radio-box input[type="radio"] {
}
.radio-box input[type="radio"]:checked + label:before {
  border-color: var(--talaneo);
}
.radio-box input[type="radio"]:checked + label:after {
  background: var(--talaneo);
  opacity: 1;
}
/*======================
Switches 
=======================*/
.switchbox-outer {
  position: relative;
}
.switchbox-outer h4 {
  font-size: 16px;
  line-height: 1em;
  color: #1b2032;
  font-weight: 700;
  margin-bottom: 15px;
}
.switchbox {
  position: relative;
}
.switchbox li {
  position: relative;
  margin-bottom: 20px;
}
.switchbox .title {
  position: relative;
  margin-left: 10px;
  font-size: 15px;
  color: #5c6770;
  line-height: 20px;
}
.switch {
  position: relative;
  display: flex;
  margin: 0;
  align-items: center;
  cursor: pointer;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 20px;
  background-color: #ffffff;
  border: 1px solid #ecedf2;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 4px;
  bottom: 3px;
  background-color: #d2d3d8;
  transition: 0.4s;
}
input:checked + .slider {
  background: var(--talaneo);
  border: 2px solid var(--talaneo);
}
input:checked + .slider:before {
  background: #ffffff;
  transform: translateX(19px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
/*======================
Radio bOX
=======================*/
.tooltip-outer {
  position: relative;
}
.tooltip-btn {
  position: relative;
  font-size: 15px;
  color: #696969;
  font-weight: 400;
  line-height: 30px;
  padding: 10px 20px;
  min-width: 100px;
  text-align: center;
  background: var(--talaneo-bg-light);
  border-radius: 8px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
/*==========================
Progress Bars
============================*/
.bar-item {
  position: relative;
  margin-bottom: 48px;
}
.bar-item .skill-bar {
  position: relative;
  width: 100%;
  height: 10px;
}
.bar-item .skill-bar .bar-inner {
  position: relative;
  width: 100%;
  height: 10px;
  background: #d4e1f6;
  border-radius: 5px;
}
.bar-item .skill-bar .bar-inner .bar {
  position: relative;
  left: 0px;
  top: 0px;
  height: 10px;
  width: 0px;
  border-radius: 10px;
  border-bottom: 10px solid var(--talaneo);
  transition: all 2000ms ease;
}
.bar-item .skill-header {
  position: relative;
  margin-bottom: 12px;
}
.bar-item .skill-header .skill-title {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  color: #5c6770;
}
.bar-item .skill-percentage {
  position: absolute;
  right: 0;
  bottom: 100%;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 5px;
}
/*==========================
typography
============================*/
.typography {
  position: relative;
}
.typography h5 {
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 11px;
}
.typography p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 24px;
}
.list-style-four {
  position: relative;
}
.list-style-four li {
  position: relative;
  font-size: 15px;
  line-height: 25px;
  color: #696969;
  margin-bottom: 20px;
  padding-left: 30px;
}
.list-style-four li:before {
  position: absolute;
  left: 0;
  top: 3px;
  height: 18px;
  width: 18px;
  background: #696969;
  content: "\f00c";
  border-radius: 10px;
  color: #ffffff;
  font-size: 10px;
  line-height: 18px;
  font-weight: 900;
  text-align: center;
  font-family: "Font Awesome 6 Pro";
}
/*==========================
Pie Graph
===========================*/
.pie-graph {
  position: relative;
  margin-bottom: 40px;
}
.pie-graph .graph-outer {
  position: relative;
  text-align: center;
}
.pie-graph .graph-outer .dial {
  position: relative;
  display: block;
}
.pie-graph .inner-text {
  position: absolute;
  left: 15px;
  right: 15px;
  text-align: center;
  top: 50%;
  font-weight: 500;
  font-size: 26px;
  line-height: 35px;
  color: #202124;
  transform: translateY(-50%);
  line-height: 1em;
  color: #363636;
}
.pie-graph h4 {
  position: relative;
  font-size: 20px;
  color: #363636;
  margin-top: 10px;
  text-align: center;
}
.pie-graph.light h4,
.pie-graph.light .inner-text {
  color: #ffffff;
}
/*==========================
Icons
===========================*/
.icon-calendar {
  background-image: url('icon-calendar.svg');
}
.icon-expiry {
  background-image: url('icon-expiry.svg');
}
.icon-location {
  background-image: url('icon-location.svg');
}
.icon-user-2 {
  background-image: url('icon-user-2.svg');
}
.icon-clock {
  background-image: url('icon-clock.svg');
}
.icon-rate {
  background-image: url('icon-rate.svg');
}
.icon-salary {
  background-image: url('icon-salary.svg');
}
.icon-language {
  background-image: url('icon-language.svg');
}
.icon-degree {
  background-image: url('icon-degree.svg');
}
/*==========================
Banner Box One
===========================*/
.banner-box-one {
  position: relative;
  margin-bottom: 30px;
}
.banner-box-one .cws-image-bg {
  -webkit-clip-path: polygon(0% 20px, 100% 0%, 100% calc(100% - 20px), 0% 100%);
  clip-path: polygon(0% 20px, 100% 0%, 100% calc(100% - 20px), 0% 100%);
}
.banner-box-one .cws-image-bg .cws-overlay-bg {
  width: 50%;
  background-color: #529b6b;
}
.banner-box-one .cws-triangle-overlay {
  opacity: 0.3;
  -webkit-clip-path: polygon(
    0% 0,
    50% 10px,
    100% 0,
    100% 100%,
    50% calc(100% - 10px),
    0 100%
  );
  clip-path: polygon(
    0% 0,
    50% 10px,
    100% 0,
    100% 100%,
    50% calc(100% - 10px),
    0 100%
  );
  background-color: #529b6b;
}
.banner-box-one .inner-container {
  position: relative;
  display: flex;
  width: 100%;
  padding: 21px;
  justify-content: left;
  align-items: center;
  min-height: 245px;
  z-index: 1;
}
.banner-box-one .content {
  width: 50%;
  text-align: center;
}
.banner-box-one .banner-offer {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 55px;
  line-height: 1;
  margin-bottom: 5px;
}
.banner-box-one .banner-desc {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
  opacity: 0.7;
  color: #ffffff;
}
.banner-box-one.orange .cws-triangle-overlay {
  background: #ed6436;
}
.banner-box-one.orange .cws-overlay-bg {
  background-color: #ed6436;
}
.banner-box-one.orange .cws-image-bg:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(237, 100, 54, 0.65);
  content: "";
  z-index: 1;
}
.banner-box-one.orange .theme-btn {
  border-color: #ffffff;
}
/*==========================
Banner Box Two
===========================*/
.banner-box-two {
  position: relative;
  margin-bottom: 30px;
}
.banner-box-two .cws-image-bg {
  -webkit-clip-path: none;
  clip-path: none;
}
.banner-box-two .cws-image-bg .cws-overlay-bg {
  background-color: rgba(75, 180, 105, 0.9);
}
.banner-box-two .inner-container {
  position: relative;
  display: flex;
  width: 100%;
  padding: 21px;
  justify-content: left;
  align-items: center;
  min-height: 245px;
  z-index: 1;
}
.banner-box-two .content {
  width: 100%;
  text-align: center;
}
.banner-box-two .banner-title {
  margin-bottom: 0;
  font-size: 30px;
  text-transform: uppercase;
  color: #fff;
}
.banner-box-two .banner-desc {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
  opacity: 0.7;
  color: #ffffff;
}
.banner-box-two.dark .cws-overlay-bg {
  background-color: rgba(0, 0, 0, 0.85);
}
.banner-box-two.dark .theme-btn {
  border-color: #ffffff;
}
/*==========================
Banner Box Three
===========================*/
.banner-box-three {
  position: relative;
  margin-bottom: 30px;
}
.banner-box-three .cws-image-bg {
  -webkit-clip-path: polygon(0% 20px, 100% 0%, 100% 100%, 0% calc(100% - 20px));
  clip-path: polygon(0% 20px, 100% 0%, 100% 100%, 0% calc(100% - 20px));
}
.banner-box-three .cws-image-bg:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(81, 158, 107, 0.6);
  content: "";
}
.banner-box-three .cws-image-bg .cws-overlay-bg {
  width: 50%;
  background-color: #ffa737;
}
.banner-box-three .cws-triangle-overlay {
  opacity: 0.3;
  -webkit-clip-path: polygon(
    0% 0,
    50% 10px,
    100% 0,
    100% 100%,
    50% calc(100% - 10px),
    0 100%
  );
  clip-path: polygon(
    0% 0,
    50% 10px,
    100% 0,
    100% 100%,
    50% calc(100% - 10px),
    0 100%
  );
  background-color: #529b6b;
}
.banner-box-three .inner-container {
  position: relative;
  display: flex;
  width: 100%;
  padding: 21px;
  justify-content: left;
  align-items: center;
  min-height: 245px;
  z-index: 1;
}
.banner-box-three .content {
  width: 50%;
}
.banner-box-three .banner-title {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #fff;
}
.banner-box-three .banner-desc {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
  opacity: 0.7;
  color: #ffffff;
}
.banner-box-three .banner-offer {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 55px;
  line-height: 1;
  margin-bottom: 5px;
}
.banner-box-three.orange .cws-triangle-overlay {
  background: #ed6436;
}
.banner-box-three.orange .cws-overlay-bg {
  background-color: #ff6c3a;
  z-index: 1;
}
.banner-box-three.orange .cws-image-bg:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(237, 100, 54, 0.65);
  content: "";
  z-index: 1;
}
.banner-box-three.orange .theme-btn {
  border-color: #ffffff;
}
/*==========================
Callout One
===========================*/
.callout-one {
  position: relative;
  z-index: 1;
  padding: 45px 30px;
  overflow: hidden;
  background-size: auto;
  background-repeat: repeat;
  background-position: center center;
  text-align: center;
  margin-bottom: 30px;
}
.callout-one:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(89, 171, 102, 0.9);
  content: "";
}
.callout-one .sub-title {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 1.4em;
  color: #ffffff;
  margin-bottom: 20px;
}
.callout-one h2 {
  position: relative;
  text-align: center;
  font-size: 48px;
  line-height: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
}
.callout-one .theme-btn {
  border-color: #ffffff;
  color: #ffffff;
}
/*==========================
Callout Two
===========================*/
.callout-two {
  position: relative;
  z-index: 1;
  padding: 45px 30px;
  overflow: hidden;
  background-size: auto;
  background-repeat: repeat;
  background-position: center center;
  margin-bottom: 30px;
}
.callout-two:before {
  position: absolute;
  left: -10%;
  top: 0;
  height: 100%;
  width: 60%;
  background-color: rgba(89, 171, 102, 1);
  content: "";
  transform: skew(-15deg);
}
.callout-two .content {
  position: relative;
  width: 50%;
}
.callout-two h2 {
  font-size: 48px;
  line-height: 1.2em;
  font-weight: 600;
  color: #fff;
}
.callout-two h3 {
  font-size: 40px;
  line-height: 1.2em;
  font-weight: 600;
  color: #ffffff;
}
.callout-two .abs-btn {
  position: absolute;
  top: 50%;
  left: 100%;
  margin-left: -70px;
  margin-top: -70px;
  height: 140px;
  width: 140px;
  background-color: #ffffff;
  line-height: 140px;
  text-align: center;
  color: #000000;
  border-radius: 50%;
  min-width: auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
/*==========================
Callout Three
===========================*/
.callout-three {
  position: relative;
  z-index: 1;
  padding: 45px 30px;
  overflow: hidden;
  background-size: auto;
  background-repeat: repeat;
  background-position: center center;
  margin-bottom: 30px;
}
.callout-three:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(89, 171, 102, 0.6);
  content: "";
}
.callout-three .content {
  position: relative;
  text-align: left;
}
.callout-three h2 {
  position: relative;
  font-size: 42px;
  line-height: 1.2em;
  color: #ffffff;
  font-weight: 600;
}
.callout-three h3 {
  position: relative;
  font-size: 32px;
  line-height: 1.4em;
  margin-top: 0px;
  color: #ffffff;
  margin-bottom: 30px;
}
.callout-three .right-box {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  padding: 45px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.callout-three .right-box:before {
  position: absolute;
  top: 0;
  height: 100%;
  width: 120%;
  right: -15%;
  left: initial;
  transform: skew(-15deg);
  background-color: #f36737;
  content: "";
}
.callout-three .banner-offer {
  position: relative;
  font-size: 60px;
  line-height: 1em;
  color: #ffffff;
  margin-bottom: 10px;
}
.callout-three .banner-desc {
  position: relative;
  font-size: 23px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}
.callout-three .theme-btn {
  border-color: #ffffff;
  background-color: transparent;
  color: #ffffff;
}
/*==========================
Preloader
===========================*/
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
}
.preloader:after {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 50px;
  width: 50px;
  margin-left: -25px;
  margin-top: -25px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url('favicon.png');
  content: "";
}
.preloader:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 150px;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  color: var(--talaneo);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  content: "Laden...";
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
hr {
  -webkit-appearance: none;
  position: relative;
  height: 1px;
  margin: 30px auto;
  background: #e6e8ed;
  border-style: none;
  outline-style: none;
}
section hr {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
}
.tabs-box {
  position: relative;
}
.tabs-box .tab {
  display: none;
}
.tabs-box .active-tab {
  display: block;
}
.tabs-box .tab-btn {
  cursor: pointer;
}
/*=== Default Form ===*/
.default-form {
  position: relative;
}
.default-form .form-group {
  position: relative;
  margin-bottom: 20px;
}
.default-form .form-group:last-child {
  margin-bottom: 0;
}
.default-form .form-group > label {
  font-size: 15px;
  line-height: 20px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 10px;
}
.default-form .form-group input[type="text"],
.default-form .form-group input[type="date"],
.default-form .form-group ng-select,
.default-form .form-group input[type="password"],
.default-form .form-group input[type="number"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="url"],
.default-form .form-group textarea,
select {
  position: relative;
  width: 100%;
  display: block;
  height: 60px;
  line-height: 30px;
  padding: 15px 20px;
  font-size: 15px;
  color: #696969;
  -webkit-appearance:none;
  background: var(--talaneo-bg-light);
  border: 1px solid var(--talaneo-bg-light);
  box-sizing: border-box;
  border-radius: 8px;
  transition: all 300ms ease;
}
.default-form .form-group input[type="text"]:focus,
.default-form .form-group input[type="email"]:focus,
.default-form .form-group input[type="url"]:focus,
.default-form .form-group select:focus,
.default-form .form-group textarea:focus {
  border-color: var(--talaneo);
  background: #ffffff;
}
.default-form .form-group textarea {
  height: 160px;
  resize: none;
  padding-top: 15px;
}
.default-form .form-group input[type="submit"],
.default-form .form-group > button {
  position: relative;
  display: inline-block;
  min-width: 160px;
}
.default-form input.error:focus,
.default-form select.error:focus,
.default-form textarea.error:focus {
  border-color: #ff0000;
}
.default-form label.error {
  display: block;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  line-height: 24px;
  color: #ff0000;
  margin-bottom: 0;
}
.default-form .form-group > .icon {
  position: absolute;
  right: 20px;
  bottom: 0;
  color: #9fa9b8;
  font-size: 14px;
  line-height: 54px;
}
.default-form .form-group .rating {
  position: relative;
}
.default-form .form-group .rating a {
  position: relative;
  font-size: 13px;
  color: #999999;
}
.default-form .form-group .rating a:hover {
  color: #ffc78b;
}
#email-form .form-group:first-child {
  margin-bottom: 0;
}
#email-form .response {
  position: relative;
  text-align: center;
}
#email-form .response .success {
  background: #35c2a5;
  color: #ffffff;
  padding: 0 10px;
  margin-bottom: 10px;
}
#email-form .response .failed {
  background-color: #f74848;
  color: #ffffff;
  padding: 0 10px;
  margin-bottom: 10px;
}
#email-form .response .text-info {
  background-color: #ffa737;
  color: #222222 !important;
  padding: 0 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"],
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  line-height: 60px !important;
  min-height: 60px !important;
}
.chosen-container-multi .chosen-choices,
.chosen-container.chosen-with-drop .chosen-drop {
  background: var(--talaneo-bg-light);
  min-height: 60px;
  line-height: 60px;
  border: 0 !important;
  border-radius: 8px;
}
.chosen-container-single .chosen-single {
  background: var(--talaneo-bg-light);
  border: 0 !important;
  border-radius: 8px;
}
.chosen-container-single .chosen-search:before {
  display: none;
}
.chosen-container-multi .chosen-choices li.search-choice {
  color: rgba(25, 103, 210, 1);
  font-size: 13px;
  line-height: 25px;
  color: var(--talaneo);
  padding: 0 25px 0 10px;
  border-radius: 10px;
  background: rgba(25, 103, 210, 0.1);
}
.chosen-container-multi
  .chosen-choices
  li.search-choice
  .search-choice-close:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  top: 3px;
  color: rgba(25, 103, 210, 1);
}
.chosen-container-multi .chosen-choices li.search-choice {
  margin-top: 15px;
}
.chosen-container-single .chosen-search input[type="text"] {
  height: 40px;
  line-height: 20px;
  padding: 10px 20px;
}
/*** 

====================================================================
Scroll To Top
====================================================================

***/
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 28px;
  z-index: 999;
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  display: none;
  cursor: pointer;
  background-color: #23293e;
  color: var(--talaneo);
  background: var(--talaneo-bg-light-card);
  transition: all 300ms ease;
}
.scroll-to-top:hover {
  color: #ffffff;
  background: var(--talaneo);
}
.scroll-to-top.style-two {
  color: var(--talaneo);
  background-color: rgba(52, 168, 83, 0.07);
}
.scroll-to-top.style-two:hover {
  color: #ffffff;
  background-color: rgba(52, 168, 83, 1);
}
/*** 

====================================================================
Main Header
====================================================================

***/
.main-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 99;
  transition: all 300ms ease;
}
.header-span {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  z-index: 1;
}
.main-header.fixed-header {
  position: fixed;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.main-header.fixed-header .logo {
  padding: 15px 0;
}
.main-header .main-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  max-width: 1920px;
  margin: 0 auto;
}
.main-header .nav-outer {
  position: relative;
  display: flex;
  align-items: center;
}
.main-header .logo-box {
  position: relative;
  display: flex;
  align-items: center;
}
.main-header .logo {
  position: relative;
  z-index: 9;
  padding: 25px 0;
  margin-right: 100px;
  transition: all 300ms ease;
}
.main-header .menu-box {
  position: static;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-menu {
  position: static;
}
.main-menu .navbar-header {
  display: none;
}
.main-menu .navbar-collapse {
  padding: 0px;
}
.main-menu .navigation {
  position: static;
  display: flex;
  align-items: center;
}
.main-menu .navigation > li {
  position: relative;
  margin-right: 40px;
  padding: 20px 0;
  transition: all 300ms ease;
}
.main-menu .navigation > li:hover {
  transform:scale(1.1)
}
.main-menu .navigation > li > span,
.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  opacity: 1;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  color: #202124;
  cursor: pointer;
  transition: all 300ms ease;
}
.main-menu .navigation > li.current > a,
.main-menu .navigation > li.current > span {
  color: var(--talaneo);
}
.main-menu .navigation > li.dropdown > span {
  padding-right: 18px;
}
.main-menu .navigation > li.dropdown > span:after {
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -10px;
  font-family: "Font Awesome 6 Pro";
  content: "\f107";
  display: block;
  line-height: 20px;
  font-size: 14px;
  font-weight: 900;
  z-index: 5;
  color: #202124;
}
.main-menu .navigation > li > a > span {
  position: relative;
}
.main-menu .navigation > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 15px 0;
  opacity: 0;
  z-index: 1;
  min-width: 230px;
  border-top: 2px solid var(--talaneo);
  border-radius: 0px 0px 8px 8px;
  background-color: #fff;
  -ms-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.2s;
}
.main-menu .navigation > li > ul:before {
  position: absolute;
  left: 20px;
  top: -7px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 5px solid var(--talaneo);
  content: "";
}
.main-menu .navigation > li > ul.from-right {
  left: auto;
  right: 0;
}
.main-menu .navigation > li > ul .from-right {
  left: auto;
  right: 100%;
  margin-right: 2px;
}
.main-menu .navigation > li > ul > li {
  position: relative;
  display: block;
  z-index: 1;
}
.main-menu .navigation > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > span,
.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 30px;
  z-index: 1;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  white-space: nowrap;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
}
.main-menu .navigation > li > ul > li > span:hover,
.main-menu .navigation > li > ul > li > a:hover {
  color: var(--talaneo);
}
.main-menu .navigation > li.current,
.main-menu .navigation > li > ul > li > ul > li.current > a,
.main-menu .navigation > li > ul > li.current > a {
  color: var(--talaneo);
  
}
.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 100%;
  padding: 10px 0;
  min-width: 220px;
  margin-top: -57px;
  opacity: 0;
  z-index: 1;
  border-top: 2px solid var(--talaneo);
  background-color: #fff;
  -ms-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  transition: all 0.3s;
  transform: translateY(50px);
}
.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  width: 100%;
}
.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 30px;
  z-index: 1;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #363636;
  white-space: nowrap;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.main-menu .navigation > li > ul > li > ul > li > a:hover,
.main-menu .navigation > li > ul > li > ul > li > span:hover {
  color: var(--talaneo);
}
.main-menu .navigation > li > ul > li.dropdown > span:before {
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -10px;
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  display: block;
  line-height: 20px;
  font-size: 15px;
  font-weight: 900;
  z-index: 5;
}
.main-menu .navigation > li.dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.main-menu .navigation li > ul > li.dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translate(0px);
}
.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 30px;
  border: 1px solid #ffffff;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
  display: none;
}
.main-header .outer-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-header .upload-cv {
  position: relative;
  font-size: 15px;
  color: var(--talaneo);
  font-weight: 400;
  white-space: nowrap;
}
.main-header .outer-box .btn-box {
  position: relative;
  display: flex;
}
.main-header .outer-box .btn-box a {
  margin-left: 20px;
  min-width: 140px;
}
.main-header .menu-btn {
  position: relative;
  margin-left: 30px;
}
.main-header .menu-btn .icon {
  font-size: 24px;
  color: #696969;
}
.main-header .menu-btn .count {
  position: absolute;
  right: -8px;
  top: -4px;
  height: 16px;
  width: 16px;
  background: var(--talaneo);
  border-radius: 50%;
  color: #ffffff;
  line-height: 16px;
  font-size: 12px;
}
.main-header.alternate {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.main-header.alternate .main-box {
  padding: 0;
}
.main-header.alternate .main-box .logo {
  margin-right: 80px;
}
.main-header.alternate2 .outer-box .btn-box a {
  border-radius: 5px !important;
}
.main-header.header-style-two.alternate .main-box .logo {
  margin-right: 30px;
}
.main-header.header-style-two.fixed-header {
  background-color: #22218c;
}
.main-header.header-shaddow {
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-bottom: 1px solid #ecedf2;
}
.main-header.alternate3 {
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  background-color: #ffffff;
}
/* Dashboard Option */
#toggle-user-sidebar {
  display: none;
}
.dashboard-option {
  position: relative;
  margin-left: 30px;
}
.dashboard-option .dropdown-menu {
  transform: none !important;
  top: 100% !important;
  left: auto !important;
  right: 0 !important;
  min-width: 300px;
  margin-top: 8px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 8px;
  padding: 30px 30px 17px;
}
.dashboard-option .dropdown-menu:before {
  position: absolute;
  right: 30px;
  top: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ecedf2;
  content: "";
}
.dashboard-option .dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
}
.dashboard-option .dropdown-toggle::after {
  margin-left: 12px;
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  border: 0;
}
.dashboard-option .thumb {
  height: 50px;
  width: 50px;
  overflow: hidden;
}
.dashboard-option .name {
  position: relative;
  display: block;
  color: #202124;
  font-size: 15px;
  line-height: 28px;
  margin-left: 20px;
}
.dashboard-option .dropdown-menu li button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 30px;
  line-height: 30px;
  font-weight: 400;
  font-size: 15px;
  color: #696969;
  text-align: left;
  text-transform: capitalize;
  border-radius: 8px;
  transition: all 500ms ease;
}
.dashboard-option .dropdown-menu li button i {
  position: relative;
  margin-right: 15px;
  font-size: 22px;
  color: #696969;
  text-align: center;
  transition: all 500ms ease;
}
/*** 

====================================================================
Header Style Two
====================================================================

***/
.header-style-two .main-box {
  padding: 0;
}
.header-style-two .nav-outer {
  width: 100%;
}
.header-style-two .main-menu {
  margin-left: auto;
  margin-right: 15px;
}
.header-style-two .logo {
  margin-right: 0;
}
.header-style-two .main-menu .navigation > li {
  margin-left: 45px;
  margin-right: 0;
}
.header-style-two .main-menu .navigation > li.dropdown > span:after,
.header-style-two .main-menu .navigation > li > span,
.header-style-two .main-menu .navigation > li > a {
  color: #ffffff;
}
.header-style-two .upload-cv,
.header-style-two .main-menu .navigation > li > ul > li > a:hover,
.header-style-two .main-menu .navigation > li > ul > li > span:hover,
.header-style-two .main-menu .navigation > li > ul > li > a:hover,
.header-style-two .main-menu .navigation > li > ul > li > ul > li > a:hover,
.header-style-two .main-menu .navigation > li > ul > li > ul > li > span:hover,
.header-style-two
  .main-menu
  .navigation
  > li
  .mega-menu-bar
  .column
  > ul
  > li
  > a:hover,
.header-style-two .main-menu .navigation > li.current.dropdown > span:after,
.header-style-two .main-menu .navigation > li > ul > li > ul > li.current > a,
.header-style-two .main-menu .navigation > li > ul > li.current > a,
.header-style-two .main-menu .navigation > li.current.dropdown > span:after,
.header-style-two .main-menu .navigation > li.current > a,
.header-style-two .main-menu .navigation > li.current > span {
  color: #f9ab00;
}
.header-style-two .main-menu .navigation > li > ul > li > ul,
.header-style-two .main-menu .navigation > li > .mega-menu,
.header-style-two .main-menu .navigation > li > ul {
  border-top-color: #f9ab00;
}
.header-style-two .main-menu .navigation > li > .mega-menu:before,
.header-style-two .main-menu .navigation > li > ul:before {
  border-bottom-color: #f9ab00;
}
.header-style-two .theme-btn {
  border-radius: 50px;
}
/*** 

====================================================================
Header Style Three
====================================================================

***/
.header-style-three .main-box {
  padding: 0 45px;
}
.header-style-three .upload-cv,
.header-style-three .main-menu .navigation > li > ul > li > a:hover,
.header-style-three .main-menu .navigation > li > ul > li > span:hover,
.header-style-three .main-menu .navigation > li > ul > li > a:hover,
.header-style-three .main-menu .navigation > li > ul > li > ul > li > a:hover,
.header-style-three
  .main-menu
  .navigation
  > li
  > ul
  > li
  > ul
  > li
  > span:hover,
.header-style-three
  .main-menu
  .navigation
  > li
  .mega-menu-bar
  .column
  > ul
  > li
  > a:hover,
.header-style-three .main-menu .navigation > li.current.dropdown > span:after,
.header-style-three .main-menu .navigation > li > ul > li > ul > li.current > a,
.header-style-three .main-menu .navigation > li > ul > li.current > a,
.header-style-three .main-menu .navigation > li.current.dropdown > span:after,
.header-style-three .main-menu .navigation > li.current > a,
.header-style-three .main-menu .navigation > li.current > span {
  color: var(--talaneo);
}
.header-style-three .main-menu .navigation > li > ul > li > ul,
.header-style-three .main-menu .navigation > li > .mega-menu,
.header-style-three .main-menu .navigation > li > ul {
  border-top-color: var(--talaneo);
}
.header-style-three .main-menu .navigation > li > .mega-menu:before,
.header-style-three .main-menu .navigation > li > ul:before {
  border-bottom-color: var(--talaneo);
}
/*** 

====================================================================
Header Style Four
====================================================================

***/
.header-style-four .nav-outer {
  width: 100%;
}
.header-style-four .main-menu {
  margin-left: auto;
  margin-right: 15px;
}
.header-style-four .main-menu .navigation > li {
  margin-left: 45px;
  margin-right: 0;
}
.header-style-four .main-menu .navigation > li.dropdown > span:after,
.header-style-four .main-menu .navigation > li > span,
.header-style-four .main-menu .navigation > li > a {
  color: #ffffff;
}
.header-style-four .upload-cv,
.header-style-four .main-menu .navigation > li > ul > li > a:hover,
.header-style-four .main-menu .navigation > li > ul > li > span:hover,
.header-style-four .main-menu .navigation > li > ul > li > a:hover,
.header-style-four .main-menu .navigation > li > ul > li > ul > li > a:hover,
.header-style-four .main-menu .navigation > li > ul > li > ul > li > span:hover,
.header-style-four
  .main-menu
  .navigation
  > li
  .mega-menu-bar
  .column
  > ul
  > li
  > a:hover,
.header-style-four .main-menu .navigation > li > ul > li > ul > li.current > a,
.header-style-four .main-menu .navigation > li > ul > li.current > a {
  color: #d93025;
}
.header-style-four .main-menu .navigation > li > ul > li > ul,
.header-style-four .main-menu .navigation > li > .mega-menu,
.header-style-four .main-menu .navigation > li > ul {
  border-top-color: #d93025;
}
.header-style-four .main-menu .navigation > li > .mega-menu:before,
.header-style-four .main-menu .navigation > li > ul:before {
  border-bottom-color: #d93025;
}
.header-style-four .btn-style-five {
  color: #202124;
}
.header-style-four .btn-style-five:hover {
  color: #ffffff;
}
.header-style-four.fixed-header {
  background: #262c3f;
}
/*** 

====================================================================
Header Style Five
====================================================================

***/
.header-style-five {
}
.header-style-five .logo-box {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.header-style-five .logo {
  padding: 25px 0;
}
.header-style-five .outer-box {
  padding: 25px 0;
}
.header-style-five.fixed-header .outer-box {
  padding: 15px 0;
}
.header-style-five.fixed-header .logo {
  padding: 10px 0;
  transition: all 300ms ease;
}
/*** 

====================================================================
Sticky Header
====================================================================

***/
.sticky-header {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 0px 0px;
  z-index: 99;
  background: rgba(255, 255, 255, 0.952941);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
}
.sticky-header.fixed-header {
  opacity: 1;
  z-index: 99;
  visibility: visible;
}
.sticky-header .main-box {
  padding: 0;
  margin: 0;
}
.sticky-header .logo,
.sticky-header .outer-box,
.sticky-header .main-box:before {
  display: none;
}
.sticky-header .sticky-logo {
  display: block;
}
.sticky-header .main-menu .navigation > li.dropdown > span:after,
.sticky-header .main-menu .navigation > li.dropdown > span,
.sticky-header .main-menu .navigation > li.dropdown > a:after,
.sticky-header .main-menu .navigation > li > a {
  color: #363636;
}
.sticky-header .main-menu .navigation > li.current.dropdown > span:after,
.sticky-header .main-menu .navigation > li.current > span,
.sticky-header .main-menu .navigation > li.current.dropdown > a:after,
.sticky-header .main-menu .navigation > li.current > a {
  color: var(--talaneo);
}
/*** 

====================================================================
Mobile Header
====================================================================

***/
.mobile-header {
  position: relative;
  padding: 20px 15px;
  display: none;
  z-index: 99;
  background-color: #ffffff;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.mobile-header:after {
  display: table;
  clear: both;
  content: "";
}
.mobile-header .logo {
  position: relative;
  float: left;
  margin: 0 !important;
  padding: 0 !important;
  left: 0;
}
.mobile-header .logo img {
  max-height: 50px;
}
.mobile-header .nav-outer {
  position: relative;
  float: right;
}
.mobile-header .outer-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-header .search-box .search-btn {
  font-size: 20px;
  color: #ffffff;
}
.mobile-header .search-box {
  margin: 0;
}
.mobile-header .cart-btn > a {
  font-size: 20px;
}
.mobile-header .cart-btn > a,
.mobile-header .login-box {
  margin-left: 20px;
}
.mobile-header .login-box i {
  font-size: 30px;
}
.nav-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 30px;
  line-height: 30px;
  cursor: pointer;
  margin-left: 20px;
  width: 30px;
  color: #202124;
  order: 3;
  transform: scaleX(-1);
  display: none;
}
.mm-panels {
  --mm-color-background: #202124;
  --mm-color-text-dimmed: #979797;
  --mm-color-border: rgba(255, 255, 255, 0.1);
  --mm-listitem-size: 50px;
}
.mm-menu a,
.mm-menu a:active,
.mm-menu a:hover,
.mm-menu a:link,
.mm-menu a:visited {
  color: #979797;
}
.mm-menu li {
  padding: 0 20px;
}
.mm-menu .mm-listitem:after {
  display: none;
}
.mm-menu li.current > a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  line-height: 30px;
}
.mm-btn:after,
.mm-btn:before {
  border-color: #ffffff;
  border-width: 1.5px;
  height: 6px;
  width: 6px;
}
.mm-panels .mm-counter {
  position: absolute;
  right: 45px;
  top: 50%;
  text-indent: 0;
  display: block;
  margin-top: -10px;
  background-color: rgba(255, 167, 55, 0.8);
  height: 20px;
  width: 20px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  line-height: 22px;
  font-size: 12px;
  font-weight: 600;
  padding: 0;
}
#toggle-user-sidebar {
  margin-left: 20px;
}
#toggle-user-sidebar .thumb {
  display: block;
  height: 30px;
  width: 30px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}
.mm-menu_fullscreen.mm-menu_position-bottom {
  top: 80px;
}
.mm-navbar_sticky {
  padding: 7px 0;
}
.mm-listview {
  padding-top: 20px;
}
.mm-menu li {
  margin-bottom: 10px;
}
.mm-add-listing {
  margin-top: 87px;
  border: transparent;
  display: none;
}
.mm-add-listing .theme-btn {
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #ffffff !important;
  height: 60px;
  border-radius: 10px;
}
.mm-add-listing .mm-listitem__text {
  padding: 0;
}
.mm-add-listing .contact-info {
  position: relative;
  padding: 18px 0;
  display: block;
}
.mm-add-listing .phone-num {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 13px;
  color: #7e7e7e;
}
.mm-add-listing .phone-num span {
  display: block;
}
.mm-add-listing .phone-num a {
  color: #ffffff;
}
.mm-add-listing .address {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 30px;
  color: #7e7e7e;
}
.mm-add-listing .email {
  font-size: 14px;
  line-height: 30px;
  color: #7e7e7e !important;
}
.mm-add-listing .social-links {
  position: relative;
  display: block;
  align-items: center;
}
.mm-add-listing .social-links a {
  font-size: 14px;
  line-height: 16px;
  text-transform: capitalize;
  color: #7e7e7e;
  margin-right: 37px;
}
.mm-panel:after {
  height: 10px;
}
/************************ Mega Menu ***************************/
.main-menu .navigation > li.has-mega-menu {
  position: static;
}
.main-menu .navigation > li > .mega-menu .image-box {
  position: absolute;
  right: -230px;
  top: -15px;
  padding: 20px;
}
.main-menu .navigation > li > .mega-menu {
  position: absolute;
  left: auto;
  right: auto;
  margin: auto;
  width: 880px;
  background: #ffffff;
  padding: 30px 30px;
  min-height: 225px;
  top: 100%;
  z-index: 100;
  opacity: 0;
  margin-top: -15px;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 0px 0px 8px 8px;
  border-top: 2px solid var(--talaneo);
  transition: all 300ms ease;
  transform: scaleY(0);
  transform-origin: top;
}
.main-menu .navigation > li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.main-menu .navigation > li > .mega-menu:before {
  position: absolute;
  left: 20px;
  top: -7px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 5px solid var(--talaneo);
  content: "";
}
.main-menu .navigation > li > .mega-menu .mega-menu-bar {
  position: relative;
  padding-top: 40px;
}
.main-menu .navigation > li .mega-menu-bar .column {
  position: relative;
}
.main-menu .navigation > li .mega-menu-bar h3 {
  position: absolute;
  top: -40px;
  left: 15px;
  font-size: 16px;
  line-height: 25px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 15px;
}
.main-menu .navigation > li .mega-menu-bar > ul {
  position: relative;
}
.main-menu .navigation > li .mega-menu-bar .column > ul > li {
  position: relative;
  width: 100%;
  text-transform: capitalize;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.main-menu .navigation > li .mega-menu-bar .column {
  position: relative;
  margin-bottom: 10px;
}
.main-menu .navigation > li .mega-menu-bar .column > ul > li:last-child {
  margin-bottom: 0;
}
.main-menu .navigation > li .mega-menu-bar .column > ul > li > a {
  position: relative;
  display: block;
  line-height: 20px;
  font-weight: 400;
  font-size: 15px;
  color: #202124;
  padding: 10px 0;
  text-align: left;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.main-menu .navigation > li .mega-menu-bar .column > ul > li > a:hover {
  color: var(--talaneo);
}
/*** 

====================================================================
Login Popup
====================================================================

***/
.jquery-modal {
  z-index: 999;
}
.modal {
  height: auto;
  padding: 0;
  max-width: 500px;
  overflow: visible;
  background: none;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 8px;
}
.blocker {
  background: rgba(32, 33, 36, 0.5);
}
#login-modal {
  max-width: 500px;
  padding: 30px 40px 20px;
  overflow: visible;
  background: #fff;
  border-radius: 8px;
  box-shadow: none;
}
#login-modal .social-btn-two {
  padding: 10px 20px;
}
.login-from {
  position: relative;
  text-align: center;
  background: #fff;
}
.login-from h3 {
  position: relative;
  display: block;
  font-size: 20px;
  color: #1b2032;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 20px;
}
.login-from .form-group {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.login-from .form-group .text,
.login-from .form-group .forgot-pass,
.login-from .form-group label {
  font-size: 14px;
  color: #5c5c5c;
  line-height: 1em;
  margin: 0;
}
.login-from .form-group label {
  cursor: pointer;
}
.login-from .form-group .forgot-pass:hover {
  text-decoration: underline;
}
.login-from .form-group input[type="text"],
.login-from .form-group input[type="email"],
.login-from .form-group input[type="password"],
.login-from .form-group input[type="url"],
.login-from .form-group select,
.login-from .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 54px;
  font-size: 14px;
  color: #5c6770;
  line-height: 30px;
  font-weight: 400;
  background: #ffffff;
  border: 2px solid #e6e8ed;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 300ms ease;
}
.login-from .form-group input[type="submit"],
.login-from .form-group button {
  width: 100%;
  min-width: auto;
}
.login-from .form-group .text {
  width: 100%;
}
.login-from .form-group .social-btn {
  margin-right: 30px;
  width: 100%;
}
.login-from .form-group .social-btn:last-child {
  margin-right: 0;
}
.social-btn {
  position: relative;
  text-align: center;
  white-space: nowrap;
  color: inherit;
  font-size: 16px;
  border-radius: 5px;
  background-color: inherit;
  font-weight: 700;
  padding: 10px 30px;
  color: #ffffff;
  line-height: 25px;
}
.social-btn span {
  margin-right: 3px;
}
.social-btn.facebook-btn {
  background-color: #3b5998;
  color: #ffffff;
}
.social-btn.google-btn {
  background-color: #dc4d28;
  color: #ffffff;
}
.login-from .bottom-text {
  flex-direction: column;
}
.login-from .signup-link {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #021f4a;
}
.login-from .signup-link:hover {
  text-decoration: underline;
}
.login-from.register .form-group.full-width {
  flex-direction: column;
  text-align: left;
  margin-bottom: 8px;
}
.login-from.register .checkbox-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  white-space: nowrap;
}
.login-from.register .checkbox-wrap label {
  margin-left: 10px;
}
.login-from.register .checkbox-wrap label a {
  color: #ef2f24;
}
.login-from.register .checkbox-wrap label a:hover {
  text-decoration: underline;
}
#login-modal .login-form h3 {
  text-align: center;
}
.modal a.close-modal {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 10px;
  top: 10px;
  background: var(--talaneo-bg-light);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--talaneo-bg-light);
  text-indent: 0;
  font-size: 0;
}
.modal a.close-modal:before {
  font-family: Flaticon;
  content: "\f175";
  position: relative;
  font-size: 12px;
  color: #000;
  width: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*** 

====================================================================
Page Title
====================================================================

***/
.page-title {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 50px 0 40px;
  background: var(--talaneo-bg-light-card-gradient);
}
/* .page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("../assets/images/icons/bg-4.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
} */
.page-title h3 {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 30px;
  line-height: 41px;
  text-align: center;
  color: #202124;
  margin-bottom: 10px;
}
.page-breadcrumb {
  font-size: 15px;
  line-height: initial;
  margin: 5px -15px 10px;
}
.page-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  padding: 0 8px;
  text-transform: capitalize;
}
.page-breadcrumb li:after {
  position: absolute;
  top: 2px;
  right: -5px;
  content: "/";
  font-size: 15px;
  line-height: 20px;
  color: #696969;
}
.page-breadcrumb li:last-child::after {
  display: none;
}
.page-breadcrumb li a {
  color: rgba(0, 0, 0, 0.75);
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.page-breadcrumb li a:hover {
  opacity: 0.9;
  color: #1370b5;
}
/* Style Two */
.page-title.style-two {
  padding: 100px 0;
}
.page-title .job-search-form {
  margin-bottom: 0;
}
/* Style Tgree */
.page-title.style-three {
  padding: 70px 0 50px;
  background: #ffffff;
}
.page-title.style-three:before {
  display: none;
}
.page-title .top-filters {
  margin-top: 30px;
  justify-content: center;
}
.page-title .top-filters .form-group {
  margin: 0 10px;
}
.page-title.bg-light {
  background: none !important;
}
.page-title.bg-light:before {
  display: none;
}
/*** 

====================================================================
Section Title
====================================================================

***/
.sec-title-outer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.sec-title {
  position: relative;
  margin-bottom: 50px;
}
.sec-title .sub-title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: var(--talaneo);
  font-weight: 500;
  margin-bottom: 10px;
}
.sec-title h2 {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1.2em;
  color: #202124;
  font-weight: 500;
}
.sec-title .text {
  position: relative;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 26px;
}
.sec-title.light h2,
.sec-title.light .text {
  color: #ffffff;
}
.sec-title-outer .link {
  position: relative;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: var(--talaneo);
  margin-bottom: 50px;
}
.sec-title-outer .link .icon {
  margin-left: 5px;
}
.sec-title-outer select {
  position: relative;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 8px;
  min-width: 202px;
  height: 50px;
  line-height: 20px;
  padding: 15px 20px;
  font-size: 14px;
  line-height: 19px;
  color: #202124;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.sec-title-outer .select-box-outer {
  position: relative;
  margin-bottom: 50px;
}
.sec-title-outer .select-box-outer .icon {
  position: absolute;
  right: 22px;
  top: 50%;
  z-index: 1;
  margin-top: -10px;
  font-size: 14px;
  line-height: 20px;
  color: #202124;
  pointer-events: none;
}
/*** 

====================================================================
Banner Section
====================================================================

***/
.banner-section {
  position: relative;
  display: block;
  padding: 0 55px 0;
}
.banner-section:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url('bg-1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
}
.banner-section .content-column {
  position: relative;
}
.banner-section .content-column .inner-column {
  position: relative;
  padding: 270px 0 150px;
}
.banner-section .content-column .title-box {
  position: relative;
  margin-bottom: 40px;
}
.banner-section .content-column h3 {
  font-size: 50px;
  line-height: 60px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 25px;
}
.banner-section .content-column h3 .colored {
  color: var(--talaneo);
}
.banner-section .content-column .text {
  font-size: 15px;
  color: #696969;
  line-height: 25px;
}
.banner-section .popular-searches {
  position: relative;
  font-size: 15px;
  color: #696969;
  font-weight: 400;
}
.banner-section .popular-searches .title {
  margin-right: 20px;
  font-weight: 500;
}
.banner-section .popular-searches a {
  color: inherit;
  font-size: 14px;
}
.header-info-card {
  position: relative;
  width: 100%;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 22px;
}
.header-arrow{
position: absolute;
left: 60%;
bottom: 40px;
}
.job-search-form {
  position: relative;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
  border-radius: 10px;
  min-width: 740px;
  margin-bottom: 22px;
}
.job-search-form {
  background: #ffffff;
  padding: 20px 20px;
  padding-left: 30px;
  border-radius: 10px;
}
.job-search-form .form-group {
  position: relative;
  text-align: left;
  margin-bottom: 0;
}
.job-search-form .form-group .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  color: #5c6770;
  background: #ffffff;
  z-index: 9;
}
.job-search-form .form-group.category {
  border-left: 1px solid #e6e6e6;
}
.job-search-form .form-group:first-child {
  border-right: 1px solid #e6e6e6;
}
.job-search-form .ui-selectmenu-button.ui-button,
.job-search-form .chosen-container-single .chosen-single,
.job-search-form .form-group input,
ng-select,
.job-search-form .form-group select,
.job-search-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  font-size: 15px;
  color: #696969;
  line-height: 30px;
  font-weight: 400;
  background: #ffffff;
  padding: 15px 0px;
  padding-left: 40px;
  border: 0;
  border-radius: 0;
  transition: all 300ms ease;
}
ng-select{
  height: auto !important;
}
ng-select input{
  height: auto !important;
}
ng-select .ng-value{
    margin-bottom: 5px;
    color: white;
     background: var(--talaneo);
     padding-left: 8px;
     padding-right: 8px;
    border-radius: 12px;
    margin-right: 5px;
}
.ng-dropdown-panel{
  background-color: #ffffff;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0px 40px 30px rgba(25, 25, 46, 0.04);
width: 200%;
}
.ng-dropdown-panel .ng-option{
    padding: 8px 0;
}
.job-search-form .chosen-container-multi .chosen-choices,
.job-search-form .chosen-container.chosen-with-drop .chosen-drop {
  background: #ffffff;
}
.job-search-form .chosen-container-single .chosen-single {
  padding-left: 40px;
  border: 1px solid #ffffff !important;
  border-bottom: 0 !important;
  border-radius: 8px;
}
.job-search-form .chosen-container-single .chosen-drop {
  /*    border: 1px solid #ffffff !important;
border-top: 0 !important;*/
}
.job-search-form .chosen-container-active .chosen-single {
  /*    border: 1px solid #dddddd !important;
border-bottom: 0 !important;*/
}
.job-search-form .chosen-container-active .chosen-drop {
  border: 1px solid #ecedf2 !important;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 8px !important;
  padding-top: 10px !important;
}
.job-search-form .form-group.btn-box {
  text-align: right;
}
.job-search-form .form-group .theme-btn {
  width: 100%;
  min-width: auto;
  height: 60px;
}
/* Job Search Form */
.job-search-form.style-two,
.job-search-form.style-two form,
.job-search-form.style-two .form-group .icon,
.job-search-form.style-two .form-group,
.job-search-form.style-two .ui-selectmenu-button.ui-button,
.job-search-form.style-two .ui-selectmenu-button.ui-button,
.job-search-form.style-two .chosen-container-single .chosen-single span,
.job-search-form.style-two .chosen-container-single .chosen-single,
.job-search-form.style-two .form-group input,
.job-search-form.style-two .form-group select,
.job-search-form.style-two .form-group textarea {
  background: var(--talaneo);
  color: #ffffff;
  border-color: var(--talaneo) !important;
}
.job-search-form.style-two .chosen-container-single .chosen-single {
  padding-left: 40px;
}
.job-search-form.style-two .chosen-container-single .chosen-single div:after {
  color: #fff;
}
.job-search-form.style-two .form-group {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.banner-section .image-column {
  position: relative;
}
.banner-section .image-column .image-box {
  position: relative;
  display: block;
  padding-top: 150px;
  margin-right: -170px;
  padding-left: 90px;
}
.banner-section .image-column .main-image {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 0;
}
.banner-section .image-column .main-image img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
/*================================
Info Blocks
==================================*/
/* Info Block One */
.info_block {
  position: relative;
  padding: 20px 40px 20px 90px;
  min-height: 90px;
  min-width: 260px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 40px 30px rgba(25, 25, 46, 0.04);
  border-radius: 8px;
}
.info_block .icon {
  position: absolute;
  left: 20px;
  top: 20px;
  height: 50px;
  width: 50px;
  border-radius: 10px;
  display: flex;
  font-size: 24px;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  color: #f9ab00;
  background: rgba(249, 171, 0, 0.15);
}
.info_block p {
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  font-weight: 500;
}
/* Info Block Two */
.info_block_two {
  position: relative;
  min-height: 146px;
  max-width: 276px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 30px 35px;
  background: #ffffff;
  box-shadow: 0px 40px 30px rgba(25, 25, 46, 0.04);
  border-radius: 8px;
  text-align: center;
}
.info_block_two .image {
  position: relative;
  margin-top: 15px;
}
.info_block_two p {
  font-size: 16px;
  line-height: 25px;
  color: #202124;
  font-weight: 500;
}
/* Info Block Three */
.info_block_three {
  position: relative;
  padding: 20px 80px 20px 90px;
  box-shadow: 0px 46px 35px rgba(25, 25, 46, 0.04);
  background: #ffffff;
  min-height: 90px;
  min-width: 290px;
  display: flex;
  border-radius: 10px;
  justify-content: center;
  flex-direction: column;
}
.info_block_three .icon {
  position: absolute;
  left: 20px;
  top: 20px;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  display: flex;
  font-size: 24px;
  justify-content: center;
  align-items: center;
  color: #d93025;
  background: rgba(217, 48, 37, 0.2);
}
.info_block_three p {
  font-size: 16px;
  line-height: 25px;
  color: #202124;
  font-weight: 500;
}
.info_block_three .sub-text {
  font-size: 15px;
  color: #696969;
  display: block;
}
.info_block_three .right_icon {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -15px;
  font-size: 14px;
  color: #ffffff;
  background: rgba(217, 48, 37, 0.2);
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}
/* Info Block Four */
.info_block_four {
  position: relative;
  padding-left: 40px;
  padding-top: 40px;
  min-width: 320px;
}
.info_block_four .inner {
  position: relative;
  padding: 20px 30px 20px 66px;
  box-shadow: 0px 46px 35px rgba(25, 25, 46, 0.04);
  background: #ffffff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
}
.info_block_four .icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 80px;
  width: 80px;
  border-radius: 10px;
  display: flex;
  font-size: 34px;
  font-weight: 400;
  justify-content: center;
  align-items: center;
  color: var(--talaneo);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0px 46.7708px 35.0781px rgba(25, 25, 46, 0.04);
  border-radius: 9.35417px;
  z-index: 1;
}
.info_block_four p {
  font-size: 16px;
  line-height: 25px;
  color: #202124;
  font-weight: 500;
}
.info_block_four .sub-text {
  font-size: 15px;
  color: #696969;
  display: block;
}
.banner-section .image-column .info_block {
  position: absolute;
  left: -30px;
  top: 160px;
}
.banner-section .image-column .info_block_two {
  position: absolute;
  right: -100px;
  top: 210px;
}
.banner-section .image-column .info_block_three {
  position: absolute;
  right: -50px;
  top: 490px;
}
.banner-section .image-column .info_block_four {
  position: absolute;
  left: 30px;
  bottom: 85px;
}
/*** 

====================================================================
Banner Section
====================================================================

***/
.banner-section-two {
  position: relative;
  display: block;
  padding: 0 55px 0;
}
.banner-section-two:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url('bg-2.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
}
.banner-section-two .content-column {
  position: relative;
}
.banner-section-two .content-column .inner-column {
  position: relative;
  padding: 270px 0 75px;
}
.banner-section-two .content-column .title-box {
  position: relative;
  margin-bottom: 40px;
}
.banner-section-two .content-column h3 {
  font-size: 50px;
  line-height: 60px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 25px;
}
.banner-section-two .content-column h3 .colored {
  color: var(--talaneo);
}
.banner-section-two .content-column .text {
  font-size: 15px;
  color: #ffffff;
  line-height: 25px;
}
.banner-section-two .popular-searches {
  position: relative;
  font-size: 15px;
  color: #ffffff;
  font-weight: 400;
}
.banner-section-two .popular-searches .title {
  margin-right: 20px;
  font-weight: 500;
}
.banner-section-two .popular-searches a {
  color: inherit;
  font-size: 14px;
  color: #ffffff;
}
.banner-section-two .image-column {
  position: relative;
}
.banner-section-two .image-column .image-box {
  position: relative;
  padding: 150px 0 50px;
  text-align: center;
  margin-right: -300px;
}
.banner-section-two .image-column .image-box .image {
  position: relative;
  margin-bottom: 0;
}
.banner-section-two .bottom-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 125px;
}
.banner-section-two .count-employers {
  position: relative;
  color: #ffffff;
}
.banner-section-two .count-employers .title {
  position: relative;
  margin-right: 20px;
}
.banner-section-two .count-employers img {
  max-height: 50px;
}
.banner-section-two .bottom-box .upload-cv {
  position: relative;
  font-size: 15px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 400;
  display: flex;
}
.banner-section-two .bottom-box .upload-cv .icon {
  position: relative;
  margin-right: 5px;
  font-size: 25px;
  line-height: 25px;
}
/*** 

====================================================================
Banner Section Three
====================================================================

***/
.banner-section-three {
  position: relative;
  display: block;
  padding: 0 55px 0;
  background-color: #ffffff;
}
.banner-section-three .content-column {
  position: relative;
  z-index: 3;
}
.banner-section-three .content-column .inner-column {
  position: relative;
  padding: 270px 0 150px;
}
.banner-section-three .content-column .title-box {
  position: relative;
  margin-bottom: 40px;
}
.banner-section-three .content-column h1 {
  font-size: 60px;
  line-height: 60px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 60px;
}
.banner-section-three .content-column h1 .colored {
  color: var(--talaneo);
}
.banner-section-three .content-column .text {
  font-size: 15px;
  color: #696969;
  line-height: 25px;
}
.banner-section-three .popular-searches {
  position: relative;
  font-size: 15px;
  color: #696969;
  font-weight: 400;
}
.banner-section-three .popular-searches .title {
  margin-right: 20px;
  color: #202124;
  font-weight: 500;
}
.banner-section-three .popular-searches a {
  color: inherit;
  font-size: 14px;
}
.banner-section-three .image-column {
  position: relative;
}
.banner-section-three .image-column .image-box {
  position: relative;
  padding: 120px 0 0;
  margin-left: -90px;
  margin-right: -280px;
}
.banner-section-three .image-column .image-box .image {
  margin-bottom: 0;
}
/* Job Search Form Two*/
.job-search-form-two {
  position: relative;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
  border-radius: 10px;
  min-width: 740px;
  margin-bottom: 18px;
}
.job-search-form-two form {
  background: #ffffff;
  padding: 20px 20px;
  padding-left: 30px;
}
.job-search-form-two .row {
  margin: 0 -30px;
}
.job-search-form-two .form-group {
  position: relative;
  text-align: left;
  padding: 0 30px;
  margin-bottom: 0;
}
.job-search-form-two .title {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 0;
}
.job-search-form-two .form-group .icon {
  position: absolute;
  right: 15px;
  bottom: 0;
  width: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  color: #5c6770;
  background: #ffffff;
  z-index: 9;
}
.job-search-form-two .form-group:first-child {
  border-right: 1px solid #e6e6e6;
}
.job-search-form-two .ui-selectmenu-button.ui-button,
.job-search-form-two .form-group input,
.job-search-form-two .form-group select,
.job-search-form-two .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
  font-size: 15px;
  color: #696969;
  line-height: 20px;
  font-weight: 400;
  background: #ffffff;
  padding: 5px 0px;
  padding-right: 40px;
  border: 0;
  border-radius: 0;
  transition: all 300ms ease;
}
.job-search-form-two .form-group.btn-box {
  text-align: right;
}
.job-search-form-two .form-group .theme-btn {
  width: 100%;
  min-width: auto;
  height: 60px;
}
/*** 

====================================================================
Banner Section Four
====================================================================

***/
.banner-section-four {
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  height: 100vh;
  min-height: 700px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 120px 0;
}
.banner-section-four .title-box {
  position: relative;
  margin-bottom: 25px;
}
.banner-section-four h3 {
  position: relative;
  font-weight: 500;
  font-size: 50px;
  line-height: 68px;
  color: #ffffff;
}
.banner-section-four .popular-searches {
  position: relative;
  font-size: 15px;
  color: #ffffff;
  font-weight: 400;
}
.banner-section-four .popular-searches .title {
  margin-right: 20px;
  font-weight: 500;
}
.banner-section-four .popular-searches a {
  color: inherit;
  font-size: 14px;
  color: #ffffff;
}
.banner-section-four .job-search-form {
  border-radius: 50px;
  max-width: 1070px;
  margin: 0 auto 20px;
}
.banner-section-four .job-search-form {
  padding: 10px 10px;
  padding-left: 30px;
  border-radius: 50px;
}
.banner-section-four .job-search-form .theme-btn {
  border-radius: 50px;
  color: #ffffff;
}
.banner-section-four .image-column {
  position: relative;
}
.banner-section-four .image-column .image-box {
  position: relative;
  padding: 150px 0 50px;
  text-align: center;
  margin-right: -300px;
}
.banner-section-four .image-column .image-box .image {
  position: relative;
  margin-bottom: 0;
}
.banner-section-four .bottom-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 125px;
}
.banner-section-four .count-employers {
  position: relative;
  color: #ffffff;
}
.banner-section-four .count-employers .title {
  position: relative;
  margin-right: 20px;
}
.banner-section-four .count-employers img {
  max-height: 50px;
}
.banner-section-four .bottom-box .upload-cv {
  position: relative;
  font-size: 15px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 400;
  display: flex;
}
.banner-section-four .bottom-box .upload-cv .icon {
  position: relative;
  margin-right: 5px;
  font-size: 25px;
  line-height: 25px;
}
/*** 

====================================================================
Banner Section Five
====================================================================

***/
.banner-section-five {
  position: relative;
  display: block;
  padding: 0 55px 0;
}
.banner-section-five:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url('bg-3.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
}
.banner-section-five .content-column {
  position: relative;
}
.banner-section-five .content-column .inner-column {
  position: relative;
  padding: 270px 0 150px;
}
.banner-section-five .content-column .title-box {
  position: relative;
  margin-bottom: 40px;
}
.banner-section-five .content-column h3 {
  font-size: 50px;
  line-height: 60px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 25px;
}
.banner-section-five .content-column h3 .colored {
  color: var(--talaneo);
}
.banner-section-five .content-column .text {
  font-size: 15px;
  color: #696969;
  line-height: 25px;
}
.banner-section-five .popular-searches {
  position: relative;
  font-size: 15px;
  color: #696969;
  font-weight: 400;
}
.banner-section-five .popular-searches .title {
  margin-right: 20px;
  font-weight: 500;
}
.banner-section-five .popular-searches a {
  color: inherit;
  font-size: 14px;
}
.banner-section-five .image-column {
  position: relative;
}
.banner-section-five .image-column .row {
  align-items: center;
  margin: 0 -20px;
}
.banner-section-five .image-column .image-box {
  position: relative;
  display: block;
  padding-top: 150px;
  margin-right: -255px;
  padding-left: 100px;
}
.banner-section-five .image-column .column {
  position: relative;
  padding: 0 20px;
}
.banner-section-five .image-column .column .image {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
.banner-section-five .image-column .image-box img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.banner-section-five .info_block {
  position: absolute;
  left: 0;
  top: 200px;
}
.banner-section-five .info_block_two {
  position: absolute;
  left: 230px;
  bottom: 60px;
}
/*** 

====================================================================
Banner Section Six
====================================================================

***/
.banner-section-six {
  position: relative;
  display: block;
  padding: 0 55px 0;
}
.banner-section-six:after,
.banner-section-six:before {
  position: absolute;
  left: 0;
  width: 50%;
  top: 0;
  height: 100%;
  background: #ecedf2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
  z-index: -1;
}
.banner-section-six:before {
  border-radius: 0px 60px 60px 0px;
  left: 50%;
  width: 500px;
}
.banner-section-six .content-column {
  position: relative;
  z-index: 9;
}
.banner-section-six .content-column .inner-column {
  position: relative;
  padding: 185px 0 150px;
}
.banner-section-six .content-column .title-box {
  position: relative;
  margin-bottom: 50px;
}
.banner-section-six .job-search-form {
  padding: 10px 10px;
  padding-left: 20px;
}
.banner-section-six .content-column h3 {
  font-size: 50px;
  line-height: 60px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 25px;
}
.banner-section-six .content-column h3 .colored {
  color: var(--talaneo);
}
.banner-section-six .content-column .text {
  font-size: 15px;
  color: #696969;
  line-height: 25px;
}
.banner-section-six .popular-searches {
  position: relative;
  font-size: 15px;
  color: #696969;
  font-weight: 400;
}
.banner-section-six .popular-searches .title {
  margin-right: 20px;
  font-weight: 700;
}
.banner-section-six .popular-searches a {
  color: inherit;
  font-size: 14px;
}
.banner-section-six .image-column {
  position: relative;
}
.banner-section-six .image-column .image-box {
  position: relative;
  display: block;
  padding-top: 67px;
  margin-right: -410px;
  padding-bottom: 67px;
}
.banner-section-six .image-column .main-image {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 0;
}
.banner-section-six .image-column .main-image img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.banner-section-six .image-column .info_block {
  position: absolute;
  left: -30px;
  top: 113px;
}
.banner-section-six .image-column .info_block_two {
  position: absolute;
  right: 120px;
  top: 150px;
}
.banner-section-six .image-column .info_block_three {
  position: absolute;
  right: 185px;
  bottom: 220px;
}
.banner-section-six .image-column .info_block_four {
  position: absolute;
  left: 70px;
  bottom: 40px;
}
.banner-section-six .info_block_four .inner {
  padding: 15px 30px 15px 66px;
}
/*** 

====================================================================
Banner Section Seven
====================================================================

***/
.banner-section-seven {
  position: relative;
  display: block;
  padding: 0 55px 0;
}
.banner-section-seven .content-column {
  position: relative;
}
.banner-section-seven .content-column .inner-column {
  position: relative;
  padding: 175px 0 150px;
}
.banner-section-seven .content-column .title-box {
  position: relative;
  margin-bottom: 50px;
}
.banner-section-seven .job-search-form {
  border-radius: 100px;
  overflow: hidden;
}
.banner-section-seven .job-search-form .form-group .theme-btn {
  border-radius: 50px;
}
.banner-section-seven .job-search-form {
  padding: 10px 10px;
  padding-left: 30px;
}
.banner-section-seven .content-column h3 {
  font-size: 50px;
  line-height: 60px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 25px;
}
.banner-section-seven .content-column h3 .colored {
  color: var(--talaneo);
}
.banner-section-seven .content-column .text {
  font-size: 15px;
  color: #696969;
  line-height: 25px;
}
.banner-section-seven .popular-searches {
  position: relative;
  font-size: 15px;
  color: #696969;
  font-weight: 400;
}
.banner-section-seven .popular-searches .title {
  margin-right: 20px;
  font-weight: 700;
}
.banner-section-seven .popular-searches a {
  color: inherit;
  font-size: 14px;
}
.banner-section-seven .image-outer {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}
.banner-section-seven .image-outer .image {
  position: relative;
  margin-left: -130px;
}
.banner-section-seven .image-outer .image img {
  width: 100%;
}
.banner-section-seven .clients-section-two {
  padding-top: 0;
  margin-top: 100px;
  margin-right: -140px;
}
/*** 

====================================================================
Banner Section Eight
====================================================================

***/
.banner-section-eight {
  position: relative;
  display: block;
  padding: 0 55px 0;
  margin-bottom: 90px;
}
.banner-section-eight:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  bottom: 0;
  content: "";
  background: linear-gradient(258.77deg, var(--talaneo-bg-light-card) 0.12%, var(--talaneo-bg-light-card) 99.74%);
}
.banner-section-eight .content-column {
  position: relative;
}
.banner-section-eight .content-column .inner-column {
  position: relative;
  padding: 340px 0 90px;
}
.banner-section-eight .content-column .title-box {
  position: relative;
  margin-bottom: 20px;
}
.banner-section-eight .job-search-form {
  min-width: 1070px;
}
.banner-section-eight .job-search-form .form-group .theme-btn {
  border-radius: 50px;
}
.banner-section-eight .job-search-form {
  padding: 20px 20px;
  padding-left: 30px;
}
.banner-section-eight .content-column h3 {
  font-size: 50px;
  line-height: 60px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 10px;
}
.banner-section-eight .content-column h3 .colored {
  color: var(--talaneo);
}
.banner-section-eight .content-column .text {
  font-size: 15px;
  line-height: 20px;
  color: #202124;
}
.banner-section-eight .content-column .theme-btn {
  border-radius: 8px !important;
}
.banner-section-eight .bottom-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 160px;
}
.banner-section-eight .count-employers {
  position: relative;
  color: #202124;
  display: flex;
  align-items: center;
}
.banner-section-eight .count-employers .title {
  position: relative;
  margin-right: 20px;
}
.banner-section-eight .count-employers img {
  max-height: 50px;
}
.banner-section-eight .bottom-box .upload-cv {
  position: relative;
  font-size: 15px;
  line-height: 25px;
  color: var(--talaneo);
  font-weight: 400;
  display: flex;
  margin-left: 20px;
  margin-right: 40px;
}
.banner-section-eight .bottom-box .upload-cv .icon {
  position: relative;
  margin-right: 5px;
  font-size: 25px;
  line-height: 25px;
}
.banner-section-eight .image-outer {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}
.banner-section-eight .image-outer .image {
  position: relative;
  margin-left: 0;
}
.banner-section-eight .image-outer .image img {
  width: 100%;
}
/*** 

====================================================================
Banner Section Nine
====================================================================

***/
.banner-section-nine {
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  text-align: center;
  padding: 360px 0 75px;
}
.banner-section-nine .title-box {
  position: relative;
  margin-bottom: 90px;
}
.banner-section-nine h3 {
  position: relative;
  font-weight: 500;
  font-size: 50px;
  line-height: 68px;
  color: #ffffff;
  margin-bottom: 5px;
}
.banner-section-nine .text {
  font-weight: normal;
  font-size: 15px;
  line-height: 20px;
  color: #ffffff;
}
.banner-section-nine .job-search-form {
  max-width: 1070px;
  margin: 0 auto 20px;
}
.banner-section-nine .job-search-form {
  padding: 10px 10px;
  padding-left: 30px;
}
.banner-section-nine .job-search-form .form-group label {
  position: absolute;
  left: 15px;
  top: -45px;
  font-size: 15px;
  line-height: 20px;
  color: #ffffff;
}
.banner-section-nine .job-search-form .theme-btn {
  color: #ffffff !important;
}
.banner-section-nine .fun-fact-section {
  max-width: 75%;
  margin: 0 auto;
  padding-top: 140px;
  padding-bottom: 0;
}
.banner-section-nine .fun-fact-section .count-box {
  color: #ffffff;
  font-weight: 500;
  font-size: 30px;
  line-height: 35px;
  text-align: center;
  margin-bottom: 0;
}
.banner-section-nine .fun-fact-section .counter-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
}
/*** 

====================================================================
Banner Section Ten
====================================================================

***/
.banner-section-ten {
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  text-align: center;
  padding: 370px 0 37px;
}
.banner-section-ten .auto-container {
  position: relative;
  z-index: 1;
}
.banner-section-ten .banner-carousel .owl-item,
.banner-section-ten .banner-carousel .owl-stage-outer,
.banner-section-ten .banner-carousel .owl-stage {
  height: 100%;
}
.banner-section-ten .banner-carousel {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.banner-section-ten .banner-carousel .bg-image {
  position: relative;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.banner-section-ten .banner-carousel.default-nav .owl-next,
.banner-section-ten .banner-carousel.default-nav .owl-prev {
  left: 50px;
  background: transparent;
  border: 1px solid #ffffff;
  color: #fff;
  font-size: 14px;
}
.banner-section-ten .banner-carousel.default-nav .owl-next {
  left: auto;
  right: 50px;
}
.banner-section-ten .title-box {
  position: relative;
  margin-bottom: 40px;
}
.banner-section-ten h3 {
  position: relative;
  font-weight: 500;
  font-size: 50px;
  line-height: 68px;
  color: #ffffff;
  margin-bottom: 5px;
}
.banner-section-ten .text {
  font-weight: normal;
  font-size: 15px;
  line-height: 20px;
  color: #ffffff;
}
.banner-section-ten .job-search-form {
  max-width: 1070px;
  margin: 0 auto 210px;
}
.banner-section-ten .job-search-form {
  padding: 20px 20px;
  padding-left: 30px;
}
.banner-section-ten .job-search-form .form-group label {
  position: absolute;
  left: 15px;
  top: -45px;
  font-size: 15px;
  line-height: 20px;
  color: #ffffff;
}
.banner-section-ten .job-search-form .theme-btn {
  color: #ffffff !important;
  background-color: #d93025;
}
.top-features {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.feature-block-two {
  margin-bottom: 30px;
}
.feature-block-two .inner-box {
  position: relative;
  text-align: center;
}
.feature-block-two .icon {
  position: relative;
  font-size: 36px;
  line-height: 1em;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 20px;
}
.feature-block-two h4 {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 3px;
}
.feature-block-two .count {
  font-size: 14px;
  line-height: 19px;
  color: #ffffff;
}
/*** 

====================================================================
Work Section
====================================================================

***/
.work-section {
  position: relative;
  padding: 100px 0 50px;
}
.work-section.style-two {
  background: var(--talaneo-bg-light-card);
}
.work-block {
  position: relative;
  margin-bottom: 50px;
}
.work-block .inner-box {
  position: relative;
  text-align: center;
  padding: 50px 44px 60px;
  transition: all 300ms ease;
  background: #ffffff;
  border-radius: 8px;
}
.work-block .inner-box:hover {
  box-shadow: 0px 0px 30px rgba(64, 79, 104, 0.1);
}
.work-block .image {
  position: relative;
  margin-bottom: 35px;
}
.work-block h5 {
  position: relative;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 10px;
}
.work-block p {
  font-size: 14px;
  line-height: 24px;
  color: #696969;
}
/*** 

====================================================================
Job Categories
====================================================================

***/
/*=== Category Blcok ===*/
.category-block {
  position: relative;
  margin-bottom: 30px;
}
.category-block .inner-box {
  position: relative;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 19px;
  transition: all 300ms ease;
}
.category-block .inner-box:hover {
  box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
}
.category-block .content {
  position: relative;
  display: flex;
  justify-content: center;
  padding-left: 90px;
  min-height: 70px;
  flex-direction: column;
}
.category-block .icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 70px;
  width: 70px;
  background: #ecedf2;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--talaneo);
  font-size: 36px;
  border-radius: 10px;
  transition: all 300ms ease;
}
.category-block .inner-box:hover .icon {
  color: #ffffff;
  background: var(--talaneo);
}
.category-block h4 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  line-height: 29px;
  margin-bottom: 4px;
}
.category-block h4 a {
  color: #202124;
  transition: all 300ms ease;
}
.category-block h4 a:hover {
  color: var(--talaneo);
}
.category-block p {
  font-size: 14px;
  color: #696969;
  font-weight: 400;
}
/*=== Category Blcok Two ===*/
.category-block-two {
  position: relative;
  margin-bottom: 30px;
}
.category-block-two .inner-box {
  position: relative;
  background: #ffffff;
  border: 1px solid #ecedf2;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  transition: all 300ms ease;
}
.category-block-two .inner-box:hover {
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.category-block-two .content {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.category-block-two .icon {
  position: relative;
  display: inline-block;
  height: 70px;
  width: 70px;
  background: #ecedf2;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--talaneo);
  font-size: 36px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 300ms ease;
}
.category-block-two .inner-box:hover .icon {
  color: #ffffff;
  background: var(--talaneo);
}
.category-block-two h4 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  line-height: 29px;
}
.category-block-two h4 a {
  color: #202124;
  transition: all 300ms ease;
}
.category-block-two h4 a:hover {
  color: var(--talaneo);
}
.category-block-two p {
  font-size: 14px;
  color: #696969;
  font-weight: 400;
}
/*=== Category Blcok Three ===*/
.category-block-three {
  position: relative;
  margin-bottom: 30px;
}
.category-block-three .inner-box {
  position: relative;
  background: #ffffff;
  border: 1px solid #ecedf2;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  transition: all 300ms ease;
}
.category-block-three .inner-box:hover {
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.category-block-three .content {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.category-block-three .icon {
  position: relative;
  display: inline-block;
  height: 70px;
  width: 70px;
  background: #ecedf2;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--talaneo);
  font-size: 36px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 300ms ease;
}
.category-block-three h4 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  line-height: 29px;
}
.category-block-three h4 a {
  color: #202124;
  transition: all 300ms ease;
}
.category-block-three h4 a:hover {
  color: var(--talaneo);
}
.category-block-three p {
  font-size: 14px;
  color: #696969;
  font-weight: 400;
}
.category-block-three:nth-child(1) .icon {
  background: #d4f4f8;
  color: var(--talaneo);
}
.category-block-three:nth-child(2) .icon {
  background: #feddd8;
  color: #ff2200;
}
.category-block-three:nth-child(3) .icon {
  background: #f2e0fe;
  color: #9900ff;
}
.category-block-three:nth-child(4) .icon {
  background: #ffeee2;
  color: #ff2200;
}
.category-block-three:nth-child(5) .icon {
  background: #d4efdf;
  color: #00ca52;
}
.category-block-three:nth-child(6) .icon {
  background: #fcf4db;
  color: #ecb300;
}
.category-block-three:nth-child(7) .icon {
  background: #dad9f8;
  color: #0800ed;
}
.category-block-three:nth-child(8) .icon {
  background: #d4f4f8;
  color: #00d0ea;
}
/*** 

====================================================================
Job Section
====================================================================

***/
.job-section {
  position: relative;
  padding: 100px 0;
}
.job-section.alternate {
  padding: 20px 0 70px;
}
.job-section .tab-buttons {
  justify-content: center;
  margin-bottom: 30px;
}
.job-section .default-tabs .tabs-content {
  padding: 0;
}
.job-block {
  position: relative;
  /* margin-bottom: 30px; */
}
.job-block .inner-box {
  position: relative;
  padding: 32px 20px 22px 30px;
  margin-bottom: 30px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-sizing: border-box;
  border-radius: 10px;
  transition: all 300ms ease;
}
.job-block .inner-box:hover {
  box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
}
.job-block .content {
  position: relative;
  padding-left: 68px;
  min-height: 51px;
}
.job-block .company-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  transition: all 300ms ease;
}
.job-block h4 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  line-height: 26px;
  top: -3px;
  margin-bottom: 3px;
}
.job-block h4 a {
  color: #202124;
  transition: all 300ms ease;
}
.job-block h4 a:hover {
  color: var(--talaneo);
}
.job-block .job-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.job-block .job-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-bottom: 5px;
  margin-right: 20px;
}
.job-block .job-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}
.job-block .job-info li a {
  color: #696969;
}
.job-block .bookmark-btn {
  position: absolute;
  right: 0;
  top: -15px;
  height: 30px;
  width: 30px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  cursor: pointer;
  background: #ffffff;
  transition: all 300ms ease;
}
.job-block .bookmark-btn:hover {
  background: #ecedf2;
}
.job-block .job-other-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.job-other-info li {
  position: relative;
  font-size: 13px;
  line-height: 15px;
  margin-right: 15px;
  padding: 5px 20px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.job-other-info li.green,
.job-other-info li.privacy {
  background: rgba(52, 168, 83, 0.15);
  color: var(--talaneo);
}
.job-other-info li.required {
  background: rgba(249, 171, 0, 0.15);
  color: #f9ab00;
}
.job-section .btn-box {
  position: relative;
  text-align: center;
  margin-top: 15px;
}
/*=== Style Two ===*/
.job-section.style-two {
  background-color: #ecedf2;
}
.job-section.style-two .default-dots .owl-dots {
  margin-top: 20px;
}
/*** 

====================================================================
Job Section Two
====================================================================

***/
.job-section-two {
  position: relative;
  background-color: var(--talaneo-bg-light-card);
  padding: 100px 0;
}
.job-block-two {
  position: relative;
  margin-bottom: 30px;
}
.job-block-two .inner-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 32px 20px 15px 30px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-sizing: border-box;
  border-radius: 10px;
  transition: all 300ms ease;
}
.job-block-two .inner-box:hover {
  box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
}
.job-block-two .content {
  position: relative;
  padding-left: 80px;
  min-height: 60px;
  padding-top: 2px;
}
.job-block-two .company-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  transition: all 300ms ease;
}
.job-block-two .company-logo img {
  display: block;
  width: 100%;
}
.job-block-two h4 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 8px;
}
.job-block-two h4 a {
  color: #202124;
  transition: all 300ms ease;
}
.job-block-two h4 a:hover {
  color: var(--talaneo);
}
.job-block-two .bookmark-btn {
  position: absolute;
  right: 35px;
  top: 15px;
  height: 30px;
  width: 30px;
  line-height: 35px;
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  cursor: pointer;
  background: #ffffff;
  transition: all 300ms ease;
}
.job-block-two .bookmark-btn:hover {
  background: #ecedf2;
}
.job-block-two .job-other-info {
  position: relative;
  display: flex;
  align-items: center;
  top: 9px;
}
.job-section-two .btn-box {
  position: relative;
  text-align: center;
  margin-top: 20px;
}
/*** 

====================================================================
Job Section Three
====================================================================

***/
.job-section-three {
  position: relative;
  padding: 100px 0;
}
.job-block-three {
  position: relative;
  margin-bottom: 30px;
}
.job-block-three .inner-box {
  position: relative;
  padding: 32px 20px 22px 30px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-sizing: border-box;
  border-radius: 10px;
  transition: all 300ms ease;
}
.job-block-three .inner-box:hover {
  box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
}
.job-block-three .content {
  position: relative;
  padding-left: 68px;
  min-height: 51px;
}
.job-block-three .company-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  transition: all 300ms ease;
}
.job-block-three .company-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: fill;
}
.job-block-three h4 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  line-height: 26px;
  top: -3px;
  margin-bottom: 3px;
}
.job-block-three h4 a {
  color: #202124;
  transition: all 300ms ease;
}
.job-block-three h4 a:hover {
  color: var(--talaneo);
}
.job-block-three .job-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.job-block-three .job-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-bottom: 5px;
  margin-right: 20px;
}
.job-block-three .job-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}
.job-block-three .job-info li a {
  color: #696969;
}
.job-block-three .bookmark-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  height: 25px;
  width: 25px;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  cursor: pointer;
  background: #ffffff;
  transition: all 300ms ease;
}
.job-block-three .bookmark-btn:hover {
  background: #ecedf2;
}
.job-block-three .job-other-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
/*** 

====================================================================
Job Section Four
====================================================================

***/
.job-section-four {
  position: relative;
  padding: 100px 0;
}
.job-block-four {
  position: relative;
  margin-bottom: 30px;
}
.job-block-four .inner-box {
  position: relative;
  padding: 47px 45px 37px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  border-radius: 8px;
  transition: all 300ms ease;
  text-align: center;
}
.job-block-four .inner-box:hover {
  box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
}
.job-block-four .job-other-info {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.job-block-four .job-other-info li {
  width: auto;
  display: inline-block;
  border-radius: 0;
  border-radius: 0 30px 30px 0;
}
.job-block-four .job-other-info .time {
  position: absolute;
  right: 10px;
  margin-right: 0px;
  border-radius: 40px;
}
.job-block-four .company-name {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 19px;
  color: var(--talaneo);
  margin-bottom: 6px;
}
.job-block-four .company-logo {
  position: relative;
  display: block;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  transition: all 300ms ease;
}
.job-block-four h4 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  line-height: 26px;
  top: -3px;
  margin-bottom: 3px;
}
.job-block-four h4 a {
  color: #202124;
  transition: all 300ms ease;
}
.job-block-four h4 a:hover {
  color: var(--talaneo);
}
.job-block-four .location {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
}
.job-block-four .location .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}
.job-block-four .location a {
  color: #696969;
}
.job-block-four .post-tags {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.job-block-four .post-tags li {
  position: relative;
  background: var(--talaneo-bg-light);
  border-radius: 30px;
  font-size: 14px;
  line-height: 20px;
  color: #696969;
  padding: 5px 20px;
  border-radius: 20px;
  margin: 0 5px 10px;
}
.job-block-four .post-tags li a {
  color: #696969;
}
.job-block-four .post-tags li.colored {
  background: var(--talaneo);
  color: #ffffff;
}
.job-section-four .btn-box {
  text-align: center;
  margin-top: 20px;
}
/*=== Alternate ===*/
.job-section-four.alternate .job-block-four .inner-box {
  padding: 45px 35px 35px;
}
.job-section-four.alternate .job-block-four h4 {
  font-size: 16px;
  line-height: 22px;
}
/*** 

====================================================================
Job Section Five
====================================================================

***/
.job-section-five {
  position: relative;
  padding: 100px 0;
  background-color: #ecedf2;
}
.job-section-five .outer-box {
  position: relative;
  background: #ffffff;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border: 1px solid #ecedf2;
  border-radius: 8px;
  overflow: hidden;
}
.job-block-five {
  position: relative;
}
.job-block-five .inner-box {
  position: relative;
  padding: 30px 32px;
  padding-right: 120px;
  background: #ffffff;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  transition: all 300ms ease;
  border-left: 2px solid transparent;
}
.job-block-five:nth-child(even) .inner-box {
  background-color: #f6f6fb;
}
.job-block-five .inner-box:hover {
  border-left: 2px solid var(--talaneo);
}
.job-block-five .inner-box .theme-btn {
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -25px;
  background: var(--talaneo-bg-light-card);
}
.job-block-five .inner-box .theme-btn:hover {
  background: rgba(25, 103, 210, 1);
}
.job-block-five .content {
  position: relative;
  padding-left: 80px;
  padding-top: 5px;
  min-height: 60px;
}
.job-block-five .company-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  transition: all 300ms ease;
}
.job-block-five h4 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  line-height: 26px;
  top: -3px;
  margin-bottom: 3px;
}
.job-block-five h4 a {
  color: #202124;
  transition: all 300ms ease;
}
.job-block-five h4 a:hover {
  color: var(--talaneo);
}
.job-block-five .job-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.job-block-five .job-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-bottom: 5px;
  margin-right: 20px;
}
.job-block-five .job-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}
.job-block-five .job-info li a {
  color: #696969;
}
.job-block-five .bookmark-btn {
  position: absolute;
  right: 0;
  top: -15px;
  height: 30px;
  width: 30px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  cursor: pointer;
  background: #ffffff;
  transition: all 300ms ease;
}
.job-block-five .bookmark-btn:hover {
  background: #ecedf2;
}
.job-block-five .job-other-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  bottom: 3px;
  margin-left: 10px;
}
.job-section-five .btn-box {
  text-align: center;
  margin-top: 20px;
}
.job-section-five.style-two {
  background-color: #ffffff;
  padding: 100px 0 50px;
}
.job-section-five.style-two .job-block-five .inner-box:hover {
  border-color: #d93025;
}
.job-section-five.style-two .job-block-five .inner-box .theme-btn {
  background-color: rgba(217, 48, 37, 0.07);
}
.job-section-five.style-two .job-block-five .inner-box .theme-btn:hover {
  background-color: rgba(217, 48, 37, 1);
}
.job-section-five.style-two .featured-column {
  margin-bottom: 50px;
}
/*** 

====================================================================
Job Section Six
====================================================================

***/
.job-section-six {
  position: relative;
  padding: 0px 0 50px;
  border-bottom: 1px solid #ecedf2;
}
.job-section-six .image-column {
  position: relative;
  margin-bottom: 50px;
}
.job-section-six .image-column .image {
  margin-bottom: 0;
  padding-right: 16px;
}
.job-section-six .image-column .image img {
  display: block;
  width: 100%;
}
.job-section-six .content-column {
  position: relative;
}
.job-section-six .content-column .inner-column {
  position: relative;
  padding-top: 36px;
  padding-left: 45px;
}
.job-section-six .sec-title {
  margin-bottom: 28px;
}
.job-section-six .job-block-five {
  margin-bottom: 30px;
}
.job-section-six .job-block-five .inner-box {
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-sizing: border-box;
  border-radius: 8px;
}
.job-section-six .job-block-five .job-info {
  margin-bottom: 0;
}
.job-section-six .job-block-five .company-logo {
  width: 50px;
}
.job-section-six .job-block-five .content {
  padding-left: 70px;
  padding-top: 0;
  min-height: 50px;
}
.job-section-six .job-block-five h4 {
  margin-bottom: 0;
}
/*** 

====================================================================
Job Detail Section
====================================================================

***/
.job-detail-section {
  position: relative;
}
.job-detail-section .upper-box {
  position: relative;
  background-image: url('bg-4.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: cover;
  padding: 80px 0 70px;
}
.job-detail-section.style-three .upper-box {
  background-image: url('bg-5.png');
}
.job-detail-section .job-block-outer {
  position: relative;
  margin-bottom: 30px;
}
.job-block-seven {
  position: relative;
}
.job-block-seven .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.job-block-seven .content {
  position: relative;
  padding-left: 120px;
  min-height: 51px;
}
.job-block-seven.style-two .content {
  padding-left: 0;
}
.job-block-seven .company-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  transition: all 300ms ease;
}
.job-block-seven .company-logo img {
  display: block;
  width: 100%;
}
.job-block-seven h4 {
  position: relative;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.3em;
  color: #202124;
  top: -3px;
  margin-bottom: 10px;
}
.job-block-seven h4 a {
  color: #202124;
  transition: all 300ms ease;
}
.job-block-seven h4 a:hover {
  color: var(--talaneo);
}
.job-block-seven .job-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.job-block-seven .job-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-right: 20px;
  margin-bottom: 3px;
}
.job-block-seven .job-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}
.job-block-seven .job-info li a {
  color: #696969;
}
.job-block-seven .job-other-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.job-block-seven .btn-box {
  position: relative;
  display: flex;
  align-items: center;
}
.job-block-seven .btn-box .theme-btn {
  min-width: 220px;
}
.job-block-seven .bookmark-btn {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  color: var(--talaneo);
  border-radius: 7px;
  background: var(--talaneo-bg-light-card);
  transition: all 300ms ease;
  margin-left: 20px;
}
.job-block-seven .bookmark-btn:hover {
  background: var(--talaneo);
  color: #fff;
}
.job-block-seven.style-three .inner-box {
  flex-direction: column;
}
.job-block-seven.style-three .company-logo {
  position: relative;
  margin-bottom: 20px;
}
.job-block-seven.style-three .job-info {
  justify-content: center;
}
.job-block-seven.style-three .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  margin-bottom: 30px;
}
.job-detail-outer {
  position: relative;
  padding: 50px 0;
}
.job-detail {
  position: relative;
  padding-right: 30px;
}
.candidate-detail-section.style-three .job-detail {
  padding-right: 0;
  padding-left: 20px;
}
.job-overview-two h4,
.job-detail h4 {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 20px;
}
.job-detail p {
  position: relative;
  font-size: 15px;
  line-height: 26px;
  color: #696969;
  margin-bottom: 26px;
}
.job-detail .image {
  position: relative;
  margin-bottom: 50px;
}
.job-detail .images-outer .image {
  margin-bottom: 30px;
  overflow: hidden;
}
.job-detail .images-outer .image img {
  display: block;
  width: 100%;
  transition: all 300ms ease;
}
.job-detail .images-outer .image a {
  position: relative;
  display: block;
}
.job-detail .images-outer .image a:before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  background: var(--talaneo);
  line-height: 45px;
  color: #fff;
  text-align: center;
  content: "+";
  font-size: 30px;
  border-radius: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
.job-detail .images-outer .image a:hover:before {
  opacity: 1;
  visibility: visible;
}
.job-detail .images-outer .image:hover a img {
  transform: scale(1.1);
}
.list-style-three {
  position: relative;
  margin-bottom: 50px;
}
.list-style-three li {
  position: relative;
  font-size: 15px;
  line-height: 26px;
  color: #696969;
  padding-left: 20px;
  margin-bottom: 25px;
}
.list-style-three li:before {
  position: absolute;
  left: 0;
  top: 12px;
  height: 4px;
  width: 4px;
  background: #202124;
  content: "";
}
.job-detail-section .other-options {
  position: relative;
  margin-bottom: 50px;
  margin-top: 50px;
}
.job-detail-section .social-share {
  display: flex;
  align-items: center;
}
.social-share h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  margin-right: 20px;
}
.social-share a {
  padding: 10px 25px;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  background: #222222;
  border-radius: 8px;
  transition: all 300ms ease;
  margin: 5px 0;
  margin-right: 10px;
}
.social-share a.facebook {
  background: #3b5998;
}
.social-share a.twitter {
  background: #55acee;
}
.social-share a.google {
  background: #dd4b39;
}
.social-share a.linkedin {
  background: #007bb5;
}
.social-share a.youtube {
  background: #bb0000;
}
.social-share a.instagram {
  background: #125688;
}
.social-share a.pinterest {
  background: #cb2027;
}
.social-share a.snapchat-ghost {
  background: #fffc00;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.social-share a.skype {
  background: #00aff0;
}
.social-share a.android {
  background: #a4c639;
}
.social-share a.dribbble {
  background: #ea4c89;
}
.social-share a.vimeo {
  background: #45bbff;
}
.social-share a.tumblr {
  background: #2c4762;
}
.social-share a.vine {
  background: #00b489;
}
.social-share a.foursquare {
  background: #45bbff;
}
.social-share a.stumbleupon {
  background: #eb4924;
}
.social-share a.flickr {
  background: #f40083;
}
.social-share a.yahoo {
  background: #430297;
}
.social-share a.soundcloud {
  background: #ff5500;
}
.social-share a.reddit {
  background: #ff5700;
}
.social-share a.rss {
  background: #ff6600;
}
.social-share a:hover {
  opacity: 0.8;
}
.social-share a i {
  margin-right: 5px;
}
.job-detail-section .related-jobs {
  position: relative;
  margin-bottom: 50px;
}
.job-detail-outer .map-outer {
  position: relative;
  margin-bottom: 50px;
}
.job-detail-outer .map-canvas {
  height: 350px;
}
.related-jobs .title-box {
  position: relative;
  margin-bottom: 28px;
}
.related-jobs .title-box h3 {
  font-weight: 500;
  font-size: 26px;
  line-height: 35px;
  color: #000000;
  margin-bottom: 10px;
}
.sidebar {
  position: relative;
}
.sidebar-widget {
  position: relative;
  padding: 30px 30px 30px;
  background: var(--talaneo-bg-light-card);
  border-radius: 8px;
  margin-bottom: 40px;
}
.sidebar-widget .widget-title {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 30px;
}
.sidebar .btn-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.sidebar .btn-box .theme-btn {
  width: 100%;
}
.sidebar .btn-box .bookmark-btn {
  display: flex;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  color: var(--talaneo);
  border-radius: 7px;
  background: var(--talaneo-bg-light-card);
  transition: all 300ms ease;
  margin-left: 20px;
  flex: 0 0 50px;
}
.sidebar .btn-box .bookmark-btn:hover {
  background: var(--talaneo);
  color: #fff;
}
/* Job Overview*/
.job-overview {
  position: relative;
}
.job-overview li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}
.job-overview .icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 30px;
  width: 30px;
  font-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}
.job-overview h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
}
.job-overview span {
  font-size: 15px;
  line-height: 20px;
}
/* Job Overview Two*/
.job-overview-two {
  position: relative;
  border: 1px solid #ecedf2;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 30px 30px 0;
  margin-bottom: 50px;
}
.job-overview-two ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -20px;
}
.job-overview-two li {
  position: relative;
  flex: 0 0 25%;
  padding-left: 50px;
  padding-right: 20px;
  margin-bottom: 30px;
}
.job-overview-two .icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 30px;
  width: 30px;
  background-repeat: no-repeat;
  background-position: center;
}
.job-overview-two h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
}
.job-overview-two span {
  font-size: 15px;
  line-height: 20px;
}
.sidebar-widget .map-outer {
  margin-bottom: 50px;
}
.sidebar-widget .map-canvas {
  min-height: 250px;
}
.job-skills {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.job-skills li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
}
.job-skills li a {
  padding: 5px 20px;
  display: block;
  font-size: 14px;
  line-height: 19px;
  color: #696969;
  border-radius: 4px;
  background: #ffffff;
}
.company-widget {
  position: relative;
}
.company-widget .company-title {
  position: relative;
  padding-left: 78px;
  min-height: 60px;
  padding-top: 5px;
}
.company-widget .company-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
}
.company-widget .company-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
}
.company-widget .profile-link {
  font-size: 14px;
  line-height: 19px;
  color: var(--talaneo);
}
.company-widget .company-link {
  position: relative;
  font-size: 13px;
  line-height: 15px;
  margin-right: 15px;
  padding: 5px 20px;
  border-radius: 50px;
  margin-bottom: 10px;
  background: rgba(25, 103, 210, 0.15);
  color: var(--talaneo);
}
.company-widget .company-info {
  position: relative;
  margin-top: 25px;
}
.company-widget .company-info li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #202124;
  margin-bottom: 19px;
}
.company-widget .company-info li span {
  font-size: 15px;
  line-height: 25px;
  text-align: right;
  color: #696969;
}
.company-widget .social-links {
  display: flex;
  align-items: center;
}
.company-widget .social-links a {
  font-size: 14px;
  line-height: 26px;
  color: #696969;
  margin-left: 17px;
  transition: all 300ms ease;
}
.company-widget .social-links a:hover {
  color: #bc91e8;
}
.company-widget .btn-box {
  position: relative;
  margin-bottom: 0px;
}
.company-widget .btn-box .theme-btn {
  display: block;
  width: 100%;
  background: rgba(25, 103, 210, 0.15);
  border-radius: 8px;
}
.company-widget .btn-box .theme-btn:hover {
  background: rgba(25, 103, 210, 1);
}
.sidebar-widget.contact-widget .theme-btn {
  position: relative;
  display: block;
  width: 100%;
}
.sidebar-widget.contact-widget .form-group input,
.sidebar-widget.contact-widget .form-group select,
.sidebar-widget.contact-widget .form-group textarea {
  background-color: #fff;
  border: 1px solid #ecedf2;
}
.sidebar-widget.contact-widget .form-group textarea {
  min-height: 160px;
  padding: 22px 20px;
}
/*** 

====================================================================
Job Detail Section / Style two
====================================================================

***/
.job-detail-section.style-two {
  background: #ffffff;
}
.job-detail-section.style-two .sidebar-widget {
  background: var(--talaneo-bg-light-card);
}
.job-detail-section.style-two .job-skills li a {
  background: var(--talaneo-bg-light);
}
/*** 

====================================================================
Features Section
====================================================================

***/
.features-section {
  position: relative;
  padding: 100px 0 70px;
}
.feature-block {
  position: relative;
  margin-bottom: 30px;
}
.feature-block .inner-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.feature-block .image {
  position: relative;
  margin-bottom: 0;
}
.feature-block .image img {
  display: block;
  width: 100%;
  transition: all 400ms ease;
}
.feature-block .inner-box:hover .image img {
  transform: scale(1.2);
}
.feature-block .overlay-box {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.feature-block .overlay-box .content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px 30px 25px;
  z-index: 9;
}
.feature-block .overlay-box h5 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}
.feature-block .overlay-box .total-jobs {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
}
.overlay-link {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
}
/*** 

====================================================================
Testimonial Section
====================================================================

***/
.testimonial-section {
  position: relative;
  padding: 100px 0;
  background: var(--talaneo-bg-light);
}
.testimonial-section .carousel-outer {
  position: relative;
  margin: 0 -10px;
}
.testimonial-section .testimonial-carousel {
  max-width: 610px;
  margin: 0 auto;
}
.testimonial-block {
  position: relative;
  padding: 10px;
  margin-right: 20px;
  opacity: 0.5;
  transition: all 300ms ease;
}
.testimonial-section .testimonial-carousel .active .testimonial-block {
  opacity: 1;
}
.testimonial-section .testimonial-carousel .owl-stage-outer {
  overflow: visible;
}
.testimonial-block .inner-box {
  position: relative;
  padding: 40px 40px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 8px;
}
.testimonial-block .inner-box:before {
  position: absolute;
  height: 26px;
  width: 34px;
  right: 28px;
  top: 25px;
  background-image: url('quote-icon.png');
  content: "";
  z-index: 2;
}
.testimonial-block .title {
  position: relative;
  font-size: 18px;
  line-height: 24px;
  color: var(--talaneo);
  font-weight: 500;
  margin-bottom: 20px;
}
.testimonial-block .text {
  font-size: 16px;
  line-height: 26px;
  color: #696969;
  margin-bottom: 50px;
}
.testimonial-block .info-box {
  position: relative;
  padding-left: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70px;
}
.testimonial-block .thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: #101c5d;
}
.testimonial-block .name {
  font-size: 18px;
  color: #696969;
  font-weight: 500;
}
.testimonial-block .designation {
  position: relative;
  display: block;
  font-size: 14px;
  color: #696969;
}
.testimonial-section.style-two {
  background-color: #ffffff;
  padding-bottom: 50px;
}
.testimonial-section.style-two .testimonial-block {
  opacity: 1;
}
.testimonial-section.style-two .default-dots .owl-dots {
  position: relative;
  margin-top: 40px;
}
.testimonial-section.style-two .testimonial-block .name {
  font-weight: 500;
  color: #202124;
}
.testimonial-section.style-two.alternate {
  padding: 100px 0;
}
.testimonial-section.style-two.alternate .testimonial-block {
  padding: 0;
}
/*** 

====================================================================
Testimonial Section Two
====================================================================

***/
.testimonial-section-two {
  position: relative;
  padding: 100px 0;
  min-height: 568px;
}
.testimonial-section-two .testimonial-left {
  position: absolute;
  right: 50%;
  top: 190px;
  margin-right: 410px;
}
.testimonial-section-two .testimonial-right {
  position: absolute;
  top: 190px;
  left: 50%;
  margin-left: 410px;
}
.testimonial-section-two:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  /* background-image: url(../assets/images/icons/shape-2.png); */
  content: "";
  background-repeat: no-repeat;
  background-position: center;
}
.testimonial-section-two .carousel-outer {
  position: relative;
  margin: 0 -10px;
}
.testimonial-section-two .testimonial-carousel {
  max-width: 560px;
  margin: 0 auto;
}
.testimonial-block-two {
  position: relative;
}
.testimonial-block-two .inner-box {
  position: relative;
  text-align: center;
}
.testimonial-block-two .inner-box:before {
  position: absolute;
  height: 26px;
  width: 34px;
  right: 50%;
  top: 0;
  margin-right: 60px;
  background-image: url('quote-icon.png');
  content: "";
  z-index: 2;
}
.testimonial-block-two .thumb {
  position: relative;
  display: inline-block;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  margin-bottom: 15px;
}
.testimonial-block-two .thumb img {
  display: block;
  width: 100%;
  border: 10px solid #ffffff;
  border-radius: 50%;
}
.testimonial-block-two .title {
  position: relative;
  font-size: 18px;
  line-height: 24px;
  color: var(--talaneo);
  font-weight: 400;
  margin-bottom: 10px;
}
.testimonial-block-two .text {
  font-size: 16px;
  line-height: 26px;
  color: #696969;
  margin-bottom: 35px;
}
.testimonial-block-two .info-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-block-two .name {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
}
.testimonial-block-two .designation {
  position: relative;
  display: block;
  font-size: 14px;
  color: #696969;
}
.testimonial-carousel .owl-dots {
  position: relative;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-carousel .owl-dot {
  position: relative;
  height: 8px;
  width: 8px;
  background: #bfc8cb;
  border-radius: 10px;
  transition: all 300ms ease;
  margin: 0 5px;
}
.testimonial-carousel .owl-dot.active {
  background: #202124;
  width: 20px;
}
/* Style Two */
.testimonial-section-two.style-two:before {
  display: none;
}
.testimonial-section-two.style-two .testimonial-block-two .inner-box:after {
  position: absolute;
  left: 0;
  top: 60px;
  bottom: 0;
  width: 100%;
  background: var(--talaneo);
  border-radius: 30px;
  content: "";
  z-index: -1;
}
.testimonial-section-two.style-two .testimonial-block-two .inner-box {
  padding: 0 30px 96px;
}
.testimonial-section-two.style-two
  .testimonial-section-two
  .testimonial-carousel {
  max-width: 630px;
}
.testimonial-section-two.style-two .testimonial-block-two .designation,
.testimonial-section-two.style-two .testimonial-block-two .name,
.testimonial-section-two.style-two .testimonial-block-two .title,
.testimonial-section-two.style-two .testimonial-block-two .text {
  font-weight: 400 !important;
  color: #ffffff;
}
.testimonial-section-two.style-two .testimonial-carousel .owl-dots {
  position: absolute;
  margin-top: 0;
  width: 100%;
  bottom: 38px;
}
/*** 

====================================================================
Testimonial Section Three
====================================================================

***/
.testimonial-section-three {
  position: relative;
  padding: 100px 0 0;
}
.testimonial-section-three .auto-container {
  max-width: 1100px;
}
.testimonial-section-three .slide-item {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.testimonial-section-three .image-column {
  position: relative;
  margin-right: 140px;
  margin-bottom: 50px;
  max-width: 410px;
  width: 100%;
}
.testimonial-section-three .image-column .image {
  position: relative;
  margin-bottom: 0;
}
.testimonial-block-three {
  position: relative;
}
.testimonial-block-three .inner-box {
  position: relative;
  padding-top: 100px;
}
.testimonial-block-three .inner-box:before {
  position: absolute;
  height: 26px;
  width: 34px;
  right: 50%;
  top: 0;
  margin-right: 60px;
  background-image: url('quote-icon.png');
  content: "";
  z-index: 2;
}
.testimonial-block-three .title {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--talaneo);
  margin-bottom: 20px;
}
.testimonial-block-three .text {
  font-size: 16px;
  line-height: 26px;
  color: #696969;
  margin-bottom: 60px;
}
.testimonial-block-three .info-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-block-three .name {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
}
.testimonial-block-three .designation {
  position: relative;
  display: block;
  font-size: 14px;
  color: #696969;
}
.testimonial-section-three .owl-dots {
  display: none;
}
.testimonial-section-three .owl-nav {
  position: absolute;
  left: 50%;
  bottom: 90px;
  display: flex;
  align-self: center;
  margin-left: 15px;
}
.testimonial-section-three .owl-next,
.testimonial-section-three .owl-prev {
  position: relative;
  background: rgba(52, 168, 83, 0.15);
  border-radius: 8px;
  color: var(--talaneo);
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  margin-right: 10px;
  font-weight: 600;
  font-size: 12px;
  transition: all 300ms ease;
}
.testimonial-section-three .owl-next:hover,
.testimonial-section-three .owl-prev:hover {
  background: rgba(52, 168, 83, 1);
  color: #ffffff;
}
/*** 

====================================================================
Testimonial Section Four
====================================================================

***/
.testimonial-section-four {
  position: relative;
  padding: 100px 0;
}
.testimonial-section-four .testimonial-carousel {
  max-width: 560px;
  margin: 0 auto;
}
.testimonial-section-four .sec-title {
  margin-bottom: 90px;
}
.testimonial-block-four {
  position: relative;
}
.testimonial-block-four .inner-box {
  position: relative;
  text-align: center;
}
.testimonial-block-four .title {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 22px;
}
.testimonial-block-four .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 40px;
}
.testimonial-block-four .info-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonial-block-four .thumb {
  position: relative;
  display: inline-block;
  height: 78px;
  width: 78px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #ffffff;
  margin-bottom: 15px;
}
.testimonial-block-four .thumb img {
  border-radius: 50%;
}
.testimonial-block-four .name {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}
.testimonial-block-four .designation {
  position: relative;
  display: block;
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
}
/*** 

====================================================================
Clients Section
====================================================================

***/
.clients-section {
  position: relative;
  padding: 60px 0 60px;
  border-bottom: 1px solid #ecedf2;
}
.clients-section.alternate {
  padding: 80px 0 0;
  border-bottom: 0;
}
.clients-section.alternate2 {
  padding: 60px 0 100px;
}
.clients-section .sponsors-outer {
  position: relative;
  padding: 0 15px;
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
}
.clients-section .slide-item {
  position: relative;
}
.clients-section .image-box {
  position: relative;
  text-align: center;
  margin-bottom: 0;
}
.clients-section .image-box img {
  position: relative;
  display: inline-block;
  max-width: 50%;
  width: auto;
  transition: all 300ms ease;
}
/*** 

====================================================================
Clients Section Two
====================================================================

***/
.clients-section-two {
  position: relative;
  padding: 60px 0 0;
}
.clients-section-two .sponsors-outer {
  position: relative;
  padding: 0 15px;
  max-width: 1310px;
  width: 100%;
  margin: 0 auto;
}
.clients-section-two .slide-item {
  position: relative;
}
.clients-section-two .image-box {
  position: relative;
  text-align: center;
  padding: 15px 0;
  margin-bottom: 0;
}
.clients-section-two .image-box img {
  position: relative;
  display: inline-block;
  max-width: 100%;
  width: auto;
  border-radius: 24px;
  height: 33px;
  filter: grayscale(1);
  transition: all 300ms ease;
}
.clients-section-two .image-box img:hover {
  filter: grayscale(0);
}
.clients-section-two.alternate {
  padding: 100px 0;
}
/*===================================
About Ssection / Style Two
====================================*/
.about-section.style-two .image-column .inner-column {
  position: relative;
  padding-right: 17px;
}
.about-section.style-two .content-column .inner-column {
  padding-left: 110px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
}
.about-section.style-two .list-style-two {
  position: relative;
  margin-bottom: 20px;
}
.about-section.style-two .content-column h2 {
  font-weight: 500;
  font-size: 26px;
  line-height: 38px;
  color: #000000;
}
.about-section.style-two .content-column .sec-title .text {
  max-width: 100%;
  font-size: 14px;
  line-height: 24px;
}
.about-section.style-two .sec-title {
  margin-bottom: 43px;
}
.about-section.style-two .content-column .theme-btn {
  min-width: 190px;
}
.about-section.style-two .fun-fact-section {
  padding: 60px 0 70px;
}
.about-section.style-two .fun-fact-section .count-box {
  color: var(--talaneo);
}
.about-section.style-two .fun-fact-section .counter-title {
  font-size: 15px;
}
/*** 

====================================================================
About Section Two
====================================================================

***/
.about-section-two {
  position: relative;
  padding: 100px 0;
}
.about-section-two .content-column {
  position: relative;
  /* margin-bottom: 50px; */
}
.about-section-two .content-column .inner-column {
  position: relative;
  padding-left: 90px;
}
.about-section-two .sec-title {
  margin-bottom: 30px;
}
.about-section-two .sec-title h2 {
  font-size: 40px;
  line-height: 54px;
  color: #202124;
}
.about-section-two .sec-title .text {
  max-width: 415px;
  font-size: 15px;
  line-height: 26px;
  color: #696969;
}
.about-section-two .list-style-one {
  margin-bottom: 35px;
}
.about-section-two .image-column {
  position: relative;
  text-align: center;
  /* margin-bottom: 150px; */
  display: flex;
align-items: center;
}
.about-section-two .image-column .image-box {
  position: relative;
  margin-bottom: 0;
  margin-right: -50px;
}
.about-section-two .content-column .theme-btn {
  min-width: 180px;
}
.about-section-two.style-two .image-column .image-box {
  text-align: left;
  margin-right: 0;
}
.about-section-two.style-two .image-column .image-box img {
  border-radius: 24px;
}
.about-section-two.style-two .image-column .image-box video {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
}
/* .about-section-two.style-two .content-column .inner-column {
  padding-left: 120px;
} */
/*** 

====================================================================
About Section Three
====================================================================

***/
.about-section-three {
  position: relative;
  padding: 50px 0;
}
.about-section-three .images-box {
  position: relative;
}
.about-section-three .images-box .row {
  margin: 0 -5px;
}
.about-section-three .images-box .column {
  position: relative;
  padding: 0 5px;
}
.about-section-three .images-box .image {
  position: relative;
  margin-bottom: 10px;
}
.about-section-three .images-box .image img {
  border-radius: 4px;
  width: 100%;
}
.about-section-three .text-box,
.about-section-three .fun-fact-section {
  max-width: 900px;
  margin: 0 auto;
}
.about-section-three .fun-fact-section {
  padding: 50px 0 30px;
}
.about-section-three .text-box h4 {
  font-weight: 500;
  font-size: 30px;
  line-height: 31px;
  color: #202124;
  margin-bottom: 31px;
}
.about-section-three .text-box p {
  font-size: 15px;
  line-height: 26px;
  color: #696969;
  margin-bottom: 26px;
}
/***

====================================================================
Fun Fact Section
====================================================================

***/
.fun-fact-section {
  position: relative;
  padding: 100px 0 70px;
  z-index: 1;
}
.fun-fact-section .counter-column {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.fun-fact-section .count-box {
  position: relative;
  display: block;
  margin-bottom: 10px;
  font-size: 50px;
  line-height: 1em;
  color: #202124;
  font-weight: 500;
}
.fun-fact-section .counter-title {
  font-size: 15px;
  line-height: 30px;
  color: #696969;
  font-weight: 400;
  display: block;
}
.fun-fact-section.style-two {
  padding: 50px 0 20px;
}
.fun-fact-section.style-two .count-box {
  color: var(--talaneo);
}
.fun-fact-section.style-two .counter-title {
  color: #696969;
}
/*** 

====================================================================
Candidates Section
====================================================================

***/
.candidates-section {
  position: relative;
  padding: 100px 0;
  border-bottom: 1px solid #ecedf2;
}
.candidates-section .carousel-outer {
  margin: 0 -15px;
}
.candidates-carousel .owl-dots {
  margin-top: 20px;
}
.candidate-block {
  position: relative;
  padding: 0 15px;
  margin-bottom: 30px;
}
.candidate-block .inner-box {
  position: relative;
  padding: 30px 30px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-sizing: border-box;
  border-radius: 8px;
  transition: all 300ms ease;
  text-align: center;
}
.candidate-block .inner-box:hover {
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.candidate-block .image {
  position: relative;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 14px;
}
.candidate-block .image img {
  width: 100%;
}
.candidate-block .name {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 5px;
}
.candidate-block .designation {
  display: block;
  font-size: 14px;
  color: var(--talaneo);
  line-height: 19px;
  margin-bottom: 10px;
}
.candidate-block .location {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #696969;
  margin-bottom: 25px;
}
.candidate-block .location i {
  font-size: 14px;
  margin-right: 5px;
}
.candidate-block .theme-btn {
  max-width: 240px;
  width: 100%;
}
.candidates-section.alternate .candidate-block .designation {
  color: #202124;
}
/*** 

====================================================================
Candidates Section Two
====================================================================

***/
.candidates-section-two {
  position: relative;
  padding: 100px 0 70px;
}
.candidate-block-two {
  position: relative;
  margin-bottom: 30px;
}
.candidate-block-two .inner-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-sizing: border-box;
  border-radius: 8px;
  transition: all 300ms ease;
}
.candidate-block-two .inner-box:hover {
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.candidate-block-two .content-box {
  position: relative;
  padding-left: 110px;
  padding-top: 7px;
}
.candidate-block-two .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
}
.candidate-block-two .image img {
  width: 100%;
}
.candidate-block-two .name {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 5px;
}
.candidate-block-two .designation {
  display: block;
  font-size: 14px;
  color: #202124;
  font-weight: 500;
  line-height: 19px;
}
.candidate-block-two .location {
  position: relative;
  font-size: 14px;
  color: #696969;
}
.candidate-block-two .location i {
  font-size: 14px;
  margin-right: 5px;
}
.candidate-block-two .theme-btn {
  max-width: 150px;
  width: 100%;
}
/* Candidate block three */
.candidate-block-three {
  position: relative;
  padding: 0 15px;
  margin-bottom: 30px;
}
.candidate-block-three .inner-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  border-radius: 8px;
  transition: all 300ms ease;
}
.candidate-block-three .inner-box:hover {
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.candidate-block-three .inner-box .content {
  position: relative;
  padding-left: 110px;
  min-height: 90px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.candidate-block-three .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 14px;
}
.candidate-block-three .image img {
  width: 100%;
}
.candidate-block-three .name {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 5px;
}
.candidate-block-three .name a {
  color: #202124;
}
.candidate-block-three .candidate-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.candidate-block-three .candidate-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-bottom: 5px;
  margin-right: 20px;
}
.candidate-block-three .candidate-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}
.candidate-block-three .candidate-info li a {
  color: #696969;
}
.candidate-block-three .candidate-info li.designation {
  display: block;
  font-size: 14px;
  color: var(--talaneo);
  line-height: 19px;
  padding-left: 0;
}
.candidate-block-three .post-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.candidate-block-three .post-tags li {
  position: relative;
  background: var(--talaneo-bg-light);
  border-radius: 30px;
  font-size: 14px;
  line-height: 20px;
  color: #696969;
  padding: 5px 20px;
  border-radius: 20px;
  margin-right: 10px;
}
.candidate-block-three .post-tags li a {
  color: #696969;
}
.candidate-block-three .post-tags li.colored {
  background: var(--talaneo);
  color: #ffffff;
}
.candidate-block-three .bookmark-btn {
  position: relative;
  height: 30px;
  width: 30px;
  line-height: 35px;
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  cursor: pointer;
  background: #ecedf2;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
.candidate-block-three .inner-box:hover .bookmark-btn {
  opacity: 1;
  visibility: visible;
}
.candidate-block-three .option-box {
  position: relative;
  display: flex;
  align-items: center;
}
.option-list {
  position: relative;
  display: flex;
  align-items: center;
}
.option-list li {
  position: relative;
  margin-left: 10px;
}
.option-list li button,
.option-list li a {
  position: relative;
  display: block;
  background: var(--talaneo-bg-light-card);
  border-radius: 8px;
  height: 30px;
  width: 30px;
  font-size: 16px;
  color: var(--talaneo);
  line-height: 30px;
  text-align: center;
  transition: all 300ms ease;
}
.option-list li button:before,
.option-list li a:before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  margin-bottom: 10px;
  background: #202124;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  content: attr(data-text);
  white-space: nowrap;
  padding: 5px 15px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
.option-list li button:after,
.option-list li a:after {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #202124;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
.option-list li button:hover:after,
.option-list li button:hover:before,
.option-list li a:hover:after,
.option-list li a:hover:before {
  opacity: 1;
  visibility: visible;
}
.option-list li button:hover,
.option-list li a:hover {
  background: var(--talaneo);
  color: #ffffff;
}
.option-box .delete-btn {
  position: relative;
  display: block;
  font-size: 20px;
  color: var(--talaneo);
  font-weight: 400;
  margin-left: 40px;
}
.resume-action .theme-btn:after {
  display: none;
}
.resume-action .theme-btn {
}
.resume-action .theme-btn i {
  margin-left: 40px;
}
.resume-action .dropdown-menu {
  padding: 10px 15px;
  min-width: 200px;
}
.resume-action .dropdown-menu a {
  position: relative;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  display: block;
  width: 100%;
  padding: 2px 0;
}
.resume-action .dropdown-menu a .la {
  color: var(--talaneo);
}
/* Candidate block Four */
.candidate-block-four {
  position: relative;
  margin-bottom: 30px;
}
.candidate-block-four .inner-box {
  position: relative;
  padding: 40px 30px 30px;
  background: #ffffff;
  border-radius: 8px;
  text-align: center;
  transition: all 300ms ease;
  border: 1px solid #ecedf2;
}
.candidate-block-four .inner-box:hover {
  box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
}
.candidate-block-four .job-other-info {
  position: absolute;
  left: 0;
  top: 0;
  padding: 20px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.candidate-block-four .thumb {
  position: relative;
  display: block;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  transition: all 300ms ease;
}
.candidate-block-four .name {
  display: block;
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 3px;
}
.candidate-block-four .name a {
  color: #202124;
  transition: all 300ms ease;
}
.candidate-block-four .name a:hover {
  color: var(--talaneo);
}
.candidate-block-four .cat {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 19px;
  color: var(--talaneo);
  margin-bottom: 10px;
}
.candidate-block-four .job-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 17px;
}
.candidate-block-four .job-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin: 0 15px 5px;
}
.candidate-block-four .job-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}
.candidate-block-four .job-info li a {
  color: #696969;
}
.candidate-block-four .post-tags {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.candidate-block-four .post-tags li {
  position: relative;
  background: var(--talaneo-bg-light);
  border-radius: 30px;
  font-size: 14px;
  line-height: 20px;
  color: #696969;
  padding: 5px 20px;
  border-radius: 20px;
  margin: 0 5px 10px;
}
.candidate-block-four .post-tags li a {
  color: #696969;
}
.candidate-block-four .post-tags li.colored {
  background: var(--talaneo);
  color: #ffffff;
}
.candidate-block-four .theme-btn {
  display: block;
  width: 100%;
}
/*** 

====================================================================
Candidate Detail Section
====================================================================

***/
.candidate-detail-section {
  position: relative;
}
.candidate-detail-section .upper-box {
  position: relative;
  background-image: url('bg-4.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: cover;
  padding: 80px 0 30px;
}
.candidate-detail-section.style-three .upper-box {
  padding: 70px 0 30px;
}
.candidate-detail-outer {
  padding: 50px 0 50px;
}
/* Candidate block Five */
.candidate-block-five {
  position: relative;
  margin-bottom: 50px;
}
.candidate-block-five .inner-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  transition: all 300ms ease;
}
.candidate-block-five .inner-box .content {
  position: relative;
  padding-left: 120px;
  min-height: 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.candidate-block-five .inner-box .btn-box {
  position: relative;
  display: flex;
}
.candidate-block-five .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.candidate-block-five .image img {
  width: 100%;
}
.candidate-block-five .name {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 26px;
  line-height: 35px;
  color: #202124;
  margin-bottom: 10px;
}
.candidate-block-five .name a {
  color: #202124;
}
.candidate-block-five .candidate-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.candidate-block-five .candidate-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-bottom: 5px;
  margin-right: 30px;
}
.candidate-block-five .candidate-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}
.candidate-block-five .candidate-info li a {
  color: #696969;
}
.candidate-block-five .candidate-info li.designation {
  display: block;
  font-size: 14px;
  color: var(--talaneo);
  line-height: 19px;
  padding-left: 0;
}
.candidate-block-five .post-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.candidate-block-five .post-tags li {
  position: relative;
  background: #d3e1f5;
  border-radius: 30px;
  font-size: 14px;
  line-height: 20px;
  color: var(--talaneo);
  padding: 5px 20px;
  border-radius: 20px;
  margin-right: 10px;
}
.candidate-block-five .post-tags li a {
  color: var(--talaneo);
}
.candidate-block-five .post-tags li.colored {
  background: var(--talaneo);
  color: #ffffff;
}
.candidate-block-five .bookmark-btn {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  color: var(--talaneo);
  border-radius: 7px;
  background: var(--talaneo-bg-light-card);
  transition: all 300ms ease;
  margin-left: 20px;
}
.candidate-block-five .option-box {
  position: relative;
  display: flex;
  align-items: center;
}
.candidate-block-five .btn-box .theme-btn {
  min-width: 220px;
}
/* Candidate block Six */
.candidate-block-six {
  position: relative;
}
.candidate-block-six .inner-box {
  position: relative;
  text-align: center;
}
.candidate-block-six .image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.candidate-block-six .image img {
  width: 100%;
}
.candidate-block-six .name {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 26px;
  line-height: 35px;
  color: #202124;
  margin-bottom: 10px;
}
.candidate-block-six .name a {
  color: #202124;
}
.candidate-block-six .designation {
  display: block;
  font-size: 14px;
  color: var(--talaneo);
  line-height: 19px;
  margin-bottom: 22px;
}
.candidate-block-six .content {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.candidate-block-six .post-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.candidate-block-six .post-tags li {
  position: relative;
  display: block;
  background: #d3e1f5;
  border-radius: 30px;
  font-size: 14px;
  line-height: 20px;
  color: var(--talaneo);
  padding: 5px 20px;
  border-radius: 20px;
  margin: 5px 0;
  margin-right: 10px;
}
.candidate-block-six .post-tags li a {
  display: block;
  color: var(--talaneo);
}
.candidate-block-six .post-tags li.colored {
  background: var(--talaneo);
  color: #ffffff;
}
.candidate-block-six .btn-box {
  position: relative;
  display: flex;
}
.candidate-block-six .candidate-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.candidate-block-six .candidate-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 30px;
}
.candidate-block-six .candidate-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}
.candidate-block-six .candidate-info li a {
  color: #696969;
}
.candidate-block-six .bookmark-btn {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  color: var(--talaneo);
  border-radius: 7px;
  background: var(--talaneo-bg-light-card);
  transition: all 300ms ease;
  margin-left: 20px;
}
.candidate-block-six .option-box {
  position: relative;
  display: flex;
  align-items: center;
}
.candidate-block-six .btn-box .theme-btn {
  min-width: 220px;
}
.video-outer {
  position: relative;
  margin-bottom: 50px;
}
.video-outer h4 {
  margin-bottom: 30px;
}
.video-box {
  position: relative;
}
.video-box .image {
  position: relative;
  margin-bottom: 30px;
}
.video-box .image img {
  display: block;
  width: 100%;
}
.video-box .image a {
  position: relative;
  display: block;
}
.video-box .image .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  line-height: 90px;
  text-align: center;
  color: #000000;
  font-size: 44px;
  transform: translate(-50%, -50%);
}
.candidate-detail-section .sidebar-widget {
  margin-bottom: 30px;
}
.candidate-detail-section .contact-widget .form-group input,
.candidate-detail-section .contact-widget .form-group textarea {
  background-color: #ffffff;
}
.candidate-detail-section .contact-widget .form-group textarea {
  min-height: 130px;
}
.candidate-detail-section
  .contact-widget
  .widget-content
  .default-form
  .form-group {
  margin-bottom: 20px;
}
.social-media-widget {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-media-widget .widget-title {
  margin-bottom: 0;
}
.social-media-widget .social-links {
  display: flex;
  align-items: center;
}
.social-media-widget .social-links a {
  font-size: 14px;
  line-height: 26px;
  color: #696969;
  margin-left: 17px;
  transition: all 300ms ease;
}
.social-media-widget .social-links a:hover {
  color: #bc91e8;
}
/***

====================================================================
Listing Section  (Ls Section) 
====================================================================

***/
.ls-section {
  position: relative;
  padding: 50px 0 100px;
}
.ls-section .content-column .upper-box {
  position: relative;
  padding: 20px 30px;
}
.ls-section .filters-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 1000%;
  background: #1b2032;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
.active-filters .ls-section .filters-backdrop {
  opacity: 0.8;
  visibility: visible;
}
.ls-section .filters-column.hide-left {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh !important;
  max-width: 320px;
  width: 100%;
  padding: 0 !important;
  background: #fff;
  z-index: 99;
  overflow-y: auto !important;
  transition: all 300ms ease;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
}
.ls-section .filters-column.hide-left .inner-column {
  min-height: 100%;
}
.ls-section .filters-column::-webkit-scrollbar {
  width: 5px;
}
.ls-section .filters-column::-webkit-scrollbar-track {
  background: transparent;
}
.ls-section .filters-column::-webkit-scrollbar-thumb {
  background-color: rgba(112, 112, 112, 0.5);
  border-radius: 10px;
}
.ls-section .filters-column.hide-left .filters-outer {
  margin-bottom: 0;
}
.active-filters .ls-section .filters-column.hide-left {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.ls-section h4 {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 16px;
}
.ls-section .filter-block p {
  position: relative;
  font-size: 14px;
  line-height: 19px;
  color: #696969;
  margin-top: 10px;
  margin-bottom: 5px;
}
.ls-section .filter-block .form-group {
  position: relative;
  margin-bottom: 0;
}
.chosen-container .chosen-drop {
  border: 1px solid #ecedf2;
}
.ls-section .filter-block .chosen-container .chosen-drop {
  background: #ffffff;
}
.ls-section .filter-block .chosen-container .chosen-single,
.ls-section .filter-block input,
.ls-section .filter-block select,
.ls-section .filter-block textarea {
  width: 100%;
  height: 60px;
  padding: 14px 20px;
  padding-left: 54px;
  line-height: 30px;
  font-size: 15px;
  color: #696969;
  background: #ffffff;
  box-shadow: none;
  border: 1px solid #ecedf2;
  border-radius: 8px;
  transition: all 300ms ease;
}
.ls-section .filter-block input:focus {
  border-color: var(--talaneo);
}
.ls-section .filter-block .icon {
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -15px;
  font-size: 16px;
  line-height: 30px;
}
.ls-section .switchbox-outer {
  position: relative;
  margin-bottom: 30px;
}
/* Range Slider widget */
.rangeslider-widget {
  position: relative;
}
.range-slider-one {
  position: relative;
  min-height: 48px;
  padding-top: 10px;
}
.range-slider-one .ui-widget.ui-widget-content {
  height: 5px;
  border: none;
  margin-bottom: 20px;
  border-radius: 30px;
  background: #d4e1f6;
}
.range-slider-one .ui-slider .ui-slider-range {
  top: 0px;
  height: 5px;
  background: var(--talaneo);
}
.range-slider-one .ui-state-default,
.range-slider-one .ui-widget-content .ui-state-default {
  position: absolute;
  top: -7px;
  width: 17px;
  height: 17px;
  background: #ffffff;
  border: 2px solid var(--talaneo);
  box-sizing: border-box;
  border-radius: 20px;
  cursor: pointer;
}
.range-slider-one .input-outer {
  display: flex;
  justify-content: center;
}
.range-slider-one .amount-outer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 70px;
  padding: 0 10px;
  height: 30px;
  text-align: center;
  background: #d4e1f6;
  border-radius: 8px;
  font-size: 14px;
  line-height: 19px;
  color: var(--talaneo);
}
.range-slider-one .amount {
  margin-right: 5px;
}
.range-slider-one .ui-state-default:last-child {
  display: block !important;
}
.range-slider-one.salary-range .ui-state-default {
  display: block !important;
}
/* Range Slider widget */
.tags-style-one {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.tags-style-one li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
}
.tags-style-one li a {
  position: relative;
  background: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  color: #696969;
  padding: 5px 20px;
}
.tags-style-one li a:hover {
  background: #d4e1f6;
  color: var(--talaneo);
}
.ls-section .call-to-action .image-column {
  background-size: 100%;
  width: 50%;
}
/*=====================
Ls Outer
======================*/
.ls-section .ls-outer {
  position: relative;
}
.ls-switcher {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ls-switcher .showing-result {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.ls-switcher .showing-result .text {
  font-size: 16px;
  color: #1b2032;
}
.ls-switcher .arrange {
  position: relative;
  display: flex;
  margin-right: 20px;
}
.ls-switcher .arrange a {
  margin-right: 10px;
}
.ls-switcher .arrange .icon {
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  border: 2px solid #d7dbe4;
  border-radius: 50%;
  line-height: 36px;
  text-align: center;
  color: #a3acc2;
  font-size: 16px;
}
.ls-switcher .arrange .active .icon {
  color: #a3acc2;
  border-color: #a3acc2;
}
.top-filters {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.top-filters .form-group {
  position: relative;
  margin-right: 20px;
  margin-bottom: 0;
}
.top-filters .chosen-container .chosen-single {
  position: relative;
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 25px;
  padding: 10px 22px;
  padding-right: 44px;
  color: var(--talaneo);
  background: var(--talaneo-bg-light-card);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-filters .chosen-container-single .chosen-single div:after {
  color: var(--talaneo);
  content: "\f17c";
  font-family: "Flaticon";
  font-size: 10px;
}
.top-filters .chosen-container .chosen-single span {
  color: var(--talaneo);
  margin: 0;
  min-width: auto;
}
.top-filters .chosen-container .chosen-container-multi .chosen-choices,
.top-filters .chosen-container.chosen-with-drop .chosen-drop {
  background: #eff4fc;
}
.ls-switcher .sort-by {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.ls-switcher .sort-by .chosen-single {
  position: relative;
  height: 45px;
  padding: 10px 20px;
  font-size: 14px;
  color: #696969;
  line-height: 25px;
  background: var(--talaneo-bg-light);
}
.ls-switcher .sort-by .chosen-container {
  margin-left: 10px;
}
.ls-switcher .sort-by .chosen-container-single .chosen-single div:after {
  color: #696969;
  content: "\f17c";
  font-family: "Flaticon";
  font-size: 10px;
}
.ls-switcher .showing-result {
  position: relative;
}
.ls-switcher .showing-result .text {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
}
.ls-switcher .showing-result .text strong {
  font-weight: 500;
  color: #202124;
}
/*** 

====================================================================
Listing Show More
==================0==================================================

***/
.ls-show-more {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
}
.ls-show-more p {
  position: relative;
  font-size: 14px;
  line-height: 19px;
  color: #202124;
  margin-bottom: 10px;
}
.ls-show-more .bar {
  position: relative;
  max-width: 300px;
  width: 300px;
  height: 6px;
  background: #d4e1f6;
  border-radius: 10px;
  margin-bottom: 17px;
}
.ls-show-more .bar .bar-inner {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 20px;
  background: var(--talaneo);
}
.ls-show-more .show-more {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--talaneo);
  padding-bottom: 5px;
}
.ls-show-more .show-more:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: var(--talaneo);
  content: "";
}
/*** 

====================================================================
Listing Pagination
==================0==================================================

***/
.ls-pagination {
  position: relative;
  margin-top: 50px;
}
.ls-pagination ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ls-pagination li {
  position: relative;
  margin: 0 5px;
  font-size: 14px;
  color: #696969;
  line-height: 45px;
  min-width: 45px;
  font-weight: 400;
  text-align: center;
}
.ls-pagination li a {
  position: relative;
  display: block;
  color: #696969;
  border-radius: 50%;
  transition: all 300ms ease;
}
.ls-pagination li a:hover,
.ls-pagination li a.current-page {
  background: var(--talaneo);
  color: #ffffff;
}
.ls-pagination li.next a,
.ls-pagination li.prev a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin: 0 12px;
}
.ls-section .ls-footer {
  position: relative;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #ecedf2;
}
.ls-section .copyright-text {
  font-size: 14px;
  line-height: 19px;
  color: #696969;
}
.ls-pagination li.next a:hover,
.ls-pagination li.prev a:hover {
  background: transparent;
  color: var(--talaneo);
}
/***

====================================================================
Listing Section / style Two
====================================================================

***/
.ls-section.style-two {
  padding: 0;
}
.ls-section.style-two .ls-outer {
  padding: 50px 50px;
}
.ls-section.style-two .filters-outer {
  padding: 50px 60px;
  margin-bottom: 0;
  height: 100%;
}
.ls-section.style-two .filters-column .inner-column {
  height: 100%;
}
/***

====================================================================
Ls Section / style Three
====================================================================

***/
.ls-section.style-three {
  background: var(--talaneo-bg-light);
}
.ls-section.style-three .ls-switcher .sort-by .chosen-single {
  background: #ffffff;
}
/***

====================================================================
Ls Section / style Four
====================================================================

***/
.ls-section.map-layout {
  padding: 0;
}
.ls-section.map-layout .content-column {
  position: relative;
  height: calc(100vh - 110px);
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.ls-section.map-layout .ls-cotainer {
  position: relative;
  display: flex;
  height: 100%;
}
.ls-section.map-layout ::-webkit-scrollbar {
  width: 5px;
  background: #eeeeee;
}
.ls-section.map-layout ::-webkit-scrollbar-track {
  background: #ffffff;
}
.ls-section.map-layout ::-webkit-scrollbar-thumb {
  background: #eeeeee;
}
.ls-section.map-layout .ls-outer {
  padding: 30px 60px 30px;
}
.ls-section.map-layout .map-column {
  position: fixed;
  height: calc(100vh - 100px);
  right: 0;
  bottom: 0;
}
.ls-section.map-layout .map-column #map {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
/*** 

====================================================================
Listing Maps
====================================================================

***/
.listing-maps {
  position: relative;
  min-height: 500px;
}
.listing-maps #map {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.listing-maps.style-two {
  min-height: 670px;
}
.listing-maps .form-outer {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
}
.listing-maps .form-outer .job-search-form {
  margin-bottom: 0;
}
.cluster-visible {
  text-align: center;
  font-size: 16px !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  background: var(--talaneo);
  border: 7px solid rgba(25, 103, 210, 0.2);
  box-shadow: 0 7px 30px rgba(33, 33, 33, 0.3);
  box-sizing: content-box;
  background-clip: content-box;
}
.map-marker-container {
  position: absolute;
  margin-top: 10px;
  transform: translate3d(-50%, -100%, 0);
}
.marker-container {
  position: relative;
  margin: 10px auto;
  top: -5px;
  width: 46px;
  height: 46px;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  -webkit-perspective: 1000;
}
.face {
  position: absolute;
  width: 46px;
  height: 46px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  z-index: 100;
  background: #4cbfd8;
  font-size: 24px;
  box-sizing: content-box;
  background-clip: content-box;
  line-height: 46px;
}
.face:before {
  position: absolute;
  left: -7px;
  top: -7px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 7px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 7px 30px rgba(33, 33, 33, 0.1);
  content: "";
}
.face > div {
  /* background-image: url(images/resource/company-logo/3-1.png); */
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.map-marker-container:hover .marker-container .marker-card,
.clicked .marker-container .marker-card,
.map-marker-container.clicked .marker-card {
  transform: rotateY(360deg);
  transition: all 0.4s ease-in-out;
}
#singleListingMap .marker-container {
  cursor: default;
}
.map-marker-container[data-marker_id="0"] .marker-arrow:before {
  border-color: #4cbfd8 transparent transparent;
}
.map-marker-container[data-marker_id="1"] .marker-arrow:before {
  border-color: #ff8480 transparent transparent;
}
.map-marker-container[data-marker_id="2"] .marker-arrow:before {
  border-color: #8c689d transparent transparent;
}
.map-marker-container[data-marker_id="3"] .marker-arrow:before {
  border-color: #35c2a5 transparent transparent;
}
.map-marker-container[data-marker_id="4"] .marker-arrow:before {
  border-color: #ff8480 transparent transparent;
}
.map-marker-container[data-marker_id="5"] .marker-arrow:before {
  border-color: #ffb874 transparent transparent;
}
.map-marker-container[data-marker_id="6"] .marker-arrow:before {
  border-color: #ff007a transparent transparent;
}
.map-marker-container[data-marker_id="0"] .face {
  background-color: #4cbfd8;
}
.map-marker-container[data-marker_id="1"] .face {
  background-color: #ff8480;
}
.map-marker-container[data-marker_id="2"] .face {
  background-color: #8c689d;
}
.map-marker-container[data-marker_id="3"] .face {
  background-color: #35c2a5;
}
.map-marker-container[data-marker_id="4"] .face {
  background-color: #ff8480;
}
.map-marker-container[data-marker_id="5"] .face {
  background-color: #ffb874;
}
.map-marker-container[data-marker_id="6"] .face {
  background-color: #ff007a;
}
.marker-card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  position: absolute;
  z-index: 1;
}
/*==========================
Map Listing Item
===========================*/
#map .infoBox {
  margin-left: -45px;
  margin-bottom: 15px;
}
.map-listing-item {
  position: relative;
}
.map-listing-item .infoBox-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  background: var(--talaneo-bg-light);
  color: #202124;
  line-height: 24px;
  font-size: 12px;
  border-radius: 8px;
  z-index: 9;
  text-align: center;
  cursor: pointer;
  transition: all 300ms ease;
}
.map-listing-item .infoBox-close:hover {
  background: var(--talaneo);
  color: #ffffff;
}
.map-listing-item .inner-box {
  position: relative;
  padding: 20px 20px;
  padding-left: 90px;
  border-radius: 10px;
  background: #ffffff;
  min-width: 358px;
}
.map-listing-item .inner-box:before {
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -9px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #ffffff;
  content: "";
}
.map-listing-item .image-box {
  position: absolute;
  left: 20px;
  top: 20px;
}
.map-listing-item .image {
  display: block;
  height: 50px;
  width: 50px;
  overflow: hidden;
  margin-bottom: 0;
}
.map-listing-item .image img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: all 500ms ease;
}
.map-listing-item .content {
  position: relative;
  min-height: 50px;
}
.map-listing-item .title {
  color: #ffffff;
  opacity: 0.6;
  margin-left: 3px;
}
.map-listing-item h3 {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  font-family: 'Jost';
  margin-bottom: 4px;
}
.map-listing-item h3 a {
  color: #202124;
  transition: all 300ms ease;
}
.map-listing-item h3 a:hover {
  color: #202124;
}
.map-listing-item .job-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.map-listing-item .job-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-right: 20px;
}
.map-listing-item .job-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}
.map-listing-item .job-info li a {
  color: #696969;
}
/*** 

====================================================================
Top Companies
====================================================================

***/
.top-companies {
  position: relative;
  padding: 100px 0;
}
.top-companies .carousel-outer {
  margin: 0 -15px;
}
.top-companies .companies-carousel .owl-dots {
  margin-top: 20px;
}
/* Company Block */
.company-block {
  position: relative;
  padding: 0 15px;
  margin-bottom: 30px;
}
.company-block .inner-box {
  position: relative;
  padding: 30px 30px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-sizing: border-box;
  border-radius: 8px;
  transition: all 300ms ease;
  text-align: center;
}
.company-block .inner-box.bg-clr-1 {
  background: #fcf9f4;
}
.company-block .inner-box.bg-clr-2 {
  background: #f4f6fa;
}
.company-block .inner-box.bg-clr-3 {
  background: #f9f9f9;
}
.company-block .inner-box.bg-clr-4 {
  background: #fcf4fc;
}
.company-block .inner-box.bg-clr-5 {
  background: #fafcf3;
}
.company-block .inner-box:hover {
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.company-block .image {
  position: relative;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 14px;
}
.company-block .image img {
  width: 100%;
}
.company-block .name {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #202124;
  margin-bottom: 5px;
}
.company-block .designation {
  display: block;
  font-size: 14px;
  color: var(--talaneo);
  line-height: 19px;
  margin-bottom: 10px;
}
.company-block .location {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #696969;
  margin-bottom: 25px;
}
.company-block .location i {
  font-size: 14px;
  margin-right: 5px;
}
.company-block .theme-btn {
  max-width: 240px;
  width: 100%;
}
/* Company Block Two */
.company-block-two {
  position: relative;
  padding: 0 15px;
  margin-bottom: 30px;
}
.company-block-two .inner-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  border-radius: 8px;
  transition: all 300ms ease;
}
.company-block-two .inner-box:hover {
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.company-block-two .inner-box .content {
  position: relative;
  padding-left: 110px;
  min-height: 90px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.company-block-two .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 14px;
}
.company-block-two .image img {
  width: 100%;
}
.company-block-two .name {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 5px;
}
.company-block-two .designation {
  display: block;
  font-size: 14px;
  color: var(--talaneo);
  line-height: 19px;
  margin-bottom: 10px;
}
.company-block-two .location {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #696969;
}
.company-block-two .location i {
  font-size: 14px;
  margin-right: 5px;
}
.company-block-two .theme-btn {
  width: 150px;
  font-size: 14px;
  line-height: 20px;
  padding: 5px 23px;
  font-weight: 400;
  border-radius: 20px;
}
/* Company Block Three*/
.company-block-three {
  position: relative;
  margin-bottom: 30px;
}
.company-block-three .inner-box {
  position: relative;
  padding: 32px 20px 22px 30px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-sizing: border-box;
  border-radius: 10px;
  transition: all 300ms ease;
}
.company-block-three .inner-box:hover {
  box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
}
.company-block-three .content {
  position: relative;
  padding-left: 68px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 51px;
}
.company-block-three .company-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  transition: all 300ms ease;
}
.company-block-three h4 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  line-height: 26px;
  top: -3px;
  margin-bottom: 3px;
}
.company-block-three h4 a {
  color: #202124;
  transition: all 300ms ease;
}
.company-block-three h4 a:hover {
  color: var(--talaneo);
}
.company-block-three .job-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.company-block-three .job-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-bottom: 5px;
  margin-right: 20px;
}
.company-block-three .job-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}
.company-block-three .job-info li a {
  color: #696969;
}
.company-block-three .bookmark-btn {
  position: absolute;
  right: 10px;
  top: 15px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  cursor: pointer;
  background: #ecedf2;
  transition: all 300ms ease;
  opacity: 0;
  visibility: hidden;
}
.company-block-three .inner-box:hover .bookmark-btn {
  opacity: 1;
  visibility: visible;
}
.company-block-three .job-other-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
/*Company Block Four*/
.company-block-four {
  position: relative;
  margin-bottom: 30px;
}
.company-block-four .inner-box {
  position: relative;
  padding: 30px 15px 30px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  border-radius: 8px;
  text-align: center;
  transition: all 300ms ease;
}
.company-block-four .inner-box:hover {
  box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
}
.company-block-four .featured {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 13px;
  line-height: 15px;
  margin-right: 15px;
  padding: 5px 20px;
  border-radius: 50px;
  color: var(--talaneo);
  background: rgba(52, 168, 83, 0.15);
}
.company-block-four .company-logo {
  position: relative;
  display: block;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  transition: all 300ms ease;
}
.company-block-four .company-logo img {
  display: block;
  width: 100%;
}
.company-block-four h4 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  line-height: 26px;
  top: -3px;
  margin-bottom: 3px;
}
.company-block-four h4 a {
  color: #202124;
  transition: all 300ms ease;
}
.company-block-four h4 a:hover {
  color: var(--talaneo);
}
.company-block-four .job-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.company-block-four .job-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-bottom: 5px;
  margin-right: 20px;
}
.company-block-four .job-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}
.company-block-four .job-info li a {
  color: #696969;
}
.company-block-four .job-type {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 15px;
  margin-right: 15px;
  padding: 5px 20px;
  border-radius: 50px;
  color: var(--talaneo);
  background: rgba(25, 103, 210, 0.15);
}
.company-block-four .bookmark-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  cursor: pointer;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
.company-block-four .inner-box:hover .bookmark-btn {
  background: #ecedf2;
  opacity: 1;
  visibility: visible;
}
/* Style Two*/
.top-companies.style-two {
  background: #f3f7fb;
}
.top-companies.style-two .company-block .image img {
  border-radius: 50%;
}
.top-companies.style-two .company-block .theme-btn {
  border-radius: 50px;
}
/* Style Three*/
.top-companies.style-three .company-block {
  padding: 0 18px;
  margin-bottom: 50px;
}
.top-companies.style-three .company-block .inner-box {
  padding: 32px 20px 20px;
}
.top-companies.style-three .company-block .image {
  height: 80px;
  width: 80px;
  margin-bottom: 25px;
}
/*** 

====================================================================
Ads Section
====================================================================

***/
.ads-section {
  position: relative;
  padding: 100px 0 170px;
}
.advrtise-block {
  position: relative;
  margin-bottom: 30px;
}
.advrtise-block .inner-box {
  position: relative;
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  min-height: 236px;
  padding: 51px 42px;
}
.advrtise-block h4 {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 24px;
  line-height: 33px;
  color: #202124;
  margin-bottom: 18px;
}
.advrtise-block h4 span {
  display: block;
  color: var(--talaneo);
}
.advrtise-block .theme-btn {
  width: 120px;
  font-weight: 400;
}
/*** 

====================================================================
Registeration Banners
====================================================================

***/
.registeration-banners {
  position: relative;
  padding: 100px 0 70px;
  border-bottom: 1px solid #ecedf2;
}
.banner-style-one {
  position: relative;
  margin-bottom: 30px;
}
.banner-style-one .inner-box {
  position: relative;
  background: rgba(32, 33, 36, 0.4);
  border-radius: 8px;
  padding: 54px 60px;
}
.banner-style-one .content {
  position: relative;
  padding-right: 220px;
}
.banner-style-one h3 {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 26px;
  line-height: 38px;
  color: #ffffff;
  margin-bottom: 13px;
}
.banner-style-one p {
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 17px;
}
.banner-style-one .theme-btn {
  position: relative;
  min-width: 240px;
  background: #ffffff;
  color: #202124;
}
.banner-style-one .image {
  position: absolute;
  right: 30px;
  bottom: 0;
  margin-bottom: 0;
}
/* Banner Style Two */
.banner-style-two {
  position: relative;
  margin-bottom: 30px;
}
.banner-style-two .inner-box {
  position: relative;
  background: rgba(217, 48, 37, 0.6);
  border-radius: 8px;
  padding: 54px 60px;
}
.banner-style-two .content {
  position: relative;
  padding-right: 220px;
}
.banner-style-two h3 {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 26px;
  line-height: 38px;
  color: #ffffff;
  margin-bottom: 13px;
}
.banner-style-two p {
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 17px;
}
.banner-style-two .theme-btn {
  position: relative;
  min-width: 240px;
  color: #d93025;
  background: #ffffff;
}
.banner-style-two .image {
  position: absolute;
  right: 30px;
  bottom: 0;
  margin-bottom: 0;
}
/*** 

====================================================================
News Section
====================================================================

***/
.news-section {
  position: relative;
  background-color: #ecedf2;
  padding: 100px 0 70px;
}
.news-block {
  position: relative;
  margin-bottom: 30px;
}
.news-block .inner-box {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border-radius: 10px;
  background: #ffffff;
}
.news-block .image-box {
  position: relative;
}
.news-block .image-box .image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
}
.news-block .image-box img {
  display: block;
  width: 100%;
  transition: all 300ms ease;
}
.news-block .inner-box:hover img {
  transform: scale(1.1);
}
.news-block .lower-content {
  padding: 20px 20px 16px;
  position: relative;
}
.news-block .post-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.news-block .post-meta li {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  color: #696969;
  margin-right: 15px;
  padding-left: 20px;
  margin-bottom: 5px;
}
.news-block .post-meta li:before {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  height: 6px;
  width: 6px;
  background: #696969;
  border-radius: 5px;
  content: "";
}
.news-block .post-meta li:first-child {
  margin-left: 0;
  padding-left: 0;
}
.news-block .post-meta li:first-child:before {
  display: none;
}
.news-block .post-meta li a:hover,
.news-block .post-meta li a {
  color: inherit;
}
.news-block .lower-content h3 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 10px;
}
.news-block .lower-content h3 a {
  color: #202124;
  transition: all 300ms ease;
}
.news-block .lower-content h3 a:hover {
  color: var(--talaneo);
}
.news-block .lower-content .text {
  font-size: 14px;
  line-height: 24px;
  color: #696969;
  margin-bottom: 15px;
}
.news-block .read-more {
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: var(--talaneo);
}
.news-block .read-more i {
  margin-left: 10px;
  transition: all 300ms ease;
}
.news-block .read-more:hover {
  color: inherit;
  color: var(--talaneo);
}
.news-block .read-more:hover i {
  opacity: 0;
  margin-left: 20px;
}
/* Style Two */
.news-section.style-two {
  background: #f3f7fb;
}
.news-section.style-two .row {
  margin: 0 -26px;
}
.news-section.style-two .news-block {
  padding: 0 26px;
}
.news-section.style-two .news-block .inner-box {
  padding: 0;
  background-color: transparent;
}
.news-section.style-two .news-block .lower-content {
  padding: 17px 0 0;
}
/* Style Three */
.news-section.style-three .news-block .post-meta {
  margin-bottom: 10px;
}
.news-section.style-three .news-block .inner-box {
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 8px;
}
.news-section.style-three .news-block .lower-content h3 {
  margin-bottom: 0;
}
.news-section.style-three .grid .news-block .lower-content {
  padding-bottom: 10px;
  padding-top: 19px;
}
/*** 

====================================================================
News Section Two
====================================================================

***/
.news-section-two {
  position: relative;
  padding: 100px 0 50px;
}
.news-section-two .sec-title {
  margin-bottom: 50px;
}
.news-section-two .news-block {
  margin-bottom: 50px;
}
.news-section-two .news-block .inner-box {
  padding: 0;
  background-color: transparent;
}
.news-section-two .news-block .lower-content {
  padding: 17px 0 0;
}
.news-section-two .news-block .post-meta {
  margin-bottom: 0;
}
.news-section-two .news-block h3 {
  margin-bottom: 0;
}
/* Style Two */
.news-section-two.style-two {
  background: rgba(52, 168, 83, 0.04);
}
/*** 

====================================================================
News Section Three
====================================================================

***/
.news-section-three {
  position: relative;
  background-color: #ecedf2;
  padding: 100px 0 70px;
}
.news-block-two {
  position: relative;
  margin-bottom: 30px;
}
.news-block-two .inner-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ecedf2;
  background: #ffffff;
}
.news-block-two .image-box {
  position: relative;
}
.news-block-two .image-box .image {
  position: relative;
  border-radius: 10px;
  min-width: 200px;
  overflow: hidden;
  margin-bottom: 0;
}
.news-block-two .image-box img {
  display: block;
  width: 100%;
  transition: all 300ms ease;
}
.news-block-two .inner-box:hover img {
  transform: scale(1.1);
}
.news-block-two .content-box {
  padding: 15px 30px;
  position: relative;
}
.news-block-two .post-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.news-block-two .post-meta li {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  color: #696969;
  margin-right: 15px;
  padding-left: 20px;
  margin-bottom: 5px;
}
.news-block-two .post-meta li:before {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  height: 6px;
  width: 6px;
  background: #696969;
  border-radius: 5px;
  content: "";
}
.news-block-two .post-meta li:first-child {
  margin-left: 0;
  padding-left: 0;
}
.news-block-two .post-meta li:first-child:before {
  display: none;
}
.news-block-two .post-meta li a:hover,
.news-block-two .post-meta li a {
  color: inherit;
}
.news-block-two .content-box h3 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 10px;
}
.news-block-two .content-box h3 a:hover,
.news-block-two .content-box h3 a {
  color: #1b2032;
}
.news-block-two .content-box .text {
  font-size: 14px;
  line-height: 24px;
  color: #696969;
  margin-bottom: 15px;
}
.news-block-two .read-more {
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: var(--talaneo);
}
.news-block-two .read-more i {
  margin-left: 10px;
  transition: all 300ms ease;
}
.news-block-two .read-more:hover {
  color: inherit;
  color: var(--talaneo);
}
.news-block-two .read-more:hover i {
  opacity: 0;
  margin-left: 20px;
}
/*** 

====================================================================
Blog Grid
====================================================================

***/
.blog-grid .news-block .inner-box {
  border: 1px solid #ecedf2;
  border-radius: 8px;
}
.blog-grid .news-block .inner-box:hover {
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.sidebar-page-container {
  position: relative;
  padding: 100px 0 50px;
}
.sidebar-page-container .content-side {
  margin-bottom: 50px;
}
.blog-sidebar {
  position: relative;
  background: var(--talaneo-bg-light-card);
  padding: 30px;
  border-radius: 8px;
  margin-left: 20px;
}
.blog-sidebar .sidebar-widget {
  position: relative;
  padding: 0;
  margin: 0 0 30px;
}
.blog-sidebar .sidebar-widget:last-child {
  margin-bottom: 0;
}
/* Sidebar Title */
.sidebar-title {
  position: relative;
  margin-bottom: 20px;
}
.sidebar-title h4 {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
}
/*Search Box*/
.sidebar.pd-right {
  padding-right: 20px;
}
.sidebar .search-widget {
  position: relative;
}
.sidebar .search-box {
  position: relative;
}
.sidebar .search-box .form-group {
  position: relative;
  margin-bottom: 0;
}
.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 20px;
  padding: 20px 20px;
  padding-left: 54px;
  font-size: 15px;
  color: #696969;
  background: #ffffff;
  border: 1px solid #ecedf2;
  border-radius: 8px;
  transition: all 500ms ease;
}
.sidebar .search-box .form-group input[type="text"]:focus,
.sidebar .search-box .form-group input[type="search"]:focus {
  border-color: var(--talaneo);
}
.sidebar .search-box .form-group button {
  position: absolute;
  right: 0;
  top: 0;
  transition: all 500ms ease;
}
.sidebar .search-box .form-group button:hover {
  color: #ffffff;
}
.sidebar .search-box .form-group .icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  z-index: 1;
}
/* Cat List*/
.catagory-list {
  position: relative;
}
.catagory-list li {
  position: relative;
  margin-bottom: 10px;
}
.catagory-list li a {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 25px;
  padding-left: 15px;
  color: #696969;
  transition: all 300ms ease;
}
.catagory-list li a:before {
  position: absolute;
  left: 0;
  top: 11px;
  height: 4px;
  width: 4px;
  border-radius: 4px;
  background: #202124;
  content: "";
  transition: all 300ms ease;
}
.catagory-list li a:hover:before,
.catagory-list li a:hover {
  color: var(--talaneo);
}
/*=== Latest News ===*/
.sidebar .recent-post {
  position: relative;
}
.recent-post .post {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 90px;
  min-height: 70px;
  margin-bottom: 20px;
}
.recent-post .post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.recent-post .post-thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 70px;
  width: 70px;
  overflow: hidden;
  margin-bottom: 10px;
}
.recent-post .post-thumb img {
  position: relative;
  display: block;
  width: 100%;
  transition: all 300ms ease;
}
.recent-post .post:hover .post-thumb img {
  opacity: 0.9;
  transform: scale(1.1);
}
.recent-post .post h6 {
  position: relative;
  color: #202124;
  font-size: 15px;
  line-height: 1.5em;
  margin-bottom: 4px;
  transition: all 300ms ease;
}
.recent-post .post h6 a {
  color: inherit;
}
.recent-post .post h6:hover {
  color: #202124;
}
.recent-post .post .post-info {
  position: relative;
  font-size: 14px;
  line-height: 18px;
  color: rgba(68, 68, 68, 0.8);
  font-weight: 400;
}
.tag-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.tag-list li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
}
.tag-list a {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #696969;
  padding: 5px 20px;
  font-weight: 400;
  text-align: center;
  background: #ffffff;
  text-transform: capitalize;
  transition: all 300ms ease;
}
.tag-list a:hover {
  color: #ffffff;
  background: var(--talaneo);
}
/*** 

====================================================================
Blog Single
====================================================================

***/
.blog-single {
  position: relative;
  padding: 80px 0 100px;
}
.blog-single .upper-box {
  position: relative;
  margin-bottom: 50px;
}
.blog-single .auto-container {
  max-width: 860px;
}
.blog-single .upper-box h3 {
  position: relative;
  font-weight: 500;
  font-size: 30px;
  line-height: 41px;
  text-align: center;
  color: #202124;
  margin-bottom: 20px;
}
.blog-single .post-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-single .post-info li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  color: #696969;
  padding-left: 15px;
  margin-right: 10px;
}
.blog-single .post-info li:before {
  position: absolute;
  left: 0;
  top: 9px;
  height: 5px;
  width: 5px;
  border-radius: 3px;
  background: #696969;
  content: "";
}
.blog-single .post-info li:first-child {
  padding-left: 0;
}
.blog-single .post-info li:first-child:before {
  display: none;
}
.blog-single .post-info .thumb {
  position: relative;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
}
.blog-single .main-image {
  position: relative;
  margin-bottom: 0;
}
.blog-single .main-image img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.blog-single .image {
  position: relative;
  margin-bottom: 30px;
}
.blog-single h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 17px;
}
.blog-single p {
  font-size: 15px;
  line-height: 30px;
  color: #77838f;
  margin-bottom: 30px;
}
.blog-single .list-style-four {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}
.blog-single .list-style-four li {
  width: 50%;
  flex: 0 0 50%;
}
/* Blockquote */
.blockquote-style-one {
  position: relative;
  background: var(--talaneo-bg-light);
  border-radius: 8px;
  padding: 40px 60px;
}
.blockquote-style-one p {
  font-size: 15px;
  line-height: 30px;
  color: #202124;
  font-style: italic;
  margin-bottom: 0;
}
.blockquote-style-one cite {
  font-size: 15px;
  color: #696969;
  display: block;
  font-style: normal;
  margin-top: 11px;
}
.blog-single .other-options {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ecedf2;
  border-bottom: 1px solid #ecedf2;
  padding: 35px 0;
  margin: 45px 0;
  flex-wrap: wrap;
}
.blog-single .social-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.blog-single .other-options .tags {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 15px 0;
}
/* Other Options*/
.other-options .tags a {
  position: relative;
  background: var(--talaneo-bg-light);
  border-radius: 30px;
  font-size: 14px;
  line-height: 20px;
  color: #696969;
  padding: 5px 20px;
  border-radius: 4px;
  margin-right: 10px;
  transition: all 300ms ease;
}
.other-options .tags a:hover {
  background: var(--talaneo);
  color: #ffffff;
}
/* Post Control */
.post-control {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #ecedf2;
  margin-bottom: 50px;
}
.post-control .prev-post,
.post-control .next-post {
  position: relative;
  margin-bottom: 30px;
}
.post-control .next-post {
  text-align: right;
}
.post-control .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 9px;
  line-height: 24px;
  color: var(--talaneo);
  font-weight: 700;
}
.post-control .next-post .icon {
  left: auto;
  right: 0;
}
.post-control .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
  color: var(--talaneo);
  padding-left: 16px;
}
.post-control .next-post .title {
  padding-left: 0;
  padding-right: 16px;
}
.post-control h5 {
  position: relative;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #202124;
  font-weight: 500;
}
.post-control h5 a {
  color: #202124;
  display: inline-block;
  transition: all 300ms ease;
}
.post-control h5 a:hover {
  color: var(--talaneo);
}
/*=========================
Comments Area
=========================*/
.comments-area {
  position: relative;
  margin-bottom: 50px;
}
.comments-area h4 {
  margin-bottom: 35px;
}
.comment-box {
  position: relative;
  margin-bottom: 30px;
}
.comment-box .comment {
  position: relative;
  padding-left: 110px;
  margin-bottom: 50px;
}
.comment-box .comment.reply-comment {
  margin-left: 110px;
}
.comment-box .comment.reply-comment:last-child {
  border-bottom: 0;
}
.comment-box .user-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 80px;
  width: 80px;
  margin-bottom: 15px;
  border-radius: 50%;
  overflow: hidden;
}
.comment-box .author-thumb img {
  display: block;
  width: 100%;
}
.comment-box .comment-info {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 20px;
}
.comment-box .user-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
}
.comment-box .title {
  font-size: 14px;
  line-height: 19px;
  color: #696969;
}
.comment-box .text {
  font-size: 15px;
  line-height: 26px;
  color: #696969;
  margin-bottom: 20px;
}
.comment-box .rating {
  position: absolute;
  right: 0;
  top: 8px;
  font-size: 13px;
  color: #ffc78b;
}
.comment-form {
  position: relative;
  padding: 50px 50px;
  border: 1px solid #ecedf2;
}
/*** 

====================================================================
Products Section
====================================================================

***/
.products-section {
  position: relative;
  padding: 100px 0 70px;
}
.product-block {
  position: relative;
  margin-bottom: 30px;
}
.product-block .inner-box {
  position: relative;
  overflow: hidden;
  padding: 25px 30px 25px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  text-align: center;
  transition: all 300ms ease;
}
.product-block .inner-box:hover {
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.product-block .image-box {
  position: relative;
}
.product-block .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}
.product-block .image img {
  display: inline-block;
  max-width: 100%;
}
.product-block .info {
  position: relative;
}
.product-block h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  margin-bottom: 7px;
}
.product-block .price {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  display: block;
  color: #696969;
}
.product-block .theme-btn {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease;
}
.product-block .theme-btn i {
  margin-right: 10px;
}
.product-block .inner-box:hover .theme-btn {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
/*** 

====================================================================
Shop Single
====================================================================

***/
.shop-single {
  position: relative;
  padding: 60px 0;
}
.product-details {
  position: relative;
  margin-bottom: 50px;
}
.product-details .basic-details {
  position: relative;
  margin-bottom: 30px;
}
.product-details .image-column,
.product-details .info-column {
  margin-bottom: 50px;
}
.product-details .image-column .image {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 8px;
  padding: 70px 30px;
  border: 1px solid #ecedf2;
  text-align: center;
}
.product-details .image-column .image img {
  display: inline-block;
}
.product-details .image-column .image .icon {
  position: absolute;
  left: 35px;
  bottom: 35px;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-size: 24px;
  color: #1b2032;
  text-align: center;
  background-color: #f9fafc;
}
.product-details .info-column .inner-column {
  position: relative;
  padding-left: 20px;
}
.product-details .basic-details .product-name {
  font-weight: 500;
  font-size: 30px;
  line-height: 41px;
  color: #202124;
  margin-bottom: 15px;
}
.product-details .basic-details .rating {
  position: relative;
  font-size: 14px;
  line-height: 1em;
  color: #5c6770;
  margin-bottom: 25px;
}
.product-details .basic-details .rating .fa {
  font-size: 14px;
  color: #d0d23c;
  margin-right: 2px;
}
.product-details .basic-details .rating .title {
  margin-left: 3px;
}
.product-details .basic-details .text {
  margin-bottom: 20px;
}
.product-details .basic-details .item-price {
  font-weight: 500;
  font-size: 26px;
  line-height: 35px;
  color: #202124;
  margin-bottom: 30px;
}
.product-details .basic-details .item-price del {
  font-size: 14px;
  line-height: 19px;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #696969;
  margin-left: 10px;
}
.product-details .other-options {
  position: relative;
}
.product-details .other-options .item-quantity {
  font-size: 14px;
  line-height: 50px;
  margin-right: 30px;
  margin-bottom: 20px;
}
.item-quantity .qty {
  position: relative;
  display: inline-block;
  width: 110px;
  padding: 10px 20px;
  height: 50px;
  line-height: 26px;
  color: #5c6770;
  font-size: 15px;
  border-radius: 4px;
  border: 1px solid #ecedf2;
}
.qty::-webkit-outer-spin-button,
.qty::-webkit-inner-spin-button {
  opacity: 1;
  visibility: visible;
  background: none;
}
.item-quantity .in-stock {
  position: relative;
  padding-left: 25px;
  margin-left: 30px;
}
.item-quantity .in-stock:before {
  position: absolute;
  left: 0;
  top: 0px;
  height: 18px;
  width: 18px;
  background: #696969;
  content: "\f00c";
  border-radius: 10px;
  color: #ffffff;
  font-size: 8px;
  line-height: 18px;
  font-weight: 900;
  text-align: center;
  font-family: "Font Awesome 6 Pro";
}
.product-details .other-options .theme-btn span {
  margin-right: 10px;
}
.product-details .other-options .bookmark-btn {
  padding: 15px 20px;
  margin-left: 20px;
}
.product-details .other-options .bookmark-btn span {
  margin: 0;
}
.product-details .product-meta {
  position: relative;
  margin-top: 30px;
  margin-bottom: 40px;
}
.product-details .product-meta li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 30px;
  color: #696969;
}
.product-details .product-meta li span {
  display: block;
  margin-right: 10px;
  min-width: 90px;
}
/*** 

====================================================================
Product Tabs
====================================================================

***/
.product-info-tabs {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}
.prod-tabs .tab-btns {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.prod-tabs .tab-btns .tab-btn {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: #202124;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease;
  border-bottom: 2px solid transparent;
  margin: 0 20px;
}
.prod-tabs .tab-btns .tab-btn.active-btn {
  color: var(--talaneo);
  border-bottom-color: var(--talaneo);
}
.prod-tabs .tabs-content .tab .content {
  position: relative;
  padding: 65px 0 0;
}
.prod-tabs .content h4 {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  margin-bottom: 20px;
}
.prod-tabs .content p {
  font-size: 15px;
  line-height: 26px;
  color: #696969;
  margin-bottom: 26px;
}
.prod-tabs .content .list-style-two {
  display: flex;
  flex-wrap: wrap;
  max-width: 500px;
}
.prod-tabs .content .list-style-two li {
  width: 50%;
}
/*** 

====================================================================
Cart Section
====================================================================

***/
.cart-section {
  position: relative;
  padding: 60px 0px 50px;
}
.cart-section .column {
  position: relative;
  margin-bottom: 30px;
}
.cart-outer {
  position: relative;
}
.cart-outer .table-outer {
  position: relative;
  width: 100%;
  overflow-x: auto;
}
.cart-outer .cart-table {
  width: 100%;
  min-width: 800px;
}
.default-table tr.cart-item td {
  font-size: 15px;
}
.cart-item .product-thumbnail {
  width: 160px;
}
.cart-item .product-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  text-align: left;
  padding-left: 0;
  width: 200px;
}
.cart-item .product-name a {
  color: #202124;
}
.cart-item .product-remove {
  color: #949da6;
}
/* Cart Option */
.cart-section .cart-options {
  position: relative;
  margin: 30px 0 10px;
}
.cart-section .apply-coupon {
  position: relative;
  display: flex;
  align-items: center;
}
.cart-section .apply-coupon .form-group {
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
}
.cart-section .apply-coupon .input {
  position: relative;
  width: 100%;
  display: block;
  color: #5c6770;
  font-size: 14px;
  line-height: 26px;
  padding: 10px 18px;
  height: 50px;
  min-width: 234px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #ecedf2;
  transition: all 300ms ease;
}
.cart-section .pull-right {
  margin-left: auto;
}
.cart-section .totals-table-outer {
  position: relative;
  background: var(--talaneo-bg-light-card);
  padding: 25px 30px 30px;
}
.cart-section .totals-table li {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7e7ec;
  margin-bottom: 15px;
}
.cart-section .totals-table li:first-child,
.cart-section .totals-table li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.cart-section .totals-table li h3 {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 30px;
}
.cart-section .totals-table .col {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 16px;
  color: #202124;
  font-weight: 400;
  text-transform: capitalize;
  padding: 0;
}
.cart-section .totals-table .col:last-child {
  text-align: right;
}
.cart-section .totals-table .price {
  font-size: 14px;
  color: #696969;
}
.cart-section .proceed-btn {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 30px;
}
/***

====================================================================
CheckOut Page
====================================================================

***/
.checkout-page {
  position: relative;
  padding: 60px 0px 10px;
}
.checkout-page .column {
  position: relative;
  margin-bottom: 50px;
}
.checkout-page .title {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 30px;
}
.checkout-form {
  position: relative;
  background: #ffffff;

  border-radius: 10px;
}
.checkout-form .coupen-outer {
  position: relative;
  text-align: center;
  margin-bottom: 35px;
}
.checkout-form .coupen-outer .text {
  display: block;
  font-size: 15px;
  color: #5c6770;
  font-weight: 400;
  margin-bottom: 25px;
}
.checkout-form .coupen-outer .text a {
  font-weight: 500;
  color: #1b2032;
}
.checkout-form .coupen-outer .form-grou {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkout-form .coupen-outer .input {
  position: relative;
  width: 100%;
  display: block;
  color: #5c6770;
  font-size: 14px;
  line-height: 30px;
  padding: 10px 18px;
  height: 54px;
  max-width: 235px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid #e6e8ed;
  transition: all 300ms ease;
  margin-right: 22px;
}
.checkout-form .default-form .field-label {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  color: #202124;
  display: block;
  margin-bottom: 10px;
}
.checkout-form .default-form .form-group input {
  margin-bottom: 10px;
}
.checkout-form .default-form .form-group input:last-child {
  margin-bottom: 0;
}
.checkout-form .default-form .form-group textarea {
  height: 200px;
}
.order-box {
  position: relative;
  padding: 30px 30px;
  background: var(--talaneo-bg-light-card);
  border-radius: 8px;
  margin-bottom: 30px;
}
.order-box h3 {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 25px;
}
.order-box table {
  width: 100%;
}
.order-box thead th {
  position: relative;
  padding-bottom: 11px;
  border-bottom: 1px solid #e7e7ec;
}
.order-box thead th strong {
  font-weight: 500;
}
.order-box .cart-item td {
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  padding-top: 12px;
  padding-bottom: 12px;
}
.order-box table th:last-child,
.order-box table td:last-child {
  position: relative;
  text-align: right;
}
.order-box .cart-subtotal td {
  padding: 15px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7e7ec;
}
.order-box .order-total td {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  padding-top: 15px;
}
.payment-box {
  position: relative;
}
.payment-options {
  position: relative;
  padding: 30px 30px;
  background-color: var(--talaneo-bg-light-card);
  border-radius: 10px;
  margin-bottom: 30px;
}
.payment-box .payment-options li {
  position: relative;
  margin-bottom: 35px;
}
.payment-box .payment-options li .radio-option {
  position: relative;
}
.payment-box .payment-options li .radio-option label {
  position: relative;
  display: block;
  padding-left: 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 15px;
  color: #202124;
  text-transform: capitalize;
  cursor: pointer;
}
.payment-box .payment-options li .radio-option label .small-text {
  position: relative;
  display: none;
  text-transform: none;
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
  color: #696969;
}
.payment-box
  .payment-options
  li
  .radio-option
  input:checked
  + label
  .small-text {
  display: block;
}
.payment-box .payment-options li .radio-option label img {
  position: relative;
  margin-left: 15px;
}
.payment-box .btn-box .theme-btn {
  position: relative;
  display: block;
  width: 100%;
}
/*** 

====================================================================
Order Slip
====================================================================

***/
.order-confirmation {
  position: relative;
  padding: 100px 0 70px;
}
.order-confirmation .auto-container {
  max-width: 770px;
}
.order-confirmation .upper-box {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}
.order-confirmation .upper-box .icon {
  display: inline-block;
  height: 80px;
  width: 80px;
  color: rgba(25, 103, 210, 1);
  background: rgba(25, 103, 210, 0.1);
  border-radius: 50%;
  line-height: 80px;
  text-align: center;
  font-size: 24px;
  margin-bottom: 13px;
}
.order-confirmation .upper-box h4 {
  font-weight: 500;
  font-size: 30px;
  line-height: 41px;
  color: #202124;
  margin-bottom: 11px;
}
.order-confirmation .upper-box .text {
  font-size: 15px;
  line-height: 20px;
  color: #696969;
}
.order-confirmation .order-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 40px 0;
  background: var(--talaneo-bg-light-card);
  border-radius: 8px;
  margin-bottom: 60px;
  justify-content: space-between;
}
.order-confirmation .order-info li {
  position: relative;
  margin-right: 40px;
  flex-direction: column;
  display: flex;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  margin-bottom: 40px;
}
.order-confirmation .order-info li:last-child {
  margin-right: 0;
}
.order-confirmation .order-info li strong {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  margin-top: 13px;
}
.order-confirmation .order-box {
  background: none;
  border: 1px solid #ecedf2;
  border-radius: 8px;
  padding: 50px 60px 60px;
}
/*** 

====================================================================
App Section
====================================================================

***/
.app-section {
  padding: 100px 0 50px;
}
.app-section .image-column {
  position: relative;
  margin-bottom: 50px;
}
.app-section .image-column .bg-shape {
  position: absolute;
  left: -30px;
  top: 0;
  right: -10px;
  height: 100%;
  /* background-image: url(../assets/images/icons/shape-1.png); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.app-section .image-column .image {
  position: relative;
  padding-top: 55px;
  margin-bottom: 0;
}
.app-section .content-column {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.app-section .content-column .inner-column {
  position: relative;
  padding: 100px 0;
  padding-left: 30px;
}
.app-section .sec-title {
  margin-bottom: 30px;
}
.app-section .sec-title h2 {
  font-size: 46px;
  line-height: 54px;
}
.app-section .download-btn {
  position: relative;
  display: flex;
}
.app-section .download-btn a {
  margin-right: 20px;
  margin-bottom: 20px;
}
/*** 

====================================================================
Pricing Section
====================================================================

***/
.pricing-section {
  position: relative;
  padding: 100px 0 70px;
}
.pricing-tabs {
  position: relative;
}
.pricing-tabs .tab-buttons {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.pricing-tabs .tab-buttons h4 {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  margin-bottom: 15px;
}
.pricing-tabs .tab-btns {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pricing-tabs .tab-btns:before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 30px;
  transform: translateX(-50%);
  background: var(--talaneo);
  border: 1px solid #e7e7ec;
  box-sizing: border-box;
  box-shadow: 0px 8px 15px rgba(140, 152, 164, 0.1);
  border-radius: 30px;
  content: "";
  transition: all 300ms linear;
}
.pricing-tabs .tab-btns li {
  position: relative;
  font-size: 14px;
  line-height: 30px;
  color: #696969;
  cursor: pointer;
  z-index: 8;
  padding: 0 48px 0;
  min-width: 196px;
  transition: all 300ms ease;
}
.pricing-tabs .tab-btns li:before {
  position: absolute;
  right: -26px;
  height: 20px;
  width: 20px;
  top: 5px;
  background: #ffffff;
  content: "";
  border-radius: 50%;
  transition: all 300ms ease;
}
.pricing-tabs .tab-btns li.active-btn:before {
  right: 6px;
}
.pricing-tabs .tab-btns li:last-child:before {
  display: none;
}
.pricing-table {
  position: relative;
  margin-bottom: 30px;
}
.pricing-table .inner-box {
  position: relative;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 40px 40px;
  overflow: hidden;
  transition: all 300ms ease;
}
.pricing-table .inner-box:hover,
.pricing-table.tagged .inner-box {
  border: 1px solid var(--talaneo);
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.pricing-table .tag {
  position: absolute;
  right: 30px;
  top: 30px;
  overflow: hidden;
  border-radius: 30px;
  font-size: 13px;
  line-height: 20px;
  color: var(--talaneo);
  padding: 5px 25px;
}
.pricing-table .tag:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--talaneo);
  opacity: 0.15;
  content: "";
  border-radius: 30px;
}
.pricing-table .title {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--talaneo);
  margin-bottom: 10px;
}
.pricing-table .price {
  font-family: "Jost";
  position: relative;
  display: flex;
  align-items: flex-end;
  font-size: 30px;
  line-height: 41px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 50px;
  transition: all 300ms ease;
}
.pricing-table .duration {
  position: relative;
  font-size: 18px;
  line-height: 1em;
  color: #202124;
  font-weight: 400;
  bottom: 7px;
  margin-left: 7px;
}
.pricing-table .table-content {
  position: relative;
  margin-bottom: 60px;
}
.pricing-table .table-content ul {
  position: relative;
}
.pricing-table .table-content ul li {
  position: relative;
  font-size: 14px;
  line-height: 25px;
  color: #696969;
  font-weight: 400;
  margin-bottom: 20px;
  padding-left: 30px;
}
.pricing-table .table-content ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: Flaticon;
  font-size: 16px;
  color: #202124;
  content: "\f172";
}
.pricing-table .table-footer {
  position: relative;
}
.pricing-table .table-footer a {
  position: relative;
  display: block;
  width: 100%;
}
/*** 

====================================================================
Process Section
====================================================================

***/
.process-section {
  position: relative;
  padding: 100px 0;
}
.process-block {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.process-block .icon-box {
  position: relative;
  display: inline-block;
  padding-top: 56px;
  min-height: 113px;
  margin-bottom: 30px;
}
.process-block .icon-box:before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: 0 auto;
  height: 113px;
  width: 105px;
  /* background-image: url(../assets/images/icons/shape-3.png); */
  z-index: -1;
  content: "";
}
.process-block .icon-box img {
  display: block;
}
.process-block h4 {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
}
/*** 

====================================================================
Call To Action Two
====================================================================

***/
.call-to-action-two {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 170px 0 160px;
  text-align: center;
}
.call-to-action-two .sec-title {
  margin-bottom: 33px;
}
.call-to-action-two .btn-box {
  position: relative;
  display: inline-block;
}
.call-to-action-two .theme-btn {
  margin: 0 10px 10px;
}
.call-to-action-two .btn-style-two {
  color: #ffffff;
}
.call-to-action-two.style-two {
  position: relative;
}
.call-to-action-two.style-two:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--talaneo);
  content: "";
  opacity: 0.85;
}
/*** 

====================================================================
Call To Action Three
====================================================================

***/
.call-to-action-three {
  position: relative;
  padding: 60px 0;
  background-color: #deebff;
}
.call-to-action-three .outer-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.call-to-action-three .sec-title {
  margin-bottom: 0;
  margin-right: 30px;
}
.call-to-action-three.style-two {
  background: var(--talaneo);
}
.call-to-action-three.style-two .sec-title .text a {
  color: #ffffff;
}
.call-to-action-three.style-two .theme-btn {
  min-width: 180px;
}
/***

==================================================================
Browse Jobs
==================================================================

***/
.browse-jobs {
  position: relative;
  padding: 100px 0 70px;
}
.browse-jobs .column {
  position: relative;
  margin-bottom: 30px;
}
.browse-jobs h4 {
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 21px;
}
.links-list {
  position: relative;
}
.links-list li {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 30px;
  color: #696969;
}
.links-list li a {
  display: inline-block;
  color: #696969;
  transition: all 200ms ease;
}
.links-list li:before {
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  width: 0px;
  margin-top: -1px;
  content: "";
  border-bottom: 2px solid var(--talaneo);
  transition: all 300ms ease;
}
.links-list li:hover:before {
  width: 15px;
}
.links-list li:hover a {
  transform: translateX(25px);
  color: var(--talaneo);
}
/*** 

====================================================================
Subscribe Section
====================================================================

***/
.subscribe-section {
  position: relative;
  padding: 60px 0;
  background-color: rgba(52, 168, 83, 0.15);
}
.subscribe-section .outer-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subscribe-section .sec-title {
  margin-bottom: 0;
  margin-right: 30px;
}
.subscribe-section .form-column {
  position: relative;
  max-width: 490px;
  width: 100%;
}
.subscribe-form {
  position: relative;
}
.subscribe-form .form-group {
  position: relative;
  margin-bottom: 0;
}
.subscribe-form .form-group input[type="text"],
.subscribe-form .form-group input[type="email"] {
  display: block;
  height: 70px;
  width: 100%;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  background: #ffffff;
  padding: 20px 30px;
  padding-right: 60px;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 8px;
  transition: all 300ms ease;
}
.subscribe-form .form-group .theme-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  max-width: 120px;
  font-size: 15px;
}
.subscribe-form .response {
  position: relative;
}
.subscribe-form .response > div {
  padding: 0 15px;
  text-align: center;
}
.subscribe-form .response .success {
  background: #28a745;
  color: #ffffff;
}
.subscribe-form .response .failed {
  background-color: #dc3545;
  color: #ffffff;
}
.subscribe-form .response .text-info {
  background-color: #ffd658;
  color: #222222 !important;
}
/*** 

====================================================================
Subscribe Section Two
====================================================================

***/
.subscribe-section-two {
  position: relative;
  padding: 135px 0 148px;
}
.subscribe-section-two .sec-title h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 54px;
}
.subscribe-section-two .background-image {
  position: absolute;
  left: 60px;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 30px 0 0 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.subscribe-section-two .subscribe-form {
  position: relative;
  max-width: 490px;
  width: 100%;
  margin: 0 auto;
}
/***

==================================================================
Faqs Section
==================================================================

***/
.faqs-section {
  position: relative;
  padding: 100px 0;
}
.faqs-section h3 {
  font-weight: 500;
  font-size: 26px;
  line-height: 35px;
  color: #202124;
  margin-bottom: 12px;
}
.faqs-section .accordion-box {
  margin-bottom: 60px;
}
/***

==================================================================
TNC Section
==================================================================

***/
.tnc-section {
  position: relative;
  padding: 100px 0 50px;
}
.tnc-section .auto-container {
  max-width: 880px;
}
.tnc-section .text-box {
  position: relative;
  margin-bottom: 50px;
}
.tnc-section h3 {
  font-weight: 500;
  font-size: 26px;
  line-height: 35px;
  color: #202124;
  margin-bottom: 23px;
}
.tnc-section p {
  font-size: 15px;
  line-height: 24px;
  color: #696969;
  margin-bottom: 24px;
}
/***

==================================================================
Map Section
==================================================================

***/
.map-section {
  position: relative;
}
.map-section img{
width: 100%;
}
.map-area {
  position: relative;
}
.map-data {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
}
.map-data a {
  display: block;
}
.map-data h6 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  color: #121212;
}
.map-canvas {
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f9f9f9;
}
/***

==================================================================
Contact Section
==================================================================

***/
.contact-section {
  position: relative;
  padding: 100px 0;
}
.contact-section .upper-box {
  position: relative;
  padding: 90px 200px 70px;
  margin-top: -300px;
  z-index: 1;
  background: #ffffff;
}
.contact-block {
  position: relative;
  margin-bottom: 30px;
}
.contact-block .inner-box {
  position: relative;
}
.contact-block .icon {
  position: relative;
  display: block;
  margin-bottom: 16px;
}
.contact-block h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 20px;
}
.contact-block p {
  font-size: 15px;
  line-height: 26px;
  color: #696969;
}
.contact-block p a {
  color: #696969;
}
.contact-block p .phone {
  font-size: 18px;
  color: var(--talaneo);
}
.contact-section .contact-form {
  max-width: 850px;
  margin: 0 auto;
  border: 1px solid #ecedf2;
  border-radius: 8px;
  padding: 50px 50px 70px;
}
.contact-section .contact-form h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 15px;
}
.contact-section .contact-form .theme-btn {
  max-width: 330px;
  width: 100%;
}
/***

==================================================================
Login Section
==================================================================

***/
.login-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 50px;
  overflow: auto;
}
.login-section .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 42%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.login-section .outer-box {
  position: relative;
  margin-left: 42%;
  width: 58%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-section .login-form {
  margin: 0 auto;
  max-width: 610px;
  width: 100%;
  padding: 0 30px;
}
.login-form h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 33px;
  color: #202124;
  margin-bottom: 32px;
}
.login-form .field-outer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
}
.login-form .field-outer label {
  margin-bottom: 0;
}
.login-form .field-outer .pwd {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 19px;
  color: #202124;
  white-space: nowrap;
}
.login-form .form-group .theme-btn {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.login-form .bottom-box {
  position: relative;
  padding-top: 12px;
  text-align: center;
}
.login-form .text {
  position: relative;
  font-size: 14px;
  line-height: 19px;
  color: #696969;
  text-align: center;
  margin-top: 5px;
}
.login-form .text a {
  color: #696969;
  font-weight: 500;
}
.login-form .bottom-box .divider {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  background: #ffffff;
  margin: 10px 0 25px;
}
.login-form .bottom-box .divider span {
  position: relative;
  z-index: 9;
}
.login-form .bottom-box .divider:before {
  position: absolute;
  left: 0;
  top: 10px;
  height: 1px;
  width: 100%;
  background: #ecedf2;
  border-radius: 8px;
  content: "";
}
.login-form .bottom-box .divider:after {
  position: absolute;
  left: 50%;
  top: 0px;
  height: 20px;
  width: 60px;
  background: #fff;
  margin-left: -30px;
  content: "";
}
.login-form .bottom-box .btn-box {
  position: relative;
}
.social-btn-two {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  color: inherit;
  font-size: 14px;
  border-radius: 8px;
  background-color: inherit;
  border: 1px solid #fff;
  font-weight: 500;
  padding: 10px 30px;
  color: var(--talaneo);
  line-height: 25px;
  margin-bottom: 20px;
}
.social-btn-two i {
  margin-right: 10px;
  font-size: 15px;
}
.social-btn-two.facebook-btn {
  border-color: #3b5998;
  color: #3b5998;
}
.social-btn-two.facebook-btn:hover {
  background-color: #3b5998;
  color: #ffffff;
}
.social-btn-two.google-btn {
  border-color: #dc4d28;
  color: #dc4d28;
}
.social-btn-two.google-btn:hover {
  background-color: #dc4d28;
  color: #ffffff;
}
/***

==================================================================
Invoice Section
==================================================================

***/
.invoice-section {
  position: relative;
  background: var(--talaneo-bg-light);
  padding: 75px 0;
  min-height: 100vh;
}
.invoice-section .auto-container {
  max-width: 1200px;
}
.invoice-section .upper-box {
  position: relative;
  text-align: right;
  margin-bottom: 75px;
}
.invoice-section .upper-box .theme-btn {
  background: rgba(25, 103, 210, 0.15);
  min-width: 140px;
}
.invoice-wrap {
  position: relative;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 8px;
}
.invoice-wrap .invoice-content {
  position: relative;
  padding: 125px 100px;
}
.invoice-wrap .logo-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.invoice-wrap .logo-box .logo {
  position: relative;
  margin-right: 30px;
  margin-bottom: 40px;
}
.invoice-wrap .invoice-id {
  position: relative;
  font-weight: 500;
  font-size: 26px;
  line-height: 35px;
  color: #202124;
  margin-bottom: 40px;
  max-width: 325px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.invoice-wrap .invoice-id span {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-align: right;
  min-width: 155px;
  color: #202124;
  margin-left: 40px;
}
.invoice-wrap .info-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.invoice-wrap .info-box .right-column {
  position: relative;
  max-width: 325px;
  width: 100%;
  padding-right: 30px;
}
.invoice-wrap .info-box .left-column {
  padding-right: 30px;
}
.invoice-wrap .info {
  position: relative;
  margin-bottom: 70px;
}
.invoice-wrap .info h6 {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
}
.invoice-wrap .info span {
  font-size: 15px;
  line-height: 20px;
  color: #202124;
  font-weight: 500;
}
.invoice-wrap .info h4 {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 20px;
}
.invoice-wrap .info h5 {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  color: #202124;
  margin-bottom: 14px;
}
.invoice-table tr th:last-child,
.invoice-table tr td:last-child {
  text-align: right;
}
.invoice-wrap .invoice-footer {
  position: relative;
  padding: 48px 50px 38px;
  border-top: 1px solid #ecedf2;
}
.invoice-wrap .bottom-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.invoice-wrap .bottom-links li {
  position: relative;
  margin: 0 30px 10px;
  font-size: 15px;
  line-height: 20px;
}
.invoice-wrap .bottom-links li a {
  color: #202124;
}
.invoice-wrap .bottom-links li .link {
  color: var(--talaneo);
}
/***

==================================================================
Main Footer
==================================================================

***/
.main-footer {
  position: relative;
  background-color: #ffffff;
}
.main-footer.alternate {
  background: var(--talaneo-bg-light-card);
}
.main-footer.alternate5 {
  border-top: 1px solid #ecedf2;
}
/*=== Widgets Section ===*/
.main-footer .widgets-section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 50px;
}
.main-footer .footer-column {
  position: relative;
  margin-bottom: 50px;
}
.main-footer .footer-widget {
  position: relative;
}
.main-footer .widget-title {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #2f2d51;
  line-height: 1.4em;
  margin-bottom: 30px;
}
.main-footer .logo {
  position: relative;
  margin-bottom: 25px;
}
.main-footer .logo img {
  display: block;
}
.main-footer .phone-num {
  position: relative;
  font-size: 18px;
  line-height: 28px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 15px;
}
.main-footer .phone-num span {
  position: relative;
  display: block;
}
.main-footer .phone-num a {
  color: var(--talaneo);
}
.main-footer .address {
  font-size: 14px;
  line-height: 30px;
  color: #696969;
  font-weight: 400;
}
.main-footer .address a {
  color: #696969;
}
/*=== Cities Widget ===*/
.main-footer .links-widget {
  position: relative;
  padding-left: 20px;
}
.main-footer .list {
  position: relative;
}
.main-footer .list li {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #696969;
  margin-bottom: 15px;
}
.main-footer .list li a {
  display: inline-block;
  color: #696969;
  transition: all 200ms ease;
}
.main-footer .list li:before {
  position: absolute;
  left: 0;
  top: 10px;
  height: 2px;
  width: 0px;
  content: "";
  border-bottom: 2px solid var(--talaneo);
  transition: all 300ms ease;
}
.main-footer .list li:hover:before {
  width: 15px;
}
.main-footer .list li:hover a {
  transform: translateX(25px);
  color: var(--talaneo);
}
/*=== Social Widget ===*/
.main-footer .footer-bottom {
  position: relative;
  width: 100%;
  padding: 36px 0;
  text-align: center;
  border-top: 1px solid #ecedf2;
  min-height: 100px;
}
.main-footer .footer-bottom .bottom-left {
  position: relative;
  display: flex;
  align-items: center;
}
.main-footer .footer-bottom .logo {
  margin-bottom: 0;
  margin-right: 28px;
}
.main-footer .copyright-text {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #696969;
  padding: 0;
}
.main-footer .copyright-text a {
  display: inline-block;
  color: #696969;
  line-height: 30px;
  transition: all 300ms ease;
}
.main-footer .copyright-text a:hover {
  text-decoration: underline;
  color: #9db1bc;
}
.main-footer .footer-bottom .outer-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-footer .social-links {
  position: relative;
  display: flex;
  align-items: center;
}
.main-footer .social-links a {
  position: relative;
  margin-left: 35px;
  font-size: 14px;
  line-height: 24px;
  color: #696969;
  transition: all 300ms ease;
}
.main-footer .social-links a:hover {
  color: #bc91e8;
}
/*=== Newsletter form ===*/
.newsletter-form {
  position: relative;
}
.newsletter-form h4 {
  position: relative;
}
.newsletter-form .text {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 18px;
}
.newsletter-form .form-group {
  position: relative;
}
.newsletter-form .form-group input[type="text"],
.newsletter-form .form-group input[type="email"] {
  display: block;
  height: 60px;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: #696969;
  background: #ffffff;
  padding: 15px 20px;
  padding-right: 60px;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 8px;
  transition: all 300ms ease;
}
.newsletter-form .form-group .theme-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  line-height: 40px;
  height: 40px;
  background: #f9ab00;
  color: #ffffff;
  text-align: center;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 8px;
}
.newsletter-form .response {
  position: relative;
}
.newsletter-form .response > div {
  padding: 0 15px;
  text-align: center;
}
.newsletter-form .response .success {
  background: #28a745;
  color: #ffffff;
}
.newsletter-form .response .failed {
  background-color: #dc3545;
  color: #ffffff;
}
.newsletter-form .response .text-info {
  background-color: #ffd658;
  color: #222222 !important;
}
.main-footer.alternate2 .footer-bottom {
  position: relative;
  padding: 100px 0;
}
.main-footer.alternate3 {
  padding-top: 90px;
  background: none;
}
.main-footer.alternate3:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('6.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
}
.main-footer.alternate4 .footer-bottom {
  padding: 116px 0;
  border: 0;
}
/***

==================================================================
Main Footer / Style Two
==================================================================

***/
.main-footer.style-two {
  background-color: #302ea7;
}
.main-footer.style-two.alternate {
  background-color: #555555;
}
.main-footer.style-two .widgets-section {
  padding: 100px 0 20px;
}
.main-footer.style-two .widget-title {
  color: #ffffff;
}
.main-footer.style-two .copyright-text,
.main-footer.style-two .copyright-text a,
.main-footer.style-two .social-links a,
.main-footer.style-two .newsletter-form .text,
.main-footer.style-two .list li a,
.main-footer.style-two .address,
.main-footer.style-two .address a,
.main-footer.style-two .phone-num,
.main-footer.style-two .phone-num a {
  color: #deebff;
}
.main-footer.style-two .social-links a:hover {
  color: #f9ab00;
}
.main-footer.style-two .d-flex .list:first-child {
  margin-right: 80px;
}
.main-footer.style-two .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.main-footer.style-two .list li:before {
  border-color: #ffffff;
}
/***

==================================================================
Main Footer / Style Three
==================================================================

***/
.main-footer.style-three {
  position: relative;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.main-footer.style-three .widgets-section {
  padding: 180px 0 20px;
}
.main-footer.style-three .widget-title {
  color: #ffffff;
}
.main-footer.style-three .copyright-text,
.main-footer.style-three .copyright-text a,
.main-footer.style-three .social-links a,
.main-footer.style-three .newsletter-form .text,
.main-footer.style-three .list li a,
.main-footer.style-three .address,
.main-footer.style-three .address a,
.main-footer.style-three .phone-num,
.main-footer.style-three .phone-num a {
  color: #deebff;
}
.main-footer.style-three .social-links a:hover {
  color: #f9ab00;
}
.main-footer.style-three .d-flex .list:first-child {
  margin-right: 80px;
}
.main-footer.style-three .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.main-footer.style-three .list li:before {
  border-color: #ffffff;
}
.main-footer.style-three .newsletter-form {
  position: relative;
  max-width: 492px;
  margin: 0 auto 85px;
}
.main-footer.style-three .download-btns {
  position: relative;
  margin-bottom: 20px;
}
.main-footer.style-three .download-btns .text {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 25px;
  color: #ffffff;
  margin-bottom: 15px;
}
.download-btns a {
  position: relative;
}
.app-btn {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 9px 22px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-bottom: 20px;
  transition: all 300ms ease;
}
.app-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.app-btn .app-icon {
  position: relative;
  font-size: 28px;
  width: 26px;
  color: #ffffff;
}
.app-btn .inner {
  position: relative;
  padding-left: 20px;
}
.app-btn .sub {
  font-size: 14px;
  line-height: 19px;
  color: #ffffff;
}
.app-btn .name-app {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}
.main-footer.style-three .footer-bottom {
  min-height: auto;
  padding: 30px 0;
}
.main-footer.style-three .newsletter-form .form-group input[type="text"],
.main-footer.style-three .newsletter-form .form-group input[type="email"] {
  border-radius: 50px;
  padding: 15px 28px;
  padding-right: 140px;
  line-height: 30px;
  height: 70px;
  font-size: 15px;
  line-height: 20px;
  color: var(--talaneo);
}
.main-footer.style-three .newsletter-form .form-group .theme-btn {
  height: 50px;
  padding: 10px 30px;
  width: auto;
  border-radius: 50px;
}
/***

==================================================================
Main Footer / Style Four
==================================================================

***/
.main-footer.style-four {
  background-color: #555555;
}
.main-footer.style-four .widgets-section {
  padding: 100px 0 20px;
}
.main-footer.style-four .social-links a,
.main-footer.style-four .widget-title {
  color: #ffffff;
}
.main-footer.style-four .copyright-text,
.main-footer.style-four .copyright-text a,
.main-footer.style-two .social-links a,
.main-footer.style-four .newsletter-form .text,
.main-footer.style-four .list li a,
.main-footer.style-four .address,
.main-footer.style-four .address a,
.main-footer.style-four .phone-num,
.main-footer.style-four .phone-num a {
  color: #ffffff;
}
.main-footer.style-four .social-links a:hover {
  color: #ffffff;
}
.main-footer.style-four .d-flex .list:first-child {
  margin-right: 80px;
}
.main-footer.style-four .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.main-footer.style-four .list li:before {
  border-color: #ffffff;
}
/***

==================================================================
Main Footer / Style Five
==================================================================

***/
.main-footer.style-five {
  position: relative;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.main-footer.style-five .newsletter-form {
  position: relative;
  padding: 140px 0 150px;
  border-bottom: 1px solid #ecedf2;
}
.main-footer.style-five .newsletter-form .sec-title {
  max-width: 490px;
  margin: 0 auto 35px;
}
.main-footer.style-five .newsletter-form .sec-title .text {
  font-size: 15px;
  line-height: 25px;
}
.main-footer.style-five .newsletter-form form {
  position: relative;
  max-width: 492px;
  margin: 0 auto 0;
}
.main-footer.style-five .newsletter-form .form-group {
  margin-bottom: 0;
}
.main-footer.style-five .newsletter-form .form-group input[type="text"],
.main-footer.style-five .newsletter-form .form-group input[type="email"] {
  border-radius: 8px;
  padding-right: 140px;
  height: 70px;
  padding: 15px 28px;
  line-height: 30px;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  border: 1px solid #ecedf2;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.main-footer.style-five .newsletter-form .form-group .theme-btn {
  right: 10px;
  height: 50px;
  padding: 10px 30px;
  width: auto;
  background: var(--talaneo);
}
.main-footer.style-five .download-btns {
  position: relative;
  margin-bottom: 0;
}
.main-footer.style-five .download-btns .text {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 25px;
  color: #696969;
  margin-bottom: 15px;
}
.main-footer.style-five .download-btns a {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.main-footer.style-five .download-btns a:last-child {
  margin-bottom: 0;
}
.main-footer.style-five .footer-bottom {
  min-height: auto;
  padding: 30px 0;
}
/***

==================================================================
Main Footer / Style Six
==================================================================

***/
.main-footer.style-six {
  background-color: #2f333c;
}
.main-footer.style-six .widgets-section {
  padding: 100px 0 50px;
}
.main-footer.style-six .phone-num,
.main-footer.style-six .phone-num a,
.main-footer.style-six .widget-title {
  color: #ffffff;
}
.main-footer.style-six .copyright-text,
.main-footer.style-six .copyright-text a,
.main-footer.style-six .social-links a,
.main-footer.style-six .newsletter-form .text,
.main-footer.style-six .list li a,
.main-footer.style-six .address,
.main-footer.style-six .address a {
  color: #cad1d8;
}
.main-footer.style-six .social-links a:hover {
  color: #cad1d8;
}
.main-footer.style-six .d-flex .list:first-child {
  margin-right: 80px;
}
.main-footer.style-six .footer-bottom {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.main-footer.style-six .list li:before {
  border-color: #ffffff;
}
.main-footer.style-six .links-widget {
  padding-left: 0;
}
.main-footer.style-six .newsletter-form .form-group .theme-btn {
  background: var(--talaneo);
}
.main-footer.style-six.alternate {
  background-color: #262c3f;
}
.main-footer.style-six.alternate .newsletter-form .form-group .theme-btn {
  background: #d93025;
}
.copyright-text {
  position: relative;
  text-align: center;
  padding: 30px 0 50px;
  font-size: 14px;
  line-height: 24px;
  color: #696969;
}
/*** 

====================================================================
Dashboard
====================================================================

***/
.dashboard {
  position: relative;
  background-color: var(--talaneo-bg-light-card);
  padding-left: 365px;
  min-height: 100vh;
}
.dashboard .main-header {
  background: #ffffff;
}
.dashboard .dashboard-outer {
  position: relative;
  padding: 60px 60px 0;
}
.dashboard .upper-title-box {
  position: relative;
  margin-bottom: 60px;
}
.dashboard .upper-title-box h3 {
  font-weight: 500;
  font-size: 30px;
  line-height: 41px;
  color: #202124;
  margin-bottom: 10px;
}
.ui-item {
  position: relative;
  height: 130px;
  width: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}
.ui-item .right {
  text-align: right;
}
.ui-item h4 {
  font-size: 30px;
  color: var(--talaneo);
  font-weight: 500;
  line-height: 1em;
  margin-bottom: 3px;
}
.ui-item p {
  font-size: 15px;
  color: #202124;
  line-height: 26px;
}
.ui-item .icon {
  position: relative;
  display: block;
  height: 70px;
  width: 70px;
  line-height: 70px;
  font-size: 40px;
  color: rgba(25, 103, 210, 1);
  text-align: center;
  background-color: rgba(25, 103, 210, 0.1);
  border-radius: 8px;
}
.ui-item.ui-red h4 {
  color: rgba(217, 48, 37, 1);
}
.ui-item.ui-red .icon {
  color: rgba(217, 48, 37, 1);
  background: rgba(217, 48, 37, 0.1);
}
.ui-item.ui-yellow h4 {
  color: rgba(249, 171, 0, 1);
}
.ui-item.ui-yellow .icon {
  color: rgba(249, 171, 0, 1);
  background: rgba(249, 171, 0, 0.1);
}
.ui-item.ui-green h4 {
  color: rgba(52, 168, 83, 1);
}
.ui-item.ui-green .icon {
  color: rgba(52, 168, 83, 1);
  background: rgba(52, 168, 83, 0.1);
}
/*============================
Graph widget
============================*/
.graph-widget .widget-content {
  padding-top: 80px;
}
.graph-widget .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
}
.graph-widget .tab-buttons li {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 18px;
  color: #5c6770;
  font-weight: 400;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 8px;
  transition: all 300ms ease;
}
.graph-widget .tab-buttons li:hover,
.graph-widget .tab-buttons li.active-btn {
  background: #f9fafc;
}
.graph-widget .graph-img {
  position: relative;
  padding-top: 30px;
  margin-bottom: 20px;
}
.graph-widget .graph-img img {
  width: 100%;
  display: block;
}
/*============================
Form Widget
============================*/
.form-widget {
  position: relative;
}
.form-widget .default-form .form-group {
  margin-bottom: 12px;
}
.form-widget .default-form .form-group button {
  margin-top: 8px;
}
.form-widget .default-form .form-group:last-child {
  margin-bottom: 20px;
}
.form-widget .uploading-outer {
  margin-bottom: 20px;
}
/*============================
Uploading Widget
============================*/
.uploading-widget .widget-content {
  position: relative;
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
}
.uploading-widget .widget-content:last-child {
  padding-bottom: 30px;
  margin-bottom: 0;
  border-bottom: 0;
}
.uploading-widget .uploading-outer {
  padding: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.uploading-widget .bottom-text {
  position: relative;
  margin-top: 20px;
  font-size: 14px;
  line-height: 20px;
  color: #5c6770;
}
/*============================
Listing Filters
============================*/
.listing-filters {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 5px;
  padding: 0 30px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
  margin-bottom: 30px;
}
.listing-filters .search-outer {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}
.search-form {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-form input[type="text"],
.search-form input[type="search"] {
  position: relative;
  height: 54px;
  min-width: 305px;
  padding: 10px 18px;
  padding-right: 70px;
  background: transparent;
  font-size: 14px;
  color: #5c6770;
  line-height: 30px;
  border: 2px solid #e6e8ed;
  border-radius: 5px 5px;
  transition: all 300ms ease;
}
.search-form .search-btn {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 0;
  height: 54px;
  width: 54px;
  text-align: center;
  line-height: 54px;
  color: #e6e8ed;
  transition: all 300ms ease;
}
.listing-filters .sort-by {
  margin-left: 30px;
}
.listing-filters .filters-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.listing-filters .filters-list li {
  position: relative;
  margin-right: 10px;
}
.listing-filters .filters-list li a {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #5c6770;
  font-weight: 400;
  padding: 40px 20px;
  padding-left: 55px;
  border-bottom: 2px solid transparent;
  transition: all 300ms ease;
}
.listing-filters .filters-list li a .icon {
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -15px;
  font-size: 20px;
  color: #9fa9b8;
  line-height: 30px;
}
.listing-filters .filters-list li:hover a,
.listing-filters .filters-list li.active a {
  color: #021f4a;
  border-color: #021f4a;
}
.my-listing-widget .listing-block-seven {
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px solid #f1f3f7;
}
.my-listing-widget .listing-block-seven:last-child {
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: 0;
}
/*====================================
Listing Block Seven
====================================*/
.listing-block-seven {
  position: relative;
  margin-bottom: 30px;
}
.listing-block-seven .inner-box {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.listing-block-seven .image-box {
  position: relative;
  margin-right: 30px;
}
.listing-block-seven .image {
  position: relative;
  display: block;
  margin-bottom: 0;
  height: 150px;
  width: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.listing-block-seven .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 500ms ease;
}
.listing-block-seven .image:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(27, 32, 50, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#1b2032',GradientType=0 );
  z-index: 1;
  opacity: 0.8;
  content: "";
}
.listing-block-seven .inner-box:hover .image img {
  transform: scale(1.1);
}
.listing-block-seven .content-box {
  position: relative;
  width: 100%;
}
.listing-block-seven .content-box .upper-box {
  position: relative;
  padding: 20px 40px 10px;
  z-index: 2;
  width: 100%;
}
.listing-block-seven .rating {
  position: relative;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1em;
  color: #5c6770;
}
.listing-block-seven .fa {
  font-size: 11px;
  color: #ffa737;
}
.listing-block-seven .title {
  margin-left: 3px;
}
.listing-block-seven h3 {
  position: relative;
  font-size: 18px;
  line-height: 1.2em;
  color: #1b2032;
  font-weight: 600;
  margin-bottom: 5px;
}
.listing-block-seven h3 a {
  display: flex;
  align-items: center;
  color: #1b2032;
  transition: all 300ms ease;
}
.listing-block-seven h3 a:hover {
  color: #ffa737;
}
.listing-block-seven h3 .icon {
  margin-left: 10px;
}
.listing-block-seven .text {
  position: relative;
  margin-bottom: 10px;
}
.listing-block-seven .info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.listing-block-seven .info li {
  position: relative;
  color: #5c6770;
  margin-right: 20px;
}
.listing-block-seven .info li span {
  margin-right: 7px;
  font-size: 18px;
}
.listing-block-seven .places {
  position: relative;
  display: flex;
}
.listing-block-seven .place {
  position: relative;
  color: #4cbfd8;
  font-size: 14px;
}
.listing-block-seven .place .icon {
  position: relative;
  display: inline-block;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  color: #ffffff;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  background-color: #4cbfd8;
  margin-right: 7px;
}
.listing-block-seven .btn-box {
  position: relative;
  display: flex;
  align-items: center;
}
.listing-block-seven .btn-box .theme-btn {
  margin: 9px 0;
  margin-left: 18px;
}
.listing-block-seven .btn-box .theme-btn:first-child {
  margin-left: 0;
}
/*** 

====================================================================
User Sidebar
====================================================================

***/
.user-sidebar {
  position: fixed;
  left: 0;
  bottom: 0;
  height: calc(100%);
  width: 365px;
  padding-top: 80px;
  background: #ffffff;
  overflow: auto;
  transition: all 300ms ease;
  z-index: 9;
  border: 1px solid #ecedf2;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.user-sidebar::-webkit-scrollbar {
  width: 4px;
}
.user-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.user-sidebar::-webkit-scrollbar-thumb {
  background: var(--talaneo-bg-light);
  border-radius: 10px;
}
.user-sidebar-active .user-sidebar {
  transform: translateX(0);
}
.sidebar-backdrop {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: all 300ms ease;
  z-index: 98;
  opacity: 0;
  visibility: hidden;
}
.sidebar-inner {
  position: relative;
  padding: 60px 60px;
}
.user-sidebar .sidebar-header {
  position: relative;
  padding: 30px 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 230px;
  border-bottom: 1px solid #f1f3f7;
}
.user-sidebar .sidebar-header .user-image {
  position: relative;
  border-radius: 50%;
  height: 110px;
  width: 110px;
  border: 5px solid #dddee0;
  overflow: hidden;
  margin-bottom: 15px;
}
.user-sidebar .sidebar-header .user-image img {
  width: 100%;
  display: block;
}
.user-sidebar .sidebar-header .user-name {
  position: relative;
  font-size: 15px;
  line-height: 18px;
  color: #1b2032;
  font-weight: 700;
}
.sidebar-inner .navigation {
  position: relative;
  left: 0;
  width: 100%;
  margin: 0px;
}
.sidebar-inner .navigation li {
  position: relative;
  width: 100%;
}
.sidebar-inner .navigation li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 30px;
  line-height: 30px;
  font-weight: 400;
  font-size: 15px;
  color: #696969;
  text-align: left;
  text-transform: capitalize;
  border-radius: 8px;
  /* -webkit-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease; */
}
.sidebar-inner .navigation li a i {
  position: relative;
  margin-right: 15px;
  font-size: 22px;
  color: #696969;
  text-align: center;
  /* -webkit-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease; */
}
.place.sky {
  color: #4cbfd8;
}
.place.sky .icon {
  background-color: #4cbfd8;
}
.place.pink {
  color: #ff8480;
}
.place.pink .icon {
  background-color: #ff8480;
}
.place.purple {
  color: #8c689d;
}
.place.purple .icon {
  background-color: #8c689d;
}
.place.green {
  color: #35c2a5;
}
.place.green .icon {
  background-color: #35c2a5;
}
.place.dark-pink {
  color: #ff007a;
}
.place.dark-pink .icon {
  background-color: #ff007a;
}
.place.orange {
  color: #ffb874;
}
.place.orange .icon {
  background-color: #ffb874;
}
.place.purple {
  color: #8c689d;
}
.place.purple .icon {
  background-color: #8c689d;
}
.skills-percentage {
  position: relative;
  margin-top: 55px;
}
.skills-percentage h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  margin-bottom: 20px;
}
.skills-percentage p {
  font-size: 14px;
  line-height: 24px;
  color: #696969;
  margin-bottom: 25px;
}
.skills-percentage .pie-graph {
  position: relative;
  margin-bottom: 0;
}
.skills-percentage .graph-outer:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 234px;
  width: 234px;
  border: 30px solid #ecedf2;
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.9);
}
/*** 

====================================================================
Chat Widget
====================================================================

***/
.chat-widget .widget-content {
  padding: 0;
}
.chat-widget .card-header {
  padding: 40px 40px 0;
  background: none;
  border-radius: 0;
  border: 0;
}
.chat-widget .search-box-one .form-group input[type="text"],
.chat-widget .search-box-one .form-group input[type="search"] {
  width: 100%;
}
.chat {
  margin-top: auto;
  margin-bottom: auto;
}
.card {
  height: 770px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 8px;
}
.card ::-webkit-scrollbar {
  width: 4px;
}
.card ::-webkit-scrollbar-track {
  background: transparent;
}
.card ::-webkit-scrollbar-thumb {
  background: var(--talaneo-bg-light);
  border-radius: 10px;
}
.contacts_body {
  padding: 15px 0px;
  overflow-y: auto;
  white-space: nowrap;
}
.msg_card_body {
  position: relative;
  overflow-y: auto;
  padding: 40px 40px 10px;
  flex-wrap: wrap;
}
.msg_card_body .d-flex {
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}
.msg_card_body .justify-content-end {
  align-items: flex-end;
}
.chat_history {
  position: absolute;
  left: 0;
  top: 0px;
  text-align: center;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  color: #5c6770;
  background: #fff;
  padding: 30px 0;
}
.msg_card_body .mb-3 {
  margin-bottom: 30px !important;
}
.card-footer {
  padding: 30px 40px 40px;
  border-radius: 0 !important;
  background: none;
  border-top: 1px solid #ecedf2;
}
.card-footer .form-group {
  position: relative;
}
.card-footer .form-group button {
  position: absolute;
  right: 10px;
  top: 10px;
}
.type_msg {
  background-color: transparent !important;
  border: 0 !important;
  color: white !important;
  height: 50px !important;
  overflow-y: auto;
  font-size: 14px;
  color: #696969 !important;
  line-height: 20px;
  padding: 15px 30px;
}
.type_msg:focus {
  box-shadow: none !important;
  outline: 0px !important;
}
.attach_btn {
  border-radius: 15px 0 0 15px !important;
  background-color: rgba(0, 0, 0, 0.3) !important;
  border: 0 !important;
  color: white !important;
  cursor: pointer;
}
.send_btn {
  border-radius: 0 15px 15px 0 !important;
  background-color: rgba(0, 0, 0, 0.3) !important;
  border: 0 !important;
  color: white !important;
  cursor: pointer;
}
.contacts {
  list-style: none;
  padding: 0;
}
.contacts li {
  width: 100% !important;
}
.contacts li:last-child {
  margin-bottom: 0;
}
.contacts li a {
  position: relative;
  display: block;
  padding: 16px 40px;
  transition: all 300ms ease;
}
.contacts li.active a,
.contacts li:hover a {
  background: #f9fafc;
}
.user_img {
  height: 50px;
  width: 50px;
  border: 1px solid #dddddd;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
}
.user_img_msg {
  height: 50px;
  width: 50px;
  border: 1px solid #dddddd;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
}
.img_cont {
  position: relative;
  height: 50px;
  width: 50px;
  flex: 0 0 50px;
}
.img_cont_msg {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.img_cont_msg img {
  height: 50px;
  width: 50px;
}
.img_cont_msg .name {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  margin-left: 10px;
}
.img_cont_msg .msg_time {
  font-size: 14px;
  line-height: 19px;
  text-align: right;
  color: #696969;
  margin-left: 10px;
}
.reply .img_cont_msg {
  flex-direction: row-reverse;
}
.reply .img_cont_msg .msg_time,
.reply .img_cont_msg .name {
  flex-direction: row-reverse;
  margin-right: 10px;
}
.online_icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 13px;
  width: 13px;
  background-color: #00d664;
  border-radius: 50%;
  border: 2px solid #fafafa;
}
.offline {
  background-color: #ff0000 !important;
}
.user_info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 15px;
}
.user_info span {
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 3px;
}
.user_info p {
  font-size: 14px !important;
  color: #5c6770 !important;
  line-height: 1.4em !important;
  margin-bottom: 0 !important;
}
.video_cam {
  margin-left: 50px;
  margin-top: 5px;
}
.video_cam span {
  color: white;
  font-size: 20px;
  cursor: pointer;
  margin-right: 20px;
}
.bd-highlight .info {
  position: absolute;
  right: 40px;
  top: 20px;
  font-size: 16px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.bd-highlight .info .count {
  position: relative;
  display: block;
  width: 16.02px;
  height: 16px;
  background: var(--talaneo);
  border-radius: 50%;
  color: #ffffff;
  line-height: 16px;
  text-align: center;
  font-size: 12px;
  margin-top: 2px;
}
.msg_cotainer {
  position: relative;
  display: block;
  width: auto;
  background: var(--talaneo-bg-light);
  border-radius: 8px;
  padding: 23px 30px 20px;
  font-size: 14px;
  line-height: 24px;
  color: #696969;
  max-width: 60%;
  margin-bottom: 5px;
}
.reply .msg_cotainer {
  text-align: right;
}
.msg_cotainer_send {
  margin-top: 24px;
  border-radius: 5px;
  background-color: #bdc1c9;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  padding: 8px 18px;
  position: relative;
}
.msg_time_send {
  position: absolute;
  right: 0;
  top: -20px;
  font-size: 14px;
  line-height: 1em;
  color: #5c6770;
}
.chat-widget .msg_head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ecedf2;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  padding: 20px 40px;
}
.chat-widget .msg_head .btn-box {
  position: relative;
  display: flex;
  align-items: center;
}
.chat-widget .dlt-chat {
  font-size: 14px;
  line-height: 19px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #d93025;
}
#action_menu_btn {
  position: absolute;
  right: 10px;
  top: 10px;
  color: white;
  cursor: pointer;
  font-size: 20px;
}
.action_menu {
  z-index: 1;
  position: absolute;
  padding: 15px 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 15px;
  top: 30px;
  right: 15px;
  display: none;
}
.action_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.action_menu ul li {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 5px;
}
.action_menu ul li i {
  padding-right: 10px;
}
.action_menu ul li:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
}
.toggle-contact {
  font-size: 20px;
  margin-left: 20px;
  display: none;
}
.active-chat-contacts .toggle-contact .fa-bars:before {
  content: "\f00d";
}
.ls-widget {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  margin-bottom: 30px;
}
.ls-widget .widget-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: transparent;
  padding: 20px 30px 30px;
  min-height: 60px;
}
.ls-widget .widget-title h4 {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  color: #1b2032;
  font-weight: 500;
  margin-right: 30px;
  padding: 7px 0;
}
.ls-widget .widget-title h4 .icon {
  position: absolute;
  left: 0;
  top: 0px;
  line-height: 30px;
  color: #9fa9b8;
}
.ls-widget .widget-title .chosen-outer {
  position: relative;
  display: flex;
  align-items: center;
}
.widget-title .chosen-single {
  position: relative;
  height: 45px;
  padding: 10px 20px;
  font-size: 14px;
  color: #696969;
  line-height: 25px;
  background: var(--talaneo-bg-light);
}
.widget-title .chosen-container {
  margin-left: 20px;
}
.widget-title .chosen-container-single .chosen-single div:after {
  color: #696969;
  content: "\f17c";
  font-family: "Flaticon";
  font-size: 10px;
}
.search-box-one {
  position: relative;
}
.search-box-one .form-group {
  position: relative;
  margin-bottom: 0;
}
.search-box-one .form-group input[type="text"],
.search-box-one .form-group input[type="search"] {
  position: relative;
  display: block;
  max-width: 100%;
  width: 330px;
  height: 45px;
  line-height: 25px;
  padding: 5px 20px;
  padding-left: 54px;
  font-size: 15px;
  color: #696969;
  background: var(--talaneo-bg-light);
  border-radius: 8px;
  transition: all 500ms ease;
}
.search-box-one .form-group input[type="text"]:focus,
.search-box-one .form-group input[type="search"]:focus {
  border-color: var(--talaneo);
}
.search-box-one .form-group .icon {
  position: absolute;
  left: 0;
  top: 0;
  color: #696969;
  height: 45px;
  width: 54px;
  z-index: 1;
  text-align: center;
  line-height: 45px;
  transition: all 500ms ease;
}
.ls-widget .widget-content {
  position: relative;
  padding: 0px 30px 10px;
}
.ls-widget .widget-content p {
  position: relative;
  font-size: 14px;
  line-height: 26px;
  color: #5c6770;
  font-weight: 400;
  margin-bottom: 26px;
}
/* Notification list */
.notification-list {
  position: relative;
}
.notification-list li {
  position: relative;
  padding: 5px 0;
  padding-left: 47px;
  font-size: 15px;
  line-height: 25px;
  color: #696969;
  font-weight: 400;
  min-height: 35px;
  margin-bottom: 25px;
}
.notification-list li strong {
  font-weight: 500;
  color: #202124;
}
.notification-list li .icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 35px;
  width: 35px;
  background: rgba(25, 103, 210, 0.15);
  color: var(--talaneo);
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  font-size: 16px;
}
.notification-list li .colored {
  color: var(--talaneo);
}
.notification-list li.success .icon {
  background: rgba(52, 168, 83, 0.15);
  color: rgba(52, 168, 83, 1);
}
.notification-list li.success .colored {
  color: rgba(52, 168, 83, 1);
}
.uploading-outer {
  position: relative;
  display: flex;
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid #f1f3f7;
  margin-bottom: 30px;
  align-items: center;
}
.uploading-outer .uploadButton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.uploadButton .uploadButton-input {
  opacity: 0;
  position: absolute;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  height: 0;
  width: 0;
  display: none;
}
.uploadButton .uploadButton-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  height: 120px;
  width: 200px;
  border-radius: 5px;
  transition: 0.3s;
  margin: 0;
  color: #1b2032;
  font-size: 16px;
  border: 2px dashed #ced4e1;
}
.uploadButton .uploadButton-button:hover {
  border-color: #021f4a;
}
.uploadButton .uploadButton-file-name {
  align-items: center;
  padding: 0 10px;
  padding-left: 18px;
  min-height: 36px;
  top: 1px;
  position: relative;
  color: #1b2032;
  background-color: transparent;
  overflow: hidden;
  line-height: 22px;
}
.uploadButton .uploadButton-button:before {
  font-family: "Flaticon";
  content: "\f15c";
  color: #9fa9b8;
  font-size: 20px;
  transition: 0.3s;
}
.widget-content .default-form .form-group {
  margin-bottom: 30px;
}
.widget-content .default-form textarea {
  min-height: 280px;
  padding: 30px;
}
.post-job-steps {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.post-job-steps .step {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 90px;
  margin-bottom: 50px;
}
.post-job-steps .step .icon {
  position: relative;
  display: inline-block;
  height: 80px;
  width: 80px;
  font-size: 40px;
  background: rgba(25, 103, 210, 0.15);
  color: var(--talaneo);
  border-radius: 50%;
  line-height: 80px;
  text-align: center;
  margin-right: 30px;
}
.map-height {
  height: 420px;
}
.manage-job-table {
  position: relative;
  min-width: 1070px;
}
.manage-job-table tbody td {
  font-size: 15px;
  line-height: 20px;
  color: #696969;
}
.manage-job-table h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 10px;
}
.manage-job-table .info {
  font-size: 14px;
  line-height: 19px;
  color: #696969;
}
.manage-job-table .package,
.manage-job-table .colored,
.manage-job-table .applied {
  font-size: 15px;
  line-height: 20px;
  color: var(--talaneo);
  font-weight: 400;
  text-decoration: underline;
}
.manage-job-table a {
  color: inherit;
}
.manage-job-table .status {
  color: var(--talaneo);
}
.aplicants-upper-bar {
  position: relative;
  background: var(--talaneo-bg-light-card);
  border-radius: 8px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.aplicants-upper-bar h6 {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--talaneo);
}
.aplicants-upper-bar .aplicantion-status {
  position: relative;
  display: flex;
  align-items: center;
}
.aplicants-upper-bar .aplicantion-status li {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--talaneo);
  margin-left: 115px;
}
.aplicants-upper-bar .aplicantion-status li.approved {
  color: var(--talaneo);
}
.aplicants-upper-bar .aplicantion-status li.rejected {
  color: #d93025;
}
.applicants-widget .candidate-block-three {
}
.manage-job-table .job-block {
  margin-bottom: 0;
}
.manage-job-table .job-block .inner-box {
  padding: 0;
  border: 0;
}
.manage-job-table .job-block .job-info {
  margin-bottom: 0;
}
.resume-outer {
  position: relative;
  margin-bottom: 30px;
}
.resume-outer .upper-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resume-outer .upper-title h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 25px;
}
.add-info-btn {
  position: relative;
  font-size: 13px;
  line-height: 20px;
  color: var(--talaneo);
  font-weight: 400;
  display: flex;
  align-items: center;
  color: rgba(217, 48, 37, 1);
}
.add-info-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  margin-right: 10px;
  background: #f9e0df;
  color: rgba(217, 48, 37, 1);
  border-radius: 60px;
}
.resume-block {
  position: relative;
}
.resume-block .inner {
  position: relative;
  padding-left: 60px;
  z-index: 1;
  padding-bottom: 60px;
}
.resume-block .inner:before {
  position: absolute;
  left: 14px;
  top: 5px;
  bottom: 0;
  z-index: -1;
  border-left: 2px dashed rgba(217, 48, 37, 0.15);
  content: "";
}
.resume-block:last-child .inner {
  padding-bottom: 30px;
}
.resume-block:last-child .inner:before {
  display: none;
}
.resume-block .name {
  position: absolute;
  left: 0;
  top: 5px;
  display: block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 12px;
  text-align: center;
  border-radius: 50%;
  background: #f9e0df;
  color: rgba(217, 48, 37, 1);
  z-index: 2;
}
.resume-block .title-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.resume-block .info-box {
  position: relative;
  margin-right: 20px;
}
.resume-block .info-box h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
}
.resume-block .info-box span {
  font-size: 16px;
  line-height: 22px;
  color: rgba(217, 48, 37, 1);
}
.resume-block .edit-box {
  display: flex;
  align-items: center;
}
.resume-block .edit-box .year {
  position: relative;
  font-size: 13px;
  padding: 5px 20px;
  line-height: 15px;
  color: #d93025;
  font-weight: 500;
  border-radius: 20px;
  background: rgba(217, 48, 37, 0.15);
  color: rgba(217, 48, 37, 1);
}
.resume-block .edit-btns {
  position: relative;
  display: flex;
  margin-left: 20px;
}
.resume-block .edit-btns button {
  position: relative;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: var(--talaneo-bg-light-card);
  border-radius: 8px;
  margin-right: 10px;
  min-width: auto;
  color: rgba(25, 103, 210, 1);
}
.resume-outer.theme-blue .resume-block .edit-box .year,
.resume-outer.theme-blue .resume-block .name {
  background: #eff4fc;
  color: rgba(25, 103, 210, 1);
}
.resume-outer.theme-blue .resume-block .info-box span {
  color: rgba(25, 103, 210, 1);
}
.resume-outer.theme-yellow .resume-block .edit-box .year,
.resume-outer.theme-yellow .resume-block .name {
  background: #fef2d9;
  color: rgba(249, 171, 0, 1);
}
.resume-outer.theme-yellow .resume-block .info-box span {
  color: rgba(249, 171, 0, 1);
}
.portfolio-outer {
  position: relative;
  margin-bottom: 20px;
}
.portfolio-outer .image {
  position: relative;
  margin-bottom: 30px;
}
.portfolio-outer .image img {
  display: block;
  width: 100%;
  border-radius: 5px;
}
.portfolio-outer .image .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 50px;
  width: 50px;
  background: var(--talaneo);
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  line-height: 50px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all 300ms ease;
  opacity: 0;
  visibility: hidden;
}
.portfolio-outer .image:hover .icon {
  opacity: 1;
  visibility: visible;
}
.uploading-resume {
  position: relative;
  display: flex;
  align-items: center;
}
.uploading-resume .uploadButton {
  position: relative;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.uploading-resume .uploadButton-input {
  opacity: 0;
  position: absolute;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  height: 0;
  width: 0;
  display: none;
}
.uploading-resume .cv-uploadButton {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  text-align: center;
  height: 300px;
  width: 100%;
  border-radius: 5px;
  transition: 0.3s;
  margin: 0;
  color: #1b2032;
  font-size: 16px;
  border: 2px dashed #ced4e1;
  padding: 30px 20px;
}
.uploading-resume .cv-uploadButton .title {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--talaneo);
  margin-bottom: 12px;
}
.uploading-resume .cv-uploadButton .text {
  font-size: 14px;
  line-height: 19px;
  color: #696969;
  margin-bottom: 28px;
}
.uploading-resume .cv-uploadButton .theme-btn {
  position: relative;
  display: inline-block;
}
.uploading-resume .cv-uploadButton:hover {
  border-color: #021f4a;
}
.uploading-resume .uploadButton-file-name {
  align-items: center;
  padding: 0 10px;
  padding-left: 18px;
  min-height: 36px;
  top: 1px;
  position: relative;
  color: #1b2032;
  background-color: transparent;
  overflow: hidden;
  line-height: 22px;
}
.cv-manager-widget .files-outer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.file-edit-box {
  position: relative;
  height: 167px;
  width: 190px;
  background: var(--talaneo-bg-light-card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 20px;
  margin-right: 20px;
}
.file-edit-box .title {
  display: block;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  color: #696969;
}
.file-edit-box .edit-btns {
  position: relative;
  display: flex;
  margin-left: 20px;
}
.file-edit-box .edit-btns button {
  position: relative;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #ffffff;
  border-radius: 8px;
  margin-right: 10px;
  min-width: auto;
  color: rgba(25, 103, 210, 1);
}
@media only screen and (min-width: 768px) {
  .header-info-button {
    position: absolute !important;
    transform: translate(50px, -30px);
    right: 0;
  }
}
@media only screen and (max-width: 1600px) {
  .main-menu .navigation > li {
    margin-right: 35px;
  }

  .header-style-two .main-menu .navigation > li {
    margin-left: 40px;
  }

  .main-header .logo {
    padding: 15px 0;
  }

  .banner-section .info_block,
  .banner-section .info_block_two,
  .banner-section .info_block_three,
  .banner-section .info_block_four {
    transform: scale(0.8);
  }

  .job-search-form {
    min-width: auto;
  }

  .job-search-form {
    padding: 15px 15px;
    border-radius: 10px;
  }

  .banner-section .content-column h3 {
    font-size: 50px;
    line-height: 1.2em;
  }

  .banner-section .image-column .image-box {
    margin-right: -40px;
    padding-left: 0;
  }

  .banner-section .image-column .info_block_four {
    left: -40px;
  }

  .banner-section .image-column .info_block_two {
    right: -50px;
  }

  .banner-section .image-column .info_block_three {
    right: 0;
  }

  .banner-section .image-column .info_block {
    left: -100px;
  }

  .banner-section-two .image-column .image-box {
    margin-right: -100px;
  }

  .header-style-five .main-menu .navigation > li {
    margin-right: 20px;
  }

  .header-style-five .logo img {
    max-width: 155px;
  }

  .header-style-five .main-box {
    padding: 0 30px;
  }

  .banner-section-six .image-column .image-box {
    margin-right: -100px;
  }

  .banner-section-six .image-column .info_block_two {
    right: -20px;
    display: none;
  }

  .banner-section-six .image-column .info_block_three {
    right: -55px;
  }

  .main-footer.alternate4 .footer-bottom {
    padding: 36px 0;
  }

  .subscribe-section-two .background-image {
    left: 50px;
  }

  .header-span {
    height: 80px;
  }

  .banner-section-eight .image-outer .image {
    margin-left: 100px;
  }

  .main-header .logo {
    margin-right: 60px;
  }

  .sidebar-inner {
    padding: 40px 30px;
  }

  .user-sidebar {
    width: 300px;
  }

  .sidebar-inner .navigation li a {
    padding: 10px 25px;
  }

  .page-wrapper.dashboard {
    padding-left: 300px;
  }

  .dashboard .dashboard-outer {
    padding: 40px 30px 0;
  }

  .dashboard .upper-title-box {
    margin-bottom: 40px;
  }

  .dashboard .candidate-block-three .inner-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard .candidate-block-three .option-box {
    margin-top: 20px;
    margin-left: 110px;
  }

  .option-list li {
    margin-left: 0;
    margin-right: 10px;
  }

  .main-header .outer-box .btn-box .theme-btn {
    min-width: 100px;
    padding: 8px 20px;
    font-size: 14px;
  }

  .header-style-five .outer-box {
    padding: 22px 0;
  }
  .card-footer .form-group button {
    padding: 8px 20px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 1366px) {
  .main-header .outer-box .upload-cv {
    margin-right: 0;
  }

  .main-header .main-box {
    padding: 0 15px;
  }

  .dashboard .main-header .main-box,
  .main-header.header-style-two .main-box {
    padding: 0;
  }

  .banner-carousel.default-nav .owl-nav,
  .main-header .outer-box .btn-box {
    display: none;
  }

  .main-header .menu-btn {
    margin-left: 20px;
  }

  .header-style-three .main-box {
    padding: 0 15px;
  }

  .header-style-five .main-menu .navigation > li {
    margin-right: 50px;
  }

  .user-sidebar {
    z-index: 99;
    padding-top: 0;
  }

  .banner-section-seven,
  .banner-section-six,
  .banner-section-five,
  .banner-section-three,
  .banner-section-two,
  .banner-section {
    padding: 0 15px;
  }

  .banner-section-ten h3,
  .banner-section-four h3,
  .banner-section-seven h3,
  .banner-section-nine h3,
  .banner-section-eight .content-column h3,
  .banner-section-six .content-column h3,
  .banner-section-seven .content-column h3,
  .banner-section-five .content-column h3,

  .banner-section-two .content-column h3,
  .banner-section .content-column h3 {
    font-size: 40px;
    line-height: 1.2em;
    margin-bottom: 20px;
  }
/* 
  .header-info-card {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
  } */

  .header-arrow {
    display: none;
  }

  .job-search-form {
    min-width: 600px;
  }

  .job-search-form {
    padding: 10px 20px;
    padding-left: 20px;
  }

  .banner-section-six .job-search-form {
    padding: 0;
  }

  .large-container {
    max-width: 1200px;
  }

  .banner-section .content-column .inner-column {
    padding: 220px 0 50px;
  }

  .banner-section-two .content-column .inner-column {
    padding-top: 220px;
    padding-bottom: 40px;
  }

  .banner-section-three .content-column .inner-column {
    padding-top: 220px;
    padding-bottom: 40px;
  }

  .banner-section-four {
    padding: 250px 0 150px;
  }

  .banner-section .popular-searches {
    font-size: 14px;
  }

  .job-search-form .form-group .icon {
    font-size: 20px;
  }

  .job-search-form .form-group.btn-box {
    text-align: left;
  }

  .job-search-form .form-group .theme-btn {
    display: inline-block;
    width: auto;
    min-width: 150px;
  }

  .job-search-form .ui-selectmenu-button.ui-button,
  .job-search-form .form-group input,
  .job-search-form .input-custom,
  ng-select,
  .job-search-form .form-group select,
  .job-search-form .form-group textarea {
    height: 50px;
    line-height: 20px;
    font-size: 14px;
    padding-left: 40px;
  }

  .job-search-form .form-group .theme-btn {
    height: 50px;
  }

  .banner-section .image-column .info_block {
    left: -100px;
  }

  .banner-section .image-column .info_block_two {
    top: 10%;
    right: -100px;
  }

  .banner-section .image-column .info_block_three {
    top: auto;
    bottom: 30%;
    right: -100px;
  }

  .banner-section .image-column .info_block_four {
    bottom: 5%;
    left: -50px;
  }

  .job-categories {
    padding: 100px 0 55px;
  }

  .testimonial-block .inner-box {
    padding: 30px 30px;
  }

  .testimonial-block .thumb {
    height: 50px;
    width: 50px;
  }

  .testimonial-block .info-box {
    padding-left: 70px;
    min-height: 50px;
  }

  .testimonial-block .name {
    font-size: 18px;
    line-height: 1.2em;
  }

  .testimonial-block .designation {
    font-size: 14px;
  }

  .news-block .post-meta li {
    font-size: 14px;
  }

  .news-block .lower-content h3 {
    font-size: 18px;
  }

  .news-block .lower-content .text {
    font-size: 15px;
    line-height: 24px;
  }

  .job-block h4 {
    font-size: 16px;
  }

  .main-footer .phone-num {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  .main-footer .address {
    font-size: 16px;
    line-height: 26px;
  }

  .main-footer .widgets-section {
    padding-bottom: 0;
  }

  .testimonial-block {
    margin-right: 0;
  }

  .banner-section .image-column .info_block_two {
    top: 15%;
  }

  .banner-section-five .info_block_two {
    display: none;
  }

  .about-section .count-employers {
    margin-top: 30px;
  }

  .about-section .content-column .inner-column {
    padding-left: 0 !important;
  }

  .banner-section-two .job-search-form {
    min-width: auto;
  }

  .banner-section-two .job-search-form .form-group .theme-btn {
    height: auto;
  }

  .banner-section-three .image-column .image-box {
    margin-left: -50px;
  }

  .subscribe-section .sec-title .text br,
  .banner-section-five .content-column h3 br,
  .banner-section .content-column h3 br {
    display: none;
  }

  .banner-section-four .job-search-form {
    padding: 10px 15px;
  }

  .banner-section-four .job-search-form {
    max-width: 80%;
    overflow: visible;
  }

  .banner-section-five .image-column .image-box {
    padding-top: 200px;
    padding-left: 70px;
    margin-right: -150px;
  }

  .testimonial-section-three .image-column {
    margin-right: 50px;
  }

  .testimonial-section-three .owl-nav {
    margin-left: -35px;
  }

  .banner-section-five .content-column .inner-column {
    padding: 220px 0 100px;
  }

  .subscribe-section-two .background-image {
    left: 0;
  }

  .header-style-five .logo-box {
    position: relative;
    transform: none;
    left: 0;
    order: 0;
  }

  .header-style-five .logo {
    padding: 23px 0;
  }

  .header-style-five .logo-box .logo img {
    max-width: 100px;
  }

  .header-style-five .main-box .outer-box {
    display: none;
  }

  .header-style-five .nav-outer {
    order: 2;
  }

  .banner-section-six .content-column .inner-column {
    padding-top: 130px;
    padding-bottom: 50px;
  }

  .news-block-two .content-box {
    padding: 15px 18px;
  }

  .banner-section-six .image-column .info_block_three,
  .banner-section-six .image-column .info_block_four {
    display: none;
  }

  .banner-section-seven .image-outer .image {
    margin-left: -50px;
  }

  .banner-section-seven .job-search-form {
    overflow: visible;
  }

  .about-section.style-two .content-column .inner-column {
    padding-left: 0;
  }

  .testimonial-section .testimonial-left,
  .testimonial-section .testimonial-right,
  .testimonial-section-two .testimonial-left,
  .testimonial-section-two .testimonial-right {
    top: 40%;
    width: 40%;
  }

  .ads-section {
    padding: 100px 0;
  }

  .banner-section-seven .job-search-form {
    padding: 0;
  }

  .banner-section-seven .job-search-form {
    padding-left: 0;
  }

  .banner-section-eight .image-outer {
    display: none;
  }

  .banner-section-eight {
    padding: 0 25px;
  }

  .banner-section-eight .job-search-form {
    min-width: auto;
    padding-right: 20px;
  }

  .recruiter-section .content-column .inner-column {
    padding-left: 50px;
  }

  .banner-section-nine {
    padding: 200px 0 50px;
  }

  .banner-section-nine .fun-fact-section {
    padding-top: 50px;
  }

  .news-section.style-three .column {
    order: 2;
    margin-bottom: 50px;
  }

  .job-section-six .content-column .inner-column {
    padding-left: 0;
    padding-top: 0;
  }

  .job-section-six .image-column .image {
    padding-right: 0;
  }

  .banner-section-ten .job-search-form {
    padding-right: 20px;
  }

  .banner-style-two .inner-box,
  .banner-style-one .inner-box {
    overflow: hidden;
  }

  .banner-style-two .content,
  .banner-style-one .content {
    padding-right: 100px;
  }

  .banner-style-two .image,
  .banner-style-one .image {
    right: -80px;
  }

  .banner-section-ten .job-search-form {
    padding-right: 0;
  }

  .job-detail {
    padding-right: 0;
  }

  .job-overview-two li {
    flex: 0 0 50%;
  }

  .blog-sidebar {
    margin-left: 0;
  }

  .sidebar.pd-right,
  .ls-section .filters-column .inner-column.pd-right {
    padding-right: 0;
  }

  .ls-section.map-layout .ls-outer {
    padding: 30px 15px;
  }

  .ls-section.map-layout .map-column {
    height: calc(100vh - 80px);
  }

  .contact-section .upper-box {
    padding: 50px 30px 20px;
  }

  .contact-block .inner-box {
    text-align: center;
  }

  .dashboard .ui-block {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .candidate-block-three .post-tags li {
    margin-bottom: 10px;
  }

  .dashboard-option .thumb {
    height: 30px;
    width: 30px;
  }

  .main-header li {
    margin-left: 15px;
  }

  .main-header .dashboard-option .dropdown-menu,
  .main-header .dashboard-option .dropdown-toggle::after,
  .main-header .dashboard-option .name {
    display: none;
  }

  .main-header .menu-btn:first-child {
    margin-left: 0;
  }

  .page-wrapper.dashboard {
    padding-left: 0;
  }

  .user-sidebar {
    transform: translateX(-100%);
  }

  .user-sidebar-active .sidebar-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .top-filters .form-group {
    margin-right: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
  }

  .candidate-block-six .content {
    flex-direction: column;
    align-items: center;
  }

  .candidate-block-six .candidate-info {
    margin: 10px 0 15px;
    justify-content: center;
  }

  .candidate-block-six .candidate-info li {
    margin: 0 15px 10px;
  }

  .hide-sm,
  .main-header .main-box,
  .sticky-header {
    display: none !important;
  }

  .mobile-header,
  .mm-add-listing,
  #toggle-user-sidebar,
  .nav-outer .mobile-nav-toggler {
    display: block;
  }

  .nav-outer .mobile-nav-toggler {
    display: flex;
    height: 30px;
    width: 30px;
    justify-content: center;
    align-items: center;
  }

  .main-header .logo img {
    max-width: none;
    height: 40px;
  }

  .main-header .nav-outer .main-menu {
    display: none;
  }

  .header-style-four .nav-outer,
  .header-style-two .nav-outer {
    width: auto;
  }

  .mobile-header .outer-box {
    margin-top: 7px;
    padding: 0;
  }

  .main-header {
    background: #ffffff;
  }
}
@media only screen and (min-width: 768px) {
  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul,
  .main-menu .navigation > li > .mega-menu {
    display: block !important;
    visibility: hidden;
    opacity: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .job-search-form .form-group {
    border-radius: 0;
  }

  .job-search-form .form-group:last-child {
    padding-top: 10px;
    padding-bottom: 0;
    border-bottom: 0;
  }

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

  .app-section .image-column {
    order: 2;
  }

  .app-section .image-column .image img {
    max-width: 300px;
    display: inline-block;
  }

  .app-section .content-column .inner-column {
    text-align: center;
    padding-left: 0;
    padding-top: 0;
  }

  .app-section .download-btn {
    justify-content: center;
  }

  .app-section .download-btn a {
    margin: 0 10px 10px;
  }

  .app-section .download-btn a img {
    height: 50px;
    width: auto;
  }

  .call-to-action .image-column {
    width: 150px;
  }

  .main-footer .links-widget {
    padding-left: 0;
  }

  .mega-menu-bar {
    position: relative;
    padding: 20px 30px;
  }

  .mega-menu-bar h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .mega-menu-bar ul {
    position: relative;
    padding-left: 15px;
    margin-bottom: 30px;
  }

  .mega-menu-bar ul li {
    padding: 0;
  }

  .mega-menu-bar ul li a {
    font-size: 15px;
    line-height: 26px;
  }

  .job-search-form .form-group {
    border: 0;
    margin-bottom: 20px;
  }

  .job-search-form .ui-selectmenu-button.ui-button,
  .job-search-form .form-group input,
  .job-search-form .input-custom,
  ng-select,
  .job-search-form .form-group select,
  .job-search-form .form-group textarea {
    line-height: 20px;
    padding: 25px 0;
    padding-left: 70px;
    border-radius: 5px;
    height: 70px;
    background-color: #ffffff;
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border-radius: 8px;
  }

  .job-search-form .chosen-container-single .chosen-single {
    line-height: 20px;
    padding: 25px 0;
    padding-left: 70px;
    height: 70px;
  }

  .job-search-form .form-group .icon {
    font-size: 20px;
    left: 35px;
  }

  .job-search-form {
    background: none;
    padding: 0;
    box-shadow: none;
    border: 0;
  }

  .banner-section-seven,
  .banner-section-three {
    padding: 0;
  }

  .banner-section-seven .image-outer,
  .banner-section-five .image-column,
  .banner-section-three .image-column,
  .banner-section-two .image-column,
  .banner-section .image-column {
    display: none;
  }

  .banner-section-six .popular-searches,
  .banner-section-three .popular-searches,
  .banner-section .popular-searches {
    margin-top: 90px;
  }

  .banner-section .popular-searches .title {
    color: #202124;
  }

  .banner-section-two .job-search-form .form-group .theme-btn {
    height: 60px;
  }

  .banner-section-seven .content-column .inner-column {
    padding-top: 140px;
    padding-bottom: 30px;
  }

  .job-section {
    padding: 50px 0 !important;
  }

  .about-section.style-two .image-column {
    margin-bottom: 50px;
  }

  .job-search-form-two {
    min-width: auto;
  }

  .job-search-form-two form {
    padding: 20px 20px;
  }

  .job-search-form-two .form-group {
    margin-bottom: 20px;
  }

  .job-search-form-two .form-group:last-child {
    margin-bottom: 0;
  }

  .job-search-form-two .form-group .icon {
    right: 30px;
  }

  .banner-section-four .job-search-form {
    max-width: 100%;
  }

  .job-search-form .form-group:first-child {
    border: 0;
  }

  .banner-section-eight .job-search-form {
    padding: 0;
  }

  .banner-section-four .job-search-form .form-group .theme-btn {
    width: 100%;
    border-radius: 8px;
    margin-top: 0;
  }

  .about-section .image-column {
    margin-bottom: 100px;
  }

  .about-section .image-column .image img {
    display: block;
    width: 100%;
  }

  .about-section .count-employers {
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -80px;
    transform: scale(0.9);
  }

  .about-section-two .image-column .image-box {
    margin-right: 0;
  }

  .about-section-two .content-column .inner-column {
    padding-left: 0;
    padding-right: 0;
  }

  .about-section-two .sec-title h2 br {
    display: none;
  }

  .banner-section-five {
    background-color: #e4f0ed;
  }

  .banner-section-five:before {
    display: none;
  }

  .about-section-two.style-two .image-column .image-box img {
    width: 100%;
  }

  .about-section-two.style-two .content-column .inner-column {
    padding-left: 0;
    padding-top: 0;
  }

  .testimonial-block-three .inner-box {
    padding-top: 0;
  }

  .testimonial-block-three .text {
    margin-bottom: 30px;
  }

  .testimonial-section-three .owl-nav {
    position: relative;
    left: auto;
    right: 0;
    top: 0;
    margin: 0;
    margin-top: -100px;
    justify-content: flex-end;
  }

  .subscribe-section .outer-box {
    flex-direction: column;
    text-align: center;
  }

  .subscribe-section .sec-title {
    margin-bottom: 30px;
  }

  .banner-section-six .image-column,
  .job-block-five .job-other-info,
  .job-block-five .inner-box .theme-btn {
    display: none;
  }

  .job-block-five .inner-box {
    padding-right: 32px;
  }

  .job-block-five .job-info {
    margin-bottom: 0;
  }

  .call-to-action-two {
    padding: 100px 0 100px;
  }

  .news-block-two .inner-box {
    display: block;
    flex-direction: column;
  }

  .news-block-two .image-box img {
    width: 100%;
  }

  .news-block-two .image-box .image {
    min-width: 100%;
  }

  .subscribe-section-two .background-image {
    left: -50px;
  }

  .subscribe-section-two {
    padding: 105px 0 108px;
  }

  .banner-section-eight {
    padding: 0;
    margin-bottom: 0;
  }

  .banner-section-eight .content-column .inner-column {
    padding: 220px 0 50px;
  }

  .banner-section-eight .job-search-form {
    padding: 0;
  }

  .clients-section-two.alternate {
    padding: 50px 0;
  }

  .banner-section-ten .job-search-form,
  .banner-section-nine .job-search-form {
    padding: 0;
  }

  .banner-section-nine .job-search-form .form-group label {
    display: none;
  }

  .job-search-form .form-group .theme-btn {
    display: block;
    width: 100%;
  }

  .banner-section-nine .title-box {
    margin-bottom: 40px;
  }

  .banner-section-ten {
    padding-top: 250px;
  }

  .job-block-seven .inner-box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .job-block-seven.style-three .inner-box {
    align-items: center;
    justify-content: center;
  }

  .job-block-seven .btn-box {
    margin-top: 30px;
  }

  .job-block-seven.style-three .btn-box {
    margin-top: 0;
  }

  .job-detail-section .content-column {
    margin-left: 0;
  }

  .listing-maps.style-two #map {
    position: relative;
    min-height: 500px;
  }

  .listing-maps.style-two .form-outer {
    position: relative;
    background: #fff;
    padding: 30px 0;
  }

  .listing-maps.style-two .form-outer .form-group {
    background: none;
  }

  .listing-maps.style-two .job-search-form.style-two,
  .listing-maps.style-two .job-search-form.style-two form {
    background: none;
  }

  /* .ls-section .filters-column{
		order: 2;
	} */

  .job-detail-section .content-column {
    order: 0;
  }

  .ls-section .content-column {
    margin-bottom: 50px;
  }

  .ls-section.map-layout .map-column {
    position: relative;
    height: 600px;
    width: 100%;
  }

  .ls-section.map-layout .content-column {
    position: relative;
    height: auto;
    width: 100%;
  }

  .ls-section.map-layout .ls-cotainer {
    flex-direction: column;
  }

  .comment-form {
    padding: 30px 30px;
  }

  .product-details .info-column .inner-column {
    padding-left: 0;
  }

  .login-section .image-layer {
    display: none;
  }

  .login-section .outer-box {
    width: 100%;
    margin-left: 0;
  }

  .invoice-section {
    padding: 50px 0;
  }

  .invoice-section .upper-box {
    margin-bottom: 30px;
  }

  .invoice-wrap .invoice-content {
    padding: 50px 50px 30px;
  }

  .main-header {
    box-shadow: none;
  }

  .aplicants-upper-bar .aplicantion-status li {
    margin-left: 40px;
  }

  .toggle-contact {
    display: block;
  }

  .chat-widget .contacts_column {
    position: fixed;
    left: 0;
    top: 0;
    overflow: auto;
    width: 320px;
    padding: 0;
    height: 100vh;
    z-index: 99;
    transform: translateX(-100%);
    transition: all 300ms ease;
  }

  .active-chat-contacts .chat-widget .contacts_column {
    transform: translateX(0);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .card,
  .contacts_body {
    overflow: hidden;
    height: 100vh;
  }

  .chat-widget .contacts_column .card-header {
    padding: 30px 20px 0;
  }

  .contacts li a {
    padding: 15px 20px;
  }

  .bd-highlight .info {
    font-size: 13px;
  }

  .user_info p {
    font-size: 12px !important;
  }

  .message-card {
    margin-bottom: 30px;
  }

  .candidate-detail-outer .content-column {
    order: 0;
  }

  .candidate-detail-section.style-three .job-detail {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .job-search-form {
    min-width: auto;
  }

  .banner-section .image-column {
    padding-top: 0;
  }

  .app-section,
  .news-section-two,
  .job-categories {
    padding: 50px 0 30px;
  }

  .browse-jobs,
  .job-section.alternate,
  .candidates-section-two,
  .main-footer.style-six .widgets-section,
  .main-footer.style-three .widgets-section,
  .features-section {
    padding: 50px 0 20px;
  }

  .top-companies,
  .job-section-four,
  .job-section-five,
  .main-footer.style-five .newsletter-form,
  .clients-section.alternate,
  .testimonial-section-two,
  .job-section-two,
  .top-companies,
  .ads-section,
  .registeration-banners,
  .ls-section,
  .call-to-action-two,
  .candidates-section,
  .blog-single,
  .products-section,
  .sidebar-page-container,
  .contact-section,
  .testimonial-section,
  .job-section {
    padding: 50px 0;
  }

  .work-section,
  .news-section,
  .clients-section-two,
  .about-section-two,
  .testimonial-section-three,
  .main-footer .widgets-section,
  .faqs-section,
  .job-section-five.style-two,
  .tnc-section,
  .fun-fact-section,
  .about-section {
    padding: 50px 0 0;
  }

  .pricing-section,
  .order-confirmation {
    padding: 50px 0 30px;
  }

  .call-to-action.style-two {
    padding-bottom: 50px;
  }

  .fun-fact-section .counter-column {
    margin-bottom: 70px;
  }

  .fun-fact-section .count-box {
    margin-bottom: 20px;
  }

  .call-to-action .outer-box {
    padding: 70px 30px 10px !important;
  }

  .sec-title .sub-title {
    font-size: 16px;
  }

  .app-section .sec-title h2 {
    font-size: 28px;
    line-height: 1.2em;
  }

  .call-to-action .sec-title {
    padding-right: 120px;
  }

  .call-to-action .sec-title br {
    display: none;
  }

  .category-block {
    margin-bottom: 20px;
  }

  .sec-title h2 {
    font-size: 26px;
  }

  .sec-title .text {
    font-size: 14px;
  }

  .fun-fact-section .counter-column {
    margin-bottom: 50px;
  }

  .about-section-two .sec-title h2,
  .about-section .sec-title h2 {
    font-size: 28px;
    line-height: 1.2em;
  }

  .job-block-two .inner-box {
    flex-direction: column;
  }

  .job-block-two .job-other-info {
    padding-left: 80px;
  }

  .call-to-action-three .outer-box {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .call-to-action-three .sec-title {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .banner-section-four {
    padding: 220px 0 100px;
  }

  .banner-section-four,
  .main-footer.style-three {
    background: none !important;
    background-color: #143a8f !important;
  }

  .testimonial-section-three .slide-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .testimonial-section-three .image-column {
    margin-right: 0;
  }

  .testimonial-section-three .owl-nav {
    justify-content: center;
    margin: 0;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .testimonial-section-three .owl-next,
  .testimonial-section-three .owl-prev {
    margin: 0 5px;
  }

  .main-footer .footer-bottom .logo {
    display: none;
  }

  .sec-title-outer {
    flex-direction: column;
    align-items: flex-start;
  }

  .sec-title-outer .select-box-outer,
  .sec-title-outer .select-box-outer select {
    width: 100%;
  }

  .main-footer.alternate3 {
    padding-top: 0;
  }

  .recruiter-section .outer-box,
  .jobseeker-section .outer-box {
    display: block !important;
  }

  .recruiter-section .image-column,
  .jobseeker-section .image-column {
    width: 100% !important;
    padding: 0 15px !important;
  }

  .recruiter-section .image-column .image img,
  .jobseeker-section .image-column .image img {
    border-radius: 30px !important; 
    height: auto !important;
  }

  .recruiter-section .content-column,
  .jobseeker-section .content-column {
    padding: 50px 0 !important;
    width: 100% !important;
    /* text-align: center !important; */
  }

  .recruiter-section .content-column .sec-title,
  .jobseeker-section .content-column .sec-title {
    max-width: 100% !important;
  }

  .recruiter-section .content-column .inner-column {
    padding: 0 15px !important;
  }

  .banner-section-eight .job-search-form .form-group .theme-btn {
    display: block;
    width: 100%;
  }

  .company-block-three .content {
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .company-block-three .company-logo {
    position: relative;
    display: block;
    margin-bottom: 10px;
  }

  .company-block-three .inner-box {
    padding-left: 20px;
  }

  .candidate-block-three .inner-box .content {
    padding-left: 0;
  }

  .candidate-block-three .image {
    position: relative;
    margin: 0 0 20px;
  }

  .candidate-block-three .bookmark-btn {
    display: none;
  }

  .candidate-block-three .inner-box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .candidate-block-three .inner-box .btn-box {
    margin-top: 10px;
  }

  .candidate-block-three .post-tags li {
    margin-bottom: 10px;
  }

  .candidate-block-five .inner-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .candidate-block-five .inner-box .btn-box {
    margin-top: 20px;
  }

  .candidate-block-five .inner-box .content {
    padding-left: 0;
  }

  .candidate-block-five .image {
    position: relative;
    margin: 0 0 20px;
  }

  .blog-single .upper-box h3 {
    font-size: 24px;
    line-height: 1.3em;
  }

  .blockquote-style-one {
    padding: 20px 30px;
  }

  .contact-section .upper-box {
    margin-top: 0;
  }

  .dashboard .ui-block {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .aplicants-upper-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .aplicants-upper-bar .aplicantion-status {
    flex-wrap: wrap;
  }

  .aplicants-upper-bar .aplicantion-status li {
    margin-left: 0;
    margin-right: 40px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 599px) {
  .banner-section-six,
  .banner-section-five,
  .banner-section-two,
  .banner-section {
    padding: 0;
  }

  .auto-container {
    padding: 0 20px;
  }

  .job-search-form .chosen-container-single .chosen-single,
  .job-search-form .ui-selectmenu-button.ui-button,
  .job-search-form .form-group input,
  .job-search-form .input-custom,
  ng-select,
  .job-search-form .form-group select,
  .job-search-form .form-group textarea {
    padding-left: 50px;
  }

  .job-search-form .form-group .icon {
    left: 27px;
  }

  .banner-section:before {
    background-image: url('shape-4.png');
    height: auto;
    bottom: 0;
    top: -60px;
  }

  .banner-section .content-column .inner-column {
    padding-bottom: 20px;
  }

  .banner-section-nine h3 br,
  .banner-section-ten h3 br,
  .banner-section-eight .content-column h3 br,
  .banner-section-seven .content-column h3 br,
  .banner-section-six .content-column h3 br,
  .banner-section-two .content-column h3 br,
  .banner-section .content-column h3 br {
    display: none;
  }

  .banner-section-four h3,
  .banner-section-nine h3,
  .banner-section-ten h3,
  .banner-section-eight .content-column h3,
  .banner-section-seven .content-column h3,
  .banner-section-six .content-column h3,
  .banner-section-five .content-column h3,
  .banner-section-three .content-column h1,
  .banner-section-two .content-column h3,
  .banner-section .content-column h3 {
    font-size: 40px;
    margin-bottom: 6px;
  }

  .job-search-form .form-group .theme-btn {
    display: block;
    width: 100%;
    border-radius: 5px !important;
  }

  .banner-section-four .job-search-form {
    padding: 0;
  }

  .banner-section-four .popular-searches .title {
    display: block;
    margin-right: 0;
  }

  .banner-section-two .popular-searches,
  .banner-section .popular-searches {
    text-align: left;
  }

  .banner-section-two .popular-searches .title,
  .banner-section .popular-searches .title {
    display: block;
  }

  .main-footer .footer-bottom .outer-box {
    flex-direction: column;
  }

  .main-footer .copyright-text {
    order: 2;
  }

  .main-footer .social-links a {
    margin: 0 20px 15px;
  }

  .category-block h4 {
    font-size: 16px;
    line-height: 1.4em;
  }

  .category-block .text {
    font-size: 14px;
  }

  .call-to-action .sec-title {
    padding-right: 20px;
  }

  .call-to-action .image-column {
    right: -40px;
    background-size: 300px;
    background-position: center left;
  }

  .play-btn .icon {
    transform: scale(0.7);
  }

  .job-block {
    margin-bottom: 20px;
  }

  .job-block .inner-box {
    padding: 20px 20px;
  }

  .job-block .content {
    padding-top: 2px;
    padding-left: 70px;
  }

  .job-block h4 {
    line-height: 1.4em;
  }

  .job-block-two .job-info li:nth-child(2),
  .job-block-two .job-info li:first-child,
  .job-block .job-info li:nth-child(2),
  .job-block .job-info li:first-child {
    display: block;
  }

  .job-block-two .job-info li,
  .job-block .job-info li {
    display: none;
  }


  .job-block-two .bookmark-btn,
  .job-block .bookmark-btn {
    display: none;
  }

  .job-block-two .job-other-info {
    padding-left: 0;
  }

  .banner-section-two .count-employers {
    display: none;
  }

  .job-block-two .inner-box {
    padding: 20px 20px;
  }

  .job-block-two .job-other-info {
    flex-wrap: wrap;
  }

  .job-other-info li {
    margin-right: 10px;
  }

  .call-to-action-two .theme-btn {
    min-width: 200px;
  }

  .main-footer.style-two .links-widget .widget-content {
    flex-direction: column;
  }

  .about-section-two .image-column {
    margin-bottom: 30px;
  }

  .pricing-table .inner-box {
    padding: 30px 30px;
  }

  .pricing-table .tag {
    position: relative;
    left: 0;
    top: 0;
    right: auto;
    margin-bottom: 0px;
    display: inline-block;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
  }

  .pricing-table .tag:before {
    border-radius: 0;
  }

  .main-footer.style-three .newsletter-form .form-group input[type="text"],
  .main-footer.style-three .newsletter-form .form-group input[type="email"] {
    border-radius: 0;
    border-radius: 10px;
    padding: 15px 25px;
  }

  .main-footer.style-three .newsletter-form {
    border-radius: 0;
  }

  .subscribe-form .form-group .theme-btn,
  .main-footer.style-three .newsletter-form .form-group .theme-btn {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 0;
    right: 0;
    top: 0;
    margin: 0;
    max-width: 100%;
    line-height: 20px;
    margin-top: 10px;
    border-radius: 10px;
  }

  .subscribe-form .form-group input[type="text"],
  .subscribe-form .form-group input[type="email"] {
    position: relative;
  }

  .top-companies .sec-title {
    text-align: center;
  }

  .job-block-five .inner-box {
    padding: 20px 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .job-block-five .content {
    padding: 0;
  }

  .job-block-five .company-logo {
    position: relative;
    display: inline-block;
    width: 50px;
    margin-bottom: 10px;
  }

  .job-block-five h4 {
    font-size: 15px;
    line-height: 1.4em;
  }

  .job-block-five .job-other-info {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }

  .sec-title-outer {
    flex-direction: column;
    align-items: flex-start;
  }

  .sec-title-outer .link {
    display: none;
  }

  .subscribe-section-two .sec-title h2 {
    font-size: 32px;
    line-height: 1.2em;
  }

  .main-footer.alternate4 .footer-bottom .outer-box {
    flex-direction: column-reverse;
  }

  .candidate-block-two .inner-box {
    flex-direction: column;
  }

  .candidate-block-two .content-box {
    padding-left: 0;
    padding-top: 0;
    text-align: center;
  }

  .candidate-block-two .image {
    position: relative;
    margin-bottom: 0;
    display: inline-block;
  }

  .candidate-block-two .theme-btn {
    margin-top: 10px;
  }

  .advrtise-block .inner-box {
    padding: 50px 20px;
  }

  .about-section.style-two .image-column .inner-column {
    padding-right: 0;
  }

  .banner-section-eight .count-employers {
    display: none;
  }

  .banner-section-eight .bottom-box .upload-cv {
    margin: 0;
  }

  .company-block-two .inner-box {
    flex-direction: column;
  }

  .company-block-two .inner-box .content {
    padding-left: 0;
    text-align: center;
  }

  .company-block-two .image {
    position: relative;
    margin-bottom: 10px;
  }

  .company-block-two .theme-btn {
    margin-top: 10px;
  }

  .main-footer.style-five .newsletter-form .form-group .theme-btn {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 10px;
    right: 0;
  }

  .news-block .lower-content {
    padding: 10px 10px;
  }

  .banner-style-two .inner-box,
  .banner-style-one .inner-box {
    padding: 30px;
  }

  .banner-style-two .content,
  .banner-style-one .content {
    padding: 0;
    text-align: center;
  }

  .banner-style-two .image,
  .banner-style-one .image {
    position: relative;
    left: 0;
    right: 0;
    margin: 20px 0 -30px;
  }

  .banner-style-one .theme-btn,
  .banner-style-two .theme-btn {
    min-width: 100%;
  }

  .job-section-six .job-block-five .content {
    padding-left: 0;
  }

  .fun-fact-section .count-box {
    font-size: 38px;
  }

  .ls-switcher {
    flex-direction: column;
  }

  .job-block-seven .job-info li .icon {
    font-size: 16px;
  }

  .social-share h5 {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .job-detail-section .social-share {
    flex-wrap: wrap;
  }

  .job-detail-section .social-share a {
    margin-bottom: 10px;
  }

  .job-block-seven .content {
    padding-left: 0;
  }

  .job-block-seven .inner-box {
    align-items: flex-start;
  }

  .job-block-seven .company-logo {
    position: relative;
    display: block;
    width: auto;
    margin-bottom: 20px;
  }

  .job-block-seven .company-logo img {
    width: auto;
  }

  .job-overview-two li {
    flex: 0 0 100%;
  }

  .job-block-seven.style-three .inner-box {
    text-align: center;
  }

  .job-block-seven.style-three .job-other-info {
    justify-content: center;
  }

  .ls-section .show-filters .toggle-filters {
    margin-right: 0;
  }

  .resume-block .title-box {
    flex-direction: column;
  }

  .resume-block .edit-box {
    margin-top: 10px;
  }

  .resume-block .inner {
    padding-left: 45px;
  }

  .video-box .image .icon {
    transform: scale(0.7) translate(-60%, -60%);
  }

  .blog-single .post-info {
    flex-wrap: wrap;
  }

  .blog-single .main-image img {
    min-height: 200px;
    object-fit: cover;
  }

  .prod-tabs .content .list-style-two li,
  .blog-single .list-style-four li {
    width: 100%;
    flex: 0 0 100%;
  }

  .post-control {
    flex-direction: column;
  }

  .comment-box .user-thumb {
    position: relative;
  }

  .comment-box .comment {
    padding-left: 0;
  }

  .dashboard .upper-title-box h3,
  .order-confirmation .upper-box h4,
  .product-details .basic-details .product-name {
    font-size: 24px;
    line-height: 1.3em;
  }

  .dashboard .upper-title-box h3 {
    margin-bottom: 5px;
  }

  .product-details {
    margin-bottom: 0;
  }

  .cart-section .apply-coupon {
    flex-direction: column;
  }

  .cart-section .apply-coupon .input,
  .cart-section .apply-coupon .theme-btn,
  .cart-section .apply-coupon .form-group {
    margin-right: 0;
    width: 100%;
    margin-left: 0;
  }

  .order-confirmation .order-box {
    padding: 30px 25px 20px;
  }

  .invoice-wrap .invoice-content {
    padding: 30px 30px 10px;
  }

  .invoice-wrap .logo-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .invoice-wrap .logo-box .logo {
    margin-bottom: 20px;
  }

  .invoice-wrap .invoice-id {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .invoice-wrap .invoice-id span {
    margin-left: 0;
    min-width: auto;
    text-align: center;
  }

  .invoice-wrap .info {
    margin-bottom: 40px;
  }

  .contact-section .contact-form {
    padding: 50px 20px 50px;
  }

  .widget-title .chosen-container,
  .dashboard .candidate-block-three .option-box {
    margin-left: 0;
  }

  .widget-title .chosen-container {
    margin-right: 20px;
    margin-top: 10px;
  }

  .ls-widget .widget-title {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }

  .graph-widget {
    overflow: auto;
  }

  .graph-widget .widget-content {
    min-width: 500px;
  }

  .dashboard .dashboard-outer {
    padding: 40px 15px 0;
  }

  .ls-widget .widget-title {
    padding: 20px 20px 20px;
  }

  .ls-widget .widget-content {
    padding: 0 20px 10px;
  }

  .ui-item {
    padding: 20px;
    height: 110px;
  }

  .copyright-text {
    padding: 0 0 30px;
  }

  .uploading-outer {
    flex-direction: column;
    align-items: flex-start;
  }

  .uploading-outer .text {
    margin-top: 20px;
  }

  .post-job-steps .step .icon {
    height: 60px;
    line-height: 60px;
    min-width: 60px;
    width: 60px;
    font-size: 24px;
    margin-right: 20px;
  }

  .post-job-steps .step {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .ls-widget .widget-title .chosen-outer {
    flex-wrap: wrap;
  }

  .ls-widget .widget-title .search-box-one {
    margin-top: 10px;
  }

  .search-box-one .form-group input[type="text"],
  .search-box-one .form-group input[type="search"] {
    width: 100%;
  }

  .chat-widget .msg_head {
    padding: 20px 20px;
  }

  .chat-widget .dlt-chat {
    display: none;
  }

  .msg_card_body {
    padding: 20px 20px 10px;
  }

  .card-footer {
    padding: 20px 25px 20px;
  }

  .type_msg {
    padding-left: 0;
  }

  .msg_cotainer {
    max-width: 100%;
  }

  .card-footer .form-group button {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 10px;
    width: 100%;
  }

  .top-filters {
    flex-direction: column;
    width: 100%;
  }

  .top-filters .form-group {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .ls-switcher .showing-result {
    width: 100%;
  }

  .banner-section-ten .job-search-form {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 479px) {
  .ls-section .filters-outer {
    padding: 30px 20px 10px;
  }

  .candidate-block-three .inner-box {
    padding: 20px 20px 20px;
  }

  .resume-block .edit-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .resume-block .edit-btns {
    margin-left: 0;
    margin-right: 10px;
    margin-top: 10px;
  }

  .file-edit-box {
    margin-right: 0;
    width: 100%;
  }

  #login-modal {
    padding: 30px 20px 20px;
  }

  #login-modal .login-form .field-outer {
    flex-wrap: wrap;
    align-items: flex-end;
    flex-direction: column-reverse;
  }
}
:root {
  --talaneo: linear-gradient(
    90deg,
    rgba(146, 37, 131, 1) 10%,
    rgba(234, 28, 36, 1) 50%,
    rgba(241, 105, 42, 1) 100%
  );
  --talaneo-one-color: rgba(234, 28, 36, 1);
  --talaneo-button: linear-gradient(
    90deg,
    rgba(146, 37, 131, 1) 10%,
    rgba(234, 28, 36, 1) 50%,
    rgba(241, 105, 42, 1) 100%
  );
  --talaneo-bg-light-card: rgba(241, 105, 42, 0.07);
  --talaneo-bg-light-card-gradient: linear-gradient(
    90deg,
    rgb(206, 98, 71, 0.1) 10%,
    rgb(206, 98, 71, 0.1) 50%,
    rgb(206, 98, 71, 0.1) 100%
  );
  --talaneo-bg-light: rgba(241, 105, 42, 0.05);
}
.btn-style-one {
  position: relative;
  text-align: center;
  white-space: nowrap;
  color: #ffffff !important;
  background: var(--talaneo-button);
  font-size: 15px;
  line-height: 20px;
  border-radius: 8px;
  font-weight: 700;
  padding: 18px 35px;
  moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-size: 100% 100%;
  background-position: 50% 0;
}
.btn-style-one:hover {
  background-size: 300% 100%;
}
.btn-style-one:hover {
  color: #ffffff;
  background-color: #0146a6;
}
.btn-style-light {
  position: relative;
  text-align: center;
  white-space: nowrap;
  color: var(--talaneo);
  background: var(--talaneo-bg-light-card);
  font-size: 15px;
  line-height: 20px;
  border-radius: 8px;
  font-weight: 400;
  padding: 18px 35px;
}
.btn-style-light:hover {
  color: #ffffff;
  background: var(--talaneo);
}
.btn-style-white {
  position: relative;
  text-align: center;
  white-space: nowrap;
  color: black;
  background: #ffffff;
  font-size: 15px;
  line-height: 20px;
  border-radius: 8px;
  font-weight: 400;
  padding: 18px 35px;
  transition: all 250ms ease-in-out;
}
.btn-style-white:hover {
  background: #ffffff;
  transform: scale(1.1);
}
.btn-style-outline {
  position: relative;
  text-align: center;
  white-space: nowrap;
  color: var(--talaneo);
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
  border: solid 1px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), var(--talaneo);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #fff inset;
  font-size: 15px;
  line-height: 20px;
  border-radius: 8px;
  font-weight: 400;
  padding: 18px 35px;
}
.btn-style-outline * {
  color: var(--talaneo);
}
.btn-style-outline:hover {
  box-shadow: none;
  color: #ffffff;
  background: var(--talaneo);
  background-clip: unset;
}
.theme-btn.large {
  padding: 20px 50px;
  font-size: 16px;
  line-height: 20px;
}
.theme-btn.small {
  padding: 5px 18px;
  font-size: 14px;
  min-width: 80px;
  font-weight: 400;
  line-height: 21px;
  border-radius: 5px;
}
@media (max-width: 1366px) {
  .banner-section-three.-type-12 {
    margin-top: 0;
  }
}
.banner-section-three.-type-12 .bg-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 160px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--talaneo-bg-light-card-gradient);
  /*
    @media (max-width: 1366px) {
      figure img {
         width: 400px;
         height: auto;
      }
    }*/
}
@media (max-width: 1600px) {
  .banner-section-three.-type-12 .bg-image {
    margin: 0 60px;
    /*overflow: hidden;*/
  }
}
@media (max-width: 1366px) {
  .banner-section-three.-type-12 .bg-image {
    margin: 0;
    border-radius: 0;
  }
}
.banner-section-three.-type-12 .bg-image > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 32px;
}
@media (max-width: 1366px) {
  .banner-section-three.-type-12 .bg-image > img {
    border-radius: 0;
  }
}
.banner-section-three.-type-12 .bg-image .main-image {
  position: absolute;
  bottom: 0;
  top: 0;
  right: -90px;
}
.banner-section-three.-type-12 .bg-image figure {
  margin: 0;
  display: flex;
  justify-content: right;
}
.banner-section-three.-type-12 .bg-image figure img {
  width: auto;
  height: 100%;
}
@media (max-width: 991px) {
  .banner-section-three.-type-12 .bg-image figure {
    display: none;
  }
}
.banner-section-three.-type-12 .content-column .inner-column {
  padding: 120px 0;
  /* @include media-below(md) {
       padding: 80px 0;
    } */
}
.banner-section-three.-type-12 .content-column h1, .banner-section-three.-type-12 .content-column h3 {
  font-weight: 700;
}
.banner-section-three.-type-12 .content-column .text {
  margin-top: 20px;
}
.banner-section-three.-type-12 .job-search-form-two form {
  border-radius: 8px;
}
.banner-section-three.-type-12 .popular-searches {
  color: #2b3154 !important;
  margin-top: 24px !important;
}
.banner-section-three.-type-12 .popular-searches * {
  color: #2b3154 !important;
}
.main-header.alternate.-type-12 {
  box-shadow: none;
}
.main-header.alternate.-type-12.fixed-header {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1366px) {
  .job-ad-single-header {
    margin-top: 0;
  }
}
.job-ad-single-header .bg-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 -30px;
  overflow: hidden;
  border-radius: 32px;
}
@media (max-width: 1600px) {
  .job-ad-single-header .bg-image {
    /*overflow: hidden;*/
  }
}
@media (max-width: 1366px) {
  .job-ad-single-header .bg-image {
    border-radius: 0;
  }
}
.job-ad-single-header .bg-image > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 32px;
}
@media (max-width: 1366px) {
  .job-ad-single-header .bg-image > img {
    border-radius: 0;
  }
}
.job-ad-single-header .content-column .inner-column {
  padding: 120px 0;
  /* @include media-below(md) {
       padding: 80px 0;
    } */
}
.job-ad-single-header .content-column h1, .job-ad-single-header .content-column h3 {
  font-weight: 700;
}
.job-ad-single-header .content-column .text {
  margin-top: 20px;
}
.color-card-header {
  border-radius: 32px;
  background: var(--talaneo);
  margin: 30px 160px 60px;
  padding: 120px 0;
  text-align: center;
  color: white;
}
.color-card-header.space-y {
  margin: 120px 160px 60px;
}
@media (max-width: 1600px) {
  .color-card-header {
    margin: 0 60px;
    /*overflow: hidden;*/
  }
  .color-card-header.space-y {
    margin: 12rem 60px 6rem;
  }
}
@media (max-width: 1366px) {
  .color-card-header {
    margin: 30px 0 60px;
    border-radius: 0;
  }
  .color-card-header.space-y {
    margin: 60px 0 120px;
  }
}
.color-card-header h1, .color-card-header h3 {
  font-weight: 700;
  font-size: 36pt;
}
.color-card-header p {
  color: white;
}
.color-card-header .text {
  margin-top: 20px;
}
.tooltipNg {
  position: relative;
  display: inline-block;
}
.tooltipNg .tooltiptext {
  background-color: white;
  padding: 1rem;
  bottom: 1.5rem;
  position: absolute;
  z-index: 20;
  left: 0;
  visibility: hidden;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 200px;
  width: -moz-fit-content;
  width: fit-content;
}
.tooltipNg .tooltiptext.bottom {
  top: 90%;
}
.tooltipNg .tooltiptext.right {
  left: auto !important;
  right: 0;
}
.tooltipNg.active .tooltiptext {
  visibility: visible;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/jost.ttf") format("truetype-variations");
  font-weight: 1 999;
  font-display: swap;
}
/*** 

====================================================================
Recruiter Section
====================================================================

***/
.recruiter-section {
  position: relative;
}
.recruiter-section .outer-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruiter-section .image-column {
  position: relative;
  width: 50%;
  flex: 0 0 50%;
}
.recruiter-section .image-column .image {
  position: relative;
  display: block;
  margin-bottom: 0;
}
.recruiter-section .image-column .image img {
  width: 100%;
  border-radius: 0 30px 30px 0;
}
.recruiter-section .content-column {
  position: relative;
  width: 50%;
  flex: 0 0 50%;
  padding: 100px 0;
}
.recruiter-section .content-column .inner-column {
  position: relative;
  padding-left: 140px;
}
.recruiter-section .content-column .sec-title {
  margin-bottom: 0;
  max-width: 420px;
}
.recruiter-section .content-column .theme-btn {
  margin-top: 18px;
  min-width: 180px;
}
a.color {
  text-decoration: none;
  cursor: pointer;
  background: var(--talaneo);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
a.color:hover {
  text-decoration: underline;
}
a.color.no-color {
  text-decoration: none;
  background: inherit;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.job-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.job-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-bottom: 5px;
  margin-right: 20px;
}
.job-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}
.job-info li a {
  color: #696969;
}
.job-info.white li {
  color: #ffffff;
  text-shadow: 0 0 14px black;
}
.job-info.white li .icon {
  color: #ffffff;
  text-shadow: 0 0 14px black;
}
.job-info.black li {
  color: #000000;
  text-shadow: 0 0 20px black;
}
.job-info.black li .icon {
  color: #000000;
  text-shadow: 0 0 20px black;
}
/* Job Categories Style Two  */
.job-categories {
  position: relative;
  padding: 115px 0 70px;
  border-bottom: 1px solid #ecedf2;
}
.job-categories button {
  width: 100%;
}
.job-categories .job-categories.style-two {
  background: rgba(52, 168, 83, 0.04);
}
.job-categories .job-categories.style-two .category-block .inner-box .icon {
  background: rgba(52, 168, 83, 0.15);
  border-radius: 50%;
  color: #34a853;
}
.job-categories .job-categories.style-two .category-block .inner-box:hover .icon {
  background: #34a853;
  color: #ffffff;
}
.job-categories .job-categories.style-two .category-block h4 a:hover {
  color: #34a853;
}
.content-icons {
  margin-bottom: 30px;
}
.content-icons .item {
  display: flex;
  text-align: left;
}
.content-icons .item + .item {
  margin-top: 20px;
}
.content-icons .icon-wrap .icon {
  font-size: 32px;
}
.content-icons .content {
  margin-left: 33px;
}
.content-icons .content h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
}
.content-icons .content p {
  font-size: 15px;
  line-height: 26px;
  margin-top: 11px;
}
.content-icons-btn {
  justify-content: flex-start !important;
  margin: -6px;
}
.content-icons-btn > * {
  margin: 0 !important;
  padding: 6px;
}
.content-icons-btn > * img {
  width: 100%;
  height: auto;
}
.icon-item {
  display: flex;
  align-items: center;
}
.icon-item + .icon-item {
  margin-top: 30px;
}
.icon-item .icon-wrap {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
}
.icon-item .content {
  margin-left: 34px;
}
.icon-item .content h4 {
  font-family: "Jost";
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 18px;
  color: #1a3454 !important;
}
.icon-item .content p {
  margin: 10px;
  font-family: "Jost";
  font-size: 14px;
  line-height: 26px;
}
.icon-item.-type-3 {
  display: block;
  background-color: var(--talaneo-bg-light);
  border: 1px solid transparent;
  border-radius: 120px;
  padding: 10px;
  padding-right: 28px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}
.icon-item.-type-3 .icon-wrap {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 100%;
  background: var(--talaneo);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  transition: all 1s ease;
}
.icon-item.-type-3 .icon-wrap i {
  padding-top: 2px;
  padding-left: 2px;
  background: var(--talaneo);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.icon-item.-type-3 .content {
  margin-left: 12px;
}
.icon-item.-type-3 .content h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #202124;
}
.icon-item.-type-3:hover {
  background-color: white;
  border: 1px solid #ecedf2;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.icon-item.-type-3:hover .icon-wrap {
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.icon-item.-type-3:hover .icon-wrap i {
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: white;
}
/*** 

====================================================================
Jobseeker Section
====================================================================

***/
.jobseeker-section {
  position: relative;
}
.jobseeker-section .outer-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.jobseeker-section .image-column {
  position: relative;
  width: 50%;
  flex: 0 0 50%;
  order: 2;
}
.jobseeker-section .image-column .image {
  position: relative;
  display: block;
  margin-bottom: 0;
}
.jobseeker-section .image-column .image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px 0 0 30px;
}
.jobseeker-section .content-column {
  position: relative;
  width: 50%;
  flex: 0 0 50%;
  padding: 100px 0;
}
.jobseeker-section .content-column {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.jobseeker-section .content-column .inner-column {
  position: relative;
  max-width: 655px;
  width: 100%;
  padding: 0 15px;
}
.jobseeker-section .content-column .sec-title h2,
.jobseeker-section .content-column .sec-title .text {
  margin-top: 0;
  margin-bottom: 0;
}
.jobseeker-section .content-column .theme-btn {
  margin-top: 18px;
  min-width: 180px;
}
/*** 

====================================================================
About Section
====================================================================

***/
.about-section {
  position: relative;
  padding: 100px 0 0;
}
.about-section .content-column {
  position: relative;
  margin-bottom: 50px;
}
.about-section .content-column .inner-column {
  position: relative;
  padding-left: 70px;
}
.about-section .sec-title {
  margin-bottom: 30px;
}
.about-section .sec-title h2 {
  font-size: 40px;
  line-height: 54px;
  color: #202124;
}
.about-section .sec-title .text {
  max-width: 415px;
  font-size: 15px;
  line-height: 26px;
  color: #696969;
}
.about-section .list-style-one {
  margin-bottom: 40px;
}
.about-section .image-column {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}
.about-section .image-column .image {
  position: relative;
  margin-bottom: 0;
}
.about-section .image-column .image img {
  border-radius: 24px;
}
.play-btn {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.play-btn .icon {
  width: 90px;
  height: 90px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  padding-left: 5px;
  color: #000000;
  border-radius: 50%;
}
.about-section .count-employers {
  position: absolute;
  right: -150px;
  bottom: -50px;
  max-width: 300px;
  padding: 25px 32px 30px;
  background: #ffffff;
  border: 1px solid #ecedf2;
  box-shadow: 0px 46px 35px rgba(25, 25, 46, 0.04);
  border-radius: 10px;
  text-align: center;
}
.about-section .count-employers .check-box {
  position: absolute;
  left: 5px;
  top: 0;
  height: 60px;
  width: 60px;
  background: var(--talaneo);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.about-section .count-employers .title {
  display: block;
  font-size: 15px;
  line-height: 22px;
  color: #202124;
  font-weight: 500;
  margin-bottom: 15px;
}
.about-section .count-employers .image {
  margin-bottom: 0;
}
/*** 

====================================================================
Call To Action
====================================================================

***/
.call-to-action {
  position: relative;
}
.call-to-action .outer-box {
  position: relative;
  background: var(--talaneo-bg-light-card);
  padding: 50px 60px 10px;
  border-radius: 10px;
  overflow: hidden;
}
.call-to-action .sec-title {
  margin-bottom: 0;
}
.call-to-action .image-column {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 360px;
  background-repeat: no-repeat;
  background-position: -10px 20px;
  background-size: cover;
}
.call-to-action .image-column .image {
  display: none;
  margin-bottom: 0;
}
.call-to-action .content-column {
  position: relative;
}
.call-to-action .sec-title {
  position: relative;
  margin-bottom: 50px;
}
.call-to-action .sec-title button {
  margin-top: 30px;
  white-space: break-spaces;
}
.call-to-action.style-two {
  padding-bottom: 100px;
}
/***

==================================================================
Call To Action Four
==================================================================

***/
.call-to-action-four {
  position: relative;
  background: var(--talaneo-bg-light-card);
  padding: 30px 30px;
  /* padding-right: 140px; */
  border-radius: 10px;
  overflow: hidden;
}
.call-to-action-four h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 17px;
}
.call-to-action-four p {
  font-size: 14px;
  line-height: 24px;
  color: #696969;
  margin-bottom: 25px;
}
.call-to-action-four .image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 140px;
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
}
.call-to-action-four.style-two {
  padding: 50px 50px;
}
.call-to-action-four.style-two h5 {
  font-weight: 500;
  font-size: 30px;
  line-height: 41px;
  color: #202124;
}
.call-to-action-four.style-two p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 25px;
}
.call-to-action-four.style-two .image {
  width: 350px;
}
.call-to-action-four button {
  white-space: break-spaces;
}
/*==========================
default table
===========================*/
.table-outer {
  overflow-y: hidden;
  overflow-x: auto;
}
.default-table {
  position: relative;
  background: #ffffff;
  border: 0;
  border-radius: 5px;
  margin-bottom: 30px;
  overflow: hidden;
  width: 100%;
  min-width: 550px;
}
.default-table thead {
  background: var(--talaneo);
  background-attachment: fixed;
  border-radius: 8px;
  color: #ffffff;
}
.default-table thead th {
  position: relative;
  padding: 20px 30px;
  font-size: 16px;
  color: white;
  font-weight: 500;
  line-height: 30px;
  white-space: nowrap;
}
.default-table tbody tr {
  position: relative;
  border-bottom: 1px solid #ecedf2;
}
.default-table tr td {
  position: relative;
  padding: 21px 30px;
  font-size: 14px;
  color: #696969;
  font-weight: 400;
}
.job-other-info li.top {
  background: var(--talaneo);
  color: white;
}
.text-gradient {
  background: var(--talaneo);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.text-gradient i {
  padding-top: 2px;
  padding-left: 2px;
  background: var(--talaneo);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*# sourceMappingURL=styles.css.map*/