@charset "UTF-8";
@font-face {
  font-family: 'DIN Next LT Arabic';
  src: url("../../fonts/dinNextLt-regular/DINNextLTArabic-Regular.eot");
  src: url("../../fonts/dinNextLt-regular/DINNextLTArabic-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/dinNextLt-regular/DINNextLTArabic-Regular.woff") format("woff"), url("../../fonts/dinNextLt-regular/DINNextLTArabic-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN Next LT Arabic';
  src: url("../../fonts/dinNextLt-medium/DINNextLTArabic-Medium.eot");
  src: url("../../fonts/dinNextLt-medium/DINNextLTArabic-Medium.eot?#iefix") format("embedded-opentype"), url("../../fonts/dinNextLt-medium/DINNextLTArabic-Medium.woff") format("woff"), url("../../fonts/dinNextLt-medium/DINNextLTArabic-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins-Regular';
  src: url("../../fonts/Poppins/Poppins-Regular.ttf");
  src: url("../../fonts/Poppins/Poppins-Regular.ttf?#iefix") format("embedded-opentype"), url("../../fonts/Poppins/Poppins-Regular.ttf") format("woff"), url("../../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins-Bold';
  src: url("../../fonts/Poppins/Poppins-Bold.ttf");
  src: url("../../fonts/Poppins/Poppins-Bold.ttf?#iefix") format("embedded-opentype"), url("../../fonts/Poppins/Poppins-Bold.ttf") format("woff"), url("../../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'URW-Regular';
  src: url("../../fonts/URW_Geometric_Arabic/URWGeometricArabic-Regular.ttf");
  src: url("../../fonts/URW_Geometric_Arabic/URWGeometricArabic-Regular.ttf?#iefix") format("embedded-opentype"), url("../../fonts/URW_Geometric_Arabic/URWGeometricArabic-Regular.ttf") format("woff"), url("../../fonts/URW_Geometric_Arabic/URWGeometricArabic-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'URW-Bold';
  src: url("../../fonts/URW_Geometric_Arabic/URWGeometricArabic-Bold.ttf");
  src: url("../../fonts/URW_Geometric_Arabic/URWGeometricArabic-Bold.ttf?#iefix") format("embedded-opentype"), url("../../fonts/URW_Geometric_Arabic/URWGeometricArabic-Bold.ttf") format("woff"), url("../../fonts/URW_Geometric_Arabic/URWGeometricArabic-Bold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/*
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

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

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

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

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

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

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

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

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

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

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

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

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

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

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

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

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

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

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

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

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

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

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

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

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

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

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

/*!
 * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em;
}

.fa-xs {
  font-size: .75em;
}

.fa-sm {
  font-size: .875em;
}

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

.fa-2x {
  font-size: 2em;
}

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

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

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

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

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

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

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

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

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none;
}

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

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

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

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

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-aws:before {
  content: "\f375";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edit:before {
  content: "\f044";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

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

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

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

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

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

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

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

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

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

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

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

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

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

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

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

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

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-moon:before {
  content: "\f186";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nintendo-switch:before {
  content: "\f418";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

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

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-plane:before {
  content: "\f072";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-random:before {
  content: "\f074";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-rendact:before {
  content: "\f3e4";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-safari:before {
  content: "\f267";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-train:before {
  content: "\f238";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

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

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

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  src: url("../../fonts/font_awesome_5/fa-brands-400.eot");
  src: url("../../fonts/font_awesome_5/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../../fonts/font_awesome_5/fa-brands-400.woff2") format("woff2"), url("../../fonts/font_awesome_5/fa-brands-400.woff") format("woff"), url("../../fonts/font_awesome_5/fa-brands-400.ttf") format("truetype"), url("../../fonts/font_awesome_5/fa-brands-400.svg#fontawesome") format("svg");
  font-display: swap;
}
.fab {
  font-family: 'Font Awesome 5 Brands';
}

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

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

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

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../../images/front/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url("../../fonts/slick/slick.eot");
  src: url("../../fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("../../fonts/slick/slick.woff") format("woff"), url("../../fonts/slick/slick.ttf") format("truetype"), url("../../fonts/slick/slick.svg#slick") format("svg");
  font-display: swap;

}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '←';
}

[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: '→';
}

[dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

.mtxs {
  margin-top: 6px;
}

.mtsm {
  margin-top: 12px;
}

.mtmd {
  margin-top: 18px;
}

.mtlg {
  margin-top: 24px;
}

.mtxlg {
  margin-top: 36px;
}

.mtxxlg {
  margin-top: 42px;
}

.mt_0 {
  margin-top: 0;
}

.mrxs {
  margin-right: 6px;
}

.mrsm {
  margin-right: 12px;
}

.mrmd {
  margin-right: 18px;
}

.mrlg {
  margin-right: 24px;
}

.mrxlg {
  margin-right: 36px;
}

.mr_0 {
  margin-right: 0;
}

.mlxs {
  margin-left: 6px;
}

.mlsm {
  margin-left: 12px;
}

.mlmd {
  margin-left: 18px;
}

.mllg {
  margin-left: 24px;
}

.mlxlg {
  margin-left: 36px;
}

.ml_0 {
  margin-left: 0;
}

.mbxs {
  margin-bottom: 6px;
}

.mbsm {
  margin-bottom: 12px;
}

.mbmd {
  margin-bottom: 18px;
}

.mblg {
  margin-bottom: 24px;
}

.mbxlg {
  margin-bottom: 36px;
}

.mb_0 {
  margin-bottom: 0;
}

.ptxs {
  padding-top: 6px;
}

.ptsm {
  padding-top: 12px;
}

.ptmd {
  padding-top: 18px;
}

.ptlg {
  padding-top: 24px;
}

.ptxlg {
  padding-top: 36px;
}

.prxs {
  padding-right: 6px;
}

.prsm {
  padding-right: 12px;
}

.prmd {
  padding-right: 18px;
}

.prlg {
  padding-right: 24px;
}

.prxlg {
  padding-right: 36px;
}

.plxs {
  padding-left: 6px;
}

.plsm {
  padding-left: 12px;
}

.plmd {
  padding-left: 18px;
}

.pllg {
  padding-left: 24px;
}

.plxlg {
  padding-left: 36px;
}

.pbxs {
  padding-bottom: 6px;
}

.pbsm {
  padding-bottom: 12px;
}

.pbmd {
  padding-bottom: 18px;
}

.pblg {
  padding-bottom: 24px;
}

.pbxlg {
  padding-bottom: 36px;
}

.b_all {
  border: 1px solid #D8D8D8;
}

.bt {
  border-top: 1px solid #D8D8D8;
}

.bb {
  border-bottom: 1px solid #D8D8D8;
}

.bl {
  border-left: 1px solid #D8D8D8;
}

.br {
  border-right: 1px solid #D8D8D8;
}

.avatar_border {
  border: 2px solid #244092;
}

.bg_lightgray {
  background-color: #f7f7f7;
}

.bg_lightergray {
  background-color: #f0f0f0;
}

.bg_primary {
  background-color: #244092;
}

.bg_yellowch {
  background-color: #B2B200;
}

.bg_brownch {
  background-color: #A05000;
}

.bg_dark {
  background-color: #2B2B2B;
}

.bg_white {
  background-color: white;
}

.bg_white > div > div > div > div > div > div {
  background-color: #f7f7f7;
}
.bg_gradient {
  background: #244092;
  background: linear-gradient(90deg, #244092 0%, #244092 50%, #18b289 90%);
  background-image: url("../../images/front/bestlearning2.jpg");
  height: 110px;
  background-size: cover;
}

/*.bg_gradient_home {*/
/*  background: #244092;*/
/*  background: linear-gradient(90deg, #244092 0%, #244092 50%, #18b289 90%);*/
/*  background-image: url("../../images/front/bestlearning.webp");*/
/*  */
/*}*/


.bg_gradient_home {
  background: #244092;
  background: linear-gradient(90deg, #244092 0%, #244092 50%, #18b289 90%);
  background-image: url("../../images/front/bestlearning.webp");
  background-size: cover; /* Ensure the image covers the entire container */
  background-position: center; /* Center the image */
  min-height: 300px; /* Example height, adjust as needed */
}


/*.section_image_overlay {*/
/*  position: absolute;*/
/*  right: 0;*/
/*  top: 0;*/
/*  display: block;*/
/*  content: "";*/
/*  background-image: url("../../images/front/bestlearning.webp");*/
/*  width: 100%;*/
/*  height: auto;*/
/*  background-size: cover;*/
/*  background-repeat: no-repeat;*/
/*}*/

.section_image_overlay {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  content: "";
  background-image: url("../../images/front/bestlearning.webp");
  width: 100%;
  height: 300px; /* Example height, adjust as needed */
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #244092; /* Fallback color */
}

@media (max-width: 768px) {
  .mobie-account-info{
    display: flex !important;
  }
  .section_image_overlay {
    width: 100%;
    background-size: cover;
  }

  .course-card-image{
    height: 165px !important; 
  }

  .instructor_card_image{
    width: 69% !important;
    height: 111px !important;
  }

  .instructor_brief_section{
    height: 308px !important;
  }
  .b_all{
    /* display: none !important; */
  }
  .global-pagenation{
    width: 100% !important;
  }
  .specialities-slider-control{
    top: 20px !important;
  }
  .hero-slider{
    height: 265px !important;
  }

  #header-search-icon{
    display: block !important;
    font-size: 22px;
    color: #244092;
  }
}

.text_thin {
  font-weight: 400;
}

.text_bold {
  font-weight: 500;
}

.text_larger {
  font-size: larger;
}

.text_large {
  font-size: large;
  line-height: 1.8;
}

.text_primary {
  color: #244092 !important;
}

.text_white {
  color: white;
}

.text_muted {
  color: #a0a0a0 !important;
}

.text_info, .text_accent {
  color: #71d6d7;
}

.text_warning {
  color: #FFCB04;
}

.text_dark {
  color: #2B2B2B;
}

.text_upper {
  text-transform: uppercase;
}

.text_capitalize {
  text-transform: capitalize;
}

.text_underline {
  text-decoration: underline;
}

.inblock {
  display: inline-block;
}

.rounded {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.rounded_4 {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.rounded_6 {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.text_left {
  text-align: left;
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.flex {
  display: flex;
}

.flex-content-sb {
  justify-content: space-between;
}

.flex-items-center {
  align-items: center;
}

.flex-1 > div {
  flex: 1;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
}

@-ms-viewport {
  width: device-width;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "Poppins-Regular";
  /* font-family: "DIN Next LT Arabic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; */

  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: #2B2B2B;
  background-color: #f7f7f7;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

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

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

ul, li, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

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: #244092;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #105f80;
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
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;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
  position: relative;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
  cursor: pointer;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -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-cancel-button,
[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: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

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, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.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: 0.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: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.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;
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table tr td {
  padding: 14px 12px;
  vertical-align: middle;
  border-bottom: 1px solid #dddddd;
}

.header {
  position: relative;
  width: 100%;
  z-index: 5;
}
@media (max-width: 768px) {
  .header .wrapper {
    padding: 0;
  }
}
.header .header_top {
  background-color: #2B2B2B;
  color: white;
  padding: 5px 0;
}
.header .header_top .header_top_content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .header .header_top .header_top_content {
    display: block;
    padding: 0 20px;
  }
}
.header .header_top .header_top_content > div {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
.header .header_top .call_us {
  font-size: 14px;
}
.header .header_top .nav {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 20px;
  padding-right: 14px;
  position: relative;
  font-size: 14px;
}
@media (max-width: 768px) {
  .header .header_top .nav {
    padding-right: 0;
    margin-right: 0;
    font-size: 12px;
  }
}
.header .header_top .nav:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  bottom: 5px;
  right: 0;
  background-color: rgba(255, 255, 255, 0.3);
  width: 1px;
}
@media (max-width: 768px) {
  .header .header_top .nav:before {
    display: none;
  }
}
.header .header_top .nav li {
  line-height: 1;
  position: relative;
}
.header .header_top .nav li:hover > ul {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header .header_top .nav li a, .header .header_top .nav li > span {
  color: white;
  display: block;
  padding: 5px 7px;
  text-decoration: none;
}
.header .header_top .nav li ul {
  position: absolute;
  -moz-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
  right: 0;
  top: 100%;
  z-index: 3;
  min-width: 180px;
  padding: 12px 0;
  background-color: #EDEDED;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: -moz-transform 0.3s linear;
  -o-transition: -o-transform 0.3s linear;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
}
.header .header_top .nav li ul li a {
  padding: 7px 12px;
  display: block;
  color: #2B2B2B;
}
.header .header_top .nav li ul li a:hover {
  color: #244092;
}
.header .header_bottom {
  padding: 10px 0;
  background-color: white;
  position: relative;
  width: 100%;
  z-index: 2;
  -moz-box-shadow: 0 5px 4px -4px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 5px 4px -4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 4px -4px rgba(0, 0, 0, 0.05);
}
.header .header_bottom .header_bottom_content {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .header .header_bottom .header_bottom_content {
    display: block;
    padding: 20px;
  }
}
.header .header_bottom .header_bottom_content > div {
  /* display: -webkit-flex;
  display: flex; */
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
.header .header_bottom .header_bottom_content > div:first-child {
  position: relative;
  -webkit-flex: 1;
  flex: 1;
}
@media (max-width: 768px) {
  .header .header_bottom .header_bottom_content > div:first-child {
    margin-bottom: 5px;
  }
}
.header .toggle_search {
  position: absolute;
  left: 0;
  outline: 0;
  border: 0;
  background: transparent;
}
.header .toggle_search span {
  margin-left: 5px;
  color: #a0a0a0;
}
@media (max-width: 768px) {
  .header .toggle_search span {
    display: none;
  }
}
.header .global_search {
  position: absolute;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #D8D8D8;
  z-index: 1;
  background-color: white;
  -moz-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.03);
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.03);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  -moz-transition: -moz-transform 0.35s, opacity 0.35s;
  -o-transition: -o-transform 0.35s, opacity 0.35s;
  -webkit-transition: -webkit-transform 0.35s, opacity 0.35s;
  transition: transform 0.35s, opacity 0.35s;
}
.header .global_search.show {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  visibility: visible;
}
.header .global_search:before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent url("../../images/front/search.svg");
  width: 17px;
  height: 18px;
  display: block;
}
.header .global_search .close_search {
  position: absolute;
  left: 10px;
  font-size: 18px;
  color: #a0a0a0;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header .global_search .form_input {
  border: 0;
  padding-left: 40px;
  padding-right: 40px;
  background-color: transparent;
}
.header .header_nav_links {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 16px;
  padding-right: 16px;
  position: relative;
}
@media (max-width: 940px) {
  .header .header_nav_links {
    padding-right: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .header .header_nav_links {
    width: 100%;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding-right: 0;
    margin-right: 0;
    padding-top: 5px;
    border-top: 1px solid #f2f2f2;
  }
}
.header .header_nav_links:before {
  content: "";
  position: absolute;
  top: 12px;
  width: 1px;
  bottom: 12px;
  right: 0;
  background-color: #D8D8D8;
  display: block;
}
@media (max-width: 768px) {
  .header .header_nav_links:before {
    display: none;
  }
}
.header .header_nav_links li {
  padding: 7px 10px;
  position: relative;
}
@media (max-width: 940px) {
  .header .header_nav_links li {
    padding: 7px;
  }
}
.header .header_nav_links li:hover .sub_nav {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header .header_nav_links li > span, .header .header_nav_links li > a {
  cursor: pointer;
  padding: 4px;
  display: block;
}
.floated_count {
  position: relative;
  width: 22px;
  height: 22px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  top: -12px;
  right: -4px;
  font-size: 13px;
  background-color: #FFCB04;
  color: #2B2B2B;
}
@media (max-width: 940px) {
  .floated_count {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}
.header .header_nav_links li.head_notifications .sub_nav {
  width: 260px;
  font-size: 14px;
  right: -106px;
}
@media (max-width: 768px) {
  .header .header_nav_links li.head_notifications .sub_nav {
    right: 0;
  }
}
.header .header_nav_links li .head_notifications_icon {
  width: 25px;
  height: 25px;
  background: url("../../images/front/notification-bell.svg") no-repeat 0 0;
}
.head_cart {
  width: 25px;
  height: 25px;
  background: url("../../images/shopping-cart.svg") no-repeat 0 0;
}
.header .header_nav_links li.head_profile {
  padding-left: 0;
}
.header .header_nav_links li.head_profile img {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #71d6d7;
  margin: 0;
  padding: 0;
  display: inline-block;
}
.header .header_nav_links li.head_profile .avatar_name {
  margin: 0 5px;
}
@media (max-width: 768px) {
  .header .header_nav_links li.head_profile .sub_nav {
    left: 0;
  }
}
.header .header_nav_links li .sub_nav {
  position: absolute;
  -moz-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
  right: 0;
  top: 100%;
  z-index: 1;
  min-width: 180px;
  padding: 12px 0;
  background-color: #EDEDED;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: -moz-transform 300ms linear;
  -o-transition: -o-transform 300ms linear;
  -webkit-transition: -webkit-transform 300ms linear;
  transition: transform 300ms linear;
}
.header .header_nav_links li .sub_nav:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(237, 237, 237, 0);
  border-bottom-color: #EDEDED;
  border-width: 9px;
  margin-left: -9px;
}
@media (max-width: 768px) {
  .header .header_nav_links li .sub_nav:before {
    display: none;
  }
}
.header .header_nav_links li .sub_nav .sub_nav_header {
  padding: 0 14px 5px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.header .header_nav_links li .sub_nav .notification_item {
  font-size: 12px;
  padding: 7px 14px;
}
.header .header_nav_links li .sub_nav .notification_item:hover {
  background-color: #e5e5e5 !important;
}
.header .header_nav_links li .sub_nav > div {
  display: block;
  margin: 0;
}
.header .header_nav_links li .sub_nav > div.divider {
  height: 1px;
  margin: 5px 0;
  background-color: #D8D8D8;
}
.header .header_nav_links li .sub_nav > div .sub_nav_link {
  padding: 7px 12px;
  color: #2B2B2B;
  white-space: nowrap;
  display: block;
  font-size: 14px;
  -moz-transition: background-color 200ms linear;
  -o-transition: background-color 200ms linear;
  -webkit-transition: background-color 200ms linear;
  transition: background-color 200ms linear;
}
.header .header_nav_links li .sub_nav > div .sub_nav_link:hover {
  background-color: #e5e5e5;
  color: #244092;
}
.header .header_nav_links li .sub_nav > div .sub_nav_link:hover i {
  color: #244092;
}
.header .header_nav_links li .sub_nav > div .sub_nav_link i {
  color: #a0a0a0;
  margin-left: 10px;
}
.header .primary_nav {
  margin-right: 14px;
}
@media (max-width: 1117px) {
  .header .primary_nav {
    margin-right: 7px;
  }
}
.header .primary_nav .nav_items {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.header .primary_nav .nav_items .nav_item {
  position: relative;
}
@media (max-width: 768px) {
  .header .primary_nav .nav_items .nav_item.home {
    display: none;
  }
}
.header .primary_nav .nav_items .nav_item:hover .sub_nav {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header .primary_nav .nav_items .nav_item a, .header .primary_nav .nav_items .nav_item span {
  cursor: pointer;
  display: block;
  padding: 5px 14px;
  font-size: 16px;
  color: #2B2B2B;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
}
@media (max-width: 1117px) {
  .header .primary_nav .nav_items .nav_item a, .header .primary_nav .nav_items .nav_item span {
    padding: 5px 10px;
  }
}
@media (max-width: 940px) {
  .header .primary_nav .nav_items .nav_item a, .header .primary_nav .nav_items .nav_item span {
    padding: 5px 7px;
  }
}
.header .primary_nav .nav_items .nav_item .sub_nav {
  position: absolute;
  -moz-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
  right: 0;
  top: 100%;
  z-index: 1;
  width: 150px;
  padding: 12px 0;
  background-color: #EDEDED;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: -moz-transform 300ms linear;
  -o-transition: -o-transform 300ms linear;
  -webkit-transition: -webkit-transform 300ms linear;
  transition: transform 300ms linear;
}
.header .primary_nav .nav_items .nav_item .sub_nav:before {
  bottom: 100%;
  right: 50px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(237, 237, 237, 0);
  border-bottom-color: #EDEDED;
  border-width: 9px;
  margin-left: -9px;
}

.footer {

  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #2B2B2B;
  color: white;
  padding: 10px 0;
}
.footer .footer_content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer .footer_nav {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
.footer .nav {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
.footer .nav li a {
  color: white;
  display: block;
  padding: 5px 12px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer .nav li a {
    padding: 3px 5px;
    font-size: 14px;
  }
}
.footer .footer_social {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}

.button {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  font-size: 14px;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: color, background-color, box-shadow, border-color 0.15s ease-in-out;
  -o-transition: color, background-color, box-shadow, border-color 0.15s ease-in-out;
  -webkit-transition: color, background-color, box-shadow, border-color 0.15s ease-in-out;
  transition: color, background-color, box-shadow, border-color 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
.button_default {
  border-color: #D8D8D8;
}

.button:hover, .button:focus {
  text-decoration: none;
}

.button:focus, .button.focus {
  outline: 0;
}

.button.disabled, .button:disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
  opacity: 0.65;
}

.button:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.button:not(:disabled):not(.disabled):active, .button:not(:disabled):not(.disabled).active {
  background-image: none;
}

.button.button_wide {
  padding: 0.375rem 1.4rem;
}

.button.button_block {
  width: 100%;
}

a.button.disabled,
fieldset:disabled a.button {
  pointer-events: none;
}

.button_small {
  padding: 6px 12px;
  font-size: 13px;
}

.button_large {
  font-size: 16px;
  padding: 10px 32px !important;
}

.button_shadow:hover {
  -moz-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.button_primary {
  color: #fff;
  background-color: #244092;
  border-color: transparent;
}

.button_primary:hover,
.button_primary:focus, .button_primary.focus {
  color: #fff;
  background-color: #3ab289;
  border-color: #244092;
}

.button_primary2{
  color: #fff;
  background-color: #18B289;
  border-color: transparent;
}

.button_primary2:hover,
.button_primary2:focus, .button_primary2.focus {
  color: #fff;
  background-color: #244092;
  border-color: #18B289;
}

.button_primary.disabled, .button_primary:disabled {
  color: #fff;
  background-color: #42b7e7;
  border-color: #42b7e7;
}

.button_primary:not(:disabled):not(.disabled):active, .button_primary:not(:disabled):not(.disabled).active,
.show > .button_primary.dropdown-toggle {
  color: #fff;
  background-color: #12698d;
  border-color: #12698d;
}

.button_primary_reverse {
  color: #244092;
  background-color: transparent;
  border-color: #244092;
}

.button_primary_reverse:hover,
.button_primary_reverse:focus, .button_primary_reverse.focus {
  color: #fff;
  background-color: #244092;
  border-color: #244092;
}

.button_primary_reverse.disabled, .button_primary_reverse:disabled {
  color: #a0a0a0;
  background-color: transparent;
  border-color: #a0a0a0;
}

.button_primary_reverse:not(:disabled):not(.disabled):active, .button_primary_reverse:not(:disabled):not(.disabled).active,
.show > .button_primary_reverse.dropdown-toggle {
  color: #fff;
  background-color: #244092;
  border-color: #244092;
}

.button_black {
  color: #fff;
  background-color: #2B2B2B;
  border-color: transparent;
}

.button_black:hover,
.button_black:focus, .button_black.focus {
  color: #fff;
  background-color: #1e1e1e;
  border-color: #1e1e1e;
}

.button_black.disabled, .button_black:disabled {
  color: #fff;
  background-color: #5e5e5e;
  border-color: #5e5e5e;
}

.button_black:not(:disabled):not(.disabled):active, .button_black:not(:disabled):not(.disabled).active,
.show > .button_black.dropdown-toggle {
  color: #fff;
  background-color: #191919;
  border-color: #191919;
}

.button_default {
  color: #2B2B2B;
  background-color: #bababa;
  border-color: #bababa;
}

.button_default:hover,
.button_default:focus, .button_default.focus {
  color: #2B2B2B;
  background-color: #a0a0a0;
  border-color: #a0a0a0;
}

.button_default.disabled, .button_default:disabled {
  color: #2b2b2b;
  background-color: lightgray;
  border-color: lightgray;
}

.button_default:not(:disabled):not(.disabled):active, .button_default:not(:disabled):not(.disabled).active,
.show > .button_default.dropdown-toggle {
  color: #2B2B2B;
  background-color: #a0a0a0;
  border-color: #a0a0a0;
}

.button_link {
  color: #244092;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

.button_link.nopad {
  padding: 0 !important;
}

.button_link:hover,
.button_link:focus, .button_link.focus {
  color: #2B2B2B;
  border-color: transparent;
}

.button_link.disabled, .button_link:disabled {
  color: #2B2B2B;
  background-color: #dedede;
  border-color: #D8D8D8;
}

.button_link:not(:disabled):not(.disabled):active, .button_link:not(:disabled):not(.disabled).active,
.show > .button_link.dropdown-toggle {
  color: #2B2B2B;
  background-color: #f0f0f0;
  border-color: #D8D8D8;
}

.courses_cards {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.courses_items_with_descraption > div:first-child {
  margin: 60px 0;
  float: right;
  max-width: 360px;
  padding: 24px 0 24px 32px;
}
@media (max-width: 768px) {
  .courses_items_with_descraption > div:first-child {
    float: none;
    padding: 5px 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
.courses_items_with_descraption .courses_cards {
  margin-right: 386px;
}
@media (max-width: 768px) {
  .courses_items_with_descraption .courses_cards {
    margin: 0;
  }
}

.js_slick .course_card {
  margin: 5px 7px;
  max-width: none;
  min-width: auto;
}

.course_card {
  max-width: 228px;
  min-width: 220px;
  background-color: white;
  margin: 0 0 22px 22px;
  position: relative;
}
@media (max-width: 768px) {
  .course_card {
    width: 48%;
    max-width: 48%;
    margin: 0 1% 24px;
  }
}
.course_card .course_card_remove {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  border: 0;
  font-size: 16px;
  background-color: #DD2C00;
  color: white;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.course_card a {
  display: block;
  text-decoration: none;
  -moz-transition: box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.course_card a:hover {
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.course_card .course_card_img {
  display: block;
  position: relative;
}
.course_card .course_card_img:hover:before {
  visibility: visible;
}
.course_card .course_card_img:hover .play_icon {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: translateY(0) scale(1);
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}
.course_card .course_card_img img {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: block;
  margin: 0;
  padding: 0;
}
.course_card .course_card_img:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  display: block;
  visibility: hidden;
  -moz-transition: visibility 0.35s;
  -o-transition: visibility 0.35s;
  -webkit-transition: visibility 0.35s;
  transition: visibility 0.35s;
}
.course_card .course_card_img .play_icon {
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -50px;
  margin-right: -50px;
  z-index: 1;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.4);
  color: rgba(43, 43, 43, 0.6);
  font-size: 24px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -moz-transition: opacity 0.3s, -moz-transform 0.35s;
  -o-transition: opacity 0.3s, -o-transform 0.35s;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.35s;
  transition: opacity 0.3s, transform 0.35s;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transform: translateY(25px) scale(0.8);
  -webkit-transform: translateY(25px) scale(0.8);
  transform: translateY(25px) scale(0.8);
}
.course_card .course_card_detail {
  position: relative;
  height: 70px;
}
.course_card .course_card_detail .course_card_detail_name {
  padding: 7px;
  /* font-size: 14px; */
  font-weight: 500;
}
.pm0{
  padding-bottom: 0 !important;
}

.cut-text{
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.course_card .course_card_detail .course_card_rating_price {
  position: absolute;
  border-top: 1px solid #eaeaea;
  bottom: 0;
  width: 100%;
  padding: 8px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.course_card .course_card_detail .course_card_rating_price .course_card_rating {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.course_card .course_card_detail .course_card_rating_price .course_card_rating .jq_rating {
  margin-right: 3px;
}
.course_card .course_card_detail .course_card_price {
  font-size: 75%;
  color: #244092;
  font-weight: 500;
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}
.course_card .course_card_detail del.course_old_price {
  color: rgba(128, 128, 128, 0.5);
  position: relative;
  font-size: 12px;
}
.course_card .course_card_detail del.course_old_price:before {
  /* content: " ";
  display: block;
  width: 100%;
  border-top: 1px solid rgba(128, 128, 128, 0.8);
  height: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-7deg); */
}

.course_detail .course_detail_header {
  position: relative;
  background-color: #e8e8e8;
}
@media (max-width: 768px) {
  .course_detail .course_detail_header {
    width: 100%;
  }
}
.course_detail .course_detail_rating {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.course_detail .course_detail_rating .jq_rating {
  /* margin-left: 18px; */
}
.course_detail .course_detail_rating .course_detail_watched_number {
  margin-right: 24px;
}
.course_detail .video_wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  max-width: 95%;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .course_detail .video_wrapper {
    display: block;
  }
}
.course_detail .video_wrapper > div:first-child {
  padding: 30px;
  width: 40%;
}
@media (max-width: 960px) {
  .course_detail .video_wrapper > div:first-child {
    width: 100%;
  }
}
.course_detail .video_wrapper > div:last-child {
  width: 60%;
}
@media (max-width: 960px) {
  .course_detail .video_wrapper > div:last-child {
    width: 100%;
  }
}
.course_detail .socials {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.course_detail del.course_old_price {
  font-size: 16px;
  color: rgba(128, 128, 128, 0.5);
  /* text-decoration: none; */
  position: relative;
}
.course_detail del.course_old_price:before {
  /* content: " ";
  display: block;
  width: 100%;
  border-top: 2px solid rgba(128, 128, 128, 0.8);
  height: 17px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-7deg); */
}

.course_detail_content {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .course_detail_content {
    display: block;
  }
}
.course_detail_content > div:last-child {
  width: calc(100% - 370px);
}
@media (max-width: 960px) {
  .course_detail_content > div:last-child {
    width: calc(100% - 270px);
  }
}
@media (max-width: 768px) {
  .course_detail_content > div:last-child {
    width: 100%;
  }
}
.course_detail_content .toggle_collapse {
  position: relative;
}
.course_detail_content .toggle_collapse:before {
  content: attr(data-text);
}
.course_detail_content .toggle_collapse.active:before {
  content: attr(data-active-text);
}
.course_detail_content .accordion_list {
  -moz-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.03);
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.03);
}
.course_detail_content .slick-prev {
  left: 0 !important;
}
.course_detail_content .slick-prev:before {
  background-image: url("../../images/front/slick_arrow_prev_white.png");
}
.course_detail_content .slick-next {
  right: 0 !important;
}
.course_detail_content .slick-next:before {
  background-image: url("../../images/front/slick_arrow_next_white.png");
}
.course_detail_content [dir='rtl'] .slick-prev {
  left: 0 !important;
}
.course_detail_content [dir='rtl'] .slick-prev:before {
  background-image: url("../../images/front/slick_arrow_prev_white.png");
}
.course_detail_content [dir='rtl'] .slick-next {
  right: 0 !important;
}
.course_detail_content [dir='rtl'] .slick-next:before {
  background-image: url("../../images/front/slick_arrow_next_white.png");
}

.course_detail_nav {
  display: block;
  position: relative;
  background-color: white;
}
@media (max-width: 768px) {
  .course_detail_nav {
    display: none;
  }
}
.course_detail_nav.is_stuck {
  z-index: 3;
  -moz-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.11);
  -webkit-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.11);
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.11);
}
.course_detail_nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 960px) {
  .course_detail_nav ul {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.course_detail_nav ul li {
  margin: 0 20px;
}
@media (max-width: 960px) {
  .course_detail_nav ul li {
    margin: 0 10px;
  }
}
.course_detail_nav ul li:first-child {
  margin-right: 0;
}
.course_detail_nav ul li:last-child {
  margin-left: 0;
}
.course_detail_nav ul li a {
  padding: 20px 0 17px;
  border-bottom: 3px solid transparent;
  display: block;
  color: #2B2B2B;
}
@media (max-width: 960px) {
  .course_detail_nav ul li a {
    padding: 20px 0 17px;
  }
}
.course_detail_nav ul li a.selected {
  border-color: #71d6d7;
}

.course_review_summary {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .course_review_summary {
    display: block;
  }
}
.course_review_summary .course_review_summary_total {
  text-align: center;
  padding-left: 28px;
}
.course_review_summary .course_review_summary_total .course_review_summary_number {
  font-size: 72px;
  font-weight: normal;
  line-height: 1;
}
.course_review_summary .course_review_summary_total .course_review_summary_rating {
  margin: 18px auto 7px;
}
.course_review_summary .course_review_summary_total .rating {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.course_review_summary .course_review_summary_total .rating .star {
  font-size: 20px;
}
.course_review_summary .review_summary_chart {
  -webkit-flex: 3;
  flex: 3;
}
.course_review_summary .review_summary_chart .review_summary_chart_row {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 7px 0;
}
.course_review_summary .review_summary_chart .review_summary_chart_row .review_summary_chart_prograss {
  background: #EAEAEA;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  height: 20px;
  -webkit-flex: 3;
  flex: 3;
  margin-left: 14px;
}
.course_review_summary .review_summary_chart .review_summary_chart_row .review_summary_chart_prograss .review_summary_chart_buffer {
  background-color: #C8C8C8;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  display: block;
  height: 100%;
}
.course_review_summary .review_summary_chart .review_summary_chart_row .review_summary_chart_rating {
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.course_review_summary .review_summary_chart .review_summary_chart_row .review_summary_chart_rating .jq_rating {
  margin-left: 7px;
}

.course_list_header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background-color: #244092;
  color: white;
  padding: 14px;
}
.course_list_header .title {
  font-size: 20px;
}

.course_streamer {
  padding: 10px 0;
  position: relative;
  z-index: 6;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -moz-transition: -moz-transform 0.3s, opacity 0.3s, visibility 0.3s;
  -o-transition: -o-transform 0.3s, opacity 0.3s, visibility 0.3s;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, visibility 0.3s;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}
.course_streamer.streamer_fixed {
  position: fixed;
  top: 0;
}
.course_streamer.show {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.course_streamer .title {
  font-weight: 500;
  font-size: 18px;
}
.course_streamer .course_streamer_rating {
  display: -webkit-flex;
  display: flex;
}
.course_streamer .course_streamer_rating .jq_rating {
  margin-left: 18px;
}

.dropdown_rating {
  display: -webkit-flex;
  display: flex;
  min-width: 180px;
}
.dropdown_rating .rating {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.dropdown_rating .rating .star {
  font-size: 16px;
  margin-left: 5px;
}

.course_column_info {
  font-size: 14px;
  float: left;
  margin-bottom: 10px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  width: 350px;
  color: #2B2B2B;
  z-index: 2;
  -moz-transition: margin 0.3s linear;
  -o-transition: margin 0.3s linear;
  -webkit-transition: margin 0.3s linear;
  transition: margin 0.3s linear;
}
@media (max-width: 960px) {
  .course_column_info {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .course_column_info {
    width: 100%;
    float: none;
  }
}
.course_column_info.is_stuck {
  margin: 0;
}
.course_column_info del.course_old_price {
  color: rgba(128, 128, 128, 0.5);
  text-decoration: none;
  position: relative;
  font-size: 1.75rem;
  line-height: 1.2;
  display: inline-block;
}
.course_column_info del.course_old_price:before {
  content: " ";
  display: block;
  width: 100%;
  border-top: 2px solid rgba(128, 128, 128, 0.8);
  height: 17px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  transform: rotate(-7deg);
}
.course_column_info .video {
  width: 100%;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px;
  border-radius: 4px 4px 0 0;
}
.course_column_info .course_column_info_inner {
  padding: 18px 14px;
}
.course_column_info .course_price {
  text-align: center;
  padding: 18px 10px;
}
@media (max-width: 768px) {
  .course_column_info .course_price {
    display: none;
  }
}
.course_column_info .course_price strong {
  font-size: 2.5em;
  letter-spacing: -1px;
  margin-bottom: 5px;
  color: #244092;
  font-weight: normal;
}
.course_column_info .course_price span {
  display: block;
}
@media (max-width: 768px) {
  .course_column_info .share_course {
    /* display: none; */
  }
}
.course_column_info .course_ad_to_cart {
  display: -webkit-flex;
  display: flex;
}
.course_column_info .course_ad_to_cart .add_cart {
  -webkit-flex: 4;
  flex: 4;
  margin-left: 5px;
}
.course_column_info .about_auther {
  text-align: center;
}
.course_column_info .about_auther figure img {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.course_column_info .socials {
  -webkit-justify-content: center;
  justify-content: center;
}

.talk_video_review {
  max-width: 80%;
}
@media (max-width: 768px) {
  .talk_video_review {
    max-width: 100%;
  }
}

.course_comments {
  margin-top: 24px;
}
.course_comments .individual_comment {
  display: -webkit-flex;
  display: flex;
  padding: 18px 0;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #D8D8D8;
}
.course_comments .individual_comment:last-child {
  border: 0;
}
@media (max-width: 768px) {
  .course_comments .individual_comment {
    display: block;
  }
}
.course_comments .individual_comment .comments_right {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  min-width: 200px;
}
@media (max-width: 768px) {
  .course_comments .individual_comment .comments_right {
    margin-bottom: 12px;
  }
}
.course_comments .individual_comment .comments_right > div {
  line-height: 1.4;
}
.course_comments .individual_comment .comments_right > div:first-child {
  margin-left: 10px;
}
.course_comments .individual_comment .comments_right > div img {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.course_comments .individual_comment .comments_left {
  -webkit-flex: 1;
  flex: 1;
  padding: 0 18px;
}
.course_comments .individual_comment .comments_left .comments_raring {
  display: -webkit-flex;
  display: flex;
}
.course_comments .individual_comment .comments_left .jq_rating {
  margin-bottom: 10px;
}

.course_add_comment {
  margin-top: 24px;
}
.course_add_comment .rating {
  margin-top: 18px;
  float: right;
}

@media (max-width: 768px) {
  .course_card_list {
    max-width: 100%;
  }
}
.course_card_list.cart_list {
  position: relative;
}
.course_card_list.cart_list .course_card_link {
  max-width: calc(100% - 180px);
  border: 0;
}
@media (max-width: 940px) {
  .course_card_list.cart_list .course_card_link {
    display: block;
    max-width: 100%;
    width: 100%;
  }
}
.course_card_list.cart_list .course_card_item {
  border-bottom: 1px solid #D8D8D8;
}
.course_card_list.cart_list .course_card_item:last-child {
  border: 0;
}
.course_card_list.cart_list .course_card_config {
  position: absolute;
  left: 5px;
  top: 24px;
}
@media (max-width: 940px) {
  .course_card_list.cart_list .course_card_config {
    position: static;
    text-align: right !important;
  }
  .course_card_list.cart_list .course_card_config > div {
    display: inline-block;
  }
}
.course_card_list .course_card_item {
  position: relative;
}
.course_card_list .course_card_link {
  color: #2B2B2B;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding: 5px 10px;
  border-top: 1px solid #D8D8D8;
  -moz-transition: background-color 0.3s linear;
  -o-transition: background-color 0.3s linear;
  -webkit-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
}
@media (max-width: 768px) {
  .course_card_list .course_card_link {
    width: 100%;
    display: block;
  }
}
.course_card_list .course_card_link:hover {
  background-color: #f0f0f0;
}
.course_card_list .course_card_link:first-child {
  border: 0;
}
.course_card_list .course_card_img {
  padding: 3px;
  display: block;
  border: 1px solid #D8D8D8;
  max-width: 260px;
}
@media (max-width: 768px) {
  .course_card_list .course_card_img {
    max-width: auto;
    border: 0;
  }
}
.course_card_list .course_card_img img {
  max-width: 100%;
}
.course_card_list .course_card_detail {
  padding: 12px 24px;
  -webkit-flex: 4;
  flex: 4;
}
@media (max-width: 768px) {
  .course_card_list .course_card_detail {
    padding: 10px;
  }
}
.course_card_list .course_card_detail .course_card_detail_name {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 1;
}
@media (max-width: 768px) {
  .course_card_list .course_card_detail .course_card_detail_name {
    font-size: 16px;
  }
}
.course_card_list .course_card_detail .course_card_detail_meta {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.course_card_list .course_card_detail .course_card_detail_meta > div {
  margin-left: 14px;
}
@media (max-width: 768px) {
  .course_card_list .course_card_detail .course_card_detail_meta > div {
    margin-left: 7px;
  }
}
.course_card_list .course_card_price {
  padding: 12px 0;
  text-align: left;
}
@media (max-width: 768px) {
  .course_card_list .course_card_price {
    padding: 7px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}
.course_card_list .course_card_price .price {
  letter-spacing: -2px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .course_card_list .course_card_price .price {
    font-size: 22px;
  }
}
.course_card_list .course_card_price .course_card_rating {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.course_card_list .course_card_price .course_card_rating .jq_rating {
  margin-left: 10px;
}
.course_card_list del.course_old_price {
  color: rgba(128, 128, 128, 0.5);
  /* text-decoration: none; */
  position: relative;
  font-size: 15px;
}
.course_card_list del.course_old_price:before {
  /* content: " ";
  display: block;
  width: 100%;
  border-top: 2px solid rgba(128, 128, 128, 0.8);
  height: 17px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-7deg); */
}

.vd_lesson {
  width: 100%;
  background-color: #2B2B2B;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 768px) {
  .vd_lesson {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.vd_lesson .vd_video {
  -webkit-flex: 1;
  flex: 1;
  height: 100%;
  position: relative;
  max-height: 500px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .vd_lesson .vd_video {
    width: 100%;
    max-height: auto;
    height: auto;
  }
}
.vd_lesson .vd_content {
  width: 350px;
  height: 600px;
  background-color: white;
  position: relative;
}
@media (max-width: 768px) {
  .vd_lesson .vd_content {
    width: 100%;
  }
}
.vd_lesson .vd_content .vd_video_qtn_head, .vd_lesson .vd_content .vd_video_qtn_foot {
  height: 100px;
  position: absolute;
  width: 100%;
}
.vd_lesson .vd_content .vd_video_qtn_head {
  -moz-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  top: 0;
}
.vd_lesson .vd_content .vd_video_qtn_head > a {
  padding: 7px 14px;
  font-size: 13px;
  display: -webkit-flex;
  display: flex;
  color: #2B2B2B;
  -webkit-align-items: center;
  align-items: center;
}
.vd_lesson .vd_content .vd_video_qtn_head > a img {
  margin-left: 7px;
}
.vd_lesson .vd_content .vd_video_qtn_foot {
  bottom: 0;
  -moz-box-shadow: 0 -5px 5px -5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 -5px 5px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 -5px 5px -5px rgba(0, 0, 0, 0.1);
}
.vd_lesson .vd_content .vd_video_qtn_foot .form_input {
  border: 0;
}
.vd_lesson .vd_content .vd_video_qtn_body {
  position: absolute;
  top: 60px;
  bottom: 100px;
  width: 100%;
  overflow: auto;
}
.vd_lesson .question_answer_single {
  padding: 7px;
  font-size: 14px;
  position: relative;
  border-bottom: 1px solid #eaeaea;
  display: -webkit-flex;
  display: flex;
}
.vd_lesson .question_answer_single:last-child {
  border: 0;
}
.vd_lesson .question_answer_single > div:first-child {
  width: 60px;
}
.vd_lesson .question_answer_single > div:last-child {
  -webkit-flex: 1;
  flex: 1;
}
.vd_lesson .question_answer_single .like {
  border: 0;
  cursor: pointer;
  outline: 0;
  background: transparent;
}
.vd_lesson .question_answer_single .time {
  white-space: nowrap;
  position: absolute;
  left: 12px;
  top: 7px;
  font-size: 12px;
  color: #a0a0a0;
}
.vd_lesson .vd_question_list .card_header > button {
  background-color: #f0f0f0 !important;
  padding: 10px !important;
}
.vd_lesson .vd_question_list .card_header > button .card_header_title {
  font-size: 15px !important;
}
.vd_lesson .vd_question_list .card_body {
  padding: 7px 10px;
}

.talk_video {
  position: relative;
  min-height: 100px;
}
.talk_video.video_hidden .talk_video_overlay {
  position: relative;
  display: block;
}
.talk_video.video_hidden .talk_video_overlay > img {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.talk_video.video_hidden .talk_video_overlay .talk_video_play_button {
  position: absolute;
  top: 50%;
  right: 50%;
  outline: 0;
  margin-right: -50px;
  margin-top: -120px;
  z-index: 7;
  max-width: 100px;
  border: 0;
  background: transparent;
  padding: 0;
  -moz-transition: -moz-transform 0.2s, box-shadow 0.3s;
  -o-transition: -o-transform 0.2s, box-shadow 0.3s;
  -webkit-transition: -webkit-transform 0.2s, box-shadow 0.3s;
  transition: transform 0.2s, box-shadow 0.3s;
}
@media (max-width: 768px) {
  .talk_video.video_hidden .talk_video_overlay .talk_video_play_button {
    margin-top: -50px;
  }
}
.talk_video.video_hidden .talk_video_overlay .talk_video_play_button > img {
  margin: 0 auto;
  padding: 0;
  display: block;
  max-width: 100px;
}
.talk_video.video_hidden .talk_video_overlay .talk_video_play_button:hover {
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -moz-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.talk_video.video_hidden .talk_video_details {
  position: absolute;
  bottom: 0;
  color: #2B2B2B;
  right: 0;
  margin-top: -18px;
  width: 100%;
  z-index: 1;
  padding: 30px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f0f0f0+0,f0f0f0+100&0+0,1+52 */
  background: -moz-linear-gradient(top, rgba(240, 240, 240, 0) 0%, #f0f0f0 52%, #f0f0f0 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(240, 240, 240, 0) 0%, #f0f0f0 52%, #f0f0f0 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(240, 240, 240, 0) 0%, #f0f0f0 52%, #f0f0f0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f0f0f0', endColorstr='#f0f0f0',GradientType=0 );
  /* IE6-9 */
}
@media (max-width: 768px) {
  .talk_video.video_hidden .talk_video_details {
    position: static;
    padding: 20px;
    margin: 0;
  }
}
.talk_video.video_hidden .talk_video_wrapper {
  display: none;
}
.talk_video .talk_video_wrapper {
  display: block;
}
.talk_video .talk_video_overlay {
  display: none;
}
.talk_video .talk_video_details {
  padding: 18px;
}
.talk_video .video_meta {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .talk_video .video_meta {
    display: block;
  }
}
.talk_video .video_meta .share_video {
  padding: 5px;
}
.talk_video .video_meta .share_video .socials {
  margin: 0;
}
.talk_video .video_meta .share_video .socials .social_link {
  width: 32px;
  height: 32px;
}

.slick-prev, .slick-next,
.slick-prev:focus, .slick-next:focus {
  width: 34px;
  height: 34px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #E4E4E4;
  color: #2B2B2B;
  z-index: 2;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -moz-transition: background-color, cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
  -o-transition: background-color, cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
  -webkit-transition: background-color, cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
  transition: background-color, cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
}
.slick-prev:before, .slick-next:before,
.slick-prev:focus:before, .slick-next:focus:before {
  font-size: 0;
  line-height: 1;
  opacity: 1;
  width: 9px;
  height: 15px;
  background-repeat: no-repeat;
}
.slick-prev:hover, .slick-next:hover,
.slick-prev:focus:hover, .slick-next:focus:hover {
  background-color: #cbcbcb;
}

.slick-prev {
  left: -42px;
}
@media (max-width: 1117px) {
  .slick-prev {
    left: -25px;
  }
}
@media (max-width: 768px) {
  .slick-prev {
    left: -10px;
  }
}
.slick-prev:before {
  content: "\f104";
  background-image: url("../../images/front/slick_arrow_prev.png");
}

.slick-next {
  right: -42px;
}
@media (max-width: 1117px) {
  .slick-next {
    right: -25px;
  }
}
@media (max-width: 768px) {
  .slick-next {
    right: -10px;
  }
}
.slick-next:before {
  content: "\f105";
  background-image: url("../../images/front/slick_arrow_next.png");
}

[dir='rtl'] .slick-prev {
  left: -42px;
  right: auto;
}
@media (max-width: 1117px) {
  [dir='rtl'] .slick-prev {
    left: -25px;
  }
}
@media (max-width: 768px) {
  [dir='rtl'] .slick-prev {
    left: -10px;
  }
}
[dir='rtl'] .slick-prev:before {
  background-image: url("../../images/front/slick_arrow_prev.png");
}

[dir='rtl'] .slick-next {
  right: -42px;
  left: auto;
}
@media (max-width: 1117px) {
  [dir='rtl'] .slick-next {
    right: -25px;
  }
}
@media (max-width: 768px) {
  [dir='rtl'] .slick-next {
    right: -10px;
  }
}
[dir='rtl'] .slick-next:before {
  background-image: url("../../images/front/slick_arrow_next.png");
}

.slider {
  position: relative;
  background-color: #2B2B2B;
}
.slider .slide {
  height: 680px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
@media (max-width: 940px) {
  .slider .slide {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .slider .slide {
    height: 320px;
  }
}
.slider .slide .wrapper {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .slider .slide .wrapper {
    max-width: 78%;
    margin-right: auto;
    margin-left: auto;
  }
}
.slider h1 {
  font-size: 2.8em;
}
@media (max-width: 768px) {
  .slider h1 {
    font-size: 1.5em;
  }
}
.slider p {
  font-size: 22px;
}
@media (max-width: 768px) {
  .slider p {
    font-size: 1em;
  }
}
.slider .slick-prev, .slider .slick-next,
.slider .slick-prev:focus, .slider .slick-next:focus {
  background-color: transparent;
}
.slider .slick-prev:before, .slider .slick-next:before,
.slider .slick-prev:focus:before, .slider .slick-next:focus:before {
  width: 17px;
  height: 29px;
}
.slider .slick-prev {
  left: 42px;
}
@media (max-width: 768px) {
  .slider .slick-prev {
    left: 0;
  }
}
.slider .slick-prev:before {
  background-image: url("../../images/front/slick_arrow_prev_white.png");
}
.slider .slick-next {
  right: 42px;
}
@media (max-width: 768px) {
  .slider .slick-next {
    right: 0;
  }
}
.slider .slick-next:before {
  background-image: url("../../images/front/slick_arrow_next_white.png");
}
.slider [dir='rtl'] .slick-prev {
  left: 42px;
}
@media (max-width: 768px) {
  .slider [dir='rtl'] .slick-prev {
    left: 0;
  }
}
.slider [dir='rtl'] .slick-prev:before {
  background-image: url("../../images/front/slick_arrow_prev_white.png");
}
.slider [dir='rtl'] .slick-next {
  right: 42px;
}
@media (max-width: 768px) {
  .slider [dir='rtl'] .slick-next {
    right: 0;
  }
}
.slider [dir='rtl'] .slick-next:before {
  background-image: url("../../images/front/slick_arrow_next_white.png");
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #D8D8D8;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #D8D8D8;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .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-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .modal-sm {
    max-width: 600px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    max-width: 960px;
  }
}
.modal .close_modal {
  position: fixed;
  right: 32px;
  top: 32px;
  width: 50px;
  height: 50px;
  display: block;
  margin: 0;
  padding: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  z-index: 10;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 99999999;
}
@media (max-width: 768px) {
  .modal .close_modal {
    right: 0;
    top: 0;
  }
}
.modal .close_modal:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.modal .close_modal:before, .modal .close_modal:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: white;
}
.modal .close_modal:before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal .close_modal:after {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal .spinner {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
}

.modal_nav_tabs {
  display: -webkit-flex;
  display: flex;
}
.modal_nav_tabs li {
  -webkit-flex: 1;
  flex: 1;
}
.modal_nav_tabs li a, .modal_nav_tabs li span {
  display: block;
  padding: 18px 10px;
  font-weight: 500;
  text-align: center;
  color: white;
  position: relative;
}
.modal_nav_tabs li.active a:before, .modal_nav_tabs li.active span:before {
  bottom: -1px;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 8px;
  margin-left: -8px;
}

.radio_inline + .radio_inline {
  margin-right: 18px;
}

.radio {
  display: block;
  position: relative;
  padding-right: 26px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.5;
}
.radio.radio_inline {
  display: inline-block;
}
.radio.radio_right_answer, .radio.radio_wrong_answer {
  padding: 7px 33px 7px 7px;
  margin-right: 26px;
}
.radio.radio_right_answer:before, .radio.radio_wrong_answer:before {
  position: absolute;
  right: -22px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  font-family: "FontAwesome";
  height: 100%;
  width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 0;
}
.radio.radio_right_answer .checkmark, .radio.radio_wrong_answer .checkmark {
  top: 10px;
  right: 7px;
}
.radio.radio_right_answer {
  background-color: rgba(3, 149, 78, 0.2);
}
.radio.radio_right_answer:before {
  color: #03954E;
  content: "\f00c";
  border: 1px solid rgba(3, 149, 78, 0.4);
  background: rgba(3, 149, 78, 0.4);
}
.radio.radio_wrong_answer {
  background-color: rgba(221, 44, 0, 0.2);
}
.radio.radio_wrong_answer:before {
  color: #DD2C00;
  content: "\f00d";
  border: 1px solid rgba(221, 44, 0, 0.4);
  background: rgba(221, 44, 0, 0.4);
}

/* Hide the browser's default radio button */
.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio .checkmark {
  position: absolute;
  top: 6px;
  right: 0;
  height: 18px;
  width: 18px;
  background-color: white;
  border: 1px solid #D8D8D8;
  border-radius: 50%;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

/* On mouse-over, add a grey background color */
.radio:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio input:checked ~ .checkmark {
  background-color: #FFCB04;
  border-color: #FFCB04;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio .checkmark:after {
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.checkbox_inline + .checkbox_inline {
  margin-right: 18px;
}

.checkbox {
  display: block;
  position: relative;
  padding-right: 26px;
  /* margin-bottom: 12px; */
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  line-height: 1.5;
  text-align: right;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.checkbox_inline {
  display: inline-block;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox .checkmark {
  position: absolute;
  top: 6px;
  right: 0;
  height: 18px;
  width: 18px;
  background-color: white;
  border: 1px solid #D8D8D8;
  -moz-transition: background-color 0.3s, box-shadow 0.3s;
  -o-transition: background-color 0.3s, box-shadow 0.3s;
  -webkit-transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark {
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
  background-color: #FFCB04;
  border-color: #FFCB04;
}

.checkbox input:checked ~ .topic_content .topic_img {
  border-color: #FFCB04;
}

.checkbox input:checked ~ .topic_content .topic_name {
  color: #FFCB04 !important;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.select_wrapper {
  position: relative;
  cursor: pointer;
  width: 100%;
}
.select_wrapper.select-lg:after {
  line-height: 2.5;
}
.select_wrapper:after {
  content: '';
  width: 30px;
  position: absolute;
  left: 15px;
  top: 15px;
  bottom: 6px;
  padding: 0;
  position: absolute;
  pointer-events: none;
  text-align: center;
  vertical-align: middle;
  background: transparent url("../../images/front/if_ExpandMore_1031518.png") no-repeat 0 0;
}
.select_wrapper select {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .select_wrapper select {
    padding-right: 18px;
  }
}

.inline_form {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
.inline_form .form_row {
  max-width: 160px;
  min-width: 160px;
}

.inline_label .inline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 768px) {
  .inline_label .inline {
    display: block;
  }
}
.inline_label .inline .form_label {
  min-width: 130px;
}
@media (max-width: 768px) {
  .inline_label .inline .form_label {
    display: block;
    width: 100%;
  }
}
.inline_label .form_row_split:after {
  content: "";
  display: table;
  clear: both;
}
.inline_label .form_row_split .form_row {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .inline_label .form_row_split .form_row {
    display: block;
  }
}
.inline_label .form_row_split .form_row .form_label {
  display: block;
}
@media (max-width: 768px) {
  .inline_label .form_row_split .form_row .form_label {
    display: block;
    width: 100%;
  }
}
.inline_label .form_row_split .form_row .select_wrapper, .inline_label .form_row_split .form_row .form_input, .inline_label .form_row_split .form_row .datepicker_input, .inline_label .form_row_split .form_row > div {
  width: 100%;
}

.form_row_split {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .form_row_split {
    display: block;
  }
}
.form_row_split:after {
  content: "";
  display: table;
  clear: both;
}
.form_row_split .form_row {
  -webkit-flex: 1;
  flex: 1;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .form_row_split .form_row {
    width: 100%;
  }
}

.form_label {
  color: #2B2B2B;
  display: inline-block;
  margin: 5px;
  font-size: 14px;
  display: block;
  width: 100%;
}
.form_label.text_large {
  font-size: 16px;
}

.required,
.invalid-feedback {
  color: #DD2C00;
}

.form_static .form_row {
  padding: 5px 7px;
}

.form_row {
  padding: 5px;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .form_row {
    display: block;
  }
}
.form_row.form_submit {
  -webkit-flex-direction: row;
  flex-direction: row;
}
.form_row .select_wrapper, .form_row .form_input, .form_row .datepicker_input, .form_row > div {
  width: 100%;
}
.form_row.form_submit {
  padding-top: 24px;
  padding-bottom: 24px;
}
.form_row.form_submit.left {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.form_row.form_submit.right {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.form_input {
  display: block;
  width: 100%;
  height: 42px;
  padding: 7px 18px;
  outline: none;
  line-height: 1.5;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid #e5e5e5;
  -moz-transition: border-color 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: border-color 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: border-color 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: border-color 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.form_input:focus {
  border-color: #D8D8D8;
}
.form_input.form_input_lg {
  height: 46px;
  padding: .575rem 1rem !important;
  font-size: 18px;
  line-height: 1.5;
}
.form_input.disabled, .form_input [disabled="disabled"] {
  background-color: #ebebeb;
  color: #939393;
}
.form_input::-moz-placeholder {
  color: #c9c9c9;
  opacity: 1;
}
.form_input:-ms-input-placeholder {
  color: #c9c9c9;
}
.form_input::-webkit-input-placeholder {
  color: #c9c9c9;
}
.form_input::-ms-expand {
  border: 0;
  background-color: transparent;
}
.form_input[disabled], .form_input[readonly],
.form_input fieldset[disabled] .form_input {
  background-color: #eeeeee;
  opacity: 1;
}

.input_with_icon {
  position: relative;
}
.input_with_icon .form_input {
  padding-left: 30px;
}
.input_with_icon > i {
  position: absolute;
  left: 10px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #D8D8D8;
}

textarea.form_input {
  height: 200px;
  resize: none;
}

.form_input_static {
  display: block;
  width: 100%;
}

.form-control img,
.form_input img {
  max-width: 100%;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 40px;
  height: 40px;
}
.upload-btn-wrapper .button_upload {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid gray;
  color: #2B2B2B;
  background-color: white;
  text-align: center;
  cursor: pointer;
  border: 3px solid #f0f0f0;
}
.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  right: 0;
  cursor: pointer;
  top: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #244092;
  background-color: #244092;
  transition: all 0.2s ease;
  margin-left: 5px;
  vertical-align: middle;
}

.cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #244092;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}

.cbx span:last-child {
  padding-left: 8px;
}

.cbx:hover span:first-child {
  border-color: #244092;
}

.inp-cbx:checked + .cbx span:first-child {
  background: #244092;
  border-color: #244092;
  animation: wave 0.4s ease;
}

.inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

@keyframes wave {
  50% {
    transform: scale(0.9);
  }
}
.radio {
  position: relative;
}
.radio input {
  display: none;
}
.radio input:checked + label:after {
  transform: scale(1);
  opacity: 1;
}
.radio label {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-top: -15px;
  padding-right: 30px;
  display: inline-block;
  position: relative;
  color: #2B2B2B;
  cursor: pointer;
}
.radio label:before {
  width: 20px;
  height: 20px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  background: transparent;
  border: 2px solid #244092;
  margin-top: -6px;
}
.radio label:after {
  background: #244092;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  top: 50%;
  transition: .3s;
  transform: scale(3.4);
  opacity: 0;
  margin-top: -2px;
  width: 12px;
  height: 12px;
  content: '';
  position: absolute;
  right: 4px;
}

.date {
  position: relative;
}
.date:before {
  content: "\f073";
  position: absolute;
  font-family: "FontAwesome";
  font-size: 16px;
  color: #a0a0a0;
  display: block;
  left: 18px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input[type="checkbox"] {
  display: none;
}
.switch input[type="checkbox"]:checked + .slider,
.switch input[type="checkbox"]:focus + .slider {
  background-color: #244092;
}
.switch input[type="checkbox"]:checked + .slider:after {
  -moz-transform: translateX(-26px);
  -ms-transform: translateX(-26px);
  -webkit-transform: translateX(-26px);
  transform: translateX(-26px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -moz-transition: background-color 500ms ease-in-out;
  -o-transition: background-color 500ms ease-in-out;
  -webkit-transition: background-color 500ms ease-in-out;
  transition: background-color 500ms ease-in-out;
}
.switch .slider.round {
  -moz-border-radius: 34px;
  -webkit-border-radius: 34px;
  border-radius: 34px;
}
.switch .slider.round:before {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.switch .slider:after {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  right: 4px;
  bottom: 4px;
  display: block;
  -moz-border-radius: 34px;
  -webkit-border-radius: 34px;
  border-radius: 34px;
  background-color: white;
  -moz-transition: -moz-transform 500ms ease-in-out;
  -o-transition: -o-transform 500ms ease-in-out;
  -webkit-transition: -webkit-transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-modal-dialog, .vjs-modal-dialog .vjs-modal-dialog-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button > .vjs-icon-placeholder:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABBIAAsAAAAAGoQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3RY21hcAAAAYQAAADQAAADIjn098ZnbHlmAAACVAAACv4AABEIAwnSw2hlYWQAAA1UAAAAKwAAADYV1OgpaGhlYQAADYAAAAAbAAAAJA4DByFobXR4AAANnAAAAA8AAACE4AAAAGxvY2EAAA2sAAAARAAAAEQ9NEHGbWF4cAAADfAAAAAfAAAAIAEyAIFuYW1lAAAOEAAAASUAAAIK1cf1oHBvc3QAAA84AAABDwAAAZ5AAl/0eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGQ7xTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGBHcRdyA4RZgQRAC4HCwEAAHic7dFprsIgAEXhg8U61XmeWcBb1FuQP4w7ZQXK5boMm3yclFDSANAHmuKviBBeBPQ8ymyo8w3jOh/5r2ui5nN6v8sYNJb3WMdeWRvLji0DhozKdxM6psyYs2DJijUbtuzYc+DIiTMXrty4k8oGLb+n0xCe37ekM7Z66j1DbUy3l6PpHnLfdLO5NdSBoQ4NdWSoY9ON54mhdqa/y1NDnRnq3FAXhro01JWhrg11Y6hbQ90Z6t5QD4Z6NNSToZ4N9WKoV0O9GerdUJORPqkhTd54nJ1YDXBU1RV+576/JBs2bPYPkrDZt5vsJrv53V/I5mclhGDCTwgGBQQSTEji4hCkYIAGd4TGIWFAhV0RQTpWmQp1xv6hA4OTOlNr2zFANbHUYbq2OtNCpViRqsk+e+7bTQAhzti8vPfuPffcc88959zznbcMMPjHD/KDDGEY0ABpYX384NhlomIYlo4JISGEY9mMh2FSidYiqkEUphtNYDSY/dXg9023l4DdxlqUl0chuZRhncJKrsCQHIwcGuwfnhMIzBnuH4Sym+1D2zaGjheXlhYfD238z80mKYMmvJ5XeOTzd8z9eujbMxJNhu4C9xPE/bCMiDuSNIWgkTQwBE55hLSAE7ZwhrHLnAHZOGV/kmBGTiNjZxzI77Hb7Hqjz68TjT6vh+5JT/cCIkqS0D6CqPf5jX4Qjdx5j6vlDfZM4aZFdbVXIxtOlJaP/WottMnH6CJQ3bTiue3PrY23HjnChtuamxwvvzFjxkPrNj3z0tG9T561HDYf6OgmRWvlY3JQHoQb8ltV2Yet7YfWctEjR1AtxS/cSX6U4alf6NJEBQ7YKg9wrXQKd0IeZCb2ux75Uhh1Un+Nz+9LTOE7PK777nN5xqdTneTBhCbx446mZrhnUkrCz2YhA9dSMxaG0SYmT8hi9ZPu1E94PJYQSH6LRmhxec7Q7ZeXntgQuVpbh+a4qWNsckVyTdn0P7o7DpgPW84+uRcq0BITflBikGdUjAZ9wYBVI3mtrNvr9kpg1UsaK6t3690aoorC1lg0GpMH2HAMtkZjsSi5Ig9ESVosOh7GQfLjKNLvKpMKkLSKNFAka710GdgSi8oDMSoNhqjkKBXTgn3swtaxyzGkUzIzae9RtLdWkSlZ1KDX6EzgllzV4NV4SoDFSOGD4+HCeQUF8wrZ5Hs8zIb5EaVxy8DYFTbMCJPnLIWZxugZE2NlivC0gc1qEQUR8jEKgZcAXeH18BiCgl5nlHh0CrjB4Hb5fX4gb0J7c9PuHVsfgkx2n/vTY/JV8kn8PGxf7faOZ8qX8JVByuIf4whk9sqXli2hvPJV9hrp0hY7l8r2x37ydaVsb4xvXv/47v2NjfCl8m5oRDJclFMoE1yk0Uh1Te4/m8lFXe9qBZD0EkheicebXvzI2PLCuoKCukLuhPIeKwaHPEouxw3kMqaIUXDQ1p0mip+MyCORSCQaoUsnY1VZ38nUTrG21WvVo4f1OsEJFhvSfAFwGfT8VHRMeAVUpwLOoLzjT/REIj3O3FhuURE+nERF+0pTId5Fyxv5sfwGyg4O+my4vZv0sZm7oeQlFZORiB+tG0MweVNraeitl7yxiPIHTk4/diVxs94o5lEYishB2iAtkchEnsActoEpx44Fo8XnsQMaA22BlqC20RmhBKzYojZyYaxg+JggMc4HHY2m+L9EkWSYljirOisrO7d3VorxzyZ6Vc4lJqITAu1b2wOBdrLElAP+bFc2eGaZFVbkmJktv5uT6Jlz5D/MnBFor6ig/JPnRViBsV3LNKGGqB1ChJ0tgQywlVLFJIuQgTFttwkiKxhyQdAZMdMYtSaoAewqfvXVYPAbDT6/1mez85YS8FSDywQ6NfAnef6FNEGMilnppyvn5rB6tTyq1pOceRWnp2WJEZFXHeX5oyoem1nTTgdqc4heDY7bOeKz63vnz+/dRx+s31Ht2JGanQ5seirfWJL9tjozU/12TnEjn5oux9OzU3ckGbBzBwNOyk69JykKH0n/0LM9A72tuwM3zQpIRu4AxiToseEpgPOmbROyFe9/X2yeUvoUsCyEvjcgs7fpWP3/aKlFN0+6HFUe6D9HFz/XPwBlN9tTqNyZjFJ8UO2RUT5/h4CptCctEyeisnOyXjALEp7dXKaQKf6O7IMnGjNNACRMLxqdYJX8eMLvmmd68D+ayBLyKKYZwYxDt/GNhzETDJ05Qxlyi3pi3/Z93ndYVSumgj0V/KkIFlO6+1K3fF2+3g0q+YtuSIf0bvmLqV09nnobI6hwcjIP8aPCKayjsF5JBY3LaKAeRLSyYB1h81oTwe9SlPMkXB7G0mfL9q71gaqqwPqu67QRKS1+ObTx+sbQy9QV2OQHEScGkdFBeT7v7qisqqrs6N52i78/R+6S0qQONVj26agOVoswCyQWIV5D86vH53bxNUeXV0K+XZaHv/nm/KsHhOvylwsWnJX/HE8l/4WCv5x+l5n08z6UU8bUMa3MBpSmM7F63AxntdC9eBCKEZW9Hr+ABNqtxgAQrSbMtmrW7lKQuoSgBhSrTazWVU2QAKWY8wiiuhqFmQgWJBgoXiuWIm42N7hqZbBsgXz52O5P5uSvaNgFGnOuvsRw8I8Laha91wMvDuxqWFheN7/8GVtTltdS83DQsXRmqc5ZtcJXEVrlV2doTWk5+Yunm71dG5f55m/qY0MjI93vv9/NfpxXV9sUXrxy2fbNy1or65cOlDRnOoKFeeXcbw42H/bNDT5Qs3flgs31gWC1lD1nfUV/X7NdCnSUdHY2e8afzfKsqZ5ZljfDqjLOmk3UebNXB+aHArPYDRs+/HDDxeT5DiP+sFg7OpRaVQMGBV89PpeBdj22hCE0Uub0UqwLrNWsG0cuyadgLXTeR5rbO4+3c/vl15cur2nRq+TXCQDcS3SO+s6ak+e5/eMS+1dw3btu3YG2tvFL8XdIZvdjdW6TO/4B7IdrZWVPmctm5/59AgsPItTSbCiIBr2OqIGzmu20SMKAS7yqwGBUfGfgjDYlLLDeF0SfcLB2LSx8flT+08/kzz6yOj96rft4rpTjdPQcmLd47uKibbDq7ZSz/XtbH2nN717Nd62rU+c8Icevvv7I09wA6WvjVcafb+FsbNG+ZQ80Rn6ZZsvrP7teP2dzTdoETvNhjCmsr8FID2sJ69VYvdUcxk4AzYRlKcaE38eXNRlfW9H1as9i6acLHp1XpuNB5K7DIvkX08y1ZYvh3KfWaiCzH+ztrSDmD7LuX73x/mJelB8Yj39t8nhNQJJ2CAthpoFGLsGgtSOCJooCGoaJAMTjSWHVZ08YAa1Fg9lPI5U6DOsGVjDasJeZZ+YyhfCwfOzCxlBA69M9XLXtza7H/rav+9Tjq5xNi0wpKQIRNO4Lrzz7yp5QVYM6Jd/oc1Uvn/mQhhuWh6ENXoS2YTZ8QT42bF5d/559zp5r0Uff2VnR2tdf2/WCOd2cO0Mw6qpWPnvxpV0nrt5fZd2yItc199GWe8vlNfNDq+CH/7yAAnB9hn7T4QO4c1g9ScxsZgmzntnE/IDGndtHMw69lFwoCnYsMGx+rBp8JSBqdLzBr9QRPq/PbhWMWFtQZp1xguy/haw3TEHm3TWAnxFWQQWgt7M5OV0lCz1VRYucpWliy7z6Zd4urwPIyeZQqli2Lgg7szJV09PysATbOQtYIrB2YzbkJYkGgJ0m4AjPUap1pvYu1K9qr97z0Yl3p332b2LYB78ncYIlRkau/8GObSsOlZancACE5d5ily+c2+7h5Yj4lqhVmXXB+iXLfvdqSgqfKtQvfHDV0OnvQR1qhw42XS/vkvsh/hXcrDFP0a+SJNIomEfD1nsrYGO+1bgTOJhM8Hv6ek+7vVglxuSRwoKn17S937bm6YJCeSSG0Op1n+7tE37tcZ/p7dsTv4EUrGpDbWueKigsLHhqTVsoEj+JU0kaSjnj9tz8/gryQWwJ9BcJXBC/7smO+I/IFURJetFPrdt5WcoL6DbEJaygI8CTHfQTjf40ofD+DwalTqIAAHicY2BkYGAA4gDud4bx/DZfGbjZGUDg+q1z05BpdkawOAcDE4gCAB45CXEAeJxjYGRgYGcAARD5/z87IwMjAypQBAAtgwI4AHicY2BgYGAfYAwAOkQA4QAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhHicY2BkYGBQZChlYGcAASYg5gJCBob/YD4DABfTAbQAeJxdkE1qg0AYhl8Tk9AIoVDaVSmzahcF87PMARLIMoFAl0ZHY1BHdBJIT9AT9AQ9RQ9Qeqy+yteNMzDzfM+88w0K4BY/cNAMB6N2bUaPPBLukybCLvleeAAPj8JD+hfhMV7hC3u4wxs7OO4NzQSZcI/8Ltwnfwi75E/hAR7wJTyk/xYeY49fYQ/PztM+jbTZ7LY6OWdBJdX/pqs6NYWa+zMxa13oKrA6Uoerqi/JwtpYxZXJ1coUVmeZUWVlTjq0/tHacjmdxuL90OR8O0UEDYMNdtiSEpz5XQGqzlm30kzUdAYFFOb8R7NOZk0q2lwAyz1i7oAr1xoXvrOgtYhZx8wY5KRV269JZ5yGpmzPTjQhvY9je6vEElPOuJP3mWKnP5M3V+YAAAB4nG2PyXLCMBBE3YCNDWEL2ffk7o8S8oCnkCVHC5C/jzBQlUP6IHVPzYyekl5y0iL5X5/ooY8BUmQYIkeBEca4wgRTzDDHAtdY4ga3uMM9HvCIJzzjBa94wzs+8ImvZNAq8TM+HqVkKxWlrQiOxjujQkNlEzyNzl6Z/cU2XF06at7U83VQyklLpEvSnuzsb+HAPnPfQVgaupa1Jlu4sPLsFblcitaz0dHU0ZF1qatjZ1+aTXYCmp6u0gSvWNPyHLtFZ+ZeXWVSaEkqs3T8S74WklbGbNNNq4LL4+CWKtZDv2cfX8l8aFbKFhEnJnJ+IULFpqwoQnNHlHaVQtPBl+ypmbSWdmyC61KS/AKZC3Y+AA==) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.vjs-icon-play, .video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder:before {
  content: "\f101";
}

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play-circle:before {
  content: "\f102";
}

.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
  content: "\f103";
}

.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: "\f104";
}

.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
  content: "\f105";
}

.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
  content: "\f106";
}

.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: "\f107";
}

.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f108";
}

.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f109";
}

.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-square:before {
  content: "\f10a";
}

.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-spinner:before {
  content: "\f10b";
}

.vjs-icon-subtitles, .video-js .vjs-subtitles-button .vjs-icon-placeholder, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-subtitles:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before {
  content: "\f10c";
}

.vjs-icon-captions, .video-js .vjs-captions-button .vjs-icon-placeholder, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-captions:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before {
  content: "\f10d";
}

.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
  content: "\f10e";
}

.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-share:before {
  content: "\f10f";
}

.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cog:before {
  content: "\f110";
}

.vjs-icon-circle, .video-js .vjs-play-progress, .video-js .vjs-volume-level {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle:before, .video-js .vjs-play-progress:before, .video-js .vjs-volume-level:before {
  content: "\f111";
}

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-outline:before {
  content: "\f112";
}

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-inner-circle:before {
  content: "\f113";
}

.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-hd:before {
  content: "\f114";
}

.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
  content: "\f115";
}

.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
  content: "\f116";
}

.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-facebook:before {
  content: "\f117";
}

.vjs-icon-gplus {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-gplus:before {
  content: "\f118";
}

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-linkedin:before {
  content: "\f119";
}

.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-twitter:before {
  content: "\f11a";
}

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-tumblr:before {
  content: "\f11b";
}

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pinterest:before {
  content: "\f11c";
}

.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
  content: "\f11d";
}

.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
  content: "\f11e";
}

.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-next-item:before {
  content: "\f11f";
}

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-previous-item:before {
  content: "\f120";
}

.video-js {
  display: block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial;
}

.video-js:-moz-full-screen {
  position: absolute;
}

.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}

.video-js[tabindex="-1"] {
  outline: none;
}

.video-js *,
.video-js *:before,
.video-js *:after {
  box-sizing: inherit;
}

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3 {
  width: 100%;
  max-width: 100%;
  height: 0;
}

.video-js.vjs-16-9 {
  padding-top: 56.25%;
}

.video-js.vjs-4-3 {
  padding-top: 75%;
}

.video-js.vjs-fill {
  width: 100%;
  height: 100%;
}

.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
}

.vjs-full-window .video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.video-js.vjs-fullscreen {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

.vjs-hidden {
  display: none !important;
}

.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC;
}

.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 2em;
  height: 2em;
  width: 2em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  background-color: rgba(255, 203, 4, 0.7);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  transition: all 0.4s;
}

.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -0.75em;
  margin-left: -1.5em;
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: rgba(255, 203, 4, 0.5);
  background-color: rgba(255, 203, 4, 0.5);
  transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block;
}

.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}

.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}

.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

.vjs-menu-button {
  cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
  cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}

.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}

.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}

.vjs-menu li {
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2B333F;
}

.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}

.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7);
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}

.vjs-workinghover .vjs-menu-button-popup:hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}

.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto;
}

.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  width: auto;
}

.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3.0em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.vjs-has-started .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table;
}

.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}

.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white;
}

.video-js .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle;
}

.video-js .vjs-custom-control-spacer {
  display: none;
}

.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}

.video-js .vjs-progress-control.disabled {
  cursor: default;
}

.vjs-live .vjs-progress-control {
  display: none;
}

.vjs-no-flex .vjs-progress-control {
  width: auto;
}

.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.666666666666666666em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}

.video-js .vjs-play-progress {
  background-color: #fff;
}

.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  top: -0.333333333333333em;
  z-index: 1;
}

.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75);
}

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}

.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari */
  -webkit-user-select: none;
  /* Konqueror HTML */
  /* Firefox */
  -moz-user-select: none;
  /* Internet Explorer/Edge */
  -ms-user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  user-select: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-slider.disabled {
  cursor: default;
}

.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff;
}

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}

.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}

.video-js .vjs-volume-panel {
  transition: width 1s;
}

.video-js .vjs-volume-panel:hover .vjs-volume-control,
.video-js .vjs-volume-panel:active .vjs-volume-control,
.video-js .vjs-volume-panel:focus .vjs-volume-control,
.video-js .vjs-volume-panel .vjs-volume-control:hover,
.video-js .vjs-volume-panel .vjs-volume-control:active,
.video-js .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}

.video-js .vjs-volume-panel:hover .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control:hover.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: 9em;
  transition: width 0.1s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3.5em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: none;
}

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  position: absolute;
  bottom: 3em;
  left: 0.5em;
}

.video-js .vjs-volume-panel {
  display: flex;
}

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}

.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}

.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
}

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}

.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
}

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}

.vjs-slider-horizontal .vjs-volume-level:before {
  top: -0.3em;
  right: -0.5em;
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}

.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.vjs-has-started .vjs-poster {
  display: none;
}

.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}

.vjs-using-native-controls .vjs-poster {
  display: none;
}

.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

.vjs-no-flex .vjs-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-live .vjs-time-control {
  display: none;
}

.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time {
  display: none;
}

.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
  display: none;
}

.vjs-time-divider {
  display: none;
  line-height: 3em;
}

.vjs-live .vjs-time-divider {
  display: none;
}

.video-js .vjs-play-control .vjs-icon-placeholder {
  cursor: pointer;
  flex: none;
}

.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}

