/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.3.6 (20/12/2016)
 */
/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */
@font-face {
  font-family: 'lightcase';
  src: url("../fonts/lightcaseeead.eot?55356177");
  src: url("../fonts/lightcaseeead.eot?55356177#iefix") format("embedded-opentype"), url("../fonts/lightcaseeead.woff?55356177") format("woff"), url("../fonts/lightcaseeead.ttf?55356177") format("truetype"), url("../fonts/lightcaseeead.svg?55356177#lightcase") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 12, ../scss/components/fonts/_font-lightcase.scss */
[class*='lightcase-icon-']:before {
  font-family: 'lightcase', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */
/* line 35, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-play:before {
  content: '\e800';
}

/* line 36, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-pause:before {
  content: '\e801';
}

/* line 37, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-close:before {
  content: '\e802';
}

/* line 38, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-prev:before {
  content: '\e803';
}

/* line 39, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-next:before {
  content: '\e804';
}

/* line 40, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-spin:before {
  content: '\e805';
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */
/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */
/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */
/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */
@-webkit-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-moz-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* line 1, ../scss/components/modules/_case.scss */
#lightcase-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 640px) {
  /* line 16, ../scss/components/modules/_case.scss */
  #lightcase-case:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}

@media screen and (min-width: 641px) {
  /* line 4, ../scss/components/modules/_content.scss */
  #lightcase-case:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-shadow: none;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden;
  }
}
@media screen and (min-width: 641px) {
  /* line 24, ../scss/components/modules/_content.scss */
  #lightcase-case[data-lc-type=image] #lightcase-content, #lightcase-case[data-lc-type=video] #lightcase-content {
    background-color: #333;
  }
}
/* line 32, ../scss/components/modules/_content.scss */
#lightcase-case:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
@media screen and (max-width: 640px) {
  /* line 32, ../scss/components/modules/_content.scss */
  #lightcase-case:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
/* line 42, ../scss/components/modules/_content.scss */
#lightcase-case:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-content .lightcase-contentInner {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  /* line 42, ../scss/components/modules/_content.scss */
  #lightcase-case:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-content .lightcase-contentInner {
    padding: 15px;
  }
  /* line 51, ../scss/components/modules/_content.scss */
  #lightcase-case:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-content .lightcase-contentInner, #lightcase-case:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-content .lightcase-contentInner > * {
    width: 100% !important;
    max-width: none !important;
  }
  /* line 58, ../scss/components/modules/_content.scss */
  #lightcase-case:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-content .lightcase-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important;
  }
}
@media screen and (max-width: 640px) {
  /* line 69, ../scss/components/modules/_content.scss */
  .lightcase-isMobileDevice #lightcase-case[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 640px) and (min-width: 641px) {
  /* line 73, ../scss/components/modules/_content.scss */
  [data-lc-type=image] #lightcase-content .lightcase-contentInner, [data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75;
  }
}

@media screen and (max-width: 640px) {
  /* line 85, ../scss/components/modules/_content.scss */
  #lightcase-case:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
@media screen and (min-width: 641px) {
  /* line 92, ../scss/components/modules/_content.scss */
  #lightcase-case:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 640px) {
  /* line 109, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #aaa;
  }
}
@media screen and (min-width: 641px) {
  /* line 109, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #333;
  }
}

/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
}
@media screen and (max-width: 640px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 30px 0;
  }
}
@media screen and (min-width: 641px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 0;
  }
}

/* line 6, ../scss/components/modules/_global.scss */
.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  /* line 4, ../scss/components/modules/_global.scss */
  .lightcase-open body {
    padding: 55px 0 70px 0;
  }
  /* line 15, ../scss/components/modules/_global.scss */
  .lightcase-open body > *:not([id*='lightcase-']) {
    position: fixed !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}

/* line 1, ../scss/components/modules/_info.scss */
#lightcase-info {
  position: absolute;
  padding-top: 15px;
}
/* line 9, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis;
}
/* line 19, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #aaa;
}
@media screen and (max-width: 640px) {
  /* line 19, ../scss/components/modules/_info.scss */
  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: #333;
  }
}
/* line 33, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #aaa;
}
/* line 39, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #aaa;
}
@media screen and (max-width: 640px) {
  /* line 45, ../scss/components/modules/_info.scss */
  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px;
  }
  /* line 51, ../scss/components/modules/_info.scss */
  #lightcase-case:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static;
  }
}

