/*-------------
[Table of contents]

[ DEFULT INDEX NUMBER ]

1.  GENERAL CSS
2.  NAVBAR
4.  HOME
5.  SERVICE
6.  ABOUT
7.  TESTIMONIAL
8.  FAQ
9.  QUATE
10. SUBSCRIBE
11. PRICING
12. BLOG
13. FOOTER
14. Pagination
15. COPYRIGHT


-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[ Color codes ]

    [ Text and Background Color ]
        Main color 1:       #1c93e5
        Main color 2:       #009688
        Main color 3:       #9c27b0
        Main color 4:       #ff4081
        Background 1:       #FFFFFF
        Background 2:       #F6F6F6
        Shadow color:       #000000;

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Typography]

    [ There are using two different font typography ]
        Typography 1: Roboto font;
        Typography 2: Montserrat font;

    [ Other Typography style are same ]
    Body :
        font-style:     normal;
        font-size:      15px;

    h2:
        font-size: 48px;
        line-height: 55px;

    h3:
        font-size: 30px;
        line-height: 40px;

    h4:
        font-size: 20px;
        font-weight: 600;

    p:
        font-size: 18px;
        line-height: 30px;


-------------------------------------------------------------------*/
/**
 * -------------------
 *  Defult CSS
 * -------------------
 */


 .btn:hover {
   background-color: #a06e03;
   border-color: transparent;
 }