.vjs-subtitles {
  color: #fff;
}

.vjs-captions {
  color: #fc6;
}

.vjs-tt-cue {
  display: block;
}

video::-webkit-media-text-track-display {
  -webkit-transform: translateY(-3em);
  transform: translateY(-3em);
}

.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  -webkit-transform: translateY(-1.5em);
  transform: translateY(-1.5em);
}

.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}

.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}

.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

.vjs-error .vjs-error-display:before {
  color: #fff;
  content: 'X';
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}

.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 6px solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  visibility: hidden;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
  -webkit-animation: 0s linear 0.3s forwards vjs-spinner-show;
  animation: 0s linear 0.3s forwards vjs-spinner-show;
}

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: white;
  -webkit-animation-delay: 0.44s;
  animation-delay: 0.44s;
}

@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@-webkit-keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@keyframes vjs-spinner-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes vjs-spinner-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}
@-webkit-keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}
.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "\f10d";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " \f11d";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}

.video-js.vjs-layout-tiny:not(.vjs-fullscreen).vjs-no-flex .vjs-custom-control-spacer {
  width: auto;
}

.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-current-time, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-time-divider, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-duration, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-playback-rate, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-progress-control,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-mute-control, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-control, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-panel,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-chapters-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-descriptions-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-subtitles-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-subs-caps-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-audio-button {
  display: none;
}