/* line 1, ../scss/components/modules/_loading.scss */
#lightcase-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: lightcase-spin 0.5s infinite linear;
  -moz-animation: lightcase-spin 0.5s infinite linear;
  -o-animation: lightcase-spin 0.5s infinite linear;
  animation: lightcase-spin 0.5s infinite linear;
}
/* line 20, ../scss/components/mixins/_presets.scss */
#lightcase-loading, #lightcase-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}
/* line 32, ../scss/components/mixins/_presets.scss */
#lightcase-loading > span {
  display: inline-block;
  text-indent: -9999px;
}

/* line 4, ../scss/components/modules/_navigation.scss */
#lightcase-nav a[class*='lightcase-icon-'] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}
/* line 20, ../scss/components/mixins/_presets.scss */
#lightcase-nav a[class*='lightcase-icon-'], #lightcase-nav a[class*='lightcase-icon-']:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}
/* line 32, ../scss/components/mixins/_presets.scss */
#lightcase-nav a[class*='lightcase-icon-'] > span {
  display: inline-block;
  text-indent: -9999px;
}
/* line 49, ../scss/components/mixins/_presets.scss */
#lightcase-nav a[class*='lightcase-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white;
}
/* line 12, ../scss/components/modules/_navigation.scss */
.lightcase-isMobileDevice #lightcase-nav a[class*='lightcase-icon-']:hover {
  color: #aaa;
  text-shadow: none;
}
/* line 19, ../scss/components/modules/_navigation.scss */
#lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-prev {
  left: 15px;
}
/* line 24, ../scss/components/modules/_navigation.scss */
#lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-next {
  right: 15px;
}
/* line 29, ../scss/components/modules/_navigation.scss */
#lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-pause, #lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em;
}
@media screen and (min-width: 641px) {
  /* line 29, ../scss/components/modules/_navigation.scss */
  #lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-pause, #lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-play {
    opacity: 0;
  }
}
/* line 40, ../scss/components/modules/_navigation.scss */
#lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-close {
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none;
}
@media screen and (max-width: 640px) {
  /* line 40, ../scss/components/modules/_navigation.scss */
  #lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-close {
    position: absolute;
  }
  .thim-course-content{width:100% !important;}
}
@media screen and (min-width: 641px) {
  /* line 40, ../scss/components/modules/_navigation.scss */
  #lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-close {
    position: fixed;
  }
}
@media screen and (max-width: 640px) {
  /* line 4, ../scss/components/modules/_navigation.scss */
  #lightcase-nav a[class*='lightcase-icon-'] {
    bottom: 15px;
    font-size: 24px;
  }
}
@media screen and (min-width: 641px) {
  /* line 4, ../scss/components/modules/_navigation.scss */
  #lightcase-nav a[class*='lightcase-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em;
  }
  /* line 66, ../scss/components/modules/_navigation.scss */
  #lightcase-nav a[class*='lightcase-icon-']:hover, #lightcase-case:hover ~ #lightcase-nav a[class*='lightcase-icon-'] {
    opacity: 1;
  }
}

/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: #333;
}
@media screen and (max-width: 640px) {
  /* line 1, ../scss/components/modules/_overlay.scss */
  #lightcase-overlay {
    opacity: 1 !important;
  }
}

