/* Animation */
@-webkit-keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftSmall {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRightMedium {
  from {
    opacity: 0;
    -webkit-transform: translate3d(400px, 0, 0);
    transform: translate3d(400px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightMedium {
  from {
    opacity: 0;
    -webkit-transform: translate3d(400px, 0, 0);
    transform: translate3d(400px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightMedium {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fillAnimation {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.04) translateY(300%);
    transform: scale(0.04) translateY(300%);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(0.02) translateY(0px);
    transform: scale(0.02) translateY(0px);
    -webkit-transition: ease-out;
    transition: ease-out;
  }
  100% {
    opacity: 1;
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%;
  }
  to {
    opacity: 1;
    height: 100%;
    padding-bottom: 0;
    border-radius: 0;
    -webkit-transform: scale(2) translateY(0px);
    transform: scale(2) translateY(0px);
  }
}

@keyframes fillAnimation {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.04) translateY(300%);
    transform: scale(0.04) translateY(300%);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(0.02) translateY(0px);
    transform: scale(0.02) translateY(0px);
    -webkit-transition: ease-out;
    transition: ease-out;
  }
  100% {
    opacity: 1;
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%;
  }
  to {
    opacity: 1;
    height: 100%;
    padding-bottom: 0;
    border-radius: 0;
    -webkit-transform: scale(2) translateY(0px);
    transform: scale(2) translateY(0px);
  }
}


.phone-call {
  position: absolute;
  top: -44px;
  left: -15px;
  width: 110px;
  height: 88px;
  background: #ffbd0a;
  text-align: center;
  line-height: 110px;
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}
.phone-call span {
  position: relative;
  top: -12px;
}
.phone-call span img {
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
}

/* Carousel
=========================================== */
.tl-slider {
  position: relative;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.tl-slider-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}
.tl-slider-carousel.owl-carousel .owl-nav button {
  position: absolute;
  left: 50px;
  top: 0;
  color: #f5f5f5;
  width: 45px;
  height: 45px;
  background: rgba(248, 248, 248, 0.2);
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tl-slider-carousel.owl-carousel .owl-nav button i {
  font-size: 20px;
  line-height: 46px;
  padding-right: 3px;
}
.tl-slider-carousel.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 50px;
}
.tl-slider-carousel.owl-carousel .owl-nav button.owl-next i {
  padding-left: 5px;
}
.tl-slider-carousel.owl-carousel .owl-nav button:hover {
  background: #ffbf10;
}
.tl-slider-carousel.owl-carousel .owl-item .slider-inner {
  opacity: 0;
  -webkit-transition: opacity 500ms linear;
  transition: opacity 500ms linear;
}
.tl-slider-carousel.owl-carousel .owl-item.active .slider-content .slider-title {
  -webkit-animation: fadeInLeftSmall .8s .8s both linear;
  animation: fadeInLeftSmall .8s .8s both linear;
}
.tl-slider-carousel.owl-carousel .owl-item.active .slider-content .slider-text {
  -webkit-animation: fadeInLeftSmall .8s 1s both linear;
  animation: fadeInLeftSmall .8s 1s both linear;
}
.tl-slider-carousel.owl-carousel .owl-item.active .slider-content .slider-btn .btn-primary {
  -webkit-animation: zoomIn .8s 1.2s both linear;
  animation: zoomIn .8s 1.2s both linear;
}
.tl-slider-carousel.owl-carousel .owl-item.active .slider-content .slider-btn .btn-border {
  -webkit-animation: zoomIn .8s 1.5s both linear;
  animation: zoomIn .8s 1.5s both linear;
}
.tl-slider-carousel.owl-carousel .owl-item.active .slider-inner {
  opacity: 1;
}
.tl-slider-carousel.owl-carousel .owl-item.active .slider-inner .slider-img {
  -webkit-animation: fadeInUp .8s .8s both ease-in-out;
  animation: fadeInUp .8s .8s both ease-in-out;
}

.slider-img {
  position: absolute;
  bottom: 0;
  right: 65px;
}
.slider-img img {
  height: 530px;
}

.tl-slider-wrapper {
  height: 600px;
  display: table;
  width: 100%;
  background-size: cover;
  background-position: 50% 100%;
}

.slider-inner {
  display: table-cell;
  vertical-align: middle;
}

.slider-content .slider-title,
.slider-content .slider-text {
  color: #fff;
}
.slider-content .slider-title {
font-size: 55px;
    letter-spacing: 1px;
    padding-right: 60px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: bold
}
.slider-content .slider-text {
  margin-bottom: 40px;
      font-size: 15px;
}
.slider-content .slider-btn .btn:not(:last-child) {
  margin-right: 10px;
}


h1.slider-title.txtcolor1 {
   color:#f33b29 !important;
}

h1.slider-title.txtcolor2 {
   color:#19bd9b !important;
}

h1.slider-title.txtcolor3 {
   color:#f2c40e !important;
}


/* Intro
=========================================== */
.tl-intro {
  padding: 35px 0;
}
.tl-intro.intro-bg {
  background: url(../images/bg-img1.png);
  background-size: cover;
  background-position: top center;
}

.tl-intro-wrapper {
	height: 170px;
		
  display: block;
  padding: 30px 32px;
}
.tl-intro-wrapper * {
  color: #fff;
}
.tl-intro-wrapper p {
      font-size: 15px;
    line-height: 20px;
    margin-bottom: 0;
}
.tl-intro-wrapper .intro-icon {
  float: left;
}
.tl-intro-wrapper .intro-icon i {
  font-size: 50px;
}
.tl-intro-wrapper .intro-title {
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.tl-intro-wrapper .intro-content {
  padding-left: 60px;
  padding-top: 7px;
}

/* About
=========================================== */
.tl-about {
  padding-top: 88px;
  padding-bottom: 68px;
}

.about-content .readmore-btn {
  margin-top: 28px;
  margin-bottom: 40px;
}

.about-bg {
  border-radius: 9px;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.about-box {
  padding: 13px 18px 16px;
}
.about-box h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 19px;
}
.about-box p {
  color: #fff;
  margin-bottom: 5px;
}

.about-event .event-title {
  font-size: 30px;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 45px;
}
.about-event .event-time {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  background: #f2c40e;
  text-align: center;
  padding: 31px 0;
}
.about-event .event-time span {
  display: block;

  font-family: 'Proxima Nova', Georgia, sans-serif;
  color: #fff;
  font-weight: 600;
}
.about-event .event-time .event-date {
  font-size: 45px;
  margin-bottom: 9px;
}
.about-event .event-time .event-month {
  font-weight: 500;
}

.event-box-wrapper {
  border: 1px solid #ffbd0a;
  margin-bottom: 30px;
  position: relative;
  padding: 20px 0 10px 90px;
  min-height: 155px;
}

.event-info .event-name {
  text-transform: none;
  margin-bottom: 6px;
}
.event-info .event-location > span {
  color: #ffbd0a;
  margin-right: 15px;
}
.event-info .event-location > span i {
  color: #8e8e8e;
  margin-right: 4px;
}

.event-desc {
  margin-bottom: 0;
  margin-top: 10px;
}

/* Service
=========================================== */
.tl-service {
  padding-top: 90px;
}

.single-service-box {
  background: #fff;
  border-radius: 50px;
  padding: 40px 35px 40px 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-service-box:hover {
  -webkit-box-shadow: 0px 10px 20px 0px #ececed;
  box-shadow: 0px 10px 20px 0px #ececed;
}

.service-header {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.service-header i {
  font-size: 50px;
}
.service-header .service-title {
  font-size: 20px;
 
  font-family: 'Proxima Nova', Georgia, sans-serif;
  font-weight: 600;
  padding-left: 20px;
  margin-bottom: 0;
}
.service-header.color-green i,
.service-header.color-green .service-title {
  color: #a6c437;
}
.service-header.color-yellow i,
.service-header.color-yellow .service-title {
  color: #ffbd0a;
}
.service-header.color-orange i,
.service-header.color-orange .service-title {
  color: #f05a21;
}

.service-desc {
  margin-bottom: 0;
  padding-top: 20px;
}

/* Funfact
=========================================== */
.tl-funfact {
  
  background-image:url(../images/bg1.jpg);
  background-size: cover;
  background-position: top right;
  background-attachment: fixed;
  padding: 75px 0 65px;
}
.tl-funfact.bg-overlay-green *, .tl-funfact.bg-overlay * {
  color: #fff;
}
.tl-funfact.dark-bg {
 
  background:url(../images/bg1.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 75px 0 65px;
}

.single-counter-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.single-counter-box .counter-icon {
  font-size: 75px;
}
.single-counter-box .counter-content {
  padding-left: 12px;
  font-size: 40px;
  
  font-family: 'Proxima Nova', Georgia, sans-serif;
  font-weight: 700;
}
.single-counter-box .counter-content span {
  display: inline-block;
  margin-bottom: 2px;
}
.single-counter-box .counter-content .counter-title {
  margin-bottom: 0;
  font-weight: 300;
  font-size: 22px;
}

/* Feature
=========================================== */
.tl-feature {
  padding-top: 88px;
}

.feature-box-wrapper {
  border: 1px solid #f5f5f5;
  border-bottom: 5px solid #ffbd0a;
  position: relative;
}
.feature-box-wrapper .feature-img {
  position: relative;
}
.feature-box-wrapper .feature-content {
  padding: 35px 30px 30px;
}
.feature-box-wrapper .feature-content .feature-title {
  font-weight: 600;
  margin-bottom: 18px;
}
.feature-box-wrapper .feature-content p {
  margin-bottom: 12px;
}

.feature-schedule-box {
  text-align: center;
  border: 1px solid #f5f5f5;
}
.feature-schedule-box .schedule-title {
  line-height: normal;
  margin-bottom: 0;
  border-bottom: 1px dashed #f5f5f5;
  padding: 22px 0;
}
.feature-schedule-box .schedule-shift {
  padding: 26px 0;
  border-bottom: 1px solid #f5f5f5;
  color: #494753;
  font-size: 18px;
  font-weight: 500;
  
  font-family: 'Proxima Nova', Georgia, sans-serif;
}
.feature-schedule-box .schedule-time {
  border-bottom: 1px solid #f5f5f5;
  padding: 5px 0;
  font-size: 16px;
  font-family: 'Proxima Nova', Georgia, sans-serif;
  background: #f5f5f5;
}
.feature-schedule-box .schedule-time span {
  display: block;
  color: #494753;
  font-size: 14px;
}
.feature-schedule-box .schedule-time.color-green {
  color: #a6c437;
}
.feature-schedule-box .schedule-time.color-orange {
  color: #f05a21;
}
.feature-schedule-box .schedule-link {
  padding: 23px 0;
}
.feature-schedule-box .schedule-link a {
  color: #494753;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 700;
}
.feature-schedule-box .schedule-link a:hover {
  color: #ffbd0a;
}

/* Testimonial
=========================================== */
.testimonial-bg {
  position: absolute;
  right: 0;
  bottom: 0;
}

.testimonial-img img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.testimonial-content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.testimonial-content-wrapper .testiomonial-content {
  padding-right: 40px;
  margin-left: 60px;
}
.testimonial-content-wrapper .testiomonial-content .client-name {
  text-transform: uppercase;
  margin-bottom: 15px;
}
.testimonial-content-wrapper .testiomonial-content .client-msg {
  color: #929292;
  font-style: italic;
  font-weight: 600;
}

.testimonial-single-slider.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 50px;
}
.testimonial-single-slider.owl-carousel .owl-dots button {
  display: inline-block;
  background: #d7d7d7;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.testimonial-single-slider.owl-carousel .owl-dots button.active {
  background: #ffbd0a;
}

/* Testimonial Classic */
.testimonial-classic-carousel .testimonial-content-wrapper {
  display: unset;
}
.testimonial-classic-carousel .testimonial-content-wrapper .testiomonial-content {
  margin-left: 0;
  padding-right: 100px;
}
.testimonial-classic-carousel .testimonial-content-wrapper .testimonial-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
}
.testimonial-classic-carousel .testimonial-content-wrapper .testimonial-footer .testimonial-img img {
  width: 60px;
  height: 60px;
}
.testimonial-classic-carousel .testimonial-content-wrapper .testimonial-footer .testimonial-img .client-msg {
  
  font-family: 'Proxima Nova', Georgia, sans-serif;
  font-style: normal;
  line-height: 28px;
}
.testimonial-classic-carousel .testimonial-content-wrapper .testimonial-footer .client-name {
  margin-bottom: 0;
  font-size: 12px;
  margin-left: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}
.testimonial-classic-carousel .testimonial-content-wrapper .testimonial-footer .client-name span {
  color: #929292;
  font-weight: 400;
  text-transform: none;
}

.testimonial-classic-carousel.owl-carousel .owl-dots {
  position: absolute;
  top: -86px;
  width: 100%;
  text-align: right;
}
.testimonial-classic-carousel.owl-carousel .owl-dots button {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #c1c1c1;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.testimonial-classic-carousel.owl-carousel .owl-dots button:not(:last-child) {
  margin-right: 10px;
}
.testimonial-classic-carousel.owl-carousel .owl-dots button.active {
  background: #ffbd0a;
}

/* portfolio
=========================================== */
.grid .element-item {
  float: left;
  width: 25%;
  padding: 15px;
}
.grid .element-item img {
  border-radius: 50px;
  height: 245px;
  width: 270px;
}

.portfolio-menu {
  text-align: center;
  margin-bottom: 45px;
}
.portfolio-menu li {
  padding: 4px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  cursor: pointer;
  margin-right: 5px;
  color: #6a6c6d;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.portfolio-menu li:last-child {
  margin-right: 0;
}
.portfolio-menu li.active {
  color: #ffbd0a;
  border-color: #ffbd0a;
}

.portfolio-btn {
  margin-top: 65px;
  text-align: center;
}
.portfolio-btn .btn {
  border-color: #eaeaea;
  color: #6a6c6d;
}
.portfolio-btn .btn:hover {
  color: #fff;
}

.portfolio-grid .element-item a {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
}
.portfolio-grid .element-item a:after {
  content: "";
  position: absolute;
  top: -101%;
  left: -101%;
  width: 100%;
  height: 100%;
  background: rgba(255, 189, 10, 0.8);
  border-radius: 50px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.portfolio-grid .element-item a:hover:after {
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
}

/* News
=========================================== */
.tl-latest-post .latest-post-media {
  position: relative;
  margin-bottom: 17px;
  overflow: hidden;
}
.tl-latest-post .post-date {
  margin-bottom: 15px;
}
.tl-latest-post .post-date span,
.tl-latest-post .post-date a {
  color: #b4b4b4;
}
.tl-latest-post .post-date span i {
  font-size: 14px;
  margin-right: 5px;
}
.tl-latest-post .post-date .post-time {
  margin-right: 20px;
}
.tl-latest-post .post-meta {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  background: #ffbd0a;
  padding: 4px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tl-latest-post .post-meta .post-author {
  color: #fff;
}
.tl-latest-post .post-meta .post-author a {
  color: #fff;
}
.tl-latest-post .post-meta .post-author i {
  margin-right: 7px;
}
.tl-latest-post .post-info .post-title {
  margin-bottom: 15px;
}
.tl-latest-post .post-info .post-title a {
  color: #494753;
  line-height: 32px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tl-latest-post .post-info .readmore-btn {
  margin-top: 1px;
}
.tl-latest-post:hover .post-title a {
  color: #ffbd0a;
}
.tl-latest-post:hover .post-meta {
  bottom: 0;
}
.tl-latest-post:hover .readmore-btn {
  color: #ffbd0a;
}

/* Partner
=========================================== */
.tl-partner {
  padding: 75px 0;
}

.partner-carousel.owl-carousel .owl-item img {
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: .5;
}
.partner-carousel.owl-carousel .owl-item:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}
.partner-carousel .partner-logo {
  display: table;
  width: 100%;
  height: 60px;
  text-align: center;
}
.partner-carousel .partner-logo .partner-item {
  margin-bottom: 0;
  display: table-cell;
  vertical-align: middle;
}

/* CTA
=========================================== */
.tl-cta {
  padding: 45px 0 30px;
}
.tl-cta.bg-green .cta-content * {
  color: #fff;
}
.tl-cta.bg-green .cta-content .cta-title {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 28px;
}

.newsletter .form-row {
  position: relative;
}
.newsletter .form-control {
  padding: 19px 30px;
  border-radius: 50px;
}
.newsletter input[type=email] {
  background: transparent;
  color: #fff;
  font-size: 14px;
  border-color: #c1d673;
}
.newsletter input::-webkit-input-placeholder {
  color: #fff;
  font-size: 14px;
}
.newsletter input::-moz-placeholder {
  color: #fff;
  font-size: 14px;
}
.newsletter input:-ms-input-placeholder {
  color: #fff;
  font-size: 14px;
}
.newsletter input::-ms-input-placeholder {
  color: #fff;
  font-size: 14px;
}
.newsletter input::placeholder {
  color: #fff;
  font-size: 14px;
}
.newsletter button[type=submit] {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 50px;
  padding: 10px 57px;
  border-radius: 50px;
  border: none;
  background: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.newsletter button[type=submit]:hover {
  color: #ffbd0a;
}

/* CTA Classic */
.cta-bg {
  padding: 118px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
}

.cta-form-classic .cta-title {
  color: #fff;
  margin-bottom: 20px;
}
.cta-form-classic > p {
  color: #fff;
  margin-bottom: 30px;
}
.cta-form-classic .newsletter input[type=email] {
  background: #fff;
  width: 71%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  color: #494753;
}
.cta-form-classic .newsletter input::-webkit-input-placeholder {
  color: #b3b2b6;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
}
.cta-form-classic .newsletter input::-moz-placeholder {
  color: #b3b2b6;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
}
.cta-form-classic .newsletter input:-ms-input-placeholder {
  color: #b3b2b6;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
}
.cta-form-classic .newsletter input::-ms-input-placeholder {
  color: #b3b2b6;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
}
.cta-form-classic .newsletter input::placeholder {
  color: #b3b2b6;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
}
.cta-form-classic .newsletter button[type=submit] {
  width: 27%;
  padding: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 61px;
  top: 0;
  background: #ffbd0a;
  color: #fff;
  text-transform: uppercase;
}


/* Contact form */
.tl-conact-form {
  margin-top: 37px;
}

.contact-form .form-group .form-control {
  border-color: #dbdadd;
  padding: 16px 40px;
  border-radius: 50px;
}
.contact-form .form-group .form-control::-webkit-input-placeholder {
  color: #b6b5ba;
  font-size: 14px;
  font-weight: 600;
}
.contact-form .form-group .form-control::-moz-placeholder {
  color: #b6b5ba;
  font-size: 14px;
  font-weight: 600;
}
.contact-form .form-group .form-control:-ms-input-placeholder {
  color: #b6b5ba;
  font-size: 14px;
  font-weight: 600;
}
.contact-form .form-group .form-control::-ms-input-placeholder {
  color: #b6b5ba;
  font-size: 14px;
  font-weight: 600;
}
.contact-form .form-group .form-control::placeholder {
  color: #b6b5ba;
  font-size: 14px;
  font-weight: 600;
}
.contact-form .form-group textarea.form-control {
  border-radius: 25px;
  margin-top: 32px;
  margin-bottom: 48px;
}

/* Map */
.mapouter {
  text-align: right;
  height: 450px;
  width: 100%;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 450px;
  width: 100%;
}
.gmap_canvas iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.tl-map {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tl-map:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

/* Sub Pages
=========================================== */
/* Home Varriations
======================== */
/* Home 2 */
.home-banner-wrapper {
  height: 800px;
  display: table;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.home-banner-wrapper .home-banner-inner {
  display: table-cell;
  vertical-align: bottom;
}
.home-banner-wrapper .home-banner-inner .banner-title {
  font-size: 42px;
  color: #fff;
  margin-bottom: 40px;
}

.tl-countdown-box {
  position: relative;
  margin-bottom: -70px;
  border-radius: 5px;
  background: #000;
  text-align: center;
}
.tl-countdown-box .header-form {
  background: #353949;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.tl-countdown-box .header-form .form-group {
  margin-bottom: 22px;
}
.tl-countdown-box .header-form .form-group .form-control {
  border: none;
  background: transparent;
  border-bottom: 1px solid #4a4d5c;
  padding-bottom: 20px;
  padding-left: 0;
  border-radius: 0;
}
.tl-countdown-box .header-form .form-group input[type=submit] {
  margin-top: 15px;
  margin-bottom: 10px;
}

.countdown-timer {
  padding-bottom: 65px;
  background: #f05a21;
}
.countdown-timer h2 {
  margin-bottom: 42px;
  text-transform: uppercase;
  color: #fff;
}

.countdown-timer,
.header-form {
  padding: 40px;
  border-radius: 5px;
}

.countdown-clock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.countdown-clock .counter-time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.countdown-clock .counter-time span {
  font-size: 55px;
  font-weight: 700;
}
.countdown-clock .counter-time span.time-name {
  font-size: 12px;
  font-family: 'Proxima Nova', Georgia, sans-serif;
  text-transform: uppercase;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  display: inline-block;
}

/* Team Area */
.team-img {
  position: relative;
  overflow: hidden;
}

.team-header {
  background: #2d3e50;
  text-align: center;
  padding: 20px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.team-header .person-name {
  color: #fff;
  margin-bottom: 3px;
}
.team-header span {
  color: #aeafb3;
}

.team-single-box .share-item {
  position: absolute;
  top: 0;
  left: -50px;
  width: 50px;
  height: 100%;
  background: #a6c437;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.team-single-box .share-item ul {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 75px;
}
.team-single-box .share-item ul li {
  margin-bottom: 12px;
  margin-right: 0;
}
.team-single-box .share-item ul li a i {
  margin: 0 auto;
}
.team-single-box:hover .share-item {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.team-single-box:hover .team-header {
  background: #f2c40e;
}
.team-single-box:hover .team-header span {
  color: #fff;
}

.team-carousel.owl-carousel .owl-item img {
  width: 100%;
  height: 310px;
}
.team-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: -97px;
  width: 100%;
  text-align: right;
}
.team-carousel.owl-carousel .owl-nav button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid #d7d7d7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.team-carousel.owl-carousel .owl-nav button:not(:last-child) {
  margin-right: 15px;
}
.team-carousel.owl-carousel .owl-nav button:hover {
  background: #ffbd0a;
  border-color: #ffbd0a;
  color: #fff;
}

/* Video Area */
.video-bg {
  background: url(../images/video-bg1.jpg);
  background-size: cover;
  background-position: center;
}

.tl-video-area {
  padding: 112px 0;
}

.video-area-wrapper {
  text-align: center;
}
.video-area-wrapper .video-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
  width: 80px;
  height: 80px;
  line-height: 73px;
  font-size: 30px;
  right: 0;
}
.video-area-wrapper .video-icon:before {
  width: 80px;
  height: 80px;
}
.video-area-wrapper .video-title {
  color: #fff;
  font-weight: 500;
  letter-spacing: 10px;
  position: relative;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto 50px;
}
.video-area-wrapper .video-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #98999f;
}

.video-btn-group .btn:not(:last-child) {
  margin-right: 15px;
}

/* News */
.post-navigation {
  padding: 26px 0;
  border-bottom: 1px solid #eaebec;
}
.post-navigation .post-next {
  float: right;
}
.post-navigation .post-next a {
  color: #494753;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-navigation .post-next a:hover {
  color: #ffbf10;
}
.post-navigation .post-next a i {
  margin-left: 6px;
}
.post-navigation .post-previous {
  float: left;
}
.post-navigation .post-previous a {
  color: #494753;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-navigation .post-previous a:hover {
  color: #ffbf10;
}
.post-navigation .post-previous a i {
  margin-right: 10px;
}

.post {
  margin-bottom: 60px;
}
.post .post-body .post-content .entry-header {
  margin-top: 32px;
}
.post .post-body .post-content .entry-header .entry-title {
  font-size: 30px;
}
.post .post-body .post-content .entry-header .entry-title a {
  color: #494753;
}
.post .post-body .post-meta {
  margin-bottom: 20px;
}
.post .post-body .post-meta .post-meta-time {
  color: #bebebe;
  font-weight: 600;
}
.post .post-body .post-meta .post-meta-time span {
  font-weight: 400;
  color: #cacaca;
}
.post .post-body .post-meta .post-cat {
  color: #cacaca;
  margin-left: 35px;
}
.post .post-body .post-meta .post-cat a {
  color: #bebebe;
  font-weight: 600;
}
.post .entry-content {
  margin-bottom: 28px;
}
.post .entry-content p {
  color: #494753;
  font-weight: 600;
  font-size: 16px;
}
.post.last {
  margin-bottom: 0;
}





.tags-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tags-list li {
  display: inline-block;
}
.tags-list li a {
  display: block;
  border: 1px solid #ececed;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 15px;
  color: #929292;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tags-list li a:hover {
  background: #ffbd0a;
  color: #fff;
}
.tags-list li:last-child a {
  margin-bottom: 0;
}

.widget-course-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget-course-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}
.widget-course-list li a {
  margin-left: 8px;
  color: #494753;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.widget-course-list li a:hover {
  margin-left: 15px;
}
.widget-course-list li i {
  color: #f05a21;
}
.widget-course-list li span {
  margin-left: 7px;
  color: #929292;
}
.widget-course-list li:last-child {
  margin-bottom: 0;
}



.widget.widget-newsletter .input-group {
  position: relative;
}
.widget.widget-newsletter .input-group i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.widget.widget-newsletter .input-group .form-control {
  border-radius: 50px;
  padding: 12px 20px;
}
.widget.widget-newsletter .btn {
  margin-top: 20px;
  width: 100%;
  height: 50px;
}

/* News Single */
.post-content .post-body .entry-title {
  font-size: 30px;
  margin-top: 28px;
}
.post-content .post-body .entry-title a {
  color: #494753;
}
.post-content .post-body .entry-content p:first-child {
  color: #494753;
  font-weight: 600;
}
.post-content .post-body .entry-content p strong {
  color: #494753;
  text-decoration: underline;
}
.post-content .post-body .entry-content p + p {
  margin-bottom: 55px;
}
.post-content .post-body .entry-content > span img {
  margin-bottom: 50px;
}
.post-content .post-body .entry-content blockquote {
  text-align: center;
  padding: 0 50px;
}
.post-content .post-body .entry-content blockquote p {
  font-style: italic;
  font-size: 16px;
  font-family: 'Proxima Nova', Georgia, sans-serif;
}
.post-content .post-body .entry-content blockquote p cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: #b3b2b6;
  text-transform: uppercase;
  position: relative;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 35px auto 0;
  font-family: 'Proxima Nova', Georgia, sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
}
.post-content .post-body .entry-content blockquote p cite:before, .post-content .post-body .entry-content blockquote p cite:after {
  content: "";
  position: absolute;
  left: -120px;
  top: calc(50% - 1px);
  width: 100px;
  height: 1px;
  background: #eaebec;
}
.post-content .post-body .entry-content blockquote p cite:after {
  left: auto;
  right: -120px;
}
.post-content .post-body .entry-content > h4 {
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 42px;
}
.post-content .post-body .post-meta {
  margin-bottom: 20px;
}
.post-content .post-body .post-meta .post-meta-time {
  color: #bebebe;
  font-weight: 600;
}
.post-content .post-body .post-meta .post-meta-time span {
  font-weight: 400;
  color: #cacaca;
}
.post-content .post-body .post-meta .post-cat {
  color: #cacaca;
  margin-left: 35px;
}
.post-content .post-body .post-meta .post-cat a {
  color: #bebebe;
  font-weight: 600;
}
.post-content .post-body .post-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 37px;
  padding-bottom: 50px;
  border-bottom: 1px solid #eaebec;
}
.post-content .post-body .post-footer .post-tags p {
  text-transform: uppercase;
  color: #b3b2b6;
  margin-bottom: 20px;
}
.post-content .post-body .post-footer .post-tags ul li {
  margin-right: 6px;
}
.post-content .post-body .post-footer .post-tags ul li a {
  border: 1px solid #eaebec;
  padding: 5px 20px;
  border-radius: 25px;
  color: #a4a3a9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-content .post-body .post-footer .post-tags ul li a:hover {
  background: #ffbd0a;
  color: #fff;
  border-color: #ffbd0a;
}
.post-content .post-body .post-footer .post-tags ul li:last-child {
  margin-right: 0;
}

.author-box {
  text-align: center;
  padding: 80px 50px 58px;
  border-bottom: 1px solid #eaebec;
}
.author-box .post-editor {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 21px;
  display: inline-block;
}
.author-box .author-img {
  margin-bottom: 27px;
}
.author-box .author-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.author-box .author-info h3 {
  font-size: 25px;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 10px;
}
.author-box .author-info p {
  font-weight: 600;
}

/* Comments area */
.comments-heading {
  color: #a4a3a9;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 55px;
}

.comments-area {
  margin-top: 55px;
}
.comments-area .comment {
  margin-bottom: 55px;
}
.comments-area .comment .comment-avatar {
  float: left;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.comments-area .comment .comment-body {
  margin-left: 95px;
}
.comments-area .comment .comment-body .meta-data .comment-author {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Proxima Nova', Georgia, sans-serif;
  color: #494753;
  display: block;
}
.comments-area .comment .comment-body .meta-data .comment-time {
  color: #b3b2b6;
  margin-bottom: 7px;
  display: inline-block;
}
.comments-area .comment .comment-body .comment-content {
  margin-bottom: 4px;
}
.comments-area .comment .comment-body .comment-content p {
  color: #929292;
}
.comments-area .comment .comment-body .btn {
  height: 35px;
  line-height: 23px;
}
.comments-area .comment.last {
  margin-bottom: 0;
}
.comments-area .comments-reply {
  margin-left: 95px;
}

/* Comments Form */
.comments-form .title-normal {
  font-size: 25px;
  margin-bottom: 40px;
  margin-top: 60px;
}
.comments-form form .form-group {
  margin-bottom: 0;
  position: relative;
}
.comments-form form .form-group input,
.comments-form form .form-group textarea {
  border: none;
  border-bottom: 1px solid #c2c3c8;
  border-radius: 0;
  padding: 0 0 13px;
  color: #494753;
  font-weight: 500;
}
.comments-form form .form-group input::-webkit-input-placeholder,
.comments-form form .form-group textarea::-webkit-input-placeholder {
  color: #aaa9af;
  font-size: 14px;
  font-weight: 400;
}
.comments-form form .form-group input::-moz-placeholder,
.comments-form form .form-group textarea::-moz-placeholder {
  color: #aaa9af;
  font-size: 14px;
  font-weight: 400;
}
.comments-form form .form-group input:-ms-input-placeholder,
.comments-form form .form-group textarea:-ms-input-placeholder {
  color: #aaa9af;
  font-size: 14px;
  font-weight: 400;
}
.comments-form form .form-group input::-ms-input-placeholder,
.comments-form form .form-group textarea::-ms-input-placeholder {
  color: #aaa9af;
  font-size: 14px;
  font-weight: 400;
}
.comments-form form .form-group input::placeholder,
.comments-form form .form-group textarea::placeholder {
  color: #aaa9af;
  font-size: 14px;
  font-weight: 400;
}
.comments-form form .form-group textarea {
  resize: none;
  height: 200px;
  padding: 87px 0px;
  margin-bottom: 50px;
}
.comments-form form .form-group:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.comments-form form .form-group:hover:after {
  background: #353949;
  width: 100%;
}

/* Courses */
.grid.service-wrapper .element-item img {
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.service-wrapper .service-items:hover .course-img .service-meta {
  bottom: 0;
  visibility: visible;
  opacity: 1;
}
.service-wrapper .course-img {
  position: relative;
  overflow: hidden;
}
.service-wrapper .course-img .service-tag {
  position: absolute;
  top: 0;
  z-index: 1;
}
.service-wrapper .course-img .service-tag .tag-name {
  position: absolute;
  left: 23px;
  top: 10px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: 'Proxima Nova', Georgia, sans-serif;
}
.service-wrapper .course-img .service-tag:before {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  width: 30px;
  height: 55px;
  z-index: -1;
  background: url(../images/icon/tag-plate.png);
  background-repeat: no-repeat;
}
.service-wrapper .course-img .service-meta {
  position: absolute;
  bottom: -60px;
  background: #fff;
  width: 100%;
  text-align: center;
  padding: 16px 0;
  border: 1px solid #dbdadd;
  border-top: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.service-wrapper .course-img .service-meta ul li {
  padding: 0 15px;
  color: #494753;
  font-size: 16px;
}
.service-wrapper .course-img .service-meta ul li i {
  padding-right: 4px;
}
.service-wrapper .course-details {
  text-align: center;
  margin-top: 30px;
}
.service-wrapper .course-details .course-mentor {
  color: #b3b2b6;
  font-weight: 500;
  font-family: 'Proxima Nova', Georgia, sans-serif;
  margin-bottom: 4px;
}
.service-wrapper .course-details .course-price {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Proxima Nova', Georgia, sans-serif;
  color: #494753;
}
.service-wrapper .course-details .course-free {
  color: #a6c437;
  font-weight: 600;
  font-family: 'Proxima Nova', Georgia, sans-serif;
}

.filter-group {
  margin-bottom: 35px;
}
.filter-group .form-group {
  margin-bottom: 0;
}
.filter-group .form-control:focus {
  border-color: #dbdadd;
}

.course-search {
  position: relative;
}
.course-search input {
  padding: 14px 40px;
  border: 1px solid #dbdadd;
  border-radius: 50px;
  color: #494753;
 font-family: 'Proxima Nova', Georgia, sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.course-search i {
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.select2 .select2-selection {
  height: 58px;
  border-radius: 50px;
  padding: 0 30px;
  border-color: #dbdadd;
}
.select2 .select2-selection .select2-selection__rendered {
  padding: 14px 0;
}
.select2 .select2-selection:focus {
  outline: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-left: -35px;
  margin-top: 13px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #494753;
  font-weight: 600;
}
.select2-container--default.select2-container--open .select2-dropdown--below {
  border-top: 1px solid #ddd;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
.select2-container--default .select2-dropdown {
  border-color: #ddd;
}

/* Course Single */
.tl-course-single .container {
  border-bottom: 1px solid #eaebec;
  padding-bottom: 80px;
  margin-bottom: 70px;
}

.single-course-contianer .course-img .course-header {
  margin-top: -85px;
  background: #fff;
  position: relative;
  z-index: 1;
  margin-left: 75px;
  border-top-left-radius: 50px;
  padding: 23px 0 0 40px;
}
.single-course-contianer .course-img .course-header .course-heading {
  margin-bottom: 5px;
}
.single-course-contianer .course-img .course-header .course-heading .course-title {
  float: left;
}
.single-course-contianer .course-img .course-header .course-heading .single-course-price {
  float: right;
  text-align: right;
}
.single-course-contianer .course-img .course-header .course-heading .single-course-price span {
  color: #bcbbc0;
  display: inline-block;
  margin-bottom: 2px;
}
.single-course-contianer .course-img .course-header .course-heading .single-course-price h3 {
  color: #f05a21;
  font-weight: 700;
font-family: 'Proxima Nova', Georgia, sans-serif;
}

.single-course-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.single-course-meta .course-teacher {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.single-course-meta .course-teacher img {
  width: 45px;
  height: 45px;
  border-radius: 5px;
}
.single-course-meta li p {
  margin-bottom: 0;
}
.single-course-meta .course-teacher-name {
  margin-left: 20px;
}
.single-course-meta > li {
  margin-right: 53px;
}
.single-course-meta li div > span {
  color: #a4a3a9;
}
.single-course-meta li div > p {
  color: #494753;
  font-weight: 600;
  margin-top: -3px;
}

.course-body {
  margin-top: 40px;
}
.course-body .course-body-title {
  font-size: 25px;
  margin-bottom: 25px;
}
.course-body > p {
  margin-bottom: 40px;
}

.course-level > li {
  font-size: 20px;
  font-family: 'Proxima Nova', Georgia, sans-serif;
  font-weight: 500;
}
.course-level .course-level-details {
  margin-top: 25px;
  margin-bottom: 40px;
  list-style-type: disc;
}
.course-level .course-level-details > li {
  color: #494753;
  font-size: 14px;
font-family: 'Proxima Nova', Georgia, sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}
.course-level .course-level-details li span {
  background: #000;
  margin-left: 30px;
  padding: 0 7px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  border-radius: 50px;
}

.course-btn .btn {
  margin-right: 27px;
}

/* Service */
.carousel-bg {
  background: url(../images/service/service-bg.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.service-wrapper .service-items.text-white .course-details .course-title,
.service-wrapper .service-items.text-white .course-details .course-price {
  color: #fff;
}
.service-wrapper .service-items .course-details .course-title {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service-wrapper .service-items:hover .service-tag {
  -webkit-animation: shake 1.2s linear both;
  animation: shake 1.2s linear both;
}
.service-wrapper .service-items:hover .course-details .course-title {
  color: #ffbd0a;
}

.service-carousel.owl-carousel .owl-dots {
  width: 100%;
  text-align: right;
  position: absolute;
  top: -88px;
}
.service-carousel.owl-carousel .owl-dots button {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #c1c1c1;
  border-radius: 50%;
  margin: 7px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service-carousel.owl-carousel .owl-dots button.active {
  background: #ffbd0a;
}





/* Not Found */
.notfound-bg {
  position: relative;
  z-index: 1;
}
.notfound-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../images/error-bg1.png);
  background-size: 100%;
  background-position: top center;
}

.notfound-title {
  font-size: 120px;
  line-height: 90px;
  margin-bottom: -5px;
}
.notfound-title span {
  display: block;
  margin-bottom: -47px;
  color: #f05a21;
  margin-top: 35px;
}
.notfound-title small {
  font-size: 18px;
  color: #b3b2b6;
  font-weight: 700;
  letter-spacing: 2px;
}

.not-found-wrapper {
  padding: 152px 80px;
}
.not-found-wrapper > p {
  font-family: 'Proxima Nova', Georgia, sans-serif;
  font-weight: 600;
  color: #494753;
  font-size: 18px;
  margin-bottom: 38px;
}
.not-found-wrapper .btn {
  margin-bottom: 40px;
}

.notfound-logo .tl-topbar-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 44px 40px;
  border-bottom: 1px solid #eaebec;
}

.error-img {
  min-height: 880px;
}

/* Override CSS
=========================================== */
/* Owl Carousel Default */
.owl-carousel .owl-item img {
  width: initial;
}

/* Form Control Focus */
.form-control:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ced4da !important;
}

.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label,
.input-group > .custom-select:focus,
.input-group > .form-control:focus {
  z-index: initial;
}

input:focus {
  outline: none;
}

.select2:focus {
  outline: 0;
}




.nav-item .fa-circle:before {
    color: #3498db;
    content: "\f111";
    margin-right: 9px;
    font-size: 12px;
}



.nav-item .fa-square:before {
        font-size: 12px;
    content: "\f0c8";
    margin-right: 8px;
    color: #e74c3c;
}



.nav-item .fa-caret-up:before {
	font-size: 21px;
    content: "\f0d8";
    margin-right: 3px;
    color: #2ecc71;
    margin-top: 10px;
}

.teacher_icon{}

.teacher_icon .fa-circle:before {
color: #19bd9b;
    }

.teacher_icon .fa-square:before {
color: #d25400;
}

.teacher_icon .fa-caret-up:before {
color: #e77e22;
   }

.recru_icon{}

.recru_icon .fa-circle:before {
color: #f2c40e;
    }

.recru_icon .fa-square:before {
color: #533bd7;
}

.recru_icon .fa-caret-up:before {
color: #5363af;
   }




section#tl-team {
	height: 631px;
    overflow: hidden;
    
    background-color: #19bd9b!important;
    margin-bottom: 100px;
    color: #Fff;
}

.tl-team .column-title {
    color: #fff !important;
}


	   
	