.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-current-time, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-time-divider, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-duration, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-playback-rate,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-mute-control, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-control, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-panel,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-chapters-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-descriptions-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-subtitles-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-subs-caps-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-audio-button {
  display: none;
}

.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-current-time, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-time-divider, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-duration, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-playback-rate,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-mute-control, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-volume-control, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-volume-panel,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-chapters-button, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-descriptions-button, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-subtitles-button, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-audio-button {
  display: none;
}

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell;
}

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
  }

  .vjs-text-track-settings .vjs-track-settings-colors {
    display: block;
    grid-column: 1;
    grid-row: 1;
  }

  .vjs-text-track-settings .vjs-track-settings-font {
    grid-column: 2;
    grid-row: 1;
  }

  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 2;
    grid-row: 2;
  }
}
.vjs-track-setting > select {
  margin-right: 5px;
}

.vjs-text-track-settings fieldset {
  margin: 5px;
  padding: 3px;
  border: none;
}

.vjs-text-track-settings fieldset span {
  display: inline-block;
}

.vjs-text-track-settings legend {
  color: #fff;
  margin: 0 0 5px 0;
}

.vjs-text-track-settings .vjs-label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #ffffff 88%, #73859f 100%);
}

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #ffffff 88%, #73859f 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px;
}

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}