/*  16  - Blog
----------------------------------------------*/
.blog{
    background-image: url(../../images/background/blog-bg.jpg);
    background-size: cover;
    background-position: center;
}
.blog .overlay{
    background-color: rgba(7,143,203,.8);
}
.blog .blog-item .blog-image{
    overflow: hidden;
}
.blog .blog-item img{
    width: 100%;
    -webkit-transition: .25s ease-out;
    transition: .25s ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.blog .blog-item:hover img{
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.blog .blog-item{
    background-color: #fff;
}
.blog .blog-item .blog-content{
    padding: 20px;
}
.blog .blog-item .blog-content h4 a{
    text-decoration: none;
}
.blog .blog-items > div > div:nth-child(1) .blog-item h4 a{
    color: #92278f;
}
.blog .blog-items > div > div:nth-child(2) .blog-item h4 a{
    color: #e84b3a;
}
.blog .blog-items > div > div:nth-child(3) .blog-item h4 a{
    color: #fc7f0c;
}
.blog .blog-item .blog-content p{
    margin-bottom: 10px;
}
.blog .blog-item ul{
    margin: 0px;
    border-top: 1px solid #f0f0f0;
    padding: 9px 20px;
}
.blog .blog-item  ul li{
    list-style: none;
    display: inline-block;
    margin-right: 10px;
    color: #707070;
}
.blog .blog-item ul li a{
    text-decoration: none;
    font-size: 15px;
    color: #696969;
}
.blog .blog-item ul li .icon{
    margin-right: 5px;
}
.blog .blog-item ul li:nth-child(1) .icon{
    color: #92278f;
}
.blog .blog-item ul li:nth-child(2) .icon{
    color: #e84b3a;
}
.blog .blog-item ul li:nth-child(3) .icon{
    color: #fc7f0c;
}
.blog .blog-item ul li .icon:before{
    font-size: 18px;
}
.blog-two{
    background: #fff;
}
.blog-two .blog-item .blog-content{
    border-right: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
}
.blog-two .blog-item ul{
    border: 1px solid #f0f0f0;
}
.blog-two .blog-item{
    transition: .25s ease-out;
    -webkit-transition: .25s ease-out;
}
.blog-two .blog-item:hover{
    box-shadow: 0px 0px 20px rgba(0,0,0,.1);
    -webkit-box-shadow: 0px 0px 20px rgba(0,0,0,.1);
}
.blog-post .post-item{
    -webkit-transition: .25s ease-out;
    transition: .25s ease-out;
    margin-bottom: 40px;
}
.blog-post .post-item .post-image{
    overflow: hidden;
}
.blog-post .post-item .post-image img{
    width: 100%;
    -webkit-transition: .25s ease-out;
    transition: .25s ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.blog-post .post-item:hover .post-image img{
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.blog-post .post-item .post-content{
    padding: 15px 30px 30px;
    border: 1px solid #f0f0f0;
    border-top: none;
}
.blog-post .post-item h3{
    font-size: 36px;
    margin-bottom: 10px;
}
.blog-post .post-item h3 a{
    text-decoration: none;
    color: #ffc000;
}
.blog-post .post-item:nth-child(2) h3 a{
    color: #e84b3a;
}
.blog-post .post-item:nth-child(3) h3 a{
    color: #fc7f0c;
}
.blog-post .post-item:nth-child(4) h3 a{
    color: #92278f;
}
.blog-post .post-item:nth-child(6) h3 a{
    color: #e84b3a;
}
.blog-post .post-item:nth-child(7) h3 a{
    color: #fc7f0c;
}
.blog-post .post-item:nth-child(8) h3 a{
    color: #92278f;
}
.blog-post .post-item .post-button{
    padding: 6px 26px;
    background-color: #ffc000;
}
.blog-post .post-item .post-button:hover{
    background-color: #ecb200;
}
.blog-post .post-item:nth-child(2) .post-button{
    background-color: #e84b3a;
}
.blog-post .post-item:nth-child(2) .post-button:hover{
    background-color: #dd3725;
}
.blog-post .post-item:nth-child(3) .post-button{
    background-color: #fc7f0c;
}
.blog-post .post-item:nth-child(3) .post-button:hover{
    background-color: #e56e00;
}
.blog-post .post-item:nth-child(4) .post-button{
    background-color: #92278f;
}
.blog-post .post-item:nth-child(4) .post-button:hover{
    background-color: #7e007b;
}
.blog-post .post-item:nth-child(6) .post-button{
    background-color: #e84b3a;
}
.blog-post .post-item:nth-child(6) .post-button:hover{
    background-color: #dd3725;
}
.blog-post .post-item:nth-child(7) .post-button{
    background-color: #fc7f0c;
}
.blog-post .post-item:nth-child(7) .post-button:hover{
    background-color: #e56e00;
}
.blog-post .post-item:nth-child(8) .post-button{
    background-color: #92278f;
}
.blog-post .post-item:nth-child(8) .post-button:hover{
    background-color: #7e007b;
}
.post-meta li{
    list-style: none;
    display: inline-block;
    color: #696969;
    margin-right: 20px;
}
.post-meta li a{
    text-decoration: none;
    color: #696969;
}
.post-meta li .icon{
    margin-right: 5px;
}
.post-meta li .icon:before{
    font-size: 16px;
}
.blog-post .post-item:hover{
    box-shadow: 0px 0px 20px rgba(0,0,0,.08);
    -webkit-box-shadow: 0px 0px 20px rgba(0,0,0,.08);
}
.single-post .post-content{
    padding: 30px;
    border: 1px solid #f0f0f0;
    border-top: none;
}
.single-post .post-content h3{
    font-size: 30px;font-weight: 500;
    color: #e84b3a;
    margin-bottom: 10px;
}
.single-post .post-content blockquote{
    font-style: normal;
    color: #e84b3a;
    font-weight: 700;
    font-size: 14px;
    border: none;
    padding: 0px 0px 12px 40px;    position: relative;
}
.single-post .post-content blockquote:after{
    left: 0px;
    top: 30%;
    color: #e84b3a;
    font-size: 30px;
}
.single-post .post-content blockquote:before{
    content: "\f10e" !important;
    position: absolute;
    right: 50px;
    bottom: 0px;
    font: normal normal normal 30px/1 FontAwesome;
    color: #e84b3a;
}
.single-post .post-content p:last-child{
    margin: 0px;
}
.single-post .content-bottom{
    border: 1px solid #f0f0f0;
    border-top: none;
    padding: 12px 30px;
    overflow: hidden;
    margin-bottom: 50px;
}
.single-post .content-bottom ul{
    margin: 0px;
}
.single-post .content-bottom ul li{
    list-style: none;
    display: inline-block;
}
.single-post .content-bottom li:first-child{
    margin-right: 5px;
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    color: #92278f;
}
.single-post .content-bottom li span{
    margin-right: 5px;
}
.single-post .content-bottom li span:before{
    color: #92278f;
    font-size: 18px;
}
.single-post .post-tags{
    float: left;
}
.single-post .post-tags li a{
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
    color: #ffc000;
    text-decoration: none;
}
.single-post .post-tags li:nth-child(3) a{
    color: #e84b3a;
}
.single-post .post-tags li:nth-child(4) a{
    color: #fc7f0c;
}
.single-post .post-tags li:nth-child(5) a{
    color: #0fbaf4;
}
.single-post .post-share{
    float: right;
}
.single-post .post-share li{
    margin-right: 10px;
}
.single-post .post-share li:last-child{
    margin: 0px;
}
.single-post .post-share li a{
    font-size: 16px;
    color: #3b5998
}
.single-post .post-share li:nth-child(3) a{
    color: #db4437
}
.single-post .post-share li:nth-child(4) a{
    color: #e94c89
}
.single-post .post-share li:nth-child(5) a{
    color: #23b6ea
}
.single-post .post-share li:nth-child(6) a{
    color: #cb1f27
}
.single-post .post-comments{
    margin-bottom: 20px;
}
.single-post .post-comments h3{
    font-size: 30px;
    color: #ee257c;
    margin-bottom: 20px;
}
.single-post .post-comments ul{
    margin: 0px;
}
.single-post .post-comments li{
    list-style: none;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.single-post .post-comments li .the-comment{
    padding-bottom: 20px;
}
.single-post .post-comments li:last-child{
    margin: 0px;
    padding: 0px;
    border: none;
}
.single-post .post-comments li ul{
    margin-left: 90px;
}
.single-post .post-comments .comment-image{
    overflow: hidden;
    height: 80px;
    width: 80px;
    border-radius: 100%;
    float: left;
    margin-right: 20px;
}
.single-post .post-comments .comment-content{
    display: table;
}
.single-post .post-comments .comment-content h4{
    float: left;
    font-size: 18px;
    color: #ffc000;
    margin-right: 5px;
}
.single-post .post-comments li:nth-child(2) .comment-content h4{
    color: #e84b3a;
}
.single-post .post-comments li:nth-child(3) .comment-content h4{
    color: #fc7f0c;
}
.single-post .post-comments li:nth-child(4) .comment-content h4{
    color: #92278f;
}
.single-post .post-comments li:nth-child(5) .comment-content h4{
    color: #0fbaf4;
}
.single-post .post-comments li:nth-child(6) .comment-content h4{
    color: #008c99;
}
.single-post .post-comments li:nth-child(7) .comment-content h4{
    color: #ee257c;
}
.single-post .post-comments li:nth-child(8) .comment-content h4{
    color: #88c87b;
}
.single-post .post-comments li:nth-child(9) .comment-content h4{
    color: #fa6f57;
}
.single-post .post-comments .comment-content .comm-reply{
    float: right;
}
.single-post .post-comments .comment-content .comm-reply i{
    color: #ffc000;
    font-weight: 700;
}
.single-post .post-comments .comment-content .comm-reply i:before{
    font-size: 15px;
}
.single-post .post-comments .comment-content .comm-reply a{
    font-style: italic;
    font-weight: 700;
    font-size: 16px;
    color: #e84b3a;
}
.single-post .post-comments .comment-content span.day {
    position: relative;
    margin-left: 10px;
}
.single-post .post-comments .comment-content span.day:before {
    content: "\f068";
    font-family: FontAwesome;
    position: absolute;
    top: 2px;
    left: -10px;
    font-size: 8px;
    color: #1a1a1a;
}
.single-post .post-comments .comment-content p{
    margin-top: 5px;
    margin-bottom: 0px;
}
.single-post .reply-form h3{
    font-size: 30px;
    color: #fa6f57;
    margin-bottom: 30px;
}
.single-post .reply-form .com-input{
    width: 100%;
    border: 1px solid #C1B8B8;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 30px;
}
.single-post .reply-form button{
    outline: none;
    padding: 17px 26px;
}
.sidebar .sidebar-item{
    margin-bottom: 50px;
}
.sidebar .sidebar-item .sidebar-title{
    font-size: 30px;
    color: #ffc000;
    margin-bottom: 30px;
}
.sidebar .sidebar-item:nth-child(3) .sidebar-title{
    color: #e84b3a;
}
.sidebar .sidebar-item:nth-child(4) .sidebar-title{
    color: #fc7f0c;
}
.sidebar .sidebar-item:nth-child(5) .sidebar-title{
    color: #92278f;
}
.sidebar .sidebar-item:nth-child(6) .sidebar-title{
    color: #0fbaf4;
}
.sidebar form input{
    width: 100%;
    border: 1px solid #B3B0B0;
    color: #696969;
    padding: 14px;
    outline: none;
    font-style: italic;
}
.sidebar .sidebar-categories{
    margin: 0px;
}
.sidebar .sidebar-categories li{
    list-style: none;
    border-bottom: 1px solid #f0f0f0;
}
.sidebar .sidebar-categories li:last-child{
    border: none;
}
.sidebar .sidebar-categories li a{
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: #707070;
    text-decoration: none;
    padding: 10px 0px;
}
.sidebar .sidebar-categories li:first-child a{
    padding-top: 0px;
}
.sidebar .sidebar-categories li:last-child a{
    padding-bottom: 0px;
}
.sidebar .sidebar-categories li a:hover{
    padding-left: 16px;
    color: #92278f;
}
.sidebar .sidebar-categories li span{
    float: right;
}
.sidebar .sidebar-categories li a:hover span{
    height: 30px;
    width: 30px;
    text-align: center;
    background-color: #92278f;
    color: #fff;
    border-radius: 100%;
    display: inline-block;
    line-height: 30px;
}
.sidebar .sidebar-posts{
    margin: 0px;
}
.sidebar .sidebar-posts li{
    list-style: none;
    overflow: hidden;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.sidebar .sidebar-posts li:last-child{
    margin: 0px;
    padding: 0px;
    border: none;
}
.sidebar .sidebar-posts .image{
    float: left;
    margin-right: 20px;
}
.sidebar .sidebar-posts .content{
    display: table;
}
.sidebar .sidebar-posts a{
    display: block;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    color: #707070;
}
.sidebar .sidebar-posts li:hover a{
    color: #92278f;
}
.sidebar .sidebar-posts span{
    font-style: italic;
    font-size: 15px;
    color: #fa6f57;
}
.sidebar .sidebar-gallery{
    margin: 0px;
    overflow: hidden;
    margin: -5px;
}
.sidebar .sidebar-gallery li{
    list-style: none;
    float: left;
    width: calc(100% / 4 - 1px);
    padding: 5px;
}
.sidebar .sidebar-gallery li img{
    width: 100%;
}
.sidebar .sidebar-twitts{
    margin: 0px;
}
.sidebar .sidebar-twitts > li{
    list-style: none;
    overflow: hidden;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.sidebar .sidebar-twitts > li:last-child{
    margin: 0px;
    padding: 0px;
    border: none;
}
.sidebar .sidebar-twitts .icon{
    float: left;
    font-size: 46px;
    color: #65bbf2;
    margin-right: 15px;
    line-height: 46px;
}
.sidebar .sidebar-twitts .content{
    display: table;
}
.sidebar .sidebar-twitts .content ul{
    margin: 0px;
}
.sidebar .sidebar-twitts .content ul li{
    list-style: none;
    display: inline-block;
}
.sidebar .sidebar-twitts .content ul li a{
    text-decoration: none;
}
.sidebar .sidebar-twitts .content p{
    margin: 0px;
}
.sidebar .sidebar-twitts .content > a{
    text-decoration: none;
}
.sidebar .sidebar-tags{
    margin: 0px;
    overflow: hidden;
    margin: -5px;
}
.sidebar .sidebar-tags li{
    list-style: none;
    display: inline-block;
    float: left;
    margin: 5px;
}
.sidebar .sidebar-tags li a{
    text-decoration: none;
    font-style: italic;
    font-weight: 700;
    font-size: 15px;
    color: #707070;
    border: 1px solid #f0f0f0;
    border-radius: 1px;
    padding: 8px 24px;
    display: inline-block;
}
.sidebar .sidebar-tags li a:hover{
    background-color: #92278f;
    border-color: #92278f;
    color: #fff;
}
.sidebar .class-details{
    margin: 0px;
    border: 1px solid #f0f0f0;
}
.sidebar .class-details li{
    overflow: hidden;
    list-style: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 9px 15px;
}
.sidebar .class-details li:last-child{
    border: none;
}
.sidebar .class-details .name{
    float: left;
    width: 50%;
    font-size: 15px;
    color: #ffc000;
}
.sidebar .class-details li:nth-child(2) .name{
    color: #e84b3a;
}
.sidebar .class-details li:nth-child(3) .name{
    color: #fc7f0c;
}
.sidebar .class-details li:nth-child(4) .name{
    color: #92278f;
}
.sidebar .class-details li:nth-child(5) .name{
    color: #0fbaf4;
}
.sidebar .class-details li:nth-child(6) .name{
    color: #008c99;
}
.sidebar .class-details li:nth-child(7) .name{
    color: #ee257c;
}
.sidebar .class-details li:nth-child(8) .name{
    color: #88c87b;
}
.sidebar .class-details .name i{
    margin-right: 10px;
    display: inline-block;
}
.sidebar .class-details li:first-child .name i{
    transform: rotate(90deg);
}
.sidebar .class-details .name i:before{
    font-size: 18px;
}
.sidebar .class-details .info{
    float: left;
    width: 50%;
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    color: #363636;
}
.sidebar .class-details .info.rating i{
    color: #fcb614;
}
.sidebar .class-details li:last-child .info{
    color: #92278f;
}
.single-post .post-content blockquote:after {
    content: "\f10d" !important;
    position: absolute;
    left: -17px;
    top: 28%;
    margin-top: -20px;
    font: normal normal normal 48px/1 FontAwesome;
    color: #e84b3a;
    font-size: 32px;
}
.single-post .post-content blockquote:before {
    content: "\f10e" !important;
    position: absolute;
    right: 50px;
    bottom: 0px;
    font: normal normal normal 30px/1 FontAwesome;
    color: #e84b3a;
}
.single-post .post-content blockquote:before {
    content: "\f10e" !important;
    position: absolute;
    right: -11px;
    bottom: 15px;
    font: normal normal normal 30px/1 FontAwesome;
    color: #e84b3a;
}
.single-post .post-image img{width:100%}


.thim-course-content {
    width: calc(100% - 240px);
    width: -webkit-calc(100% - 240px);
    width: -moz-calc(100% - 240px);
    float: left;
    padding-right: 45px;
    border-right: 1px solid #eee;width: 100%;
}
.thim-course-info {
    padding-left: 30px;
    width: 240px;
    float: left;
    max-width: 100%;
}
.thim-course-info ul {
    margin: 0;
}
.thim-course-info ul li {
    list-style: none;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    line-height: 25px;
    padding: 15px 0;
}
.thim-course-info ul li .fa {
    width: 20px;
    text-align: left;
    font-size: 13px;
    line-height: 25px;
    vertical-align: middle;    color: #ffb606;
}
.thim-course-info ul li span {
    display: inline-block;
    font-size: 12px;
    color: #000;
    background: none;
    position: relative;
    top: inherit;
    padding: 5px;
}
.thim-course-info ul li .value {
    font-weight: 700;
    min-width: 60px;
    float: right;
    text-align: left;
}
.thim-course-info .title, .thim-course-content h4 {
    margin: 0;
    font-size: 16px;
    line-height: 30px;font-weight:bold;
    text-transform: uppercase;
}
.thim-about-author {
    padding: 30px 30px 20px;
    overflow: hidden;
    border: 1px solid #eee;
}
.thim-about-author .author-avatar {
    float: left;
    overflow: hidden;
    margin-right: 30px;
    max-width: 100%;
    margin-bottom: 22px;
}
.thim-about-author .author-bio {
    float: right;
    width: calc(100% - 140px);
    width: -webkit-calc(100% - 140px);
    width: -moz-calc(100% - 140px);
}
.thim-about-author .author-bio .job {
    color: #999;
    font-size: 13px;
    line-height: 20px;
    margin: 0;
}
.thim-about-author .author-bio .thim-author-social {
    margin: 15px 0 0;
}
.thim-author-social li {
    display: inline-block;
    list-style: none;
    margin-right: 5px;
}
.thim-author-social li a.facebook {
    color: #3b5998;
    border-color: #3b5998;
}
.thim-author-social li a {
    width: 32px;
    height: 32px;
    border: 1px solid #305891;
    border-radius: 50%;
    line-height: 30px;
    display: inline-block;
    color: #305891;
    font-size: 16px;
    text-align: center;
}
.thim-author-social li a.twitter {
    color: #00aced;
    border-color: #00aced;
}
.thim-author-social li a.google-plus {
    color: #dd4b39;
    border-color: #dd4b39;
}
.thim-author-social li a.linkedin {
    color: #007bb5;
    border-color: #007bb5;
}

.thim-author-social li a.youtube {
    color: #b00;
    border-color: #b00;
}

.thim-about-author .author-description {
    font-size: 15px;
    margin: 18px 0 24px;
    clear: both;
}
.section-content {
    margin: 0;
    list-style: none;
}
.section-content .course-item {
    line-height: 30px;
    padding: 11px 13px 11px 9px;
    border-top: 1px solid #eee;
    margin: 0;
}
.section-content .course-item .meta-left {
    display: inline-block;
    float: left;
    min-width: 135px;
}
.section-content .course-item .course-format-icon {
    margin-right: 5px;
    min-width: 15px;
}
.section-content .course-item span {
    display: inline-block;
    line-height: 30px;
    color: #999;
}
.section-content .course-item .index {
    font-size: 13px;
    font-weight: 400;
    min-width: 80px;
    display: inline-block;
    line-height: 30px;
}
.section-content .course-item .label {
        margin-right: 5px;
    position: relative;
    background: none;
    top: inherit;
    padding: 4px;
}
.section-content .course-item .meta {
    font-size: 13px;
    font-weight: 400;
    float: right;
}
.section-content .course-item .lesson-preview {
    line-height: 24px;
    width: 24px;
    text-align: center;
    border: 0;
    padding: 0;
    background: #54b551;
    color: #fff;
    display: inline-block;
    border-radius: 50%;
    margin-left: 0;
    font-size: 12px;
    font-weight: 700;
}



/* Flip cards */
.d-lg-none {
    display: none!important;
}
#intro-cards .card {
	padding: 0;color:#fff;    display: block;
    border: 0px;position: relative;
    border-radius: 15px;
}

#intro-cards .card-flip .card {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: -webkit-transform 300ms;
	transition: transform 300ms;
	transition: transform 300ms, -webkit-transform 300ms;
	transition-timing-function: linear;
	width: 100%;
	height: 100%;
	margin: 0;
}

#intro-cards .card-img {
	width: 100%;
	border-radius: 30% 70% 15px 15px;
	height:220px;
}

#intro-cards .card-flip.card {
	background: none;
}

#intro-cards .card-flip .card .btn {
	background-color: 0;
	border: 2px solid #fff;
}

#intro-cards .card-flip .card:first-of-type {
	transform: rotateY(0deg);
}


/* Whale in the sea animation */

.floating-whale {
	left: 50%;
	z-index: 0;
	-webkit-animation: float 6s ease-in-out infinite;
	animation: float 6s ease-in-out infinite;
	margin-bottom: -45px;
	margin-left: 120px;
}

.sea {
	height: 50px;
	position: relative;
	z-index: 99;
}


/* Waves animation */

.waveHorizontals {
	width: 100%;
	height: 20px;
	position: relative;
	bottom: 0;
	z-index: 9;
}

.waveHorizontal {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	background-repeat: repeat-x;
	-webkit-animation: move 12s linear infinite;
	animation: move 12s linear infinite;
}

@keyframes float {
	0% {
		-webkit-transform: translatey(0px);
		transform: translatey(0px);
	}
	50% {
		-webkit-transform: translatey(-10px);
		transform: translatey(-10px);
	}
	100% {
		-webkit-transform: translatey(0px);
		transform: translatey(0px);
	}
}

#waveHorizontal1 {
	background-size: 100px 100px;
	opacity: 0.3;
}