html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: 'Varela Round', sans-serif;
  font-size: 16px;
  font-style: none;
  line-height: 26px;
  font-weight: 400;
  overflow-x: hidden !important;
  text-align: left;
  position: relative;
  background-color: #fff;
}
.nav li a {
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  font-family: 'Varela Round', sans-serif;
  padding: 0px;
  background-color: transparent;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.nav li a:hover {
  background-color: transparent;
}
.nav li a:focus {
  background-color: transparent;
  outline: 0 !important;
}
a {
  text-decoration: none !important;
  cursor: pointer;
  font-family: 'Varela Round', sans-serif;
  padding: 0px;
  background-color: transparent;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  opacity: 0.9;
}
a:hover {
  background-color: transparent;
}
a:focus {
  background-color: transparent;
  outline: 0 !important;
}
.center {
  float: none;
  margin: 0 auto;
  text-align: center;
}
/**
 * ---------------------
 *  Defult Halping Class
 * ---------------------
 */
.overflow {
  overflow: hidden;
}
.relative {
  position: relative;
}
.display-table {
  display: table;
  width: 100%;
  height: 100%;
}
.display-flex {
  display: flex;
  flex: 1;
}
.vertical-middle {
  display: table-cell;
  float: none;
  vertical-align: middle;
}
/**
 * --------------------------------------
 *  Video Section Background Defult Style
 * --------------------------------------
 */
.section-video {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 100%;
  min-width: 100%;
  overflow: hidden;
  z-index: -1;
}
.section-video .bgvid {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
}
.body-video-bg > .section-video {
  position: fixed;
  top: 0;
  left: 0;
}
/**
 * ------------------------------------
 *  Every Section Headline Defult Class
 * ------------------------------------
 */
.section-heading {
  display: block;
  margin: 0;
}
.section-header {
  margin-bottom: 100px;
  text-align: center;
}
.section-header .sub-heading {
  font-size: 22px;
  line-height: 30px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.section-header.text-left,
.section-header.text-left * {
  text-align: left;
}
.section-header.text-right,
.section-header.text-right * {
  text-align: right;
}
.section-header-separator {
  position: relative;
  width: 145px;
  margin: 5px auto;
  display: inline-block;
}
.section-header-separator .icon {
  font-size: 48px;
  text-align: center !important;
}
.section-header-separator::before,
.section-header-separator::after {
  content: '';
  position: absolute;
  width: 57px;
  height: 2px;
  top: 25px;
}
.section-header-separator::before {
  left: 0;
}
.section-header-separator::after {
  right: 0;
}
.btn-shuttr-hvr {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-radius: 50px;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.btn-shuttr-hvr:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f7b831;
  color: #fff;
  border-color: transparent;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-radius: 50px;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-shuttr-hvr:hover,
.btn-shuttr-hvr:focus,
.btn-shuttr-hvr:active {
  color: #fff;
  border-color: transparent;
}
.btn-shuttr-hvr:hover:before,
.btn-shuttr-hvr:focus:before,
.btn-shuttr-hvr:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  border-color: transparent;
}
.btn-shuttr-hvr-half {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-radius: 50px;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.btn-shuttr-hvr-half:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f7b831;
  color: #fff;
  border-color: transparent;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-radius: 0px 30px 30px 0px ;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-shuttr-hvr-half:hover,
.btn-shuttr-hvr-half:focus,
.btn-shuttr-hvr-half:active {
  color: white;
  border-color: transparent;
}
.btn-shuttr-hvr-half:hover:before,
.btn-shuttr-hvr-half:focus:before,
.btn-shuttr-hvr-half:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.v-middle {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.mini-separator {
  padding: 20px 0;
}
/**
 * ---------------------
 *   Defult Button Style
 * ---------------------
 */
.btn {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn:last-child {
  margin-right: 0px !important;
}
.btn .icon {
  position: relative;
  top: 2px;
}
.btn .icon img {
  position: relative;
  top: -3px;
  width: 14px;
}
.btn.left-icon .icon {
  margin-right: 15px;
}
.btn.right-icon .icon {
  margin-left: 15px;
}
.btn.btn-fill {
  background-color: #f7b831;
  color: #fff;
  border-color: transparent;
}
.btn.btn-fill:hover {
  background-color: #efa70b;
  border-color: transparent;
}
.btn.btn-border {
  background-color: transparent;
}
.btn.white-btn-border {
  background-color: transparent;
  border-color: #fff;
}
.btn.btn-round {
  padding: 15px;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  font-size: 24px;
  text-align: center;
}
.btn.btn-round .icon {
  top: 7px;
}
.btn.apple,
.btn.androad {
  -webkit-border-radius: 5px ;
  -moz-border-radius: 5px ;
  -ms-border-radius: 5px ;
  -o-border-radius: 5px ;
  border-radius: 5px ;
  padding: 9px 28px;
  height: 82px;
}
.btn.apple img,
.btn.androad img {
  width: 35px;
  height: 100%;
  float: left;
}
.btn.apple .icon,
.btn.androad .icon {
  font-size: 60px;
  float: left;
}
.btn.apple span,
.btn.androad span {
  display: block;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn.apple .group,
.btn.androad .group {
  float: right;
}
.btn.apple .big,
.btn.androad .big,
.btn.apple .small,
.btn.androad .small {
  text-align: left;
  margin-left: 7px;
  line-height: 30px;
}
.btn.apple .big,
.btn.androad .big {
  font-size: 24px;
  font-weight: 400;
}
.btn.apple .small,
.btn.androad .small {
  font-size: 16px;
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: thin dotted;
  outline: 0px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.btn-text-link {
  padding: 50px 0 0 0;
  text-align: center;
}
.btn-text-link a {
  margin-left: 10px;
}
/**
 * -----------------
 * Social Icon Style
 * -----------------
 */
.social-icon {
  display: inline-block;
}
.social-icon li {
  list-style: none;
  float: left;
  margin-bottom: 0px;
}
.social-icon li a {
  font-size: 25px;
  text-align: center;
  width: 45px;
  height: 45px;
  padding: 10px;
  border-radius: 50%;
  margin-right: 15px;
}
.social-icon li:last-child a {
  margin-right: 0px;
}
/**
 * -----------------------------------
 * Subscription and contact  "MESSAGE"
 * -----------------------------------
 */
.subscription-success,
.subscription-failed,
.email-success,
.email-failed,
.email-loading {
  font-size: 15px;
  display: none;
  text-align: center !important;
  padding: 10px !important;
}
.email-loading {
  color: #52B8FF;
}
.email-loading img {
  width: 15px;
  position: relative;
  top: -2px;
}
.subscription-failed,
.email-failed {
  color: #FF5252 !important;
}
.subscription-failed .icon,
.email-failed .icon {
  font-size: 20px;
  position: relative;
  top: 5px;
}
.subscription-success,
.email-success {
  color: #56CC35;
}
.subscription-failed .icon,
.email-failed .icon,
.subscription-success .icon,
.email-success .icon {
  font-size: 20px;
  position: relative;
  top: 5px;
}
/**
 * ------------------
 * Form Style
 * ------------------
 */
/**
 * =================
 * CONTAINER HALF CONTENT
 * =================
 */
.content-half {
  position: relative;
}
.container-half {
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  width: 48%;
}
.container-half.pr30 {
  width: calc(50% - 30px);
}
.container-half-left {
  left: 0;
  background-position: center right;
}
.container-half-right {
  right: 0;
  background-position: center left;
}
/**
 * ---------------------------------
 *  Section Background Size Property
 * ---------------------------------
 */
.bg-cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: initial;
  background-repeat: no-repeat;
}
/**
 * --------------------
 *  Defult Margin Class
 * --------------------
 */
.margin-t-15 {
  margin-top: 15px;
}
.margin-r-15 {
  margin-right: 15px;
}
.margin-b-15 {
  margin-bottom: 15px;
}
.margin-l-15 {
  margin-left: 15px;
}
.margin-t-20 {
  margin-top: 20px;
}
.margin-r-20 {
  margin-right: 20px;
}
.margin-b-20 {
  margin-bottom: 20px;
}
.margin-l-20 {
  margin-left: 20px;
}
.margin-t-30 {
  margin-top: 30px;
}
.margin-r-30 {
  margin-right: 30px;
}
.margin-b-30 {
  margin-bottom: 30px;
}
.margin-l-30 {
  margin-left: 30px;
}
.margin-t-40 {
  margin-top: 40px;
}
.margin-r-40 {
  margin-right: 40px;
}
.margin-b-40 {
  margin-bottom: 40px;
}
.margin-l-40 {
  margin-left: 40px;
}
.margin-t-50 {
  margin-top: 50px;
}
.margin-r-50 {
  margin-right: 50px;
}
.margin-b-50 {
  margin-bottom: 50px;
}
.margin-l-50 {
  margin-left: 50px;
}
/**
 * ---------------------
 *  Defult Padding class
 * ---------------------
 */
.padding-t-15 {
  padding-top: 15px;
}
.padding-r-15 {
  padding-right: 15px;
}
.padding-b-15 {
  padding-bottom: 15px;
}
.padding-l-15 {
  padding-left: 15px;
}
.padding-t-20 {
  padding-top: 20px;
}
.padding-r-20 {
  padding-right: 20px;
}
.padding-b-20 {
  padding-bottom: 20px;
}
.padding-l-20 {
  padding-left: 20px;
}
.padding-t-30 {
  padding-top: 30px;
}
.padding-r-30 {
  padding-right: 30px;
}
.padding-b-30 {
  padding-bottom: 30px;
}
.padding-l-30 {
  padding-left: 30px;
}
.padding-t-40 {
  padding-top: 40px;
}
.padding-r-40 {
  padding-right: 40px;
}
.padding-b-40 {
  padding-bottom: 40px;
}
.padding-l-40 {
  padding-left: 40px;
}
.padding-t-50 {
  padding-top: 50px;
}
.padding-r-50 {
  padding-right: 50px;
}
.padding-b-50 {
  padding-bottom: 50px;
}
.padding-l-50 {
  padding-left: 50px;
}
@media (max-width: 991px) {
  .container-half-left,
  .container-half-right {
    display: none;
  }
}
@media (max-width: 767px) {
  /**
     * ----------------
     *  Defult CSS
     * ----------------
     */
  html *,
  body,
  p {
    text-align: center;
  }
  h1 {
    font-size: 45px;
    line-height: 65px;
    font-weight: 300;
  }
  h2 {
    font-size: 38px;
    line-height: 55px;
    font-weight: 300;
  }
  /**
     * ------------------------------------
     *  Every Section Headline Defult Class
     * ------------------------------------
     */
  .section-header {
    margin-bottom: 80px;
  }
  .section-header .sub-heading {
    font-size: 24px;
    line-height: 30px;
  }
  /**
     * ---------------------
     *   Defult Button Style
     * ---------------------
     */
  /**
     * -------------------------------
     *  Section Top and Bottom padding
     * -------------------------------
     */
  .section-separator {
    display: block;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  /**
     * -----------------
     * Nav Defult Style
     * -----------------
     */
  ul,
  li {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  li {
    display: inline-block;
  }
  /**
     * ----------------
     *   Helping Class
     * ----------------
     */
  .vertical-middle {
    display: block;
  }
  .display-table {
    width: auto;
    height: auto;
  }
}
/*
|===================
| GENERAL CSS
|===================
*/
h1 {
  font-family: 'Varela Round', sans-serif;
  font-size: 50px;
  line-height: 60px;
  font-weight: 800;
}
h2 {
  font-family: 'Varela Round', sans-serif;
  font-size: 55px;
  line-height: 60px;
}
h3 {
  font-family: 'Varela Round', sans-serif;
  font-size: 30px;
  line-height: 46px;
}
h4 {
  font-family: 'Varela Round', sans-serif;
  font-size: 28px;
  line-height: 36px;
}
h5 {
  font-family: 'Varela Round', sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: capitalize;
}
h6 {
  font-family: 'Varela Round', sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
}
p {
  font-family: 'Varela Round', sans-serif;
  font-size: 14px;
  line-height: 25px;
  font-weight: normal;
  opacity: 0.9;
}
.tagline {
  font-size: 16px;
  line-height: 28px;
  opacity: 0.7;
}
.btn {
  color: #000;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-decoration: none;
  background-color: transparent;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  padding: 8px 30px;
  display: inline-block;
  border: 2px solid #000;
  text-align: center;
  letter-spacing: 1px;
  text-transform: capitalize;
}
.btn:hover,
.btn:focus,
.btn:active {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn.btn-big {
  padding: 10px 80px;
}
.btn.btn-2 {
  border-radius: 4px;
}
.btn.active {
  box-shadow: none;
}
.btn-border {
  border-color: #f7b831;
}
.btn-border:hover {
  background-color: #f7b831;
  color: #fff;
  border-color: transparent;
}
.btn-base {
  background-color: #f7b831;
  color: #fff;
  border-color: transparent;
}
.btn-base:hover {
  border-color: transparent;
  color: #fff;
  background-color: #efa70b;
}
.btn-fill {
  border-color: #f7b831;
}
.fixed-bg {
  background-attachment: fixed;
}
.section-separator {
  padding: 70px 0;
}
.section-margin {
  margin: 90px 0;
}
.color-bg {
  background-color: #f7b831;
  color: #fff;
}
.color {
  color: #f7b831;
}
.uv-text-color {
  color: #f7b831;
}
.white-bg {
  background-color: #fff;
  color: #333;
}
.black-bg {
  background-color: #333;
  color: #fff;
}
.footer-bg {
  background-color: #2a2f36;
  color: #fff;
}
.bg-2 {
  background-color: #f4f4f4;
}
.bg-3 {
  background-color: #f7f5f5;
}
.bg-4 {
  background-color: #f8fafb;
}
.overflow {
  overflow: hidden;
}
.it-half-section {
  position: relative;
}
.container-half {
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  width: 50%;
}
.it-half-section .container-half-left {
  left: 0;
  background-position: center right;
  width: 50%;
  background-size: cover;
}
.it-half-section .container-half-right {
  right: 0;
  background-position: center left;
  width: 50%;
}
.table-display {
  display: flex;
  -webkit-display: flex;
  justify-content: center;
  align-items: center;
}
.center {
  float: none;
  margin: 0 auto;
  text-align: center;
}
.right {
  float: right;
}
.main-color-bg {
  background-color: #f7b831;
  color: #fff;
}
.margin-top-o {
  margin-top: 0;
}
.padding-top-none {
  padding-top: 0;
}
.padding-o {
  padding: 0;
}
.no-border {
  border: 0px solid transparent !important;
}
.padding-left-o {
  padding-left: 0;
}
.padding-top-o {
  padding-top: 0 !important;
}
.section-title {
  margin-bottom: 30px;
  text-align: left;
}
.section-title.center {
  text-align: center;
}
.section-title h2 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  font-family: 'Montserrat', sans-serif;
  color: #041025;
}
.section-title span {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  font-family: 'Varela Round', sans-serif;
}
.section-title .uv-hr {
  width: 10%;
  float: left;
  border-width: 2px;
  border-color: #f7b831;
  text-align: left;
}
.img-circle {
  border-radius: 50%;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}
.play-btn a .fa {
  color: #fff;
  font-size: 50px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.play-btn a .fa:hover {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: scale(1.2) ;
  -moz-transform: scale(1.2) ;
  -ms-transform: scale(1.2) ;
  -o-transform: scale(1.2) ;
  transform: scale(1.2) ;
}
.form-control {
  display: block;
  width: 100%;
  height: 54px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 27px;
  color: #333;
  font-weight: normal;
  background-color: transparent;
  background-image: none;
  border: 2px solid #333;
  border-color: #e2e2e2;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  border-radius: 4px;
  box-shadow: inset 0 0px 0px transparent;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
  border-color: #f7b831;
  outline: 0;
  -webkit-box-shadow: inset 0 0px 0px transparent, 0 0 0px transparent;
  box-shadow: inset 0 0px 0px transparent, 0 0 0px transparent;
}
.shadow {
  -webkit-box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, 0.2) ;
  -moz-box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, 0.2) ;
  -ms-box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, 0.2) ;
  -o-box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, 0.2) ;
  box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, 0.2) ;
}
.shadow-light {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1) ;
  -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1) ;
  -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1) ;
  -o-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1) ;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1) ;
}
.shadow-border {
  -webkit-box-shadow: 0 3px 5px rgba(0,0,0,.1);
  box-shadow: 0 3px 5px rgba(0,0,0,.1);
}
.uv-shadow {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -ms-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
}
.shadow-3 {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -ms-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
}
.color-overlay {
  background: rgba(51, 51, 51, 0.2);
}
.color-overlay-2 {
  background: rgba(255, 255, 255, 0.9);
}
.color-overlay-3 {
  background: rgba(51, 51, 51, 0.8);
}
.black-bg {
  background-color: #202026;
  color: #fff;
}
.blog-bg {
  background: #edecf0;
}
.white-bg {
  background-color: #fff;
  color: #333;
}
.button {
  text-align: center;
  margin-top: 30px;
}
.hr {
  width: 15%;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 10px;
}
.section-tagline h2 {
  font-size: 35px;
  line-height: 48px;
  font-weight: 300;
  margin-bottom: 30px;
}
.section-tagline span {
  font-size: 16px;
  line-height: 26px;
}
.fix-bg {
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center;
}
.image-bg {
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center;
}
.section-title span {
  font-size: 20px;
  line-height: 32px;
}
.uv-hover-style {
  -webkit-transform: translateY(0px);
  transition: all 0.4s ease-out;
  transform: translateY(0px);
}
.uv-hover-style:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  transition: all 0.4s ease-out;
}
/*
|===================
| HEADER TOP
|===================
*/
.xt-header-top {
  padding: 8px 0;
  overflow: hidden;
  background-color: #4f5766;
  color: #fff;
}
.uv-header-contact {
  text-align: left;
}
.uv-header-contact a {
  display: inline-block;
  margin-right: 30px;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
}
.uv-header-contact a .fa {
  margin-right: 10px;
}
.uv-header-user {
  text-align: right;
}
.uv-header-user a {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
}
.uv-header-user a .fa {
  margin-right: 10px;
}
.uv-header-user .xt-header-search {
  display: inline-block;
}
/*
|===================
| SEARCH BAR
|===================
*/
.xt-header-search #besocial-header-right {
  position: relative;
  min-width: 30px;
  text-align: right;
  cursor: pointer;
  z-index: 99;
  background: transparent;
  padding: 0px;
  margin-top: 0px;
}
.xt-header-search #besocial-header-right .fa {
  font-size: 16px;
  line-height: 30px;
  margin-left: 5px;
}
.xt-header-search #besocial-header-right .fa-remove {
  position: absolute;
  top: 0px;
  right: 25px;
  text-align: center;
  margin: 0px auto;
  -webkit-transform: translate3d(0, -65px, 0);
  transform: translate3d(0, -65px, 0);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  visibility: hidden;
}
.xt-header-search #besocial-header-right.scroll-search-icon .fa-remove {
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  visibility: visible;
}
.xt-header-search #besocial-header-right .fa-search {
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-right: 0;
  line-height: 18px;
  margin-left: 20px;
}
.xt-header-search #besocial-header-right.scroll-search-icon .fa-search {
  -webkit-transform: translate3d(0, 65px, 0);
  transform: translate3d(0, 65px, 0);
}
.xt-header-search #besocial-search-bar {
  position: absolute;
  top: 0px;
  right: 15px;
  padding-right: 0px;
  width: 100%;
  max-width: 480px;
  z-index: 97;
  display: none;
  opacity: 0;
  -webkit-transform: translate3d(40px, 0, 0);
  transform: translate3d(40px, 0, 0);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.xt-header-search #besocial-search-bar.show-search-bar {
  display: block;
  opacity: 1;
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.xt-header-search .besocial-topbar-searchbox {
  display: block;
  position: relative;
  margin-bottom: 0px;
  vertical-align: middle;
}
.xt-header-search .besocial-topbar-searchbox input[type="submit"] {
  height: 30px !important;
  border-radius: 0px !important;
  box-shadow: none !important;
  top: 0;
  right: 0;
  line-height: 30px;
  font-family: 'FontAwesome';
  width: 70px;
  background: #f7b831;
  position: absolute;
  margin: 0px;
  border: 0;
  padding: 0px;
  text-indent: -500em;
  -webkit-font-smoothing: antialiased;
}
.xt-header-search .besocial-topbar-searchbox input[type="text"].besocial-topbar-searchtext {
  width: 100%;
  margin: 0px;
  height: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: none !important;
  border-radius: 0px !important;
  padding: 0px 90px 0px 20px;
  background: #fff;
  color: #333;
}
.xt-header-search .besocial-topbar-searchbox input[type="text"].besocial-topbar-searchtext:focus {
  border-color: #f7b831;
  outline-color: #f7b831;
}
.xt-header-search .besocial-topbar-searchbox ::-webkit-input-placeholder {
  color: #333;
  opacity: 0.8;
}
.xt-header-search .besocial-topbar-searchbox :-moz-placeholder {
  color: #333;
  opacity: 0.8;
}
.xt-header-search .besocial-topbar-searchbox ::-moz-placeholder {
  color: #333;
  opacity: 0.8;
}
.xt-header-search .besocial-topbar-searchbox :-ms-input-placeholder {
  color: #333;
  opacity: 0.8;
}
/*
|===================
| NAVBAR
|===================
*/
.navbar {
  border: none;
  min-height: initial;
  padding: 0;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 0;
}
.navbar li {
  padding: 0px 20px;
}
.navbar li:first-child {
  padding-left: 0;
}
.navbar-collapse {
  padding-left: 0;
}
.navbar-nav li a {
  color: #333;
  font-size: 14px;
  line-height: 30px;
  padding: 15px 0;
  font-weight: 600;
  font-family: 'Varela Round', sans-serif;
  text-transform: uppercase;
}
.navbar-nav li a:after {
  content: '';
  display: block;
  height: 2px;
  text-align: center;
  left: 50%;
  width: 0;
  float: none;
  background: #f7b831;
  transition: width 0.4s ease, background-color 0.4s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  margin: 0 auto;
}
.navbar-nav li a:hover {
  border-color: #f7b831;
  color: #333;
  width: 100%;
}
.navbar-nav li a:hover:before {
  color: #f7b831;
  width: 100%;
}
.navbar-nav li a:hover:after {
  transition: all 0.2s linear 0s;
  background: #f7b831;
  color: #f7b831;
  width: 100%;
}
.navbar-nav li a:focus {
  color: #333;
}
.navbar-nav li a:focus:before {
  background: #f7b831;
  color: #333;
  width: 100%;
}
.navbar-nav li a.active:after {
  transition: all 0.2s linear 0s;
  background: #f7b831;
  color: #f7b831;
  width: 90%;
  left: 50%;
}
.navbar-nav li:last-child {
  padding-right: 0;
}
.navbar.active {
  padding: 6px 0 8px 0;
  -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
  -moz-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
  -ms-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
  -o-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
}
.navbar-collapse.collapse {
  padding-right: 0;
  float: right;
}
.nav-3 {
  border-radius: 10px 10px 0px 0;
}
.navbar-nav li.active a:before {
  color: #333;
  background: #f7b831;
  width: 100%;
}
.dropdown-menu {
  box-shadow: none;
  border-radius: 0;
}
.navbar-nav > li > .dropdown-menu {
  padding: 10px 0px;
  font-size: 14px;
  line-height: 24px;
  left: 0px;
  min-width: 250px;
  text-align: center;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 5px rgba(0,0,0,.1);
  box-shadow: 0 3px 5px rgba(0,0,0,.1);
}
.navbar-nav > li > .dropdown-menu li {
  margin: 0px;
  padding: 0;
  text-align: left;
  width: 100%;
  transition: all 0.2s linear 0s;
  padding: 0 20px;
  border-bottom: 1px solid #000;
  border-color: #eaeaea;
}
.navbar-nav > li > .dropdown-menu li:last-child {
  border-bottom-color: transparent;
}
.navbar-nav > li > .dropdown-menu li:last-child a {
  padding-bottom: 0;
}
.navbar-nav > li > .dropdown-menu li a {
  color: #333;
  padding: 10px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
}
.navbar-nav > li > .dropdown-menu li a:after {
  background-color: transparent;
  width: 0;
}
.navbar-nav > li > .dropdown-menu li a:hover {
  border-color: transparent;
  color: #f7b831;
}
.navbar-nav > li > .dropdown-menu li a:hover:after {
  background-color: transparent;
  width: 0;
}
.navbar-nav .dropdown.open a:active {
  color: #f7b831;
  background-color: transparent;
}
.navbar-nav .dropdown.open .dropdown-menu {
  color: #f7b831;
}
.navbar-nav .dropdown.open .dropdown-menu li a {
  color: #000;
}
.navbar-nav .dropdown.open .dropdown-menu li a:hover {
  color: #f7b831;
}
.navbar-nav .dropdown.open .dropdown-menu li a:focus {
  color: #f7b831;
}
.dropdown-menu > li.open > a {
  background-color: transparent;
  color: #f7b831 !important;
  text-decoration: none;
}
.nav .open > a {
  border-color: #fff;
  width: calc(100%);
  transition: all 0.2s linear 0s;
  background-color: transparent;
}
.nav .open > a:focus,
.nav .open > a:hover {
  background-color: transparent;
  border-color: #fff;
  width: calc(100%);
  transition: all 0.2s linear 0s;
}
.uv-logo {
  margin-top: 11px;
}
.uv-logo img {
  max-width: 180px;
}
.mean-container .mean-bar::before {
  color: #fff;
  content: url(http://favodemelbilingue.com.br/novo/images/logo.png);
  top: 33px;
  height: 100px;
}
.mean-container .mean-nav ul li {
  border-color: #f7b831;
}
.mean-container .mean-nav ul li a.mean-expand {
  background-color: #fff;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background-color: #fff;
}
.menu-spacing {
  margin: 0;
}
.strict {
  -webkit-box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, 0.2) ;
  -moz-box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, 0.2) ;
  -ms-box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, 0.2) ;
  -o-box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, 0.2) ;
  box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, 0.2) ;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
}
/*
|===================
| HOME SECTION
|===================
*/
.uv-business-home {
  margin: 0 auto;
  float: none;
  text-align: center;
}
.uv-business-home .overlay {
  padding-top: 80px;
  padding-bottom: 300px;
  background-color: rgba(51, 51, 51, 0.6);
}
.uv-business-home .business-content p {
  padding: 0 300px;
  margin: 46px 0;
}
.uv-business-home .business-content .btn {
  margin: 0 10px;
}
/*
|===================
| SLIDER
|===================
*/
/* Preloader */
.header-slider {
  overflow: hidden;
}
.slider_preloader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99;
  min-height: 750px;
}
.slider_preloader_status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../images/status.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}
.header-slider-preloader {
  min-height: 750px;
}
.header-slider {
  position: relative;
}
.header-slider:hover .owl-prev {
  left: 5%;
}
.header-slider:hover .owl-prev .fa {
  transition: all 0.4s ease 0s;
  opacity: 0.8;
}
.header-slider:hover .owl-next {
  right: 5%;
}
.header-slider:hover .owl-next .fa {
  opacity: 0.8;
  transition: all 0.4s ease 0s;
}
.header-slider .owl-prev .fa,
.header-slider .owl-next .fa {
  background: transparent;
  font-size: 50px;
  width: 50px;
  text-align: center;
  height: 45px;
  line-height: 40px;
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header-slider .owl-prev .fa:hover,
.header-slider .owl-next .fa:hover {
  color: #3cb878;
}
.header-slider .owl-prev {
  position: absolute;
  top: 50%;
  left: 5%;
  color: #fff;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header-slider .owl-prev .fa {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header-slider .owl-next {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 5%;
  color: #fff;
}
.header-slider .owl-next .fa {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header-slider .owl-dots {
  background: transparent;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0%;
  opacity: 0;
}
.header-slider .slider-preloader-wrap,
.header-slider .item {
  height: 750px;
}
.header-slider .item {
  background-size: cover;
  position: relative;
  z-index: 1;
}
.header-slider .slide-img {
  bottom: 0;
  position: absolute;
  right: 5%;
  width: auto !important;
}
.header-slider .item::after {
  background: #2f2a2f none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.header-slider .slide-table {
  display: table;
  height: 100%;
  width: 100%;
}
.header-slider .slide-tablecell {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}
.header-slider .slide-tablecell .slide-btn:hover {
  text-decoration: none;
  border-color: transparent;
}
.header-slider .slide-tablecell .slide-btn i.fa {
  margin-left: 10px;
}
.header-slider .slide-tablecell .slide-text > *:nth-child(1) {
  animation-duration: .3s;
}
.header-slider .slide-tablecell .slide-text > *:nth-child(2) {
  animation-duration: .3s;
  animation-delay: .3s;
}
.header-slider .slide-tablecell .slide-text > *:nth-child(3) {
  animation-duration: .3s;
  animation-delay: .6s;
}
.header-slider .slide-tablecell .slide-text > *:nth-child(4) {
  animation-duration: .3s;
  animation-delay: .9s;
  margin-top: 30px;
}
.header-slider .slide-tablecell .slide-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.header-slider .slide-tablecell .slide-text h1 {
  color: #fff;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}
.header-slider .slide-tablecell .slide-text p {
  font-size: 16px;
  line-height: 27px;
}
.header-slider .slide-tablecell .slide-text .slide-buttons .btn {
  text-transform: capitalize;
}
.header-slider .animation-slide .owl-nav div {
  color: #fff;
  font-size: 60px;
  left: 0;
  line-height: 70px;
  margin-top: -35px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.header-slider .animation-slide .owl-nav div.owl-next {
  left: auto;
  right: 0;
}
.header-slider .animation-slide:hover .owl-nav div.owl-prev {
  left: 30px;
  opacity: 0.5;
}
.header-slider .animation-slide:hover .owl-nav div.owl-next {
  right: 30px;
  opacity: .5;
}
.header-slider .owl-theme .owl-dots .owl-dot {
  border: 1px solid #fff;
  display: inline-block;
  height: 8px;
  cursor: pointer;
  margin: 5px;
  width: 15px;
  background-color: #fff;
  border-radius: 6px;
}
.header-slider .animation-slide .owl-dots {
  bottom: 15px;
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header-slider .owl-theme .owl-dots .owl-dot.active {
  background-color: #fff;
  border-color: #fff;
  width: 30px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header-slider .item,
.header-slider .preloader-wrap {
  background-color: #bfbfbf;
}
@media only screen and (max-width: 1900px) {
  .header-slider .slide-img {
    width: 42% !important;
    right: 0%;
  }
}
@media only screen and (max-width: 1500px) {
  .header-slider .slide-img {
    width: 50% !important;
    right: 0%;
  }
}
@media only screen and (max-width: 1200px) {
  .slide-tablecell .slide-text h2 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .header-slider .slide-img {
    display: none !important;
  }
  .header-slider .slider-preloader-wrap,
  .header-slider .item {
    height: 700px;
  }
  .slide-text {
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .header-slider .slider-preloader-wrap,
  .header-slider .item {
    height: 600px;
  }
  .slide-tablecell .slide-text h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
/*
|===================
| FEATURED
|===================
*/
.uv-feature .uv-join-tagline h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  line-height: 52px;
  font-weight: 300;
  margin-bottom: 30px;
}
.uv-feature .uv-join-tagline h2 b {
  font-weight: bold;
}
.uv-feature .uv-featured-icon ul li {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  border-right: 1px solid #e2e2e2;
}
.uv-feature .uv-featured-icon ul li:last-child {
  border-right: 0px solid transparent;
}
.uv-feature .uv-featured-icon ul li .fa {
  font-size: 42px;
  margin-bottom: 10px;
}
.uv-feature .uv-featured-icon ul li span {
  font-size: 16px;
  line-height: 27px;
  font-family: 'Varela Round', sans-serif;
  display: block;
  margin-top: 10px;
  font-weight: 600;
}
.uv-feature .uv-featured-icon h5 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}
.uv-course-author-contain {
  overflow: hidden;
  display: inline-block;
}
/*
|===================
| FEATURED CONTENT
|===================
*/
.uv-feature-2 .uv-featured-post-title {
  margin-bottom: 25px;
}
.uv-feature-2 .uv-featured-post-title h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 0;
}
.uv-feature-2 .featured-post-inner {
  box-shadow: 0 2px 7px rgba(0,0,0,.15);
}
.uv-feature-2 .featured-post-inner .uv-post-inner-content {
  padding: 20px;
}
.uv-feature-2 .featured-post-inner .uv-post-inner-content h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 15px;
}
.uv-feature-2 .featured-post-inner .uv-post-inner-content p {
  margin-bottom: 20px;
}
.uv-feature-2 .featured-post-inner ul li {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.uv-feature-2 .featured-post-inner ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 20px;
}
.uv-feature-2 .featured-post-inner ul li a:hover {
  color: #f7b831;
}
.uv-feature-2 .featured-post-inner ul li a h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 4px;
  margin-top: 0;
}
.uv-feature-2 .featured-post-inner ul li a.read-more {
  font-size: 16px;
  line-height: 27px;
  color: #f7b831;
  font-family: 'Montserrat', sans-serif;
}
.uv-feature-2 .featured-post-inner ul li span {
  font-size: 12px;
  font-family: 'Varela Round', sans-serif;
  line-height: 18px;
}
.uv-feature-2 .featured-post-inner ul li span .fa {
  margin-right: 10px;
}
.uv-join .uv-join-inner .join-content {
  padding: 30px;
  position: relative;
  color: #fff;
  padding-right: 200px;
  background: rgba(33, 177, 77, 0.7);
}
.uv-join .uv-join-inner .join-content h3 {
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-top: 0;
  margin-bottom: 0;
}
.uv-join .uv-join-inner .join-content .join-btn {
  position: absolute;
  right: 30px;
  top: 33%;
  bottom: 0;
}
.uv-join .uv-join-inner .join-content .join-btn .btn {
  width: 160px;
  line-height: 44px;
  padding: 0;
  height: 44px;
  border: none;
  background-color: #fff;
  color: #333;
}
.uv-join .uv-join-inner .join-content .join-btn .btn:hover {
  background-color: #f7b831;
  color: #fff;
}
/*
|===================
| EVENT
|===================
*/
.uv-course {
  position: relative;
}
.uv-course .section-title {
  color: #fff;
}
.uv-course .section-title h2 {
  color: #fff;
}
.uv-course .overlay {
  background: rgba(55, 59, 67, 0.7);
}
.uv-course .owl-next {
  position: absolute;
  top: 48%;
  right: -6%;
}
.uv-course .owl-next .fa {
  color: #fff;
  font-size: 26px;
  margin-left: 15px;
}
.uv-course .owl-prev {
  position: absolute;
  left: -6%;
  top: 48%;
}
.uv-course .owl-prev .fa {
  color: #fff;
  font-size: 26px;
  margin-left: 10px;
}
.uv-course .owl-item {
  padding: 0 10px;
}
.uv-course .course-inner {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -ms-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  margin: 30px 0;
  -webkit-transform: translateY(0px);
  transition: all 0.4s ease-out;
  transform: translateY(0px);
}
.uv-course .course-inner:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  transition: all 0.4s ease-out;
}
.uv-course .course-banner {
  position: relative;
}
.uv-course .course-banner img {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.uv-course .course-content {
  padding: 20px;
  background-color: #fff;
}
.uv-course .course-content h4 {
  font-size: 20px;
  line-height: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 0;
}
.uv-course .course-content p {
  margin-bottom: 20px;
}
.uv-course .course-content .btn {
  border-color: transparent;
  text-transform: capitalize;
  font-size: 14px;
}
.uv-event .section-title {
  position: relative;
  padding-right: 200px;
}
.uv-event .section-title .uv-hr {
  width: 10%;
  float: left;
  display: block;
  border-color: #949393;
  border-width: 2px;
}
.uv-event .section-title span {
  display: block;
}
.uv-event .section-title .btn {
  height: 44px;
  width: 160px;
  position: absolute;
  right: 30px;
  line-height: 44px;
  border: none;
  top: 35%;
  padding: 0;
}
.uv-event .uv-each-events li {
  overflow: hidden;
  padding: 30px 0;
  border-top: 1px solid #e1e1e1;
}
.uv-event .uv-each-events li .uv-event-date {
  text-align: center;
}
.uv-event .uv-each-events li .uv-event-date h3 {
  font-size: 70px;
  line-height: 70px;
  color: #f7b831;
  font-weight: bold;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
}
.uv-event .uv-each-events li .uv-event-date span {
  font-size: 14px;
  line-height: 20px;
  color: #f7b831;
}
.uv-event .uv-each-events li .uv-event-content {
  padding-right: 30px;
}
.uv-event .uv-each-events li .uv-event-content a:hover {
  color: #f7b831;
}
.uv-event .uv-each-events li .uv-event-content a h4 {
  font-size: 25px;
  line-height: 33px;
  font-family: 'Varela Round', sans-serif;
  font-weight: 600;
  margin-top: 0;
}
.uv-event .uv-each-events li .uv-event-content .schedule {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 20px;
}
.uv-event .uv-each-events li .uv-event-content .schedule .uv-event-time {
  margin-right: 20px;
}
.uv-event .uv-each-events li .uv-event-content .schedule .uv-event-time .fa {
  margin-right: 5px;
}
.uv-event .uv-each-events li .uv-event-content .schedule .uv-event-place {
  text-transform: uppercase;
}
.uv-event .uv-each-events li .uv-event-content .schedule .uv-event-place .fa {
  margin-right: 5px;
}
.uv-video .overlay {
  background-color: rgba(43, 39, 37, 0.7);
}
.uv-video h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  margin-top: 0;
}
.uv-video p {
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  text-transform: uppercase;
  padding: 20px 100px;
  text-align: center;
}
.uv-video .fa {
  color: #fff;
  font-size: 50px;
  padding: 60px 0;
}
.uv-blog {
  position: relative;
}
.uv-blog .section-title {
  position: relative;
  padding-right: 200px;
}
.uv-blog .section-title .uv-hr {
  width: 10%;
  float: left;
  display: block;
  border-color: #949393;
  border-width: 2px;
}
.uv-blog .section-title span {
  display: block;
}
.uv-blog .section-title .btn {
  height: 44px;
  width: 160px;
  position: absolute;
  right: 30px;
  line-height: 44px;
  border: none;
  top: 35%;
  padding: 0;
}
.uv-blog .owl-next {
  position: absolute;
  top: 48%;
  right: -6%;
}
.uv-blog .owl-next .fa {
  color: #000;
  font-size: 24px;
  margin-left: 15px;
}
.uv-blog .owl-prev {
  position: absolute;
  left: -6%;
  top: 48%;
}
.uv-blog .owl-prev .fa {
  color: #000;
  font-size: 24px;
  margin-left: 10px;
}
.uv-blog .owl-item {
  padding: 0 10px;
}
.uv-blog .blog-inner {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -ms-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  margin: 30px 0;
  transition: all 0.4s ease-out;
}
.uv-blog .blog-inner:hover .blog-schedule {
  transition: all 0.4s ease-out;
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.uv-blog .blog-banner {
  position: relative;
}
.uv-blog .blog-banner img {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.uv-blog .blog-content {
  padding: 20px;
  background-color: #fff;
  position: relative;
}
.uv-blog .blog-content h4 {
  font-size: 18px;
  line-height: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
}
.uv-blog .blog-content .blog-schedule h4 {
  margin-bottom: 15px;
}
.uv-blog .blog-content p {
  margin-bottom: 0;
}
.uv-blog .blog-content .blog-meta {
  font-size: 14px;
  margin-bottom: 12px;
}
.uv-blog .blog-content .btn {
  border-color: #3cb878;
  text-transform: capitalize;
  font-size: 14px;
}
.uv-blog .blog-content .blog-schedule {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -ms-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -webkit-transform: translateY(50px);
  transition: all 0.4s ease-out;
  transform: translateY(50px);
}
.uv-blog .blog-content .blog-schedule a:hover {
  color: #f7b831;
}
.uv-blog .blog-content .blog-schedule span {
  display: block;
}
.uv-blog .blog-content .blog-schedule span .fa {
  margin-right: 10px;
}
.uv-blog .blog-content .blog-schedule ul li {
  display: inline-block;
  margin-right: 20px;
  margin-top: 15px;
}
.uv-blog .blog-content .blog-schedule ul li a:hover {
  color: #f7b831;
}
.pagination-list ul {
  margin: 0;
  padding: 0;
}
.pagination-list ul li {
  list-style: none;
  display: inline-block;
  margin-right: 6px;
}
.pagination-list ul li a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  width: 40px;
  height: 40px;
  border: 1px solid #111;
  line-height: 38px;
  text-align: center;
  overflow: hidden;
  transition: .3s;
}
.pagination-list ul li:last-child {
  margin-right: 0px;
}
.pagination-list ul li a:hover,
.pagination-list ul li.active a {
  background-color: #f7b831;
  border: 1px solid #f7b831;
  color: #fff;
}
.uv-testimonial .uv-client-testimonial {
  padding: 30px 0;
}
.uv-testimonial .overlay {
  background-color: rgba(59, 60, 69, 0.7);
}
.uv-testimonial .uv-client-testimonial blockquote {
  border-width: 0px;
}
.uv-testimonial .uv-client-testimonial .uv-client-quates {
  color: #fff;
  padding: 35px 55px 80px;
}
.uv-testimonial .uv-client-testimonial .uv-client-quates h3 {
  font-size: 20px;
  line-height: 30px;
  margin-top: 0;
  font-family: 'Varela Round', sans-serif;
}
.uv-testimonial .uv-client-testimonial .uv-client-quates p {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 20px;
}
.uv-testimonial .uv-indicator li {
  height: 50px;
  width: 50px;
  border-radius: 50px;
  overflow: hidden;
  margin: 2px 6px;
  border-width: 2px;
}
.uv-testimonial .uv-indicator li.active {
  margin: 2px 6px;
  border: 2px solid #f7b831;
}
.uv-testimonial .uv-indicator li img {
  height: 50px;
  width: 50px;
  border-radius: 50px;
}
.uv-footer {
  padding-bottom: 40px;
}
.uv-footer .footer-item h6 {
  font-size: 20px;
  line-height: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.uv-footer .footer-item ul li {
  display: block;
  margin-bottom: 10px;
}
.uv-footer .footer-item ul li a {
  color: #fff;
}
.uv-footer .footer-item ul li a .fa {
  margin-right: 10px;
}
.uv-footer .footer-item ul li a:hover {
  color: #f7b831;
}
.uv-footer .footer-item ul.social {
  margin-top: 20px;
}
.uv-footer .footer-item ul.social li {
  display: inline-block;
  margin-right: 10px;
}
.uv-footer .footer-item .uv-form {
  margin-top: 30px;
}
.uv-footer .footer-item .form-control {
  height: 44px;
  border-radius: 50px;
  color: #fff;
}
.uv-footer .f-hr {
  margin: 50px 0;
  border-color: #1e3051;
}
/*
|===================
| SUBPAGE
|===================
*/
.uv-subpage-heading .overlay {
  background-color: rgba(0, 0, 0, 0.7);
}
.uv-subpage-heading .uv-subhead-content {
  color: #fff;
  padding: 100px 15px;
}
.uv-subpage-heading .uv-subhead-content span {
  font-size: 20px;
  line-height: 30px;
  font-family: 'Montserrat', sans-serif;
}
.uv-subpage-heading .uv-subhead-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  line-height: 52px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 0;
}
.uv-pagination {
  margin: 30px 0;
}
.uv-pagination ul li {
  display: inline-block;
}
.uv-pagination ul li:after {
  content: "/";
  margin-left: 5px;
}
.uv-pagination ul li:last-child:after {
  content: "";
}
.uv-pagination ul li.active a {
  color: #333;
}
.uv-pagination ul li a {
  color: #f7b831;
}
.uv-about-inner .uv-about-content {
  overflow: hidden;
  padding: 30px 15px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.uv-about-inner .uv-about-info {
  margin-bottom: 30px;
  padding-left: 20px;
  padding-top: 20px;
}
.uv-about-inner .uv-about-info h4 {
  font-weight: 600;
  font-size: 25px;
  line-height: 33px;
  font-family: 'Montserrat', sans-serif;
}
.uv-accordinaton {
  width: 90%;
  margin: 0 auto;
  display: table;
}
.uv-accordinaton ul {
  padding: 0;
  margin: 20px 0;
  color: #555;
}
.uv-accordinaton ul li {
  list-style: none;
  border-top: 1px solid #ddd;
  display: block;
  padding: 15px;
  overflow: hidden;
}
.uv-accordinaton ul li:first-child {
  border-color: transparent;
}
.uv-accordinaton-list {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.uv-accordinaton-list:hover {
  color: #f7b831;
}
.uv-accordinaton-list h2 {
  font-size: 18px;
  line-height: 30px;
  margin-top: 0;
  margin-bottom: 0;
}
.uv-accordinaton-list h2.hilighted {
  color: #f7b831;
}
.uv-accordition-detail a {
  text-decoration: none;
  color: #C0392B;
  border: 1px solid #C0392B;
  padding: 6px 10px 5px;
  font-size: 14px;
}
.uv-accordition-detail {
  margin: 10px 0 10px 0px;
  display: none;
  line-height: 22px;
}
.uv-right-arrow {
  margin-top: 0;
  margin-left: 20px;
  width: 10px;
  height: 100%;
  float: right;
  font-weight: bold;
  font-size: 20px;
}
.uv-faq .section-title h2 {
  text-transform: uppercase;
}
.uv-achivement-circle .progress {
  margin: 0 0 30px;
}
.uv-achivement-circle .progress .progressbar-text {
  color: inherit !important;
  display: block;
}
.uv-achivement-circle .progress.progress-line {
  height: 10px;
  margin-right: 60px;
}
.uv-achivement-circle .progress.progress-line .progressbar-text {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 60px;
  -webkit-transform: translateY(-35%);
  -ms-transform: translateY(-35%);
  transform: translateY(-35%);
  text-align: center;
}
.uv-achivement-circle .progress.progress-circle {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: transparent;
  border: none;
  box-shadow: none;
  margin-bottom: 0;
}
.uv-achivement-circle .progress path:nth-child(1) {
  stroke: #E8E8E8;
}
.uv-achivement-circle .progress path:nth-child(2) {
  stroke: #f7b831;
}
.uv-achivement-circle ul li {
  display: inline-block;
  border-right: 1px solid #eee;
  text-align: center;
}
.uv-achivement-circle ul li:last-child {
  border-right: transparent;
}
.uv-achivement-circle ul li .uv-circle-info {
  text-align: left;
}
.uv-achivement-circle ul li .uv-circle-info .fa {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}
.uv-achivement-circle ul li .uv-circle-info span {
  display: block;
  margin-top: 10px;
}
.uv-single-contest .uv-single-course-title {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -ms-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
.uv-single-contest .uv-single-course-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  line-height: 40px;
  margin-top: 0px;
  margin-bottom: 20px;
  text-transform: none;
}
.uv-single-contest .uv-single-course-title .uv-course-author-contain li {
  display: inline-block;
  line-height: 20px;
  margin-right: 23px;
  padding-right: 23px;
  color: #ccc;
  border-right: 1px solid #eee;
  float: left;
}
.uv-single-contest .uv-single-course-title .uv-course-author-contain li:last-child {
  border-color: transparent;
}
.uv-single-contest .uv-single-course-title .uv-course-author-contain li img {
  border-radius: 50%;
  width: 40px;
  height: auto;
  float: left;
  margin-right: 10px;
}
.uv-single-contest .uv-single-course-title .uv-course-author-contain li .uv-author-inner label {
  display: block;
}
.uv-single-contest .uv-single-course-title .uv-course-author-contain li .uv-author-inner a {
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: #f7b831;
}
.uv-single-contest .uv-single-course-title .uv-course-author-contain li .uv-author-inner .ep-review-stars {
  margin: 0;
  padding: 0;
  display: inline-block;
  list-style: none;
  line-height: 16px;
  height: 16px;
  color: #d3ced2;
}
.uv-single-contest .uv-single-course-title .uv-course-author-contain li .uv-author-inner .ep-review-stars li {
  width: 13px;
  height: 16px;
  display: inline-block;
  float: none;
  margin: 0;
  padding: 0;
  border: none;
}
.uv-single-contest .uv-single-course-title .uv-course-author-contain li .uv-author-inner .ep-review-stars li .fa {
  color: #d3ced2;
}
.uv-single-contest .uv-single-course-title .uv-course-author-contain li .uv-author-inner span {
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: #333333;
}
.uv-single-contest .uv-single-course-title .uv-course-payment {
  float: right;
}
.uv-single-contest .uv-single-course-title .uv-course-payment .uv-price {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: inherit;
  float: left;
  margin-right: 20px;
  display: inline-block;
}
.uv-single-contest .uv-single-course-title .uv-course-payment .uv-original-price {
  text-decoration: line-through;
  padding-right: 5px;
}
.uv-single-contest .single-each-content .uv-course-banner {
  margin-bottom: 20px;
}
.uv-sidebar .sidebar-title h3 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: bolder;
  position: relative;
}
.uv-sidebar .sidebar-title h3:after {
  width: 60px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -15px;
  content: "";
  background-color: #f7b831;
}
.uv-sidebar .uv-instructor {
  background: #ffffff;
  padding: 20px;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -ms-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
}
.uv-sidebar .uv-instructor ul li {
  position: relative;
  margin-bottom: 10px;
}
.uv-sidebar .uv-instructor ul li img {
  width: 80px;
  height: auto;
  display: inline-block;
}
.uv-sidebar .uv-instructor ul li .instructor-inner {
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 0;
  padding-left: 90px;
}
.uv-sidebar .uv-instructor ul li .instructor-inner a {
  margin-top: 0;
  display: block;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 8px;
  color: rgba(51, 51, 51, 0.7);
}
.uv-sidebar .uv-instructor ul li .instructor-inner a:hover {
  color: #f7b831;
}
.uv-sidebar .uv-instructor ul li .instructor-inner span {
  font-size: 12px;
  line-height: 12px;
  display: block;
}
.uv-sidebar .uv-course-sidebar {
  background: #ffffff;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -ms-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  padding: 20px;
}
.uv-sidebar .uv-course-sidebar ul li {
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding: 5px 0;
}
.uv-sidebar .uv-course-sidebar ul li a .fa {
  margin-right: 10px;
}
.uv-sidebar .uv-course-sidebar ul li a:hover {
  color: #f7b831;
}
.uv-single-course-tab {
  background: #fff;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -ms-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15) ;
}
.uv-single-course-tab .nav-tabs > li.active > a,
.uv-single-course-tab nav-tabs > li.active > a:focus,
.uv-single-course-tab .nav-tabs > li.active > a:hover {
  background-color: transparent;
  border-color: transparent;
  outline-color: transparent;
  transition: all 0s ease-out;
}
.uv-single-course-tab h3 {
  font-size: 24px;
  font-weight: 500;
}
.uv-single-course-tab ul.nav-tabs {
  border-bottom: 2px solid #eee;
  padding: 0;
  margin: 0;
}
.uv-single-course-tab ul.nav-tabs li {
  border-bottom: 4px solid transparent;
}
.uv-single-course-tab ul.nav-tabs li.active {
  border-width: 0px;
  border-bottom: 4px solid #f7b831;
  outline-color: transparent;
}
.uv-single-course-tab ul.nav-tabs li a {
  padding: 20px 15px;
  font-size: 16px;
  line-height: 27px;
  font-weight: 600;
  background-color: transparent;
  border: none;
}
.uv-single-course-tab .uv-course-tab-content {
  border-right: 1px solid #eee;
  margin: 30px 0;
}
.uv-single-course-tab .uv-course-feature {
  margin-top: 30px;
}
.uv-single-course-tab .uv-course-feature ul li {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  text-align: left;
}
.uv-single-course-tab .uv-course-feature ul li:last-child {
  border-color: transparent;
}
.uv-single-course-tab .uv-course-feature ul li .fa {
  margin-right: 10px;
}
.uv-single-course-tab .uv-course-feature ul li span {
  text-align: right;
  float: right;
}
.uv-single-course-tab .uv-curriculam .uv-right-arrow {
  margin-top: 3px;
}
.uv-single-course-tab .uv-curriculam ul li a {
  text-align: right;
  padding: 20px 30px;
  background: #eee;
  margin: 20px 0;
}
.uv-single-course-tab .uv-curriculam .uv-single-accordinaton-inner ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  margin: 0 10px;
}
.uv-single-course-tab .uv-curriculam .uv-single-accordinaton-inner ul li .fa {
  margin-right: 10px;
}
.uv-single-course-tab .review-btn {
  margin-top: 20px;
  padding-bottom: 20px;
}
.uv-single-course-tab .uv-rate {
  margin-top: 30px;
}
.uv-single-course-tab .uv-single-course-instructor {
  padding: 20px;
}
.uv-single-course-tab .uv-single-course-instructor .uv-user-details {
  padding: 20px 0;
  overflow: hidden;
}
.uv-single-course-tab .uv-single-course-instructor .uv-user-details h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #f7b831;
}
.uv-single-course-tab .uv-single-course-instructor .uv-user-details p {
  color: #9e9e9e;
}
.uv-single-course-tab .uv-single-course-instructor .uv-user-details .uv-social-icons ul li {
  display: inline-block;
  height: 27px;
  margin-right: 5px;
  width: 27px;
  background: #f7b831;
  text-align: center;
  line-height: 27px;
}
.uv-single-course-tab .uv-single-course-instructor .uv-user-details .uv-social-icons ul li a {
  color: #fff;
}
.uv-single-course-tab .uv-single-course-instructor .uv-user-details .uv-social-icons ul li a i {
  font-size: 14px;
}
.uv-single-course-tab .uv-single-course-instructor .uv-instructor-bio {
  margin-top: 20px;
}
/*

Home 2


*/
.home-2 .uv-secton-title {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}
.home-2 .uv-secton-title h2 {
  font-size: 40px;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
}
.home-2 .uv-secton-title .uv-section-hr {
  width: 10%;
  float: none;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #000;
}
.home-2 .uv-course-inner-2 {
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.home-2 .uv-course-inner-2 a {
  color: #fff;
}
.home-2 .uv-course-inner-2 .uv-course-highlight h4 {
  font-size: 25px;
  font-family: 'Lato', sans-serif;
  line-height: 34px;
  font-weight: bold;
  margin-bottom: 0;
}
.home-2 .uv-course-inner-2 .uv-course-highlight .fa {
  font-size: 50px;
}
.home-2 .uv-course-inner-2 .uv-course-highlight span {
  font-family: 'Varela Round', sans-serif;
}
.home-2 .uv-course-inner-2 .uv-overlay {
  background-color: rgba(51, 51, 51, 0.8);
}
.home-2 .uv-course-inner-2 .inner-course-heighlight-left {
  padding: 154px 0;
}
.home-2 .uv-course-inner-2 .inner-course-heighlight-right {
  padding: 65px 0;
  margin-bottom: 30px;
  text-align: left;
  padding-left: 60px;
}
.home-2 .uv-course-inner-2 .inner-course-heighlight-right .fa {
  display: inline-block;
  width: 60px;
}
.home-2 .uv-course-inner-2 .inner-course-heighlight-right .uv-highlight-caption {
  display: inline-block;
}
.home-slider-2.header-slider .item,
.home-slider-2.header-slider .preloader-wrap {
  background-color: transparent;
}
.uv-clients-logo ul li {
  margin: 0 auto;
  text-align: center;
  display: inline-block;
}
.uv-clients-logo ul li img {
  float: none;
  margin: 0 auto;
}
.uv-clients-logo .owl-carousel .owl-item {
  text-align: center;
}
.uv-clients-logo .owl-controls {
  display: none !important;
}
.uv-courses-2 .uv-courese-single-thumb {
  position: relative;
  background: #fafafa;
  margin-bottom: 30px;
}
.uv-courses-2 .uv-courese-single-thumb:hover .uv-post-img .uv-post-author {
  opacity: 1;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.uv-courses-2 .uv-courese-single-thumb:hover .uv-course-thumb-inner h4 {
  color: #000;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.uv-courses-2 .uv-courese-single-thumb .uv-featured-tag {
  color: #fff;
  background: #f7b831;
  padding: 2px 10px;
  border-radius: 2px;
  font-size: 14px;
  font-family: 'Varela Round', sans-serif;
  font-style: italic;
  position: absolute;
  left: -5px;
  top: 10px;
  z-index: 99;
}
.uv-courses-2 .uv-courese-single-thumb .uv-post-img {
  position: relative;
}
.uv-courses-2 .uv-courese-single-thumb .uv-post-img .uv-post-author {
  opacity: 0;
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, 0.6);
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.uv-courses-2 .uv-courese-single-thumb .uv-post-img .uv-post-author img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: block;
  margin: 0 auto;
  margin-top: 50px;
}
.uv-courses-2 .uv-courese-single-thumb .uv-post-img .uv-post-author span {
  font-style: italic;
  color: #fff;
}
.uv-courses-2 .uv-courese-single-thumb .uv-course-thumb-inner {
  overflow: hidden;
  padding: 15px;
}
.uv-courses-2 .uv-courese-single-thumb .uv-course-thumb-inner h4 {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  color: #6a6969;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.uv-courses-2 .uv-courese-single-thumb .uv-course-thumb-inner p del {
  color: #000;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
}
.uv-courses-2 .uv-courese-single-thumb .uv-course-thumb-inner p span {
  font-weight: bold;
  color: #f7b831;
  font-family: 'Lato', sans-serif;
  margin-right: 10px;
}
.uv-courses-2 .uv-courese-single-thumb ul {
  border-top: 1px solid #eee;
  overflow: hidden;
}
.uv-courses-2 .uv-courese-single-thumb ul li {
  font-family: 'Lato', sans-serif;
  float: left;
  padding: 10px 15px 16px;
  overflow: hidden;
  border-right: 1px solid #eee;
  margin-bottom: 0;
  width: 50%;
  position: relative;
  padding-bottom: 20px;
}
.uv-courses-2 .uv-courese-single-thumb ul li.course-info-2 .fa {
  margin-right: 5px;
}
.uv-courses-2 .uv-courese-single-thumb ul li:last-child {
  border-right: 0px solid transparent;
}
.uv-courses-2 .uv-courese-single-thumb ul li .fa {
  font-size: 12px;
}
.uv-courses-2 .uv-courese-single-thumb ul li span {
  font-weight: bold;
  font-size: 12px;
}
.uv-courses-2 .uv-course-more {
  float: none;
  margin: 0 auto;
  text-align: center;
  margin-top: 50px;
}
.uv-courses-2 .uv-course-more a {
  margin: 0 10px;
}
.uv-blog-2 .uv-project-gallery .grid-item {
  margin-bottom: 20px;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb {
  position: relative;
  background-color: #fdfdfd;
  overflow: hidden;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb .uv-blog-tag {
  position: absolute;
  right: 10px;
  top: 20px;
  color: #fff;
  border: 1px solid #fff;
  line-height: 22px;
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 99;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb .uv-blog-thumb-inner {
  padding: 15px;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb .uv-blog-thumb-inner .uv-date {
  font-size: 14px;
  line-height: 22px;
  text-align: right;
  float: right;
  overflow: hidden;
  display: block;
  width: 100%;
  margin-top: 10px;
  z-index: 99;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb .uv-blog-thumb-inner .uv-date .fa {
  margin-right: 8px;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb .uv-blog-thumb-inner h4 {
  font-size: 24px;
  line-height: 32px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 8px;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb .uv-blog-thumb-inner a:hover {
  color: #f7b831;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb .uv-blog-thumb-inner .btn {
  margin-top: 10px;
  margin-bottom: 10px;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb .uv-blog-thumb-inner.uv-blog-caption-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  bottom: 0;
  background: rgba(0, 0, 0, 0.41);
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb .uv-blog-thumb-inner.uv-blog-caption-2 .uv-date {
  margin-top: 90px;
  margin-bottom: 30px;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb .uv-blog-thumb-inner.uv-blog-caption-2 h4 {
  color: #fff;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb .uv-blog-thumb-inner.uv-blog-caption-2 ul {
  border-top: 0px solid transparent;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb .uv-blog-thumb-inner.uv-blog-caption-2 ul li {
  border-right: 0px solid transparent;
  color: #fff;
  padding-left: 0;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb ul {
  border-top: 1px solid #eee;
  overflow: hidden;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb ul li {
  float: left;
  padding: 10px 15px;
  overflow: hidden;
  border-right: 1px solid #eee;
  margin-bottom: 0;
  width: 50%;
  font-size: 12px;
  color: #767676;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb ul li:last-child {
  border-right: 0px solid transparent;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb ul li .fa {
  font-size: 12px;
  margin-right: 8px;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb ul li span {
  font-size: 12px;
}
.uv-blog-2 .uv-project-gallery .uv-blog-thumb ul li img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #eee;
  margin-right: 8px;
}
.uv-blog-2 .uv-blog-more {
  float: none;
  margin: 0 auto;
  text-align: center;
  margin-top: 50px;
}
.uv-blog-2 .uv-blog-more a {
  margin: 0 10px;
}
.uv-header-item {
  overflow: hidden;
}
.uv-header-item .uv-header-inner {
  text-align: center;
}
.uv-header-item .uv-header-inner h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 50px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}
.uv-header-item .uv-header-inner p {
  font-size: 20px;
  line-height: 32px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}
.uv-header-item .uv-header-inner .uv-head-search-form {
  overflow: hidden;
  margin-top: 30px;
}
.uv-header-item .uv-header-search-btn {
  float: none;
  margin: 0 auto;
  text-align: center;
}
.uv-header-item .uv-header-search-btn .btn {
  padding: 10px 60px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}
.home-slider-2.header-slider .item.uv-header-item {
  background-color: rgba(4, 16, 37, 0.7);
}
.header-slider .uv-dropdown-search .selectize-input .item::after {
  background: transparent;
  color: #fff;
}
.header-slider .uv-dropdown-search .selectize-input {
  color: #fff;
}
.uv-header-search {
  padding: 15px 0;
  padding-left: 15px;
  padding-bottom: 0;
  text-align: left;
  overflow: hidden;
  margin-top: 50px;
}
.uv-header-search .selectize-control.single .selectize-input:after {
  content: '';
  display: block;
  position: absolute;
  top: 30%;
  right: 20px;
  margin-top: 0px;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-width: 0px 1px 1px 0px;
  border-color: #fff;
  transform: rotate(45deg);
}
.uv-header-search .selectize-input,
.uv-header-search .selectize-control.single .selectize-input.input-active {
  background-color: transparent;
}
.uv-header-search .selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: 6px;
  border-color: #fff;
  border-style: solid;
  border-width: 1px 0px 0px 1px;
}
.uv-header-search .form-control {
  background-color: #fff;
  border: 0px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: normal;
  text-transform: capitalize;
}
.uv-header-search .form-control:focus {
  border: 0px solid transparent;
  -webkit-box-shadow: 0px 0px 4px rgba(10, 9, 9, 0.78);
  -moz-box-shadow: 0px 0px 4px rgba(10, 9, 9, 0.78);
  -ms-box-shadow: 0px 0px 4px rgba(10, 9, 9, 0.78);
  -o-box-shadow: 0px 0px 4px rgba(10, 9, 9, 0.78);
  box-shadow: 0px 0px 4px rgba(10, 9, 9, 0.78);
}
.uv-header-search .uv-filter-btn {
  background: #fff;
}
.uv-header-search .uv-filter-btn .btn {
  border: 1px solid transparent;
  border-left-color: #e1e1e1;
}
.uv-header-search .uv-filter-btn .btn:focus {
  background-color: transparent;
  border-color: transparent;
}
.uv-header-search .btn-search {
  padding: 7px 14px;
  background: #222;
  color: #fff;
  border-color: #222;
  border-radius: 0;
}
.uv-select {
  width: 100%;
}
.uv-search-opt {
  float: left;
}
.uv-dropdown-search .selectize-input {
  height: 46px;
  padding-top: 12px;
  border: 1px solid #fff;
  border-radius: 0;
  font-size: 14px;
  background: transparent;
  font-weight: normal;
  text-transform: capitalize;
}
.uv-dropdown-search .selectize-input:focus {
  -webkit-box-shadow: 0px 0px 4px #0a0909 ;
  -moz-box-shadow: 0px 0px 4px #0a0909 ;
  -ms-box-shadow: 0px 0px 4px #0a0909 ;
  -o-box-shadow: 0px 0px 4px #0a0909 ;
  box-shadow: 0px 0px 4px #0a0909 ;
  outline-color: transparent;
}
.uv-dropdown-search .selectize-dropdown-content .option {
  margin: 5px 0;
}
.uv-dropdown-search .selectize-dropdown-content .option.active {
  background-color: transparent;
}
.uv-dropdown-search .selectize-dropdown-content .option:hover {
  color: #f7b831;
  background-color: transparent;
}
.uv-course-slide {
  position: relative;
}
.uv-course-slide .owl-dots {
  display: none !important;
}
.uv-course-slide .owl-next {
  position: absolute;
  top: 45%;
  right: 3%;
  color: #f7b831;
}
.uv-course-slide .owl-prev {
  position: absolute;
  top: 45%;
  left: 3%;
  color: #f7b831;
}
.uv-course-slide .section-separator {
  padding-bottom: 0;
}
.uv-course-slide .each-inner-top {
  margin-bottom: 40px;
  text-align: center;
}
.uv-course-slide .each-inner-top h2 {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 45px;
}
.uv-course-slide .uv-course-slide-inner .fa.video-icon {
  color: #fff;
  font-size: 80px;
  margin-bottom: 30px;
}
.uv-course-slide .uv-course-slide-inner h3 {
  font-size: 24px;
  margin-top: 0;
  color: #fff;
  line-height: 34px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
}
.uv-course-slide .uv-course-slide-inner .each-inner {
  padding: 80px 0;
}
.uv-course-slide .uv-course-slide-inner .each-inner ul li {
  display: inline-block;
  margin: 0 6px;
  margin-top: 30px;
}
.uv-course-slide .uv-course-slide-inner .each-inner ul li a {
  color: #fff;
}
.uv-course-slide .uv-course-slide-inner .each-inner ul li a .fa {
  font-size: 14px;
  color: #fff;
  height: 48px;
  width: 48px;
  border: 1px solid #fff;
  line-height: 50px;
  border-radius: 50px;
}
.uv-course-slide .uv-course-slide-inner .each-inner ul li a .fa:hover {
  color: #f7b831;
  border-color: #f7b831;
}
.uv-course-slide .uv-course-slide-inner .uv-slide-course-rating .fa {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
}
.uv-course-slide .uv-course-slide-inner .uv-slide-course-rating span {
  color: #fff;
  margin-left: 20px;
}
.uv-course-slide .uv-course-slide-inner .uv-course-slide-content {
  overflow: hidden;
}
.uv-course-slide .uv-course-slide-inner .uv-course-slide-content ul li {
  position: relative;
  border-left: 1px solid #eee;
  margin: 30px 0;
  text-align: left;
  padding: 0 40px;
}
.uv-course-slide .uv-course-slide-inner .uv-course-slide-content ul li .uv-slide-course-price p {
  margin-top: 10px;
}
.uv-course-slide .uv-course-slide-inner .uv-course-slide-content ul li .uv-slide-course-price p span {
  font-size: 24px;
  line-height: 35px;
  color: #f7b831;
}
.uv-course-slide .uv-course-slide-inner .uv-course-slide-content ul li .uv-slide-course-price p del {
  font-size: 16px;
  line-height: 27px;
  margin-left: 6px;
  color: #767676;
}
.uv-course-slide .uv-course-slide-inner .uv-course-slide-content ul li .uv-slide-teacher img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.uv-course-slide .uv-course-slide-inner .uv-course-slide-content ul li .uv-slide-teacher .uv-trainer-info {
  position: absolute;
  top: 0;
  padding-left: 110px;
  left: 0;
  text-align: left;
}
.uv-course-slide .uv-course-slide-inner .uv-course-slide-content ul li .uv-slide-teacher .uv-trainer-info span {
  font-size: 14px;
  line-height: 22px;
  color: #767676;
}
.uv-course-slide .uv-course-slide-inner .uv-course-slide-content ul li .uv-slide-teacher .uv-trainer-info h4 {
  font-size: 20px;
  line-height: 32px;
  margin: 0;
}
.uv-course-slide .uv-course-slide-inner .uv-course-slide-content ul li .uv-slide-sudent-info span {
  font-size: 14px;
  line-height: 22px;
  color: #767676;
}
.uv-course-slide .uv-course-slide-inner .uv-course-slide-content ul li .uv-slide-sudent-info h4 {
  font-size: 20px;
  line-height: 32px;
  margin: 0;
}
.shadow-effect {
  background: #fff;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #ECECEC;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
}
#uv-course-slide .shadow-effect p {
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 300;
}
.testimonial-name {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: #3190E7;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}
#uv-course-slide .item {
  text-align: center;
  padding: 0px;
  margin-bottom: 0px;
  opacity: 1;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#uv-course-slide .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
/*
 Login Registration

 */
body.login-reg-page {
  background-color: #f7f7f7;
}
.login-logo img {
  margin: 0 auto;
  float: none;
  text-align: center;
  margin-bottom: 30px;
  max-width: 320px;
}
.uv-login-reg-from-inner {
  float: none;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
.uv-login-reg-from-inner .uv-login-reg {
  padding: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 5px rgba(0,0,0,.1);
  box-shadow: 0 3px 5px rgba(0,0,0,.1);
}
.uv-login-reg-from-inner .uv-login-reg .nav-tabs > li > a:hover,
.uv-login-reg-from-inner .uv-login-reg .nav-tabs > li.active > a,
.uv-login-reg-from-inner .uv-login-reg .nav-tabs > li.active > a:focus,
.uv-login-reg-from-inner .uv-login-reg .nav-tabs > li.active > a:hover {
  border: none;
}
.uv-login-reg-from-inner .uv-login-reg .login-reg-nav {
  margin-bottom: 30px;
}
.uv-login-reg-from-inner .uv-login-reg .login-reg-nav hr {
  margin-top: 10px;
  margin-bottom: 0;
  clear: both;
  border: 0;
  height: 1px;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
}
.uv-login-reg-from-inner .uv-login-reg .nav-tabs {
  border: none;
}
.uv-login-reg-from-inner .uv-login-reg .nav-tabs li {
  width: 50%;
  padding: 15px 0;
  text-align: center;
}
.uv-login-reg-from-inner .uv-login-reg .nav-tabs li.active a {
  color: #f7b831;
}
.uv-login-reg-from-inner .uv-login-reg .nav-tabs li a {
  font-size: 15px;
  line-height: 25px;
  font-weight: bold;
}
.uv-login-reg-from-inner .uv-login-form .text-center {
  margin-top: 30px;
}
.uv-login-reg-from-inner .uv-login-form .forgot-password:hover {
  color: #f7b831;
}
.uv-login-reg-from-inner .uv-login-form label {
  font-size: 14px;
  line-height: 25px;
}
.page-not-found {
  background-color: #edecf0;
}
.uv-404 .error-page-wrapper {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 20px;
}
.uv-404 .error-page-wrapper h6 {
  font-weight: 500;
  font-size: 21px;
  line-height: 30px;
  margin: 0;
  text-transform: capitalize;
}
.uv-404 .error-page-wrapper .breadcrumb {
  background-color: #fff;
  margin-bottom: 0;
  padding-top: 0;
}
.uv-404 .notfound-inner {
  background-color: #fff;
  padding: 100px 0;
  margin-bottom: 40px;
}
.uv-404 .notfound-inner h3 {
  font-size: 140px;
  line-height: 140px;
  margin: 0;
  padding-top: 30px;
  padding-bottom: 20px;
}
.uv-404 .notfound-inner p {
  margin: 0 auto;
  float: none;
  margin-bottom: 40px;
  margin-top: 40px;
}
.uv-404 .notfound-inner .btn {
  margin-bottom: 30px;
}
.uv-services-feature .uv-services-items .feature-list {
  display: table;
  margin-bottom: 30px;
}
.uv-services-feature .uv-services-items .feature-list .uv-service-icon {
  float: left;
  margin: 6px 20px 6px 0;
  display: inline;
  border: 0;
  background: none;
  padding: 0;
  display: block;
  width: 60px;
  border: 1px solid #fff;
  height: 60px;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
}
.uv-services-feature .uv-services-items .feature-list .uv-service-icon i {
  font-size: 34px;
  line-height: 58px;
  text-align: center;
}
.uv-services-feature .uv-services-items .feature-list p {
  padding-bottom: 0;
  display: block;
}
.uv-services-feature .uv-services-items .feature-list p strong {
  font-size: 18px;
  line-height: 30px;
  color: #363a47;
}
.uv-happy-student .section-title {
  margin-bottom: 60px;
}
.uv-happy-student .uv-happy-student-inner .testimonial {
  position: relative;
  display: block;
  padding: 0 20px;
}
.uv-happy-student .uv-happy-student-inner .testimonial:after {
  font-family: 'FontAwesome';
  content: "\f10e";
  padding-right: 5px;
  right: 0;
  position: absolute;
  top: 0;
  font-size: 400%;
  opacity: .1;
  -moz-opacity: .1;
  filter: alpha(opacity=10);
}
.uv-happy-student .uv-happy-student-inner .testimonial img {
  margin-right: 15px;
  width: 75px;
  border: 0 solid #fff!important;
  height: 75px;
  float: left;
  margin: 6px 20px 6px 0;
  display: inline;
  border: 0;
  background: none;
  padding: 0;
  margin-top: 5px;
  border: medium none;
  display: inline-block;
  image-rendering: optimizequality;
  max-width: 100%;
}
.uv-happy-student .uv-happy-student-inner .testimonial .testimonial-meta {
  overflow: hidden;
}
.uv-happy-student .uv-happy-student-inner .testimonial .testimonial-meta h4 {
  font-size: 16px;
  padding-right: 5px;
  font-weight: 600;
}
.uv-happy-student .uv-happy-student-inner .testimonial .testimonial-meta h4 small {
  font-size: 11px;
  font-style: italic;
  color: #798184;
  padding: 0 10px;
  font-weight: 300;
}
.uv-happy-student .uv-student-join {
  margin-top: 50px;
}
.uv-happy-student .uv-student-join p {
  font-style: italic;
  font-size: 15px;
  font-weight: 300;
  color: #a1a1a1;
  padding: 0 20px;
  text-align: center;
}
.uv-happy-student .uv-student-join .button .btn {
  font-size: 16px;
  line-height: 25px;
  margin: 0 5px;
}
.uv-happy-student .uv-student-join .button .btn:last-child {
  background-color: #c42c00;
}
.uv-happy-student .uv-student-join .button .btn .fa {
  font-size: 16px;
  margin-right: 10px;
}
.uv-mission {
  background-color: #edecf0;
}
.uv-mission .section-separator {
  padding: 120px 0;
}
.uv-mission .uv-mission-inner .uv-mission-item {
  padding-left: 40px;
  padding-bottom: 20px;
}
.uv-mission .uv-mission-inner .uv-mission-item span {
  font-size: 16px;
  line-height: 27px;
  color: #a1a1a1;
}
.uv-mission .uv-mission-inner .uv-mission-item h3 {
  font-size: 34px;
  padding-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}
.uv-mission .uv-mission-inner .uv-mission-item h3 strong {
  font-weight: bold;
}
.uv-mission .uv-mission-inner .uv-mission-item p {
  margin-bottom: 30px;
}
.uv-our-clients {
  background-color: #edecf0;
}
.uv-our-clients .section-title {
  margin-bottom: 50px;
}
.blog-wrapper {
  border-left: 0px solid #dedde1;
  border-right: 0px solid #dedde1;
  border-top: 0px solid #dedde1;
  background-color: #ffffff;
  position: relative;
}
.blog-wrapper .second-bread {
  padding: 0 40px;
}
.blog-wrapper .second-bread h1 {
  font-weight: 500;
  font-size: 21px;
  line-height: 30px;
}
.blog-wrapper .second-bread .breadcrumb {
  margin-top: 25px;
  background-color: transparent;
  border-radius: 0;
  font-size: 12px;
  list-style: outside none none;
  margin-bottom: 0;
  padding: 0;
}
.blog-wrapper .second-bread .breadcrumb li {
  display: inline-block;
}
.uv-single-blog .category_title {
  margin-bottom: 10px;
  display: block;
  text-transform: uppercase;
}
.uv-single-blog .blog-title h2,
.uv-single-blog .blog-title h2 a {
  font-size: 30px;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: 0;
  color: #363a47;
  font-weight: 700;
  line-height: 36px;
}
.uv-single-blog .blog-title {
  padding: 30px 40px;
}
.uv-single-blog .post-meta {
  margin-top: 10px;
}
.uv-single-blog .post-meta span,
.uv-single-blog .post-meta a {
  color: #bbbabe;
}
.uv-single-blog .post-meta span:hover,
.uv-single-blog .post-meta a:hover {
  color: #f7b831;
}
.uv-single-blog .post-meta span i,
.uv-single-blog .post-meta a i {
  padding-right: 2px;
}
.uv-single-blog .post-meta span {
  margin-right: 10px;
  font-size: 13px;
}
.uv-single-blog .blog-desc {
  padding: 40px;
  border-bottom: 1px solid #dedde1;
  margin-bottom: 30px;
}
.uv-single-blog .blog-desc div.post-date {
  float: left;
  margin-right: 20px;
  margin-top: 8px;
  text-align: center;
}
.uv-single-blog .blog-desc div.post-date span.day {
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  border-color: #e34b11!important;
  background-color: #e34b11!important;
  color: #fff!important;
}
.uv-single-blog .blog-desc div.post-date span.month {
  color: #fff;
  font-size: .9em;
  padding: 0 10px 2px;
  background-color: #f7b831;
  color: #fff!important;
  border-color: #f7b831;
}
.uv-single-blog .blog-desc .readmore {
  color: #363a47;
  margin-left: 61px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
}
.uv-single-blog .blog-desc p {
  padding-bottom: 0;
}
.uv-single-blog p {
  padding: 0 0 20px 0;
}
.uv-single-blog blockquote {
  font-size: 16px;
  line-height: 32px;
  font-weight: normal;
  font-style: italic;
  position: relative;
  width: auto;
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
.uv-single-blog .tags a {
  border-color: #f7b831 !important;
  background-color: #f7b831 !important;
  color: #fff!important;
  padding: 4px 8px;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
}
.uv-single-blog .invis {
  border-color: transparent;
}
.uv-single-blog .comment-wrapper .well {
  background-color: #fff!important;
}
.uv-single-blog .well {
  background-color: #edecf0;
  border-radius: 0;
  padding: 30px;
  border: none;
  border-bottom: 1px solid #dedde1;
}
.uv-single-blog .comment-wrapper h3 {
  background-color: inherit;
  color: #333;
  border-color: inherit;
  padding: 20px;
  font-weight: 21px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}
.uv-single-blog .comment-reply {
  margin-left: 75px;
}
.uv-single-blog .media,
.uv-single-blog .media-body {
  overflow: hidden;
  zoom: 1;
}
.uv-single-blog .media {
  margin-top: 15px;
}
.uv-single-blog .media-left,
.uv-single-blog .media-right,
.uv-single-blog .media-body {
  display: table-cell;
  vertical-align: top;
}
.uv-single-blog .media-left,
.uv-single-blog .media > .pull-left {
  padding-right: 10px;
}
.uv-single-blog .media img {
  width: 65px;
  margin-right: 10px;
}
.uv-single-blog .media-object {
  display: block;
}
.uv-single-blog .media-heading {
  font-size: 16px;
  padding-bottom: 0;
  font-weight: 600;
}
.uv-single-blog .media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.uv-single-blog .time-comment {
  display: block;
  position: relative;
  margin-bottom: 10px;
}
.uv-single-blog .time-comment a {
  margin-top: -15px !important;
  padding: 3px 10px!important;
}
.uv-single-blog .comment-reply {
  margin-left: 75px;
}
.uv-single-blog .comment-form .form-control {
  margin-bottom: 12px;
  font-weight: normal;
}
.uv-single-blog .comment-title {
  margin-top: 30px;
}
.uv-single-blog .comment-title h4 {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
}
.uv-single-blog .comment-title .uv-hr-title {
  width: 10%;
  float: left;
  border-color: #f7b831;
}
.uv-sidebar .uv-widget {
  margin-bottom: 30px;
  background-color: #fff;
  padding: 30px;
  border-left: 0px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 0px solid transparent;
  border-top: 0px solid transparent;
  -webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -moz-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -ms-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -o-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
}
.uv-sidebar .uv-widget .widget-title h4 {
  font-size: 18px;
}
.uv-sidebar .uv-widget hr {
  width: 45px;
  border-width: 3px;
  border-color: #111;
  margin: 0;
  margin-bottom: 20px;
}
.uv-sidebar .uv-widget .form-control {
  font-size: 13px;
  line-height: 22px;
  font-style: italic;
}
.uv-sidebar .uv-widget.uv-course-widget {
  padding: 30px 0;
}
.uv-sidebar .uv-widget.uv-course-widget .widget-title {
  padding-left: 30px;
  padding-right: 30px;
}
.uv-sidebar .uv-widget.uv-course-widget .widget-title h4 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 0;
}
.uv-sidebar .uv-widget.uv-course-widget .widget-title hr {
  border-color: #f7b831;
}
.uv-sidebar .uv-newsletter .btn {
  margin-top: 10px;
}
.uv-sidebar .popular-courses {
  list-style: none;
  padding: 0;
}
.uv-sidebar .popular-courses li {
  display: inline-block;
}
.uv-sidebar .popular-courses li img {
  background: #fff;
  border: 1px solid #969ba8;
  width: 94px;
  padding: 4px;
  margin: 0 2px 2px 0;
}
.uv-sidebar .latest-tweets {
  padding: 0;
  list-style: none;
}
.uv-sidebar .latest-tweets li {
  display: inline-table;
  padding: 0;
  margin-bottom: 10px;
  width: 100%;
}
.uv-sidebar .latest-tweets li p {
  padding-bottom: 0;
}
.uv-sidebar .latest-tweets li p:before {
  content: "\f099";
  font-family: "FontAwesome";
  font-size: 16px;
  left: 0;
  color: #999eab;
  padding-right: 5px;
  position: relative;
  top: 2px;
}
.uv-sidebar .latest-tweets li p a {
  margin: 0 4px;
  color: #e34b11;
}
.uv-sidebar .latest-tweets li span {
  color: #363a47;
  display: block;
  color: #fff;
  margin: 0;
  margin-top: 0;
  font-size: 12px;
}
.uv-map #map {
  height: 500px;
  width: 100%;
}
.uv-contact .widget-title h4 {
  padding-top: 0;
  margin-top: 0;
  font-size: 18px;
  font-weight: 500;
}
.uv-contact .widget-title .uv-hr {
  border-color: #999eab;
  border-top: 1px solid #eee;
  margin: 0;
  border-width: 2px;
  width: 45px;
  margin-bottom: 30px;
}
.uv-contact .form-control {
  margin-bottom: 15px;
}
.uv-contact .contact-message.form-control {
  height: 133px;
}
.uv-contact .btn {
  width: 100%;
}
.uv-contact .contact-list li {
  color: #999eab;
  margin-bottom: 7px;
}
.uv-contact .contact-list li .fa {
  padding-right: 7px;
}
.uv-contact .contact-list li a {
  color: #999eab;
}
.uv-course-archive .padding-side {
  padding: 0 30px;
}
.uv-course-archive .padding {
  padding: 30px;
}
.uv-course-archive .uv-course-category ul li a {
  padding: 12px 30px;
  font-weight: 400;
  color: #323232;
  width: 100%;
  display: block;
  position: relative;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.uv-course-archive .uv-course-category ul li a:hover {
  background-color: #f7b831;
  color: #fff;
}
.uv-course-archive .uv-course-category ul li a .fa {
  margin-right: 10px;
}
.uv-course-archive .uv-course-category ul li a:hover {
  color: #fff;
}
.uv-course-archive .uv-course-instructor ul li {
  margin-bottom: 15px;
}
.uv-course-archive .uv-course-instructor ul li a:hover {
  color: #f7b831;
}
.uv-course-archive .uv-course-instructor ul li a h4 {
  margin-top: 0;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 2px;
  font-weight: 500;
}
.uv-course-archive .uv-course-instructor ul li span {
  font-size: 12px;
  line-height: 12px;
}
.uv-course-archive .uv-course-nav {
  background: #fff;
  border: 0;
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
  padding: 15px 15px 8px;
  margin-bottom: 30px;
  font-size: 12px;
  min-height: 20px;
  position: relative;
}
.uv-course-archive .uv-course-nav ul li .btn {
  padding: 5px 20px;
  font-size: 14px;
  border-radius: 3px;
  width: 100%;
}
.uv-course-archive .uv-course-nav  .selectize-input {
  border: 1px solid #ccc;
  padding: 9px 12px;
}
.uv-course-archive .uv-course-nav .uv-list-grid {
  float: right;
  margin-top: 2px;
  position: absolute;
  right: 0;
  top: 30%;
  bottom: 0;
  width: 160px;
}
.uv-course-archive .uv-course-nav .uv-list-grid a {
  line-height: 18px;
  padding: 7px 12px;
  color: #333;
  background-color: #fff;
  border-color: #ccc;
  border-width: 2px;
  border-radius: 3px;
  border: 2px solid #ccc;
}
.uv-course-archive .uv-course-nav .uv-list-grid a .fa {
  margin-right: 4px;
}
.uv-course-thumbs {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  border-radius: 3px;
  margin-bottom: 30px;
}
.uv-course-thumbs .uv-thumb-caption {
  padding: 20px;
}
.uv-course-thumbs .uv-thumb-caption a h4 {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 24px;
}
.uv-course-thumbs .uv-thumb-caption a:hover {
  color: #f7b831;
}
.uv-course-thumbs .uv-thumb-caption .thumb-caption-inner .uv-course-author {
  margin-bottom: 15px;
  display: block;
  font-size: 13px;
}
.uv-course-thumbs .uv-thumb-caption .thumb-caption-inner .uv-course-author a span.uv-author-avatar {
  float: right;
}
.uv-course-thumbs .uv-thumb-caption .thumb-caption-inner .uv-course-author a span.uv-author-avatar img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  height: auto;
  max-width: 100%;
}
.uv-course-thumbs .uv-thumb-caption .thumb-caption-inner .uv-course-price-n-join {
  display: block;
  overflow: hidden;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  padding: 15px 0px;
}
.uv-course-thumbs .uv-thumb-caption .thumb-caption-inner .uv-course-price-n-join .uv-course-price {
  font-size: 17px;
  text-transform: uppercase;
  line-height: 34px;
  color: #f7b831;
}
.uv-course-thumbs .uv-thumb-caption .thumb-caption-inner .uv-course-price-n-join a {
  display: inline-block;
  float: right;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
}
.uv-course-thumbs .uv-thumb-caption .thumb-caption-inner .uv-course-meta {
  color: #888;
  display: block;
  overflow: hidden;
  border-top: 1px solid #f5f5f5;
  padding-top: 15px;
}
.uv-course-thumbs .uv-thumb-caption .thumb-caption-inner .uv-course-meta .uv-course-students {
  line-height: 24px;
  font-size: 14px;
}
.uv-course-thumbs .uv-thumb-caption .thumb-caption-inner .uv-course-meta .uv-course-review {
  display: inline-block;
  float: right;
  line-height: 24px;
  font-size: 14px;
}
.uv-course-thumbs .uv-thumb-caption .thumb-caption-inner .uv-course-meta .uv-course-review ul li {
  display: inline-block;
}
.uv-student-profile-sidebar .uv-widget {
  overflow: hidden;
}
.uv-student-profile-sidebar .uv-widget.no-side-padding {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 0;
}
.uv-student-profile-sidebar .uv-student-avatar {
  float: left;
  width: 82px;
}
.uv-student-profile-sidebar .uv-student-avatar figure {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.uv-student-profile-sidebar .uv-student-avatar figure img {
  width: 100%;
  height: auto;
}
.uv-student-profile-sidebar .uv-student-info {
  float: none;
  padding: 0px 0 0 95px;
  width: auto;
}
.uv-student-profile-sidebar .uv-student-info h5 {
  text-transform: uppercase;
  font-weight: 600;
  margin: 0px 0px 5px;
  font-weight: bold;
}
.uv-student-profile-sidebar .uv-student-info p {
  color: #666666;
  line-height: normal;
  font-weight: 600;
  margin: 0px 0px 5px;
  font-size: 16px;
}
.uv-student-profile-sidebar .uv-student-info label {
  color: #999999;
  margin: 0px;
  font-size: 16px;
  display: block;
  font-weight: 400;
}
.uv-student-profile-sidebar .uv-student-infor-inner {
  float: left;
  width: 100%;
  margin-top: 20px;
}
.uv-student-profile-sidebar .uv-student-infor-inner h6 {
  font-size: 16px;
  margin: 0px 0px 5px;
  color: #666666;
  font-weight: bold;
}
.uv-student-profile-sidebar .uv-student-infor-inner span {
  font-size: 16px;
  margin: 0px 0px 5px;
  color: #999999;
  display: block;
}
.uv-student-profile-sidebar .uv-student-nav ul li {
  padding: 0 0;
  margin: 0;
  list-style: none;
  border-bottom: 2px solid #eeeeee;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.uv-student-profile-sidebar .uv-student-nav ul li:hover {
  background-color: #f7b831;
  color: #fff;
}
.uv-student-profile-sidebar .uv-student-nav ul li:hover a {
  color: #fff;
}
.uv-student-profile-sidebar .uv-student-nav ul li:hover a .fa {
  color: #fff;
}
.uv-student-profile-sidebar .uv-student-nav ul li:last-child {
  border-bottom-color: transparent;
}
.uv-student-profile-sidebar .uv-student-nav ul li a {
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  color: #666666;
  font-weight: 600;
  display: block;
  position: relative;
}
.uv-student-profile-sidebar .uv-student-nav ul li a:after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  right: 40px;
  top: 38%;
  font-size: 11px;
  line-height: 15px;
  visibility: hidden;
  opacity: 0;
}
.uv-student-profile-sidebar .uv-student-nav ul li a .fa {
  display: inline-block;
  font-size: 20px;
  vertical-align: middle;
  padding: 16px 0px;
  width: 55px;
  text-align: center;
  margin-right: 10px;
  border-right: 2px solid #eeeeee;
}
.uv-sudent-profile-info {
  background-color: #fff;
  padding: 20px;
  overflow: hidden;
}
.uv-sudent-profile-info .uv-student-profile-details-header {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.uv-sudent-profile-info .uv-student-profile-details-header .uv-student-img {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.uv-sudent-profile-info .uv-student-profile-details-header .uv-student-img img {
  width: 100%;
  height: auto;
}
.uv-sudent-profile-info .uv-student-profile-inner ul {
  width: 100%;
  float: left;
}
.uv-sudent-profile-info .uv-student-profile-inner ul li {
  width: 100%;
  float: left;
  position: relative;
  padding: 15px 0px;
  border-bottom: 1px solid #efefef;
}
.uv-sudent-profile-info .uv-student-profile-inner ul li span {
  color: #999999;
  font-weight: 600;
  margin-right: 15px;
  display: inline-block;
  line-height: normal;
}
.uv-sudent-profile-info .uv-student-profile-inner ul li p {
  margin: 0px;
  display: inline-block;
  line-height: normal;
  color: #999999;
}
.uv-sudent-profile-info .uv-student-overview {
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}
.uv-sudent-profile-info .uv-student-courses-overview ul li {
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -moz-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -ms-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -o-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.uv-sudent-profile-info .uv-student-courses-overview ul li:hover {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1) ;
  -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1) ;
  -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1) ;
  -o-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1) ;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1) ;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.uv-sudent-profile-info .uv-student-courses-overview .course-feature-img {
  position: relative;
}
.uv-sudent-profile-info .uv-student-courses-overview .course-feature-img span {
  position: absolute;
  right: 0;
  top: 10px;
  background: #f7b831;
  padding: 3px 7px;
  color: #fff;
}
.uv-sudent-profile-info .uv-student-courses-overview .uv-std-course-info a:hover {
  color: #f7b831;
}
.uv-sudent-profile-info .uv-student-courses-overview .uv-std-course-info a h6 {
  text-transform: inherit;
}
.uv-sudent-profile-info .uv-student-courses-overview .uv-std-course-info .uv-std-course-review {
  margin: 10px 0;
}
.uv-sudent-profile-info .uv-student-courses-overview .uv-std-course-info .uv-std-course-review ul {
  display: inline-block;
}
.uv-sudent-profile-info .uv-student-courses-overview .uv-std-course-info .uv-std-course-review ul li {
  display: inline;
  border: inherit;
  box-shadow: none;
}
.uv-sudent-profile-info .uv-student-courses-overview .uv-std-course-info .uv-std-course-review ul li .fa {
  color: #ff9c00;
}
.uv-sudent-profile-info .uv-student-courses-overview .uv-std-course-info .uv-std-course-review span {
  margin-left: 20px;
}
.uv-std-favorites li {
  padding: 15px;
  position: relative;
  float: left;
  display: block;
  border: none;
  width: 100%;
}
.uv-std-favorites li:hover {
  background-color: #f7b831;
  color: #fff;
}
.uv-std-favorites li:hover:nth-child(odd) {
  background-color: #f7b831;
}
.uv-std-favorites li:hover a {
  color: #fff;
}
.uv-std-favorites li:hover .uv-std-fav-course-info p a {
  color: #fff;
}
.uv-std-favorites li:nth-child(odd) {
  background-color: #f5f5f5;
}
.uv-std-favorites li .uv-std-fav-course-info {
  position: relative;
  padding-right: 120px;
}
.uv-std-favorites li .uv-std-fav-course-info .uv-course-btn {
  width: 100px;
  position: absolute;
  right: 0;
  top: 50%;
  bottom: 0;
}
.uv-std-favorites li .uv-std-fav-course-info .uv-course-btn a {
  display: inline;
}
.uv-std-favorites li .uv-std-fav-course-info .uv-course-btn a .fa {
  color: #fff;
  border-radius: 3px;
  background: #808080;
  padding: 10px;
  text-align: center;
}
.uv-std-favorites li .uv-std-fav-course-info .uv-std-course-review {
  overflow: hidden;
}
.uv-std-favorites li .uv-std-fav-course-info .uv-std-course-review ul {
  margin-right: 5px;
}
.uv-std-favorites li .uv-std-fav-course-info .uv-std-course-review ul li {
  display: inline-block;
  border: none;
  padding: 0;
  box-shadow: none;
  width: inherit;
  margin-right: 2px;
  margin-bottom: 0;
  background-color: inherit;
}
.uv-std-favorites li .uv-std-fav-course-info .uv-std-course-review ul li .fa {
  color: #ff9c00;
}
.uv-std-favorites li .uv-std-fav-course-info .uv-std-course-review b {
  margin-left: 10px;
}
.uv-std-favorites li .uv-std-fav-course-info a h6 {
  margin-top: 0;
  font-weight: bold;
  text-transform: inherit;
}
.uv-std-favorites li .uv-std-fav-course-info p {
  font-weight: bold;
}
.uv-std-favorites li .uv-std-fav-course-info p a {
  color: #f7b831;
}
.uv-sudent-profile-info .uv-student-courses-overview .uv-choose-photo li {
  border: none;
}
.uv_privacy_field > input[type="text"],
.uv_privacy_field textarea {
  float: left;
  width: 100%;
  border: 1px solid rgba(127, 127, 127, 0.21);
  border-radius: 2px;
  min-height: 48px;
  padding: 8px 20px 8px 20px;
  border-radius: 40px;
  background-color: #f5f5f5;
  position: relative;
}
.uv_privacy_field input[type="submit"],
.uv_privacy_field button {
  border: 0px;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 15px 40px;
  background-color: #222222;
  border-radius: 50px;
}
.uv_privacy_field textarea {
  min-height: 185px;
  resize: none;
  padding: 20px 30px;
  border-radius: 30px;
}
.switch {
  position: absolute;
  top: 0px;
  right: 10px;
  bottom: 0px;
  margin: auto;
  display: inline-block;
  width: 100px;
  height: 30px;
}
.switch input {
  display: none;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2dcc70;
}
.slider > span {
  color: #ffffff;
  text-transform: capitalize;
  position: absolute;
  left: 42px;
  top: 2px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 6px;
  bottom: 5px;
  background-color: #ffffff;
}
.switch input:checked + .slider {
  background-color: #666666;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.switch input:checked + .slider > span {
  left: 15px;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(70px);
  -ms-transform: translateX(70px);
  transform: translateX(70px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.uv_privacy_field > input[type="text"],
.uv_privacy_field textarea,
.slider:before,
.slider {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  outline: 0;
}
.default_width {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.uv_table_head {
  background-color: #2dcc70;
}
.uv_table_head > tr > th {
  color: #ffffff;
  padding: 30px 0px;
  text-align: center;
  border-color: rgba(255, 255, 255, 0.2);
}
.uv_table_head > tr > th:nth-child(even) {
  background-color: #1bc061;
}
.empty_class_bg {
  background-color: #f5f5f5;
}
.open-date {
  display: block;
  font-size: 10px;
  line-height: normal;
}
.uv_class_body_bg {
  background-color: #ffffff;
}
.card-container {
  padding: 30px;
  position: relative;
}
.card-container:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0;
  background-image: url(../../images/galeria/03.JPG);
  background-repeat: no-repeat;
  opacity: 0.2;
  background-size: cover;
  z-index: 10;
}
.uv_classes_table td {
  padding: 0px;
  border: 0px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.03);
}
.uv_classes_table .card h4 {
  font-size: 14px;
  font-weight: bold;
}
.uv_classes_table .card > h4 > i {
  font-size: 13px;
  width: 25px;
  height: 25px;
  background: #f5f5f5;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  margin-right: 10px;
}
.uv_classes_table .card .open-time {
  font-size: 11px;
}
.uv_classes_table .card p {
  font-weight: 700;
}
.uv_classes_table .card p span {
  font-weight: 400;
}
/*Small Table*/
.uv_table_small {
  display: none;
  padding: 10px;
  background-color: #ffffff;
}
.uv_table_small > h3 {
  font-weight: bold;
  margin: 10px 0px 15px;
  font-size: 20px;
}
.uv_table_small ul {
  margin: 0px 0px 25px;
}
.uv_table_small ul li {
  border-bottom: 1px solid #cfdae2;
  padding: 10px 0px;
}
.uv_table_small ul li p {
  color: #91a9bb;
  float: right;
  font-size: 11px;
}
.uv_table_small ul li a.painting {
  color: #ffbb44;
}
.uv_table_small ul li a.dancing {
  color: #fc6f8d;
}
.uv_table_small ul li a.english {
  color: #ed6950;
}
/*Hover*/
.card-container:hover:before {
  height: 100%;
}
.uv_course_search_bg {
  background-image: url(extra-images/courses-search-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.uv_explore_search {
  float: left;
  width: 100%;
  position: relative;
  margin: 0px 0px 30px;
}
/*Chossen CSS*/
.uv_explore_search .chosen-container-single .chosen-single {
  height: 40px;
  background: #fff;
  box-shadow: none;
  border: 1px solid #e4e4e4;
  border-radius: 50px;
  width: 100%;
  padding: 7px 20px;
}
.uv_explore_search .chosen-container-single .chosen-single div {
  background-color: transparent;
}
.uv_explore_search .chosen-container-single .chosen-single div b::before {
  color: #666;
  font-weight: 500;
  top: 8px;
  height: 6px;
}
.uv_explore_search .chosen-container-single .chosen-drop {
  border-radius: 12px 12px 4px 4px;
}
/*Button CSS*/
.uv_explore_search.align_center {
  text-align: center;
  margin: 0px;
}
.uv_explore_search input[type="submit"],
.uv_explore_search button {
  border-radius: 30px;
  color: #fff;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 0px;
  font-weight: 700;
}
.uv_explore_search ul {
  float: left;
  width: 100%;
  margin: 10px 0px 0px;
}
.uv_explore_search ul li {
  display: inline-block;
  width: 100%;
  position: relative;
}
.uv_explore_search ul li a {
  display: block;
  color: #666666;
  text-transform: uppercase;
  margin: 0px 0px 10px;
  font-weight: 500;
}
.uv_explore_search ul li a i {
  margin: 0px 10px 0px 0px;
}
/*Hover CSS*/
.uv_explore_search input[type="submit"]:hover,
.uv_explore_search button:hover {
  background-color: #191c1d;
}
.uv_advacnce_search_wrap {
  padding: 10px;
  background-color: #ffffff;
  box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  margin-bottom: 30px;
}
.uv_advance_search {
  width: 40%;
  float: left;
  margin-right: 15px;
  margin-bottom: 0;
}
.uv_advance_search form input[type="text"] {
  width: 100%;
  border: 0px;
  border-bottom: 1px solid #e8e8e8;
  height: 44px;
  padding: 10px 160px 10px 10px;
  outline: 0;
}
.uv_advance_search form input[type="submit"],
.uv_advance_search form button {
  color: #ffffff;
  height: 44px;
  padding: 0px 25px;
  border-radius: 5px;
  border: 0px;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #f7b831;
}
.uv_advance_search form input[type="submit"]:hover,
.uv_advance_search form button:hover {
  background-color: #f7b831;
}
.uv_advacnce_search_wrap .uv_explore_search {
  width: 20%;
  margin: 0px 18px 0px 0px;
}
.uv_advacnce_search_wrap .chosen-container-single .chosen-single {
  border-radius: 5px;
  background-color: #f5f5f5;
  border-color: rgba(51, 51, 51, 0.2);
  height: 44px;
}
.uv_advacnce_search_wrap .chosen-container-single .chosen-drop {
  border-radius: 0px;
}
.uv_advacnce_search_wrap .chosen-container .chosen-drop {
  border: 1px solid rgba(51, 51, 51, 0.2);
}
.uv_search_type {
  width: 18%;
  float: left;
  text-align: center;
}
.uv_search_type ul {
  width: auto;
  border-radius: 5px;
}
.uv_search_type ul li {
  display: inline-block;
  position: relative;
  background-color: #f5f5f5;
}
.uv_search_type ul li a {
  display: block;
  border: 1px solid rgba(51, 51, 51, 0.2);
  color: #333333;
  height: 42px;
  padding: 0px 15px;
  line-height: 42px;
  margin: 0px 0px 0px -5px;
  background-color: #f5f5f5;
}
.uv_search_type ul li:first-child a {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.uv_search_type ul li:last-child a {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.uv_search_format {
  width: 18%;
  float: left;
}
.uv_search_format ul {
  width: auto;
  float: right;
}
.uv_search_format ul li {
  display: inline-block;
  position: relative;
}
.uv_search_format ul li a {
  display: block;
  color: #999999;
  height: 42px;
  padding: 0px 15px;
  line-height: 42px;
}
.uv_search_format ul li a i {
  margin-right: 8px;
  color: #999999;
}
/*Hover*/
.uv_search_type ul li:hover a {
  color: #ffffff;
}
.uv_search_format ul li:hover a,
.uv_search_format ul li:hover a i {
  color: #333333;
}
.chosen-container {
  width: 100% !important;
}
.uv_explore_search.uv_clas_search {
  width: 17.0%;
}
.uv_classes_table {
  min-width: 100%;
  width: 100%;
}
.uv_explore_search .chosen-container .chosen-results li.highlighted {
  background-color: #f7b831;
}
.uv-course-details .uv-course-details-inner {
  border: 1px solid #eee;
  margin-bottom: 30px;
}
.uv-course-details .uv-course-details-inner .uv-cd-heading {
  overflow: hidden;
}
.uv-course-details .uv-course-details-inner .uv-social-icons {
  text-align: center;
}
.uv-course-details .uv-course-details-inner .uv-social-icons li {
  display: inline-block;
  position: relative;
  padding: 0 5px;
  border: none;
}
.uv-course-details .uv-course-details-inner .uv-social-icons li a {
  display: inline-block;
  position: relative;
  display: block;
  border: 1px solid #e1e1e1;
  border-radius: 100%;
  width: 34px;
  height: 34px;
  line-height: 34px;
  color: #999999;
}
.uv-course-details .uv-course-details-inner .each-title {
  margin-top: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.uv-course-details .uv-course-details-inner .each-title h2 {
  width: 70%;
  float: left;
  color: #666666;
  margin-top: 0;
  font-size: 22px;
  line-height: 34px;
  font-weight: bold;
  text-transform: uppercase;
}
.uv-course-details .uv-course-details-inner .each-title .uv-course-reveiw span {
  float: right;
  color: #999999;
  font-size: 14px;
  margin-left: 10px;
}
.uv-course-details .uv-course-details-inner .each-title .uv-course-reveiw ul {
  float: right;
}
.uv-course-details .uv-course-details-inner .each-title .uv-course-reveiw ul li {
  display: inline-block;
  color: #ff9c00;
  margin: 0px 0px 0px -4px;
}
.uv-course-details .uv-course-details-inner .uv-cd-meta ul {
  float: left;
  width: 100%;
}
.uv-course-details .uv-course-details-inner .uv-cd-meta ul li {
  position: relative;
  float: left;
  padding: 0px 30px;
  line-height: 25px;
  border-radius: 0px;
  border-right: 1px solid #eee;
}
.uv-course-details .uv-course-details-inner .uv-cd-meta ul li:first-child {
  padding-left: 0;
}
.uv-course-details .uv-course-details-inner .uv-cd-meta ul li:last-child {
  padding-right: 0;
  border-right: none;
}
.uv-course-details .uv-course-details-inner .uv-cd-meta ul li figure {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  border: 2px solid #e2e2e2;
  margin-right: 10px;
  float: left;
  position: relative;
  overflow: hidden;
}
.uv-course-details .uv-course-details-inner .uv-cd-meta ul li figure img {
  width: 100%;
  height: auto;
}
.uv-course-details .uv-course-details-inner .uv-cd-meta ul li .uv-course-meta-des {
  overflow: hidden;
}
.uv-course-details .uv-course-details-inner .uv-cd-meta ul li .uv-course-meta-des h6 {
  font-size: 15px;
  color: #999999;
  margin: 0;
  font-weight: bold;
}
.uv-course-details .uv-course-details-inner .uv-cd-meta ul li .uv-course-meta-des span {
  color: #999999;
  font-size: 14px;
  line-height: 24px;
}
.uv-course-details .uv-course-details-inner .uv-cd-meta ul li ul.uv-social-icons {
  text-align: center;
}
.uv-course-details .uv-course-details-inner .uv-cd-meta ul li ul.uv-social-icons li {
  display: inline-block;
  position: relative;
  padding: 0 5px;
  border: none;
}
.uv-course-details .uv-course-details-inner .uv-cd-meta ul li ul.uv-social-icons li a {
  display: inline-block;
  position: relative;
  display: block;
  border: 1px solid #e1e1e1;
  border-radius: 100%;
  width: 34px;
  height: 34px;
  line-height: 34px;
  color: #999999;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap {
  padding: 15px 20px;
  border-bottom: 1px solid #dbdbdb;
  overflow: hidden;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap h3 {
  font-weight: bold;
  text-transform: uppercase;
  margin: 0px 0px 20px;
  color: #666666;
  font-size: 24px;
  line-height: 34px;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap p {
  letter-spacing: 0.2px;
  line-height: 24px;
  color: #999999;
  margin-bottom: 20px;
  font-size: 14px;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap .uv-cd-arrow {
  float: left;
  width: 100%;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap .uv-cd-arrow li {
  color: #999999;
  margin: 10px 0px 0px;
  position: relative;
  padding: 0px 0px 0px 25px;
  float: left;
  width: 100%;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap .uv-cd-arrow li:before {
  content: "\f178";
  font-family: fontawesome;
  position: absolute;
  top: 0px;
  left: 0px;
  width: auto;
  height: auto;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap h6 {
  font-size: 16px;
  color: #666666;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0px 0px 15px;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap .uv-course-list-warp ul {
  float: left;
  width: 100%;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap .uv-course-list-warp ul li {
  width: 100%;
  float: left;
  position: relative;
  background-color: #f5f5f5;
  border: 1px solid #dbdbdb;
  padding: 10px 15px;
  border-radius: 5px;
  margin: 0px 0px 10px;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap .uv-course-list-warp ul li .uv_lec_detail {
  float: left;
  width: 14%;
  color: #999999;
  text-align: left;
  text-transform: capitalize;
  font-weight: 600;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap .uv-course-list-warp ul li .uv_lec_title {
  float: left;
  width: 70%;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap .uv-course-list-warp ul li .uv_lec_title h6 {
  color: #999999;
  display: inline-block;
  font-weight: 600;
  margin-right: 15px;
  font-size: 14px;
  text-transform: inherit;
  margin: 0;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap .uv-course-list-warp ul li .uv_lec_title span {
  display: inline-block;
  padding: 1px 15px;
  border-radius: 15px;
  background-color: #d0d0d0;
  color: #6a6a6a;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap .uv-course-list-warp ul li .uv_lec_duration {
  float: left;
  width: 16%;
  color: #999999;
  font-weight: 600;
  text-align: right;
}
.uv-course-details .uv-course-details-inner .uv-cd-wrap .uv-course-list-warp ul li .uv_lec_duration .fa {
  margin-right: 10px;
}
.uv-course-details .uv-course-details-inner .uv-cd-instrutor-details {
  padding: 10px 15px;
  overflow: hidden;
  padding-left: 0;
}
.uv-course-details .uv-course-details-inner .uv-cd-instrutor-details figure {
  width: 30%;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  float: left;
}
.uv-course-details .uv-course-details-inner .uv-cd-instrutor-details figure img {
  width: 100%;
  height: auto;
}
.uv-course-details .uv-course-details-inner .uv-cd-instrutor-details .uv-cd-instructor-details-inner {
  float: left;
  width: 67%;
  margin-left: 16px;
}
.uv-course-details .uv-course-details-inner .uv-cd-instrutor-details .uv-cd-instructor-details-inner h3 {
  font-weight: bold;
  margin: 0px 0px 10px;
  text-transform: uppercase;
  color: #666666;
  font-size: 24px;
  margin-bottom: 0;
}
.uv-course-details .uv-course-details-inner .uv-cd-instrutor-details .uv-cd-instructor-details-inner span {
  font-size: 18px;
  line-height: 30px;
  color: #999999;
  margin: 0px 0px 10px;
  font-weight: 600;
  margin-bottom: 20px;
}
.uv-course-details .uv-course-details-inner .uv-cd-instrutor-details .uv-cd-instructor-details-inner .uv-social-icons li {
  float: left;
}
.uv_aside2_hdg {
  float: left;
  width: 100%;
  position: relative;
  border-radius: 5px;
  border: 1px solid #dbdbdb;
  background-color: #ffffff;
  margin-bottom: 20px;
}
.uv_aside2_hdg h5 {
  font-weight: bold;
  text-transform: uppercase;
  padding: 17px 15px;
  font-size: 20px;
  margin: 0;
  color: #ffffff;
  border-bottom: 2px solid #25b762;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #f7b831;
}
.uv_aside2_hdg ul {
  float: left;
  width: 100%;
  padding: 0px 10px;
}
.uv_aside2_hdg ul li {
  float: left;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #dbdbdb;
  padding: 12px 0px;
}
.uv_course_dur_list {
  width: 75%;
  float: left;
}
.uv_course_dur_list .fa {
  width: 40px;
  font-size: 30px;
  color: #999999;
  float: left;
}
.uv_course_dur_list span {
  color: #999999;
  font-size: 15px;
  float: left;
  padding-top: 5px;
}
.uv_featured_course_list > a {
  float: left;
  width: 50%;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
  padding: 15px 0px;
  background-color: #f7b831;
}
.uv_dwnload_course {
  padding: 10px 15px;
  background-color: #ffffff;
  border: 0px solid transparent;
  -webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -moz-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -ms-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -o-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  border-radius: 5px;
  width: 100%;
  position: relative;
}
.uv_dwnload_course a {
  display: block;
}
.uv_dwnload_course a i {
  border: 2px solid #999999;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  line-height: 60px;
  text-align: center;
  float: left;
  font-size: 30px;
  color: #999999;
  margin-right: 15px;
}
.uv_dwnload_course a span {
  color: #999999;
  display: inline-block;
  font-size: 20px;
  text-transform: uppercase;
  float: none;
  width: auto;
}
.uv_course_intro {
  background-color: #ffffff;
  border-radius: 5px;
  border: 0px solid transparent;
  -webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -moz-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -ms-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -o-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
}
.uv_course_intro figure {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.uv_course_intro figure:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.uv_course_intro figure .uv_play_btn {
  position: absolute;
  top: 0%;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
}
.uv_course_intro figure .uv_play_btn a {
  display: block;
  color: #ffffff;
  font-size: 30px;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
  border-radius: 100%;
  line-height: 70px;
  margin: auto;
  position: relative;
  top: 40%;
}
.uv_course_intro p {
  font-size: 20px;
  text-transform: uppercase;
  padding: 20px 0px;
  text-align: center;
  margin: 0px;
  float: left;
  width: 100%;
}
.uv_aside2_hdg {
  float: left;
  width: 100%;
  position: relative;
  border-radius: 5px;
  border: 0px solid transparent;
  -webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -moz-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -ms-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -o-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  background-color: #ffffff;
}
.uv_aside2_hdg h5 {
  font-weight: bold;
  text-transform: uppercase;
  padding: 17px 15px;
  font-size: 20px;
  color: #ffffff;
  border-bottom: 2px solid #25b762;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.uv_aside_category ul {
  padding: 10px 15px;
  float: left;
  width: 100%;
}
.uv_aside_category ul li {
  display: inline-block;
  width: 100%;
  position: relative;
  padding: 0;
  border: none;
}
.uv_aside_category ul li:hover a {
  color: #f7b831;
}
.uv_aside_category ul li:hover span {
  color: #f7b831;
}
.uv_aside_category ul li:before {
  content: "\f105";
  font-family: fontawesome;
  position: absolute;
  width: auto;
  height: auto;
  top: 7px;
  left: 0px;
  color: #999999;
}
.uv_aside_category ul li a {
  display: inline-block;
  color: #999999;
  font-weight: 500;
  padding: 8px 0px 8px 18px;
}
.uv_aside_category ul li span {
  float: right;
  padding-top: 6px;
  color: #999999;
}
.uv_featured_course_list ul.uv_aside_fea_course {
  padding: 0px;
}
.uv_featured_course_list ul.uv_aside_fea_course li {
  padding: 15px;
}
.uv_featured_course_list ul.uv_aside_fea_course li figure {
  width: 80px;
  float: left;
  overflow: hidden;
  position: relative;
}
.uv_featured_course_list ul.uv_aside_fea_course li figure:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 3px solid;
  opacity: 0;
  z-index: 10;
}
.uv_featured_course_list ul.uv_aside_fea_course li figure img {
  width: 100%;
  height: auto;
}
.uv_featured_course_list ul.uv_aside_fea_course li .aside_fea_course_des {
  float: none;
  padding: 0px 0px 0px 90px;
  width: auto;
}
.uv_featured_course_list ul.uv_aside_fea_course li .aside_fea_course_des h6 {
  font-size: 18px;
  margin: 0;
}
.uv_featured_course_list ul.uv_aside_fea_course li .aside_fea_course_des h6 a {
  display: block;
  font-size: 14px;
  color: #999999;
  margin: 0px 0px 6px;
  font-weight: 600;
  line-height: 22px;
}
.uv_featured_course_list ul.uv_aside_fea_course li .aside_fea_course_des h6 a:hover {
  color: #f7b831;
}
.uv_featured_course_list ul.uv_aside_fea_course li .aside_fea_course_des span {
  display: block;
  font-weight: bold;
  color: #999999;
}
.uv_aside_hdg {
  -webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -moz-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -ms-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -o-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  background-color: #ffffff;
  border-radius: 5px;
}
.uv_aside_hdg h6 {
  text-transform: capitalize;
  padding: 20px 25px 20px 20px;
  border-bottom: 1px solid #dbdbdb;
  font-weight: bold;
  color: #999999;
  font-size: 18px;
  margin: 0;
}
.uv_aside_hdg i {
  position: absolute;
  top: 18px;
  right: 10px;
  font-size: 8px;
  width: 25px;
  height: 25px;
  background-color: #e8e8e8;
  border-radius: 100%;
  line-height: 26px;
  text-align: center;
  color: #999999;
}
.uv_aside_hdg form {
  padding: 15px;
}
.uv_aside_hdg form .uv_aside_field {
  position: relative;
}
.uv_aside_hdg form .uv_aside_field i.uv-gt-search {
  top: 10px;
  background: none;
}
.uv_aside_hdg form input[type="text"] {
  width: 100%;
  height: 45px;
  background-color: #f5f5f5;
  border-radius: 5px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  margin: 0px 0px 15px;
  padding: 8px 40px 8px 10px;
  color: #999999;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  outline: none;
  vertical-align: middle;
}
.uv_aside_field button > i {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.chosen-container .chosen-results li.highlighted {
  background-color: #f7b831;
  color: #fff;
}
.uv_aside_hdg form {
  padding: 15px;
}
.uv_aside_field {
  position: relative;
}
.uv_aside_field input[type="text"] {
  width: 100%;
  height: 45px;
  background-color: #f5f5f5;
  border-radius: 5px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  margin: 0px 0px 15px;
  padding: 8px 40px 8px 10px;
  color: #999999;
}
.uv_aside_field > i {
  position: absolute;
  top: 15px;
  right: 10px;
  font-size: 14px;
  color: #999999;
}
.uv_aside_field button {
  color: #ffffff;
  background-color: #f7b831;
  border: none;
  height: 45px;
  text-transform: capitalize;
  width: 100%;
  border-radius: 5px;
  padding-left: 40px;
  text-align: left;
}
.uv_aside_field button > i {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 45px;
  width: 50px;
  background-color: #f7b831;
  font-size: 14px;
  color: #fff;
  line-height: 45px;
  border-radius: 5px;
  text-align: center;
}
/*Chossen CSS*/
.uv_aside_field .chosen-container-single .chosen-single {
  height: 45px;
  background: #f5f5f5;
  box-shadow: none;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 5px;
  width: 100%;
  padding: 9px 10px;
  font-size: 14px;
  color: #999999;
}
.uv_aside_field .chosen-container-single .chosen-single div {
  color: #999999;
  font-size: 16px;
  top: 1px;
  right: -4px;
}
.uv_aside_field .chosen-container-single {
  margin: 0px 0px 15px;
}
.uv_aside_field .chosen-container-single .chosen-single div {
  background-color: transparent;
}
.uv_aside_field .chosen-container-single .chosen-single div b::before {
  color: #666;
  font-weight: 500;
  top: 8px;
  height: 6px;
}
.uv_aside_field .chosen-container-single .chosen-drop {
  border-radius: 5px 5px 4px 4px;
  border-color: rgba(51, 51, 51, 0.2);
}
/*Form Hover*/
.uv_aside_field button:hover i {
  width: 100%;
}
/*Checkbox Css*/
ul.uv_checkbox_list {
  width: 100%;
  float: left;
  padding: 15px;
}
ul.uv_checkbox_list li {
  width: 100%;
  position: relative;
  float: left;
  margin-bottom: 10px;
}
ul.uv_checkbox_list li:last-child {
  margin-bottom: 0px;
}
ul.uv_checkbox_list li input[type="checkbox"] {
  display: none;
}
ul.uv_checkbox_list li label {
  font-weight: normal;
  line-height: 20px;
  color: #999999;
  cursor: pointer;
  margin: 0px;
}
ul.uv_checkbox_list li input[type="checkbox"] + label span {
  width: 11px;
  height: 11px;
  margin: 0px 12px 0 0;
  border: 2px solid #999999;
  border-radius: 100%;
  cursor: pointer;
  float: left;
  margin-top: 4px;
  font-weight: bold;
}
ul.uv_checkbox_list li input[type="checkbox"]:checked + label span {
  background-color: #f7b831;
  border-color: #f7b831;
}
ul.uv_aside_fea_course li {
  border-bottom: 1px solid #efefef;
  padding: 10px 10px;
  width: 100%;
  display: inline-block;
}
ul.uv_aside_fea_course li:last-child {
  border-bottom: 0px;
}
ul.uv_aside_fea_course li figure {
  width: 80px;
  float: left;
  overflow: hidden;
  position: relative;
}
ul.uv_aside_fea_course li figure:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 3px solid;
  opacity: 0;
  z-index: 10;
}
ul.uv_aside_fea_course li:hover figure:before {
  opacity: 1;
}
ul.uv_aside_fea_course li figure img {
  width: 100%;
  height: auto;
}
.aside_fea_course_des-alt {
  float: none;
  padding: 0px 0px 0px 90px;
  width: auto;
}
.aside_fea_course_des-alt h6 {
  padding: 0;
  border: none;
}
.aside_fea_course_des-alt h6 > a {
  display: block;
  font-size: 14px;
  color: #999999;
  margin: 0px 0px 6px;
  font-weight: 600;
  line-height: 22px;
}
.aside_fea_course_des-alt p {
  margin: 0px 0px 6px;
}
.aside_fea_course_des-alt p,
.aside_fea_course_des-alt span {
  color: #999999;
}
.aside_fea_course_des-alt span {
  display: block;
  font-weight: bold;
}
.uv-course-listing-inner {
  padding-bottom: 30px;
}
.uv_course_listing_wrap {
  -webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -moz-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -ms-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  -o-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1) ;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.uv_course_listing_wrap:hover {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.uv_course_listing_wrap > figure {
  width: 30%;
  border-radius: 5px;
  float: left;
  position: relative;
  overflow: hidden;
}
.uv_course_listing_wrap > figure > img {
  width: 100%;
  height: auto;
}
.uv_course_listing_des {
  width: 70%;
  float: left;
  position: relative;
  padding: 0px 15px;
}
.uv_course_listing_des > ul.uv_event_meta {
  margin: 0px 0px 10px;
}
.uv_course_listing_des > h5 {
  text-transform: uppercase;
  font-weight: bold;
  margin: 0px 0px 8px;
  font-size: 22px;
}
.uv_course_listing_des > a {
  display: inline-block;
  padding: 10px 25px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  background-color: #666666;
  border-radius: 30px;
}
.uv_course_price {
  float: right;
  width: auto;
  color: #999999;
}
.uv_course_price > h4 {
  color: #666666;
  margin-right: 5px;
  display: inline-block;
  font-weight: 600;
}
.uv_listing_rating {
  position: absolute;
  top: 0px;
  right: -20px;
  padding: 5px 5px 5px 25px;
  background-color: #f7b831;
}
.uv_listing_rating:before {
  content: "";
  position: absolute;
  top: 6px;
  left: -12px;
  width: 25px;
  height: 25px;
  transform: rotate(45deg);
  background-color: #ffffff;
}
.uv_listing_rating:after {
  content: "";
  position: absolute;
  top: -10px;
  right: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 0 10px;
  border-color: transparent transparent transparent #1bbc5f;
}
.uv_listing_rating ul.uv_rating_star li a {
  color: #ffffff;
}
ul.uv_event_meta {
  margin: 0px 0px 10px;
}
ul.uv_event_meta {
  width: 100%;
  float: left;
}
ul.uv_event_meta li {
  display: inline-block;
  color: #999999;
  padding: 0px 10px;
}
ul.uv_event_meta li:first-child {
  padding-left: 0px;
}
ul.uv_event_meta li > i {
  margin: 0px 8px 0px 0px;
}
ul.uv_event_meta li > a {
  display: inline-block;
  color: #999999;
  margin-left: 5px;
}
ul.uv_event_meta li > a:hover {
  color: #f7b831;
}
.uv_pagination_outer_wrap {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
}
.uv_pagination_outer_wrap ul {
  display: inline-block;
  width: auto;
  background-color: #ffffff;
  box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.08);
  border-radius: 7px;
}
.uv_pagination_outer_wrap ul li {
  position: relative;
  display: inline-block;
  margin: 0px -4px 0px 0px;
}
.uv_pagination_outer_wrap ul li:last-child {
  margin-right: 0px;
}
.uv_pagination_outer_wrap ul li a {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid #f2f2f2;
  line-height: 48px;
  color: #585858;
  font-weight: 500;
}
.uv_pagination_outer_wrap ul li:first-child a,
.uv_pagination_outer_wrap ul li:last-child a {
  width: 60px;
  border: 1px solid #f2f2f2;
}
.uv_pagination_outer_wrap ul li.active a,
.uv_pagination_outer_wrap ul li:hover a {
  color: #fff;
  background-color: #f7b831;
}
.quiz-wrapper .lead {
  padding-bottom: 0;
  color: #363a47;
}
.progress,
.panel-footer {
  box-shadow: none;
  background-color: #edecf0;
}
.panel-primary {
  border-color: #edecf0;
}
.course-list .shop-item-list,
#course-left-sidebar {
  margin-bottom: 30px;
}
.course-instructors img {
  width: 20px;
  margin: 0 8px;
}
.course-prize i {
  font-size: 16px;
  padding: 3px 2px 0;
}
.course-description small {
  font-weight: 600;
  margin-right: 20px;
  font-size: 13px;
}
.course-description small span {
  font-weight: 400;
}
.course-description small span a:hover {
  color: #f7b831;
}
.course-description .course-title {
  font-size: 24px;
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
.progressbar-text {
  display: none;
}
.course-meta i {
  padding-right: 3px;
}
.course-meta .label-primary {
  width: 25px;
  font-size: 12px;
  font-weight: 400;
  height: 20px;
  line-height: 16px;
  text-align: center;
}
.course-meta p {
  width: 100%;
  display: block;
  position: relative;
}
.course-meta small {
  position: absolute;
  right: 0;
  top: 0;
}
.course-image-widget img {
  width: 100%;
}
.course-meta p,
.course-meta a {
  line-height: 1;
  color: #ffffff;
}
.course-meta {
  padding: 15px 20px 10px;
  background-color: #3f4451;
  margin-top: 0;
}
.course-meta.forshop {
  background-color: #fff;
}
.course-meta.forshop hr {
  border-color: #fff;
  background-color: #fff;
}
.course-meta.forshop p {
  color: #777777;
  font-size: 14px;
}
.course-meta.forshop a {
  color: #363a47 !important;
}
.course-meta .rating {
  margin-top: 0;
  padding-top: 0;
}
.course-meta .rating i {
  padding: 0;
  color: #eabe12;
}
.course-meta p {
  display: inline-block;
  padding-right: 4px;
  padding-bottom: 0;
  font-size: 13px;
}
.course-meta hr {
  background: #626774;
  border-color: #121724;
  height: 1px;
  margin-bottom: 6px;
  margin-top: 6px;
}
.course-button .btn {
  border-radius: 0;
  padding: 10px 20px;
}
.course-table .fa-check {
  background-color: #92CD00;
  color: #ffffff;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}
.uv_contact_list {
  background-color: #f5f5f5;
  border: 1px solid rgba(207, 207, 207, 0.5);
  border-radius: 60px;
  padding: 50px 40px;
}
.uv_contact_list h4 {
  text-transform: uppercase;
  font-weight: bold;
  margin: 0px 0px 20px;
}
.uv_contact_list > ul {
  margin: 0px 0px 10px;
  float: left;
  width: 100%;
}
.uv_contact_list > ul > li {
  width: 100%;
  position: relative;
  margin: 0px 0px 20px;
}
.uv_contact_icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid rgba(164, 164, 164, 0.55);
  color: #666666;
  line-height: 50px;
  float: left;
  text-align: center;
  font-size: 25px;
  margin: 3px 0px 0px;
}
.uv_contact_des {
  padding: 5px 0px 0px 70px;
  float: none;
  width: auto;
}
.uv_contact_des > h6 {
  font-size: 16px;
  font-weight: bold;
  margin: 0px 0px 8px;
  text-transform: capitalize;
  font-family: 'Montserrat', sans-serif;
}
.uv_contact_des > a {
  display: block;
  color: #666666;
}
.uv_cdd_outer_wrap {
  border: 1px solid #dbdbdb;
  background-color: #ffffff;
  border-radius: 5px;
}
.uv_cdd_outer_wrap > figure {
  margin: 0px 0px 30px;
}
.uv_cdd_outer_wrap > figure > img {
  width: 100%;
  height: auto;
}
.uv_cd_hdg_wrap {
  padding: 10px 15px;
}
.uv_cd_hdg_wrap > h5 {
  color: #666666;
  font-weight: bold;
  text-transform: uppercase;
  float: left;
  width: 70%;
}
.uv_cd_rating {
  float: right;
  width: 30%;
}
.uv_cd_rating > span {
  float: right;
  color: #999999;
  font-size: 14px;
  margin-left: 10px;
}
.uv_cd_mata_wrap {
  padding: 15px 15px;
  border-bottom: 1px solid #dbdbdb;
}
.uv_cd_mata_wrap > ul {
  float: left;
  width: 100%;
}
.uv_cd_mata_wrap > ul > li {
  position: relative;
  float: left;
  padding: 0px 30px;
  line-height: 25px;
  border-radius: 5px;
}
.uv_cd_mata_wrap > ul > li:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 50px;
  width: 1px;
  background-color: #cccccc;
}
.uv_cd_mata_wrap > ul > li:first-child {
  padding-left: 0px;
}
.uv_cd_mata_wrap > ul > li:last-child {
  float: right;
  padding-right: 0px;
}
.uv_cd_mata_wrap > ul > li:first-child:before {
  display: none;
}
.uv_cd_mata_wrap > ul > li > figure {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  border: 2px solid #e2e2e2;
  margin-right: 10px;
}
.uv_cd_mata_wrap > ul > li > figure > img {
  width: 100%;
  height: auto;
}
.uv_course_meta_des {
  overflow: hidden;
}
.uv_course_meta_des > h6 {
  font-size: 15px;
  color: #999999;
  font-weight: bold;
}
.uv_course_meta_des > span {
  color: #999999;
}
.uv_cd_mata_wrap > ul > li > i {
  width: 30px;
  float: left;
  font-size: 35px;
  color: #666666;
  margin-right: 10px;
}
.uv_cd_mata_wrap > ul > li ul.uv_scl_icon li a {
  color: #ffffff;
  border: 1px solid transparent;
}
/*Description*/
.uv_cd_des_wrap {
  padding: 15px 20px;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 30px;
}
.uv_cd_des_wrap > h4 {
  font-weight: bold;
  text-transform: uppercase;
  margin: 0px 0px 20px;
  color: #666666;
}
.uv_cd_des_wrap ul,
.uv_cd_des_wrap ul li {
  float: left;
  width: 100%;
}
.uv_cd_des_wrap ul li {
  color: #999999;
  margin: 10px 0px 0px;
  position: relative;
  padding: 0px 0px 0px 25px;
}
.uv_cd_des_wrap ul li:before {
  content: "\f178";
  font-family: fontawesome;
  position: absolute;
  top: 0px;
  left: 0px;
  width: auto;
  height: auto;
}
.uv_cd_des_wrap.border_bottom {
  border-bottom: 0px;
}
/*Couurse List*/
.uv_course_list_wrap {
  padding: 0px 15px 15px;
}
.uv_course_list_wrap > h6 {
  font-size: 16px;
  color: #666666;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0px 0px 15px;
}
.uv_course_list_wrap > ul {
  float: left;
  width: 100%;
}
.uv_course_list_wrap > ul > li {
  width: 100%;
  float: left;
  position: relative;
  background-color: #f5f5f5;
  border: 1px solid #dbdbdb;
  padding: 10px 15px;
  border-radius: 5px;
  margin: 0px 0px 10px;
}
.uv_lec_detail {
  float: left;
  width: 14%;
  color: #999999;
  text-align: left;
  text-transform: capitalize;
  font-weight: 600;
}
.uv_lec_title {
  float: left;
  width: 70%;
}
.uv_lec_title > h6 {
  color: #999999;
  display: inline-block;
  font-weight: 600;
  margin-right: 15px;
  font-size: 14px;
}
.uv_lec_title > span {
  display: inline-block;
  padding: 1px 15px;
  border-radius: 15px;
  background-color: #d0d0d0;
  color: #6a6a6a;
}
.uv_lec_duration {
  float: left;
  width: 16%;
  color: #999999;
  font-weight: 600;
  text-align: right;
}
.uv_lec_duration > i {
  margin-right: 10px;
}
.uv_course_list_wrap.border_bottom {
  border-bottom: 1px solid #dbdbdb;
}
/*Instructor Des*/
.uv_instructor_detail {
  padding: 10px 15px;
}
.uv_instructor_detail > figure {
  width: 30%;
  border-radius: 5px;
}
.uv_instructor_detail > figure > img {
  width: 100%;
  height: auto;
}
.uv_instructor_detail_des {
  float: left;
  width: 67%;
  margin-left: 16px;
}
.uv_instructor_detail_des > h4 {
  font-weight: bold;
  margin: 0px 0px 10px;
  text-transform: uppercase;
  color: #666666;
}
.uv_instructor_detail_des > h6 {
  color: #999999;
  margin: 0px 0px 10px;
  font-weight: 600;
}
.uv_instructor_detail_des ul.uv_scl_icon li {
  float: left;
  margin-right: 8px;
}
.uv_instructor_detail_des ul.uv_scl_icon li a {
  color: #ffffff;
  border-color: transparent;
}
.uv_team_wrap {
  border: 1px solid #e1e1e1;
  text-align: center;
}
.uv_team_wrap img {
  width: 100%;
  height: auto;
}
.uv_team_des {
  padding: 20px 0px 15px;
}
.uv_team_des h6 > a {
  font-weight: 600;
  margin: 0px 0px 5px;
  display: block;
  text-transform: uppercase;
}
.uv_team_des span {
  display: block;
  margin: 0px 0px 12px;
  text-transform: capitalize;
  color: #999999;
}
.uv_team_des ul.uv_scl_icon {
  border-bottom: 1px solid #e1e1e1;
  padding: 0px 0px 15px;
  margin: 0px 0px 15px;
}
ul.uv_scl_icon li {
  display: inline-block;
  position: relative;
}
ul.uv_scl_icon li a {
  display: block;
  border: 1px solid #e1e1e1;
  border-radius: 100%;
  width: 34px;
  height: 34px;
  line-height: 34px;
  color: #999999;
}
.uv_team_des p {
  padding: 0px 15px;
}
/*Hover*/
.uv_team_wrap:hover img {
  transform: scale(1.2) rotateZ(-6deg);
  -moz-transform: scale(1.2) rotateZ(-6deg);
  -webkit-transform: scale(1.2) rotateZ(-6deg);
  -ms-transform: scale(1.2) rotateZ(-6deg);
}
ul.uv_scl_icon li:hover a {
  color: #f7b831;
}
.uv_team_wrap:hover {
  box-shadow: 0px 5px 12px 2px rgba(0, 0, 0, 0.15);
}
.uv_team_border {
  border-radius: 5px;
}
.uv_team_padding {
  padding: 20px;
}
.uv_team_d_img > img {
  width: 100%;
  height: auto;
}
.uv_team_d_outer {
  border-bottom: 1px solid #ededed;
  margin: 0px 0px 25px;
  padding: 0px 0px 10px;
}
.uv_team_d_title {
  width: 40%;
  float: left;
}
.uv_team_d_title > h4 {
  font-weight: bold;
  text-transform: uppercase;
  margin: 0px 0px 8px;
}
.uv_team_d_title > p {
  color: #999999;
}
.uv_team_scl {
  float: left;
  width: 60%;
  margin: 10px 0px 0px;
}
.uv_team_scl > ul > li > a {
  text-align: center;
}
.uv_team_d_des > p {
  color: #666666;
}
.uv_team_d_des > ul {
  border-top: 1px solid #ededed;
  margin: 25px 0px 0px;
  padding: 25px 0px 0px;
}
.uv_team_d_des > ul > li {
  width: 33.3%;
  float: left;
}
.uv_team_d_des .uv_contact_icon {
  background-color: #999999;
  color: #ffffff;
}
.uv_team_d_point > ul {
  width: 50%;
}
.what-we-do p {
  margin-bottom: 20px;
}
.what-we-do .progress-content span {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  opacity: 0.7;
}
.what-we-do .progress {
  height: 6px;
  margin-bottom: 20px;
  margin-top: 10px;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 0px;
  -webkit-box-shadow: 0 0.5px 10px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 0 0.5px 10px rgba(0, 0, 0, 0.19);
  box-shadow: 0 0.5px 10px rgba(0, 0, 0, 0.19);
}
.what-we-do .progress-bar {
  background-color: #f7b831;
}
.selectize-input.focus {
  border-color: #f7b831;
}