@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}
.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}

.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
}

.video-js *:focus:not(:focus-visible) {
  outline: none;
}

.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
}

.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: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  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: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  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: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.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 {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: right;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #2B2B2B;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.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: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.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: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  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;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.account {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .account {
    display: block;
  }
}
.account .account_aside {
  width: 270px;
  margin-left: 30px;
  padding: 18px 0;
}
@media (max-width: 768px) {
  .account .account_aside {
    margin: 0 0 24px;
    width: 100%;
  }
}
.account .account_aside h1, .account .account_aside h2, .account .account_aside h3, .account .account_aside h4, .account .account_aside h5, .account .account_aside h6 {
  padding: 0 18px;
}
.account .account_aside ul li {
  display: block;
}
.account .account_aside ul li a {
  font-size: 18px;
  padding: 10px 18px;
  display: block;
  color: #2B2B2B;
}
.account .account_aside ul li.active a {
  color: #244092;
  background-color: #e3e3e3;
}
.account .account_content {
  -webkit-flex: 1;
  flex: 1;
}
@media (max-width: 768px) {
  .account .account_content {
    width: 100%;
  }
}
.account .account_content .account_content__header {
  padding: 12px 18px;
}
.account .account_content .account_content__body {
  border-top: 1px solid #dddddd;
  padding: 30px 18px;
}
.account .account_content .account_content__body .form_input {
  background-color: #f0f0f0;
  height: 46px;
  border-color: #D8D8D8;
}
.account .account_content .account_content__body .form_input.disabled, .account .account_content .account_content__body .form_input [disabled="disabled"] {
  background-color: #ebebeb;
  color: #939393;
}
.account .account_content .account_content__body .form_input:hover {
  background-color: #f9f9f9;
}
.account .account_content .account_content__body .account_content__flex {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .account .account_content .account_content__body .account_content__flex {
    display: block;
  }
}
.account .account_content .account_content__body .account_content__flex .upload_avatar {
  position: absolute;
  left: 14px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .account .account_content .account_content__body .account_content__flex .upload_avatar {
    display: block;
    margin-bottom: 28px;
    padding-bottom: 28px;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    position: static;
    border-bottom: 1px solid #D8D8D8;
  }
}
.account .account_content .account_content__body .account_content__flex > div:first-child {
  width: 340px;
}
@media (max-width: 768px) {
  .account .account_content .account_content__body .account_content__flex > div:first-child {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .account .account_content .account_content__body .account_content__flex > div:last-child {
    width: 100%;
  }
}

.profile_info .profile_info_header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .profile_info .profile_info_header {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.profile_info .profile_info_header .profile_info_avatar {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.profile_info .profile_info_header .profile_info_avatar img {
  margin-left: 12px;
}
.profile_info .profile_info_header .profile_info_statics {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.profile_info .profile_info_header .profile_info_statics > div {
  padding: 10px;
  text-align: center;
  line-height: 1;
  margin-right: 24px;
}
@media (max-width: 768px) {
  .profile_info .profile_info_header .profile_info_statics > div {
    margin: 7px;
    padding: 5px;
  }
}
.profile_info .profile_info_header .profile_info_statics .profile_info_statics_name_icon {
  font-size: 42px;
}
@media (max-width: 768px) {
  .profile_info .profile_info_header .profile_info_statics .profile_info_statics_name_icon {
    font-size: 30px;
  }
}
.profile_info .profile_info_header .profile_info_statics .profile_info_statics_number {
  font-size: 30px;
  font-weight: 500;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .profile_info .profile_info_header .profile_info_statics .profile_info_statics_number {
    font-size: 22px;
  }
}
.profile_info .profile_info_header .profile_info_statics .profile_info_statics_name {
  font-size: 14px;
}
@media (max-width: 768px) {
  .profile_info .profile_info_header .profile_info_statics .profile_info_statics_name {
    font-size: 13px;
  }
}
.profile_info .profile_info_nav {
  margin-top: 30px;
}
.profile_info .profile_info_nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .profile_info .profile_info_nav ul {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.profile_info .profile_info_nav ul li {
  margin: 0 7px;
}
@media (max-width: 768px) {
  .profile_info .profile_info_nav ul li {
    margin: 0;
  }
}
.profile_info .profile_info_nav ul li a {
  padding: 14px 14px;
  color: white;
  display: block;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 5px solid transparent;
}
@media (max-width: 768px) {
  .profile_info .profile_info_nav ul li a {
    padding: 12px 3px;
    font-size: 14px;
  }
}
.profile_info .profile_info_nav ul li.selected a {
  border-color: #FFCB04;
}

.certificate_list .item {
  padding: 18px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  padding-right: 70px;
  margin-bottom: 12px;
  border: 1px solid #D8D8D8;
}
@media (max-width: 768px) {
  .certificate_list .item {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding-right: 60px;
  }
}
@media (max-width: 768px) {
  .certificate_list .item > div:first-child {
    margin-bottom: 12px;
  }
}
.certificate_list .item .item_icon {
  font-size: 24px;
  width: 50px;
  position: absolute;
  right: 20px;
}
@media (max-width: 768px) {
  .certificate_list .item .item_icon {
    right: 18px;
    width: 40px;
  }
}
.certificate_list .item .item_name {
  margin: 0;
  font-weight: normal;
  display: inline-block;
}

.about_instructor {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .about_instructor {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.about_instructor .about_column {
  width: 48%;
}
@media (max-width: 768px) {
  .about_instructor .about_column {
    width: 100%;
    margin-bottom: 14px;
  }
}

.contact {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .contact {
    display: block;
  }
}
.contact > div {
  width: 48%;
}
@media (max-width: 768px) {
  .contact > div {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contact > div:first-child {
    margin-bottom: 36px;
  }
}
.contact .form_row .form_input {
  background-color: #f7f7f7;
}
.contact .contact_info .contact_info_row {
  padding: 10px 0;
  padding-right: 30px;
  position: relative;
}
.contact .contact_info .contact_info_row i {
  position: absolute;
  right: 0;
  top: 24px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px;
  color: #244092;
}
.contact .contact_map {
  width: 100%;
  height: 350px;
}
@media (max-width: 768px) {
  .contact .contact_map {
    height: 200px;
  }
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
}
.alert.floated_alert {
  position: fixed;
  max-width: 300px;
  z-index: 999;
  -moz-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.09);
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.09);
}
@media (max-width: 768px) {
  .alert.floated_alert {
    position: static;
    width: 100%;
    box-shadow: none;
    max-width: 100%;
  }
}
.alert.floated_alert.top_left {
  top: 20px;
  left: 20px;
}
.alert.floated_alert.top_right {
  top: 20px;
  right: 20px;
}
.alert.floated_alert.bottom_left {
  bottom: 20px;
  left: 20px;
}
.alert.floated_alert.bottom_right {
  bottom: 20px;
  right: 20px;
}
.alert .close:not(:disabled):not(.disabled):hover {
  color: white;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-left: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.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: white;
  background-color: #03954E;
  border-color: #03954E;
}

.alert-success hr {
  border-top-color: #05f982;
}

.alert-success .alert-link {
  color: white;
}

.alert-info {
  color: white;
  background-color: #E45252;
  border-color: #980217;
}

.alert-info hr {
  border-top-color: #42b7e7;
}

.alert-info .alert-link {
  color: white;
}

.alert-warning {
  color: white;
  background-color: #F57F17;
  border-color: #F57F17;
}

.alert-warning hr {
  border-top-color: #f9b579;
}

.alert-warning .alert-link {
  color: white;
}

.alert-danger {
  color: white;
  background-color: #DD2C00;
  border-color: #DD2C00;
}

.alert-danger hr {
  border-top-color: #ff6944;
}

.alert-danger .alert-link {
  color: white;
}

.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;
}

.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, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  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: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}

.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  border-width: 0.5rem 0.5rem 0;
}

.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  bottom: 1px;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

.bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  border-width: 0.5rem 0.5rem 0.5rem 0;
}

.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  left: 1px;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow {
  top: calc((0.5rem + 1px) * -1);
}

.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  border-width: 0 0.5rem 0.5rem 0.5rem;
}

.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  top: 1px;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

.bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  border-width: 0.5rem 0 0.5rem 0.5rem;
}