#waveHorizontal2 {
	-webkit-animation-delay: -2s;
	animation-delay: -2s;
	-webkit-animation-duration: 12s;
	animation-duration: 12s;
	opacity: 0.5;
}

#waveHorizontal3 {
	-webkit-animation-delay: -4s;
	animation-delay: -4s;
	-webkit-animation-duration: 8s;
	animation-duration: 8s;
}

@keyframes move {
	0% {
		background-position: left 0px bottom 0;
	}
	100% {
		background-position: left 350px bottom 0;
	}
}
.bg-secondary {
    background-color: #035392!important;
}
.bg-primary {
    background-color: #E8373D!important;
}
.bg-tertiary{background-color: #e4a40f;}
.bg-grn{background-color: #3FB352;}

.p-5 {
    padding: 35px!important;
}

@media (min-width: 991px) {
/* flip cards */
#intro-cards .card-flip .card:last-of-type {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
position: absolute;
top: 0;
display: flex;
}
#intro-cards .card-flip:hover .card:first-of-type {
-webkit-transform: rotateY(-180deg);
transform: rotateY(-180deg);
}
#intro-cards .card-flip:hover .card:last-of-type {
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
}
}
.p-4 {
    padding: 1.5rem!important;
}
#intro-cards .item-box{width:100%;float:left;margin:0 0 30px;color:#fff;}
#intro-cards .item-box i{float:left;font-size:25px;margin:0 10px 0 0;color: #fff;}
#intro-cards .item-box img{float:left;margin:0 10px 0 0;height:50px}
#intro-cards .item-box h5, #intro-cards .item-box h5 a{float:left;font-size:25px;color:#fff;}
#intro-cards .p-4 .card-title, #intro-cards .p-5 .card-title{color:#fff;}
#intro-cards .p-4 h5{margin-bottom:22px;font-size:28px;}
#intro-cards .p-4 h5 span{font-family: 'BioRhyme', serif;font-weight:bold;}
.icon-features {
    border-radius: 73% 34% 44% 35% / 43% 42% 41% 39%;
    background: #E8373D;
    transition: all 0.4s ease-in-out;
    margin-bottom: 20px;
    display: inline-block;
	color:#fff;
	padding: 35px;
    font-size: 30px;
    line-height: 44px;
    font-weight: bold;width:100%;text-align:center;
}
.begi-bx .row .col-md-3:nth-child(2) .icon-features {background:#400080;border-radius:43% 42% 41% 39% / 73% 34% 44% 45%}
.begi-bx .row .col-md-3:nth-child(3) .icon-features {background:#2E80FF;border-radius:83% 72% 41% 39% / 73% 54% 44% 35%}
.begi-bx .row .col-md-3:nth-child(4) .icon-features{background:#F59331;border-radius:39% 41% 62% 69% / 83% 54% 44% 25%}
.begi-bx .row:nth-child(2) .col-md-3:nth-child(1) .icon-features{background:#3FB352;border-radius:78% 33% 62% 69% / 73% 54% 44% 35%;}
.begi-bx .row:nth-child(2) .col-md-3:nth-child(2) .icon-features{background:#B54C9A;border-radius:69% 72% 62% 69% / 43% 54% 44% 35%}
.begi-bx .row:nth-child(2) .col-md-3:nth-child(3) .icon-features {background:#930C7A;border-radius:58% 58% 62% 69% / 63% 54% 87% 55%}
.begi-bx .row:nth-child(2) .col-md-3:nth-child(4) .icon-features{background:#FFBD0A;border-radius:93% 87% 63% 69% / 37% 54% 44% 85%}
.begi-bx .row:nth-child(3) .col-md-3:nth-child(1) .icon-features {background:#DF7126;border-radius:88% 57% 62% 69% / 35% 44% 54% 35%}
.begi-bx .row:nth-child(3) .col-md-3:nth-child(2) .icon-features {background:#1A73D7;border-radius:30% 89% 62% 69% / 73% 54% 44% 35%}
.begi-bx .row:nth-child(3) .col-md-3:nth-child(3) .icon-features {background:#AC971E;border-radius:68% 32% 62% 69% / 73% 54% 44% 35%}
.begi-bx .row:nth-child(3) .col-md-6:nth-child(4) .icon-features {background:#400080;border-radius:43% 42% 41% 39% / 73% 34% 44% 45%}
.box_style_1 {
    padding: 15px 25px 5px;
    box-shadow: inset 0 0 0 1px #e0e5e9;
    border: 5px solid #fbfbfc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 20px;
    background-color: #fff;
}
.box_style_1 h4 {
    border-bottom: 1px solid #eaeff3;
    padding-bottom: 10px;
}
.profile ul {
    text-transform: none;
    font-size: 14px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.profile ul li {
    border-bottom: 1px solid #ededed;
    padding: 5px 0;
}
#payment_opt{width:100%;float:left;    margin-bottom: 30px;}
#payment_opt .input-wrapper{float:left;margin:0 40px 10px 0;}