.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  right: 1px;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.jq-stars {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  direction: ltr;
  margin-top: -14px;
}

.jq-rating-label {
  font-size: 22px;
  display: inline-block;
  position: relative;
  vertical-align: top;
  font-family: helvetica, arial, verdana;
}

.jq-star {
  width: 100px;
  height: 100px;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.jq-star-svg {
  padding-left: 3px;
  width: 100%;
  height: 100%;
}

.jq-star-svg path {
  /* stroke: #000; */
  stroke-linejoin: round;
}

/* un-used */
.jq-shadow {
  -webkit-filter: drop-shadow(-2px -2px 2px #888);
  filter: drop-shadow(-2px -2px 2px #888);
}

.p_wrapper {
  position: relative;
  min-height: 100%;
  /*padding-bottom: 54px;*/
}
.p_wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.modal-open .p_wrapper {
  filter: blur(8px);
}

.wrapper {
  max-width: 1340px;
  position: relative;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.wrapper.wrapper_sm {
  width: 70%;
  max-width: 1117px;
}
@media (max-width: 1117px) {
  .wrapper {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .wrapper {
    width: 100%;
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.main_content {
  min-height: 400px;
  /* padding-bottom: 70px; */
}

.layout {
  position: relative;
}
.layout.layout_sm {
  width: 50%;
}
@media (max-width: 940px) {
  .layout.layout_sm {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .layout.layout_sm {
    width: 100%;
  }
}

.title {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.title h1, .title h2, .title h3, .title h4 {
  font-size: 26px;
  /* font-weight: 500; */
}
.title i {
  font-size: 1.2rem;
}

.socials {
  margin: 24px auto 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  /* -webkit-justify-content: center;
  justify-content: center; */
}
@media (max-width: 768px) {
  .socials {
    display: block;
  }
  .socials > * {
    float: right;
  }
}
.socials:after {
  content: "";
  display: table;
  clear: both;
}
.socials.fixed {
  -webkit-flex-direction: column;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 768px) {
  .socials.fixed {
    display: none;
  }
}
.socials.fixed .social_link {
  width: 30px;
  height: 30px;
  font-size: 14px;
}
.socials .social_link {
  width: 36px;
  height: 36px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: white;
  margin: 2px 5px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.socials .social_link.social_facebook {
  background-color: #3b5998;
}
.socials .social_link.social_twitter {
  background-color: #1da1f2;
}
.socials .social_link.social_linkedin {
  background-color: #0073b1;
}
.socials .social_link.social_google, .socials .social_link.social_youtube {
  background-color: #e53935;
}
.socials .social_link.social_instegram {
  background-color: #fbad50;
}

.logo {
  margin-left: 14px;
}
@media (max-width: 1117px) {
  .logo {
    margin-left: 7px;
  }
}
.logo h1 {
  margin: 0;
  padding: 0;
}
.logo h1 a {
  display: block;
}
.logo h1 a img {
  -moz-transition: width 0.5s linear;
  -o-transition: width 0.5s linear;
  -webkit-transition: width 0.5s linear;
  transition: width 0.5s linear;
  max-width: 100%;
  width: 70px;
  display: block;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .logo h1 a img {
    max-width: 50px;
  }
}

.is_stuck .logo img {
  max-width: 80%;
}

.sec {
  position: relative;
}
.sec.sec_pad_top {
  padding-top: 30px;
}
.sec.sec_pad_bottom {
  padding-bottom: 30px;
}
.sec.sec_pad_top_sm {
  padding-top: 24px;
}
.sec.sec_pad_bottom_sm {
  padding-bottom: 24px;
}
.sec.sec_pad_top_lg {
  padding-top: 50px;
}
.sec.sec_pad_bottom_lg {
  padding-bottom: 50px;
}

.list_dash li {
  position: relative;
  padding-right: 20px;
  margin: 7px 0;
}
.list_dash li:before {
  /* content: "\f068";
  font-family: "FontAwesome";
  font-size: 10px;
  color: #a0a0a0;
  display: block;
  position: absolute;
  right: 0;
  top: 7px; */
}

.dropdown + .dropdown {
  margin-right: 10px;
}

.dropdown {
  display: inline-block;
}

.pagination {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.pagination:after {
  content: "";
  display: table;
  clear: both;
}
.pagination li {
  margin: 2px 3px;
}
.pagination li a {
  display: block;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #9B9B9B;
  color: #9B9B9B;
  font-size: 13px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
  -moz-transition: color, border, background 0.3s;
  -o-transition: color, border, background 0.3s;
  -webkit-transition: color, border, background 0.3s;
  transition: color, border, background 0.3s;
}
.pagination li:hover:not(.active) a, .pagination li:focus:not(.active) a {
  border-color: #cbcbcb;
  background-color: #e3e3e3;
}
.pagination li.active a {
  background-color: #244092;
  border-color: #244092;
  color: white;
  cursor: default;
}

.spinner {
  margin: 0 auto;
  width: 70px;
  text-align: center;
}
.spinner.white > div {
  background-color: white;
}
.spinner.yellow > div {
  background-color: #FFCB04;
}
.spinner > div {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  -moz-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  -ms-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  -moz-animation-delay: -0.32s;
  -ms-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  -moz-animation-delay: -0.16s;
  -ms-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.social {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
.social li a {
  padding: 5px 10px;
  color: white;
  display: block;
}

.lang {
  position: relative;
}
.lang a {
  color: white;
  display: block;
  font-weight: 500;
  padding: 5px 12px;
  text-decoration: none;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.lang a img {
  max-width: 17px;
  max-height: 17px;
  display: inline-block;
  margin-right: 5px;
}

.notifications {
  background-color: #f3f3f3;
}
.notifications .notifications_header {
  padding: 18px;
}

.notification_item {
  font-size: 16px;
  display: -webkit-flex;
  display: flex;
  color: #2B2B2B;
  border-top: 1px solid #D8D8D8;
  padding: 18px;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -moz-transition: background-color 200ms linear;
  -o-transition: background-color 200ms linear;
  -webkit-transition: background-color 200ms linear;
  transition: background-color 200ms linear;
}
.notification_item:hover {
  background-color: transparent;
}
.notification_item img {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  max-width: 50px;
  margin-left: 12px;
}

.upload-btn-wrapper {
  position: absolute;
  overflow: hidden;
  display: inline-block;
  width: 40px;
  height: 40px;
  top: -10px;
  right: -10px;
}
.upload-btn-wrapper .button_upload {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid gray;
  color: #2B2B2B;
  background-color: white;
  text-align: center;
  cursor: pointer;
  cursor: pointer;
  border: 3px solid #f0f0f0;
}
.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  right: 0;
  cursor: pointer;
  top: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.with_aside_flex {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .with_aside_flex {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.with_aside_flex.aside_sm .component_aside {
  max-width: 320px;
  min-width: 320px;
}
@media (max-width: 768px) {
  .with_aside_flex.aside_sm .component_aside {
    min-width: 100%;
    max-width: 100%;
  }
}
.with_aside_flex .component_aside {
  max-width: 380px;
  min-width: 380px;
  margin-right: 18px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .with_aside_flex .component_aside {
    min-width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
}
.with_aside_flex .component_main {
  -webkit-flex: 1;
  flex: 1;
  width: 100%;
}
.with_aside_flex .component_main_header,
.with_aside_flex .component_main_body {
  padding: 18px;
}
.with_aside_flex .component_main_header {
  padding: 12px 18px;
}
.with_aside_flex .component_main_body {
  border-top: 1px solid #dddddd;
  padding: 30px 18px;
}

.talks {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.talks.js_slick .item {
  max-width: none;
  margin: 0 12px;
}
.talks.js_slick .item > a:hover .talks_statics {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.talks.js_slick .item > a .talks_statics {
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: opacity 0.3s, -moz-transform 0.35s;
  -o-transition: opacity 0.3s, -o-transform 0.35s;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.35s;
  transition: opacity 0.3s, transform 0.35s;
  -moz-transition-delay: .17s;
  -webkit-transition-delay: .17s;
  transition-delay: .17s;
}
.talks .item {
  display: block;
  margin: 0 1% 28px;
  width: 18%;
}
@media (max-width: 1117px) {
  .talks .item {
    width: 31%;
  }
}
@media (max-width: 768px) {
  .talks .item {
    width: 48%;
  }
}
.talks .item a {
  display: block;
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  background-color: #244092;
  font-size: 20px;
}
.talks .item a.hover_active:hover .talks_statics {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.talks .item a.hover_active .talks_statics {
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: opacity 0.3s, -moz-transform 0.35s;
  -o-transition: opacity 0.3s, -o-transform 0.35s;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.35s;
  transition: opacity 0.3s, transform 0.35s;
  -moz-transition-delay: .17s;
  -webkit-transition-delay: .17s;
  transition-delay: .17s;
}
.talks .item a:hover .play_icon, .talks .item a.hover_active .play_icon {
  background-color: rgba(255, 203, 4, 0.4);
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.talks .item a:hover figure > img {
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.talks .item a:hover figcaption {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+14&0+0,0.65+65,0.65+65 */
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.26) 14%, rgba(0, 0, 0, 0.78) 65%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.26) 14%, rgba(0, 0, 0, 0.78) 65%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.26) 14%, rgba(0, 0, 0, 0.78) 65%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
  /* IE6-9 */
}
.talks .item a:hover figcaption h1, .talks .item a:hover figcaption h2, .talks .item a:hover figcaption h3, .talks .item a:hover figcaption h4, .talks .item a:hover figcaption h5, .talks .item a:hover figcaption h6 {
  -ms-transform: translate3d(0, -40px, 0);
  -moz-transform: translate3d(0, -40px, 0);
  -o-transform: translate3d(0, -40px, 0);
  -webkit-transform: translate3d(0, -40px, 0);
  transform: translate3d(0, -40px, 0);
}
.talks .item a:hover figcaption .instructor {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.talks .item a figure {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.talks .item a figure > img {
  max-width: 100%;
  width: calc(100% + 60px);
  display: block;
  margin: 0;
  padding: 0;
  backface-visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -moz-transition: opacity 0.35s, -moz-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -moz-transform: scale(1.15, 1.15);
  -ms-transform: scale(1.15, 1.15);
  -webkit-transform: scale(1.15, 1.15);
  transform: scale(1.15, 1.15);
}
.talks .item a figure figcaption {
  height: 100%;
  padding: 2em 1em;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
  /* IE6-9 */
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-backface-visibility: hidden;
  color: white;
  backface-visibility: hidden;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  text-align: center;
}
.talks .item a figure figcaption .play_icon {
  width: 28px;
  height: 28px;
  position: absolute;
  left: 10px;
  top: 20px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #FFCB04;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: background-color 0.5s, opacity 0.38s, -moz-transform 0.25s;
  -o-transition: background-color 0.5s, opacity 0.38s, -o-transform 0.25s;
  -webkit-transition: background-color 0.5s, opacity 0.38s, -webkit-transform 0.25s;
  transition: background-color 0.5s, opacity 0.38s, transform 0.25s;
  -moz--transform: translate3d(0, 20px, 0) scale(0.8);
  -webkit-transform: translate3d(0, 20px, 0) scale(0.8);
  transform: translate3d(0, 20px, 0) scale(0.8);
}
.talks .item a figure figcaption .play_icon i {
  font-size: 14px;
  color: white;
}
.talks .item a figure figcaption .instructor {
  position: absolute;
  right: 10px;
  top: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: opacity 0.3s, -moz-transform 0.35s;
  -o-transition: opacity 0.3s, -o-transform 0.35s;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.35s;
  transition: opacity 0.3s, transform 0.35s;
  -moz-transition-delay: .17s;
  -webkit-transition-delay: .17s;
  transition-delay: .17s;
}
.talks .item a figure figcaption .instructor img {
  max-width: 40px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: 5px;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.talks .item a figure figcaption .instructor > div {
  font-weight: 500;
  font-size: 13px;
  text-align: right;
}
.talks .item a figure figcaption .instructor > div span {
  display: block;
  margin: 0;
}
.talks .item a figure figcaption h1, .talks .item a figure figcaption h2, .talks .item a figure figcaption h3, .talks .item a figure figcaption h4, .talks .item a figure figcaption h5, .talks .item a figure figcaption h6 {
  position: absolute;
  width: 100%;
  right: 0;
  bottom: 10px;
  -moz-transition: -moz-transform 0.32s;
  -o-transition: -o-transform 0.32s;
  -webkit-transition: -webkit-transform 0.32s;
  transition: transform 0.32s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  word-spacing: -0.15em;
  font-weight: normal;
}
@media (max-width: 768px) {
  .talks .item a figure figcaption h1, .talks .item a figure figcaption h2, .talks .item a figure figcaption h3, .talks .item a figure figcaption h4, .talks .item a figure figcaption h5, .talks .item a figure figcaption h6 {
    bottom: 28px;
    font-size: 14px;
    font-weight: normal;
  }
}
.talks .item a .talks_statics {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  text-align: right;
  font-weight: 500;
  font-size: 13px;
  padding: 12px;
}
@media (max-width: 768px) {
  .talks .item a .talks_statics {
    font-size: 10px;
    font-weight: normal;
  }
}

.parallax {
  position: relative;
}
@media (max-width: 768px) {
  .parallax {
    display: none;
  }
}
.parallax .parallax-image {
  background-repeat: repeat !important;
  position: absolute !important;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  opacity: 0.2;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
}
.parallax .parallax-overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.parallax .parallax-content {
  position: relative;
  z-index: 3;
}
.parallax .parallax-content.parallax-pad {
  padding: 60px 0;
}
.parallax .parallax-content.parallax-xpad {
  padding: 42px 0;
}
.parallax .parallax-content.parallax-pad-sm {
  padding: 42px 0;
}

.join_instructor .form_input {
  background-color: #F0F0F0;
}
.join_instructor .form_input:focus {
  background-color: #f9f9f9;
}

.accordion_list .card {
  color: #2B2B2B;
  border: 1px solid #eaeaea;
  border-top: 0;
}
.accordion_list .card .card_header > button {
  text-align: right;
  padding: 18px;
  display: block;
  cursor: pointer;
  position: relative;
  border: 0;
  width: 100%;
  background-color: white;
  outline: 0;
}
.accordion_list .card .card_header > button:before {
  /* content: "\f068";
  position: absolute;
  left: 22px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "FontAwesome";
  font-size: 12px;
  color: #2B2B2B;
  display: block; */
}
.accordion_list .card .card_header > button.collapsed:before {
  /* content: "\f067"; */
}
.accordion_list .card .card_header > button .card_header_title {
  font-size: 18px;
  display: inline-block;
  max-width: 90%;
}
.accordion_list .card .card_header > button .timing {
  position: absolute;
  left: 50px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 90%;
}
.accordion_list .card .card_body .card_body_row {
  border-top: 1px solid #eaeaea;
  position: relative;
  padding: 12px 18px;
  padding-right: 30px;
  display: block;
  color: #244092;
  cursor: pointer;
  background-color: #FCFCFC;
  -moz-transition: background-color 0.3s linear;
  -o-transition: background-color 0.3s linear;
  -webkit-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
}
.accordion_list .card .card_body .card_body_row:hover {
  background-color: #F2F2F2;
}
.accordion_list .card .card_body .card_body_row.lock:hover {
  background-color: white;
  color: #787878;
  cursor: default;
}
.accordion_list .card .card_body .card_body_row .sub_title {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .accordion_list .card .card_body .card_body_row .sub_title {
    max-width: 66%;
  }
}
.accordion_list .card .card_body .card_body_row .play_puse {
  margin-left: 5px;
  font-size: 18px;
}
.accordion_list .card .card_body .card_body_row .play_puse i {
  font-size: inherit;
}
.accordion_list .card .card_body .card_body_row .timing {
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 90%;
}
.accordion_list .card .card_body .card_body_row .lock {

  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 90%;
}
@media (max-width: 768px) {
  .accordion_list .card .card_body .card_body_row .lock {
    /* left: 15px; */
  }
}
.accordion_list .card .card_body .card_body_row .lock img {
  width: 18px;
}
.accordion_list .card .card_body .question_meta {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 7px;
  padding: 5px;
  border: 1px solid #D8D8D8;
}

.jobs_list {
  max-width: 70%;
}
@media (max-width: 768px) {
  .jobs_list {
    max-width: 100%;
  }
}
.jobs_list .card {
  border: 0;
}
.jobs_list .card .card_header > button {
  background-color: #244092 !important;
  color: white;
  border: 1px solid #D8D8D8;
}
.jobs_list .card .card_header > button:before {
  color: white;
}
.jobs_list .card .card_header > button.collapsed {
  background-color: #f0f0f0 !important;
  color: #244092;
}
.jobs_list .card .card_header > button.collapsed:before {
  color: #2B2B2B;
}
.jobs_list .card .card_body {
  border: 0;
}

.interest_topics {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.interest_topics .topic {
  width: 15%;
  text-align: center;
  margin: 12px auto;
}
@media (max-width: 1117px) {
  .interest_topics .topic {
    width: 18%;
    margin: 14px 1%;
  }
}
@media (max-width: 940px) {
  .interest_topics .topic {
    width: 23%;
    margin: 14px 1%;
  }
}
@media (max-width: 768px) {
  .interest_topics .topic {
    width: 31%;
    margin: 14px 1%;
  }
}
@media (max-width: 500px) {
  .interest_topics .topic {
    width: 48%;
    margin: 14px 1%;
  }
}
.interest_topics .topic .checkmark {
  visibility: hidden;
}
.interest_topics .topic .checkbox {
  padding: 0;
  text-align: center;
}
.interest_topics .topic .topic_content {
  display: block;
}
.interest_topics .topic .topic_img {
  width: 146px;
  height: 146px;
  display: block;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 5px solid transparent;
}
.interest_topics .topic .topic_name {
  font-weight: 500;
  font-size: 18px;
  display: block;
}

.about_nav_tabs {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 24px;
}
.about_nav_tabs li a {
  padding: 18px 12px;
  font-weight: 500;
  color: #2B2B2B;
  border-bottom: 3px solid transparent;
}
.about_nav_tabs li a.active {
  color: #244092;
  border-color: #244092;
}

.section_about {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.section_about > div {
  width: 48%;
}
@media (max-width: 1117px) {
  .section_about > div {
    width: 100%;
  }
}
.section_about > div img {
  max-width: 100%;
}

.box_component {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.box_component.box_4_column .item {
  width: 23%;
}
.box_component.box_4_column .item2 {
  width: 48%;
}
@media (max-width: 1117px) {
  .box_component.box_4_column .item {
    width: 48%;
  }
  .box_component.box_4_column .item2 {
    width: 48%;
  }
}
@media (max-width: 768px) {
  .box_component.box_4_column .item {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .box_component.box_4_column .item2 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.box_component.box_3_column .item {
  width: 31%;
}
@media (max-width: 1117px) {
  .box_component.box_3_column .item {
    width: 48%;
  }
}
@media (max-width: 768px) {
  .box_component.box_3_column .item {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.box_component .item {
  padding: 26px;
  margin: 12px 1%;
  background-color: white;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  -moz-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.03);
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.03);
}
.box_component .item .item_icon {
  margin: 10px auto 24px;
  text-align: center;
}
.box_component .item .item_icon img {
  display: block;
  margin: 0 auto;
}



.box_component .item2 {
  padding: 26px;
  margin: 12px 1%;
  background-color: white;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  -moz-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.03);
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.03);
}
.box_component .item2 .item_icon {
  margin: 10px auto 24px;
  text-align: center;
}
.box_component .item2 .item_icon img {
  display: block;
  margin: 0 auto;
}

.checkout {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-width: 940px) {
  .checkout {
    display: block;
  }
}
.checkout > div {
  width: 49%;
}
@media (max-width: 940px) {
  .checkout > div {
    width: 100%;
  }
}
.checkout header {
  padding: 12px 18px;
}
.checkout .checkout_list .course_card_item {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid #D8D8D8;
}
.checkout .checkout_list .course_card_item:last-child {
  border: 0;
}
.checkout .checkout_list .course_card_item .course_card_img {
  max-width: 120px;
}
.checkout .checkout_list .course_card_item .course_card_link {
  -webkit-flex: 1;
  flex: 1;
  border: 0;
}
.checkout .checkout_list .course_card_item .course_card_detail_name {
  font-size: 18px;
  font-weight: normal;
}
.checkout .checkout_list .course_card_item .course_card_price {
  text-align: right;
  padding: 10px 0 0 0;
}
.checkout .checkout_list .course_card_item .course_card_config {
  max-width: 100px;
}
.checkout .payment_list .card .card_header {
  position: relative;
}
.checkout .payment_list .card .card_header .visa_card {
  position: absolute;
  left: 60px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.checkout .payment_list .card .card_header .visa_card img {
  display: inline-block;
}
.checkout .payment_list .card .card_body {
  padding: 18px;
}
.checkout .payment_list .card .card_body .form_input[type="file"] {
  background-color: transparent;
  border: 0;
}

figure.img {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* background-color: #efefef; */
  position: relative;
}
figure.img a {
  display: block;
}
figure.img a:hover img {
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
figure.img img {
  -moz-transition: -moz-transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: -o-transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
  display: block;
  min-height: 70px;
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
@media (max-width: 768px) {
  figure.img img {
    min-height: auto;
  }
  .specialities-slider-item{
    display: table-caption;
  }
}

.rating {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 7px;
}
.rating .star {
  font-size: 12px;
}
.rating .star.star_on {
  color: #FFCB04;
}
.rating .star.star_off {
  color: #C5D0C0;
}
.rating .star i {
  font-size: inherit;
}

.bunches {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.bunches.js_slick .bunch_item {
  margin: 0 12px;
}
.bunches.bunches_with_common_courses .slick-prev, .bunches.bunches_with_common_courses .slick-next {
  top: 20%;
}
.bunches .bunch_item {
  width: 33%;
  background-color: #f7f7f7;
}
.bunches .bunch_item figure figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  height: 30%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+7&0+0,0.65+100 */
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.05) 7%, rgba(0, 0, 0, 0.65) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.05) 7%, rgba(0, 0, 0, 0.65) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 7%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
  /* IE6-9 */
}
.bunches .bunch_item figure .bunch_item_wishlist, .bunches .bunch_item figure .bunch_item_like, .bunches .bunch_item figure .course_number {
  position: absolute;
  display: inline-block;
  color: white;
  z-index: 1;
}
.bunches .bunch_item figure .bunch_item_like, .bunches .bunch_item figure .bunch_item_wishlist {
  bottom: 5px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  color: white;
}
.bunches .bunch_item figure .bunch_item_like i, .bunches .bunch_item figure .bunch_item_wishlist i {
  font-size: inherit;
}
.bunches .bunch_item figure .course_number {
  top: 20px;
  right: 0;
  padding: 5px 12px;
  background-color: #FFCB04;
  font-size: 80%;
  font-weight: 500;
}
.bunches .bunch_item figure .bunch_item_like {
  left: 10px;
}
.bunches .bunch_item figure .bunch_item_wishlist {
  left: 51px;
}
.bunches .bunch_item .item_content {
  padding: 18px 18px 12px;
}
.bunches .bunch_item .item_content .item_content_title a {
  color: #2B2B2B;
  text-decoration: none;
}
.bunches .bunch_item .item_content p {
  font-size: 14px;
}
.bunches .bunch_item .item_content .item_content_footer {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.bunches .bunch_item .item_content .item_content_footer .item_content_rating {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.bunches .bunch_item .item_content .item_content_footer .item_content_price {
  color: #244092;
  font-weight: 500;
}
.bunches .bunch_item .item_content .item_content_footer del.course_old_price {
  color: rgba(128, 128, 128, 0.5);
  text-decoration: none;
  position: relative;
  font-size: 1rem;
}
.bunches .bunch_item .item_content .item_content_footer del.course_old_price:before {
  content: " ";
  display: block;
  width: 100%;
  border-top: 1px solid rgba(128, 128, 128, 0.8);
  height: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-7deg);
}
.bunches .bunch_item .item_content .item_common_courses {
  margin-top: 24px;
  max-height: 275px;
  overflow-y: auto;
}
.bunches .bunch_item .item_content .item_common_courses .common_course {
  display: block;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #2B2B2B;
  text-decoration: none;
  padding: 10px 0;
  border-top: 1px solid #D8D8D8;
  -moz-transition: background-color, cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
  -o-transition: background-color, cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
  -webkit-transition: background-color, cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
  transition: background-color, cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
}
.bunches .bunch_item .item_content .item_common_courses .common_course:hover {
  background-color: #f0f0f0;
}
.bunches .bunch_item .item_content .item_common_courses .common_course figure {
  width: 130px;
  margin: 0;
  padding: 0;
}
.bunches .bunch_item .item_content .item_common_courses .common_course figure img {
  display: block;
  max-width: 100%;
}
.bunches .bunch_item .item_content .item_common_courses .common_course div {
  padding: 10px 12px;
  -webkit-flex: 1;
  flex: 1;
}
.bunches .bunch_item .item_content .item_common_courses .common_course h6 {
  font-size: 14px;
  margin: 0;
}

.libs_list {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.libs_list.libs_list_4_columns .libs_item {
  width: 23%;
  margin: 0 1% 28px;
}
@media (max-width: 1117px) {
  .libs_list.libs_list_4_columns .libs_item {
    width: 23%;
  }
}
@media (max-width: 940px) {
  .libs_list.libs_list_4_columns .libs_item {
    width: 31%;
  }
}
@media (max-width: 768px) {
  .libs_list.libs_list_4_columns .libs_item {
    width: 48%;
  }
}
.libs_list.js_slick .libs_item {
  width: auto;
  margin: 0 10px;
}
.libs_list .libs_item {
  width: 18%;
  margin: 0 1% 28px;
}
@media (max-width: 1117px) {
  .libs_list .libs_item {
    width: 23%;
  }
}
@media (max-width: 940px) {
  .libs_list .libs_item {
    width: 31%;
  }
}
@media (max-width: 768px) {
  .libs_list .libs_item {
    width: 48%;
  }
}
.libs_list .libs_item figure {
  margin: 0 0 5px;
}
.libs_list .libs_item a {
  color: #2B2B2B;
  font-weight: 500;
}

.lib_post {
  max-width: 900px;
  margin: 0 auto;
}
.lib_post .lib_post_img {
  margin-top: 24px;
}
.lib_post .lib_post_img img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.lectures {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lectures .lecture {
  max-width: 180px;
  margin-left: 12px;
  margin-bottom: 12px;
}
.lectures .lecture:last-child {
  margin-left: 0;
}
.lectures .lecture img {
  max-width: 100%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.top_cats {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 1117px) {
  .top_cats {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .top_cats {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.top_cats .item {
  width: 220px;
  background-color: white;
  color: #2B2B2B;
  display: block;
  padding: 24px 12px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: box-shadow 0.15s;
  -o-transition: box-shadow 0.15s;
  -webkit-transition: box-shadow 0.15s;
  transition: box-shadow 0.15s;
}
.top_cats .item:hover {
  -moz-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1280px) {
  .top_cats .item {
    width: 200px;
  }
}
@media (max-width: 1117px) {
  .top_cats .item {
    width: 31%;
    margin: 7px 1%;
  }
}
@media (max-width: 768px) {
  .top_cats .item {
    width: 48%;
    margin: 5px 1%;
    padding: 18px 7px;
  }
  .top_cats .item:last-child {
    width: 100%;
  }
}
.top_cats .item h5 {
  margin: 0;
}
.top_cats .item .icon {
  display: block;
  margin: 0 auto;
  height: 70px;
}

.smart_bar .alert .close {
  font-size: 2.5em;
  font-weight: normal;
}
.smart_bar .alert .close:not(:disabled):not(.disabled):hover {
  color: white;
}

.close {
  float: left;
  font-size: 2rem;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.trainers_list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.trainers_list.js_slick .trainers_item {
  margin: 0 10px;
  width: auto;
}
.trainers_list.trainers_list_small .trainers_item {
  width: 18%;
}
@media (max-width: 1117px) {
  .trainers_list.trainers_list_small .trainers_item {
    width: 23%;
  }
}
@media (max-width: 768px) {
  .trainers_list.trainers_list_small .trainers_item {
    width: 31%;
  }
}
@media (max-width: 500px) {
  .trainers_list.trainers_list_small .trainers_item {
    width: 48%;
  }
}
.trainers_list .trainers_item {
  width: 23%;
  margin: 0 1% 18px;
}
@media (max-width: 1117px) {
  .trainers_list .trainers_item {
    width: 23%;
  }
}
@media (max-width: 768px) {
  .trainers_list .trainers_item {
    width: 31%;
  }
}
@media (max-width: 500px) {
  .trainers_list .trainers_item {
    width: 48%;
  }
}
.trainers_list .trainers_item .trainers_item_content {
  padding: 14px;
}
.trainers_list .trainers_item .trainers_item_content a {
  display: block;
  color: #2B2B2B;
  text-decoration: none;
}

.testimonials {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.testimonials.js_slick .item {
  margin: 0 15px;
}
.testimonials .item {
  width: 49%;
  position: relative;
  padding-top: 55px;
}
.testimonials .item .item_content {
  padding: 24px;
  background-color: white;
}
.testimonials .item img {
  position: absolute;
  top: -0;
  left: 30px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.testimonials .item .qoute_icon i {
  font-size: 2.5em;
  color: #71d6d7;
}
.testimonials .item .item_header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.testimonials .item .item_header .item_name {
  margin-left: 12px;
}

.quiz .quiz_progress .quiz_progress_head {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 14px;
}
.quiz .quiz_progress .quiz_progressbar {
  background: #EAEAEA;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  height: 5px;
  margin-bottom: 40px;
}
.quiz .quiz_progress .quiz_progressbar .quiz_progressbar_inner {
  background-color: #244092;
  -moz-transition: width 0.3s;
  -o-transition: width 0.3s;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: block;
  height: 100%;
}

.certified_certificates {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .certified_certificates {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.certified_certificates > div {
  width: 48%;
}
@media (max-width: 768px) {
  .certified_certificates > div {
    width: 100%;
  }
}
.certified_certificates table {
  width: 100%;
  border-collapse: collapse;
}
.certified_certificates table th, .certified_certificates table td {
  padding: 7px;
  border-top: 1px solid #D8D8D8;
}
.certified_certificates table th {
  border: 0;
}
.certified_certificates table tr:nth-child(odd) td {
  background-color: #f7f7f7;
}

.certificate_alert {
  padding: 24px 66px 24px 42px;
  background-color: rgba(204, 229, 255, 0.8);
  border: 1px solid rgba(204, 229, 255, 0.9);
  color: #244092;
  margin-top: 42px;
  position: relative;
}
.certificate_alert i {
  font-size: 1.5rem;
  position: absolute;
  right: 24px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.quiz_result {
  margin: 40px 0;
}
.quiz_result .quiz_icon {
  font-size: 82px;
}
.quiz_result .quiz_icon.quiz_icon_success {
  color: #6AC259;
}
.quiz_result .quiz_icon.quiz_icon_error {
  color: #DD2C00;
}

#password-strength {
  font-size: 90%;
  margin: 5px 0;
}
#password-strength .password-strength-bar {
  font-size: 0;
  height: 5px;
}

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

.learning-adv li{

  list-style: inside !important;
}

.mobie-account-info{
  display: none;
  justify-content: space-between;
}


.search-bar{
  width: 40%;
}
.wrapper .search-input{
  background: #fff;
  width: 100%;
  /* width: 220px; */
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);
  }
  .wrapper .mobile-search-input{
    background: #fff;
    width: 100%;
    /* width: 220px; */
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);
    }

  .search-input input{
  height: 55px;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  /* padding: 0 60px 0 20px; */
  font-size: 15px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
  }

  .mobile-search-input input{
    height: 55px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    /* padding: 0 60px 0 20px; */
    font-size: 15px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
    }

  .aa-dataset-3{
      height: 55px;
  width: 100%;
  padding: 0 60px 0 20px;
  font-size: 18px;
  }
  .search-input.active input{
  border-radius: 5px 5px 0 0;
  }

  .mobile-search-input.active input{
    border-radius: 5px 5px 0 0;
    }

  .search-input .autocom-box{
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
  }

  .mobile-search-input .autocom-box{
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto;
    }

  .search-input.active .autocom-box{
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
  }
  .mobile-search-input.active .autocom-box{
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
    }
  .autocom-box li{
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
  }

  .search-input.active .autocom-box li{
  display: block;
  }
  .mobile-search-input.active .autocom-box li{
    display: block;
    }
  .autocom-box li:hover{
  background: #efefef;
  }


@media (max-width: 768px) {
  .desktop-search{
    display: none;
  }
  .wrapper .search-input{
    width: 100%;
  }
  .wrapper .mobile-search-input{
    width: 100%;
  }
  .search-bar{
    width: 100%;
  }
  .certificates-container-h2{
    font-size: 16px !important;
  }
  .search-input input{
    height: 48px !important;
  }
  .mobile-search-input input{
    height: 48px !important;
  }
}

.nav-link{
  color: #244092 !important;
  font-weight: bold;
}

.search-bar-label{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.course_card_detail_name{
  font-size: 15px;
  height: 50px;

}

.course-title-container{
  height: 67px;

}

.course-details-container{
  /* height: 155px; */
}

.course_card_price > div{
  font-size: 16px;
}

.course_card_price > del{
  font-size: 12px;
}

.course-card-image{
  height: 250px; 
  width: 100%;
  object-fit: cover
}

.bg_lightgray > .wrapper > div > div > div > div > div > div {
  background-color: white !important;
} 
.bg_lightgray > .wrapper > div > div > div > div > div > div > div {
  background-color: white !important;
} 

.fixed-buttons > a{
    color: #fff !important;
    background: #244092;
    padding: 0px 20px 0px 20px;
    border-radius: 50px;
    font-weight: 400;
    border: 1px solid #244092;
    display: inline-block;
    
}

.bread-crumb > .wrapper{
  font-size: 12px;
}

.hero-slider{
  height: 350px;
}

.slider-cta{
  font-size: 16px;
}

.owl-nav{
  display: block !important;
  margin: 0 !important;
}

.prev-slide{
  left: -20px !important;
}

.next-slide{
  right: -20px !important;
}

.visits{
  font-size: 12px;
}

.ellipse {
  white-space: nowrap;
  display:inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.two-lines {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.home-slider-button{
  background-color: #18B289;
  color: white;
}

.home-slider-button:hover{
  background-color: white;
  color: #244092;
}

.instructor_card_image{
  object-fit: cover;
  height: 120px;
  width: 50%;
}

h3{
  color: #244092;
}

.instructor_brief_section{
  height: 206px;
}

.recent-search{
  display: flex;
}

.recent-search > a{
  place-self: center;
  cursor: pointer;
}

#hubspot-messages-iframe-container{
  z-index: 2 !important;
}

.videoContainer {
  position: relative;
}
.playBtn {
  position: absolute;
  width: 96px;
  height: 96px;
  left: 50%;
  top: 50%;
  margin-left: -48px; /*half of the width */
  margin-top: -48px; /*half of the height */
  
}



.imagesBoxes{
  display: flex;
  justify-content: center;
  padding: 5px 0;
  background: #244092;
  color: white;
  border-radius: 4px;
  margin-top: 40px;
}

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

@media only screen and (max-width: 600px){
  .imagesBoxes{
    max-width: 95%;
  }
}

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

.imagesBoxes div {
  display: flex;
  justify-content: space-evenly;
  align-items: inherit;
  margin-right: 8px;
    margin-left: 8px;
    /* width: 70px; */
}

.imagesBox {
  /* width: 80px; */
}

.CoursePage-MuiPaper-elevation3 {
  box-shadow: 0px 3px 3px -2px rgb(0 0 0 / 20%), 0px 3px 4px 0px rgb(0 0 0 / 14%), 0px 1px 8px 0px rgb(0 0 0 / 12%);
}

.headerImages {
  width: auto;
  height: 40px;
  padding-top: 8px;
}

.headerImages img {
  width: auto;
  height: 21px;
}

.imageDesciption {
  font-size: 11px;
  font-weight: 400;
  width: 100%;
  text-align: center;
}


@media only screen and (max-width: 600px){
  .course-insight-devider-mobile {
    width: 90%;
    height: 1px;
    background-color: white;
    justify-self: center;
    margin: 5px 0;
    align-self: center;
}
}


.course-insight-devider-mobile {
  display: none !important;
}

.course-insight-devider-mobile {
  width: 90%;
  height: 1px;
  background-color: white;
  justify-self: center;
  margin: 5px 0;
  align-self: center;
}

@media only screen and (max-width: 600px){
  .imagesBoxes {
    flex-direction: column;
}

.imagesBoxes > div:nth-of-type(2) {
  display: flex !important;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
}

}

.CoursePage-MuiTypography-body1 {
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.00938em;
}

.course-insight-devider {
  width: 1px;
  min-height: 90%;
  background-color: white;
  justify-self: center;
}


/* NEW LECTURE PAGE */
.flexCenter{display: flex; justify-content: center; align-items: center; width: 100%}
.flexRight{display: flex;
    justify-content: flex-end;
    align-items: center;}
.flexLeft{display: flex;
    justify-content: flex-start;
    align-items: center;}    
.flexBetween{
    display: flex;
    justify-content: space-between;
    align-items: center;
}  

.lecture-content .nav-link.disabled{
  background: #f7f7f7 !important;
  color: #ddd !important;
}
.mr-20{ margin-right: 20px;}
.mr-10{ margin-right: 10px;}
.ml-20{ margin-left: 20px;}
.ml-10{ margin-left: 10px;}

.mt-15{ margin-top: 15px;}

.mt-20{ margin-top: 20px;}
.mt-25{ margin-top: 25px;}
.mt-30{ margin-top: 30px;}
.mt-40{ margin-top: 40px;}
.mb-10{margin-bottom: 10px;}
.mb-15{margin-bottom: 15px;}
.mb-40{margin-bottom: 40px;}
.mb-20{margin-bottom: 20px;}

.mr-20{ margin-right: 20px;}
.mr-10{ margin-right: 10px;}
.ml-20{ margin-left: 20px;}
.ml-10{ margin-left: 10px;}

.mt-15{ margin-top: 15px;}

.mt-20{ margin-top: 20px;}
.mt-25{ margin-top: 25px;}
.mt-30{ margin-top: 30px;}
.mt-40{ margin-top: 40px;}
.mb-10{margin-bottom: 10px;}
.mb-15{margin-bottom: 15px;}
.mb-40{margin-bottom: 40px;}
.mb-20{margin-bottom: 20px;}
.p-20{padding: 20px;}

.alert-info2 {

}

/* START BLOG */
.blog_post_image{
  margin-bottom: 20px;
  width: 100%;
  object-fit: cover;
}

.video-containery {
  position: relative;
  padding-bottom: 56.25%;
}

.video-containery iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* END BLOG */