/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@font-face {
  font-family: 'futura-bold';
  src: url("../fonts/Futura-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

p, .paragraph {
  font-weight: 400;
  color: #5c5c77;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e1e4b;
  font-family: "futura-bold";
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 60px;
}

@media (max-width: 575px) {
  h1, .h1 {
	font-size: 40px;
    letter-spacing: 1px;
  }
}

h2, .h2 {
  font-size: 40px;
}

@media (max-width: 575px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 25px;
}

@media (max-width: 575px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 20px;
}

@media (max-width: 575px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h5, .h5 {
  font-size: 18px;
}

@media (max-width: 575px) {
  h5, .h5 {
    font-size: 16px;
  }
}

h6, .h6 {
  font-size: 16px;
}

@media (max-width: 575px) {
  h6, .h6 {
    font-size: 14px;
  }
}



/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  background: #ffbc3b;
  color: #fff;
}

.btn-primary::before {
  background: #fff;
}

.btn-primary:active {
  background: #ffbc3b !important;
  color: #ffbc3b;
}

.btn-primary:active::before {
  height: 80%;
}

.btn-primary:hover {
  background: #ffab08;
  color: #ffbc3b;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #ffab08;
  border-color: #ffab08;
}

.btn-secondary {
  background: #fff;
  color: #ffbc3b;
  border: 1px solid #fff;
}

.btn-secondary::before {
  background: #ffbc3b;
}

.btn-secondary:active {
  background: #ffbc3b;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #fff;
  border: 1px solid #fff;
}

.btn-primary-outline {
  border: 1px solid #ffbc3b;
  color: #ffbc3b;
  background: transparent;
}

.btn-primary-outline::before {
  background: #fff;
}

.btn-primary-outline:hover {
  background: #ffbc3b;
  color: #ffbc3b;
}

.btn-primary-outline:active {
  background: #ffbc3b;
  color: #fff;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ffcd6e;
  color: #fff;
}

::selection {
  background: #ffcd6e;
  color: #fff;
}

/* preloader */
.preloader {
	    display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #424241f7;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a	{color: #ffbc3b;
    text-decoration: none;
    background-color: transparent;
	}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #ffbc3b;
}

a.text-primary:hover {
  color: #ffbc3b !important;
}

a.text-light:hover {
  color: #ffbc3b !important;
}

h4 {
  transition: .2s ease;
}

a h4:hover {
  color: #ffbc3b;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-xs {
  padding-top: 25px;
  padding-bottom: 25px;
}

.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}
/*.border-top {
    border-top: 1px solid #dee2e6!important;
}*/

.border-bottom {
    border-bottom: 1px solid #dee2e6!important;
}
.large-text {
    font-size: 20px;
}
blockquote {
    padding: 25px;
    margin: 20px 0;
    background: #f9f9f9;
    position: relative;
    border-left: 3px solid #ffb600;
    padding-left: 40px;
	font-style: italic;
}
blockquote:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    font-size: 28px;
    color: #E5E5E5;
    top: 5px;
    left: 5px;
    font-weight: 700;
    z-index: 0;
}


/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: .8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #ffbc3b !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #ffbc3b !important;
}

.text-color {
  color: #5c5c77;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "futura-bold";
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

@media (max-width: 991px) {
  .overflow-md-hidden {
    overflow: hidden;
  }
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

.icn-md {
    font-size: 36px;
}
/* page title */
.page-title-section {
  padding: 200px 0 80px;
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*POPUP HEADER CSS */
#myModal.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999 !important;
    display: Block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
#myModal.fade:not(.show){
	opacity:1;
	
}


.modal-body h1 {
  font-weight: 900;
  font-size: 2.3em;
  text-transform: uppercase;
}
.modal-body a.pre-order-btn {
  color: #000;
  background-color: gold;
  border-radius: 1em;
  padding: 1em;
  display: block;
  margin: 2em auto;
  width: 50%;
  font-size: 1.25em;
  font-weight: 6600;
}
.modal-body a.pre-order-btn:hover {
  background-color: #000;
  text-decoration: none;
  color: gold;
}

/** Modal popup END **/

/* /page title */
.list-styled {
  padding-left: 25px;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ffbc3b;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform-origin: top;
          transform-origin: top;
  font-weight: 600;
}

.top-header.hide {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}

.navigation {
  background: linear-gradient(to right, #fbfbfb 50%, #ffbc3b 50%);
  transition: .2s ease;
  box-shadow: 2px 5px 5px #5c5c5c3d;
}
.navbar-dark .navbar-toggler {
  color: rgb(46 42 42);
    border-color: rgb(14 14 14 / 10%);
    background: #494949;
}
.list-inline-item:not(:last-child){margin-right: 0.2rem;}


@media (max-width: 991px) {
  .navigation {
    background: #fffefd;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #1a1a37;
    max-height: calc(100vh - 80px);
  }
  .navbar-collapse.show {
    overflow-y: auto;
  }
}

.navbar-nav {
  padding-left: 50px;
  background: #ffbc3b;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
    background: #1a1a37;
  }
}

.nav-bg {
  background-color: #fffefd;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}

@media (max-width: 991px) {
  .nav-item:last-child {
    margin-bottom: 20px;
  }
}

.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  pointer-events: none;
}

@media (max-width: 991px) {
  .nav-item::before {
    opacity: .1;
    height: 100%;
  }
}

.nav-item:hover::before, .nav-item.active::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.active{
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;

}


.navbar-dark .navbar-nav .nav-link {
  color: #fff;
}

link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 12px 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d;
}

.navbar .nav-item > .dropdown-toggle::after {
  border: 0;
  margin-left: 0.255em;
  vertical-align: 1px;
  content: "\e64b";
  font-family: 'themify';
  font-size: 11px;
  width: auto;
}

.navbar .dropdown .dropdown-menu li {
  padding-top: 7px;
}

.navbar .dropdown .dropdown-menu li:last-child {
  padding-bottom: 15px;
}

.navbar .dropdown .dropdown-menu.dropdown-submenu {
  top: 0;
}

@media (max-width: 991px) {
  .navbar .dropdown .dropdown-menu.dropdown-submenu li:first-child {
    margin-top: 15px;
  }
}

.navbar .dropdown .dropdown-item .dropdown-toggle {
  display: block;
  line-height: 1.8;
}

.navbar .dropdown:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #ffbc3b;
  padding: 0 15px;
  padding-left: 5px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    padding-left: 15px;
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: unset;
            transform-origin: unset;
    margin: 0;
    border: 0;
    position: static;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown .dropdown .dropdown-toggle, .navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: .2s ease;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  padding: 0.25rem 0.5rem;
  font-size: 14px;
}
a#navbarDropdownSubmenu {
    padding-left: 0;
}

@media (max-width: 991px) {
  .navbar .dropdown .dropdown .dropdown-toggle, .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown .dropdown .dropdown-toggle:hover, .navbar .dropdown-item:hover {
  color: #ffbc3b;
  background: transparent;
}

.hero-section {
  padding: 200px 0 150px;
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -70px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear .2s;
  background: transparent;
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #ffbc3b;
}

.hero-slider .prevArrow {
  right: 60px;
}

.hero-slider .nextArrow {
  right: 0;
}

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -60px;
  padding-left: 0;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  background: #ffbc3b;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

  @media (max-width: 767px) {
	.hero-section {
		padding: 200px 0 90px;
	}
  }
  
/*====================== banner feature 
========================*/
.feature-icon {
  font-size: 50px;
  color: #ffbc3b;
  display: inline-block;
}

.feature-blocks {
  margin-top: -150px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 8%;
}

@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 10%;
  }
}

@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 30px;
  }
  .feature-blocks h3 {
    font-size: 20px;
  }
}
/*******************/
/* Slick Slider Css Ruls */

.slick-slider {
  position: relative;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.img-fill {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.img-fill img {
  height: 100%;
  min-width:auto;
  position: relative;
  display: inline-block;
  max-width: none;
}
/* Slider Theme Style */

.Container {
  padding: 0 15px;
}

.Container:after,
.Container .Head:after {
  content: "";
  display: block;
  clear: both;
}

.Container .Head {
  font: 20px/50px NeoSansR;
  color: #222;
  height: 52px;
  over-flow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.Container .Head .Arrows {
  float: right;
}

.Container .Head .Slick-Next,
.Container .Head .Slick-Prev {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-top: 6px;
  background: #2b2b2b;
  color: #fff;
  margin-left: 5px;
  cursor: pointer;
  font: 18px/36px FontAwesome;
  text-align: center;
  transition: all 0.5s;
}

.Container .Head .Slick-Next:hover,
.Container .Head .Slick-Prev:hover {
  background: #33687a;
}

.Container .Head .Slick-Next:before {
  content: "\f105";
}

.Container .Head .Slick-Prev:before {
  content: "\f104";
}

.SlickCarousel {
  margin: 0 -7.5px;
  margin-top: 10px;
}

.ProductBlock {
  padding: 8px 16px;
    background: #fffcfc;
    box-shadow: 5px 5px 0px 0px #e9e9e8;
}

.ProductBlock .img-fill {
  height: 200px;
}

.ProductBlock h3 {
font: 36px/36px RalewayR;
    color: #ffbc3b;
    margin-top: 5px;
    /* text-align: center; */
    /* border: 1px solid rgba(0, 0, 0, 0.25); */


}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.04);
}


/****************/

@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 0;
    padding: 10px;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: .3s ease;
}

.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}


/* /course */

/*******************======================
#Why join Kazian

===========================***************/
.join-ksm {
    background: transparent linear-gradient( 
180deg, #fffbf2 0%, #fffbf2 87%, #FFFFFF00 100%) 0% 0% no-repeat padding-box;
}

.join-ksm h4 {
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}
.join-ksm .item .icon {
    width: 5em;margin: 0 auto;
}
.join-ksm .owl-carousel .owl-item {
    background: #fff;
    padding: 30px;
    min-height: 280px !important;
	border-bottom: 5px solid #ffda93;
}



/* 
---------------------------------------------
courses
--------------------------------------------- 
*/

section.our-courses {
  background-image: url(../images/banner/meetings-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 130px;
}

.our-courses .item {
    background-color: #fff;
}

.our-courses .item .down-content {
  background-color: #fff;
}

.our-courses .item .down-content h4 {
  padding: 25px;
  font-size: 18px;
  color: #1f272b;
  text-align: center; 
  border-bottom: 1px solid #eee;
}

.our-courses .item .down-content .info {
  padding: 25px;
}

.our-courses .item .down-content .info ul li {
  display: inline-block;
  margin-right: 1px;
}

.our-courses .item .down-content .info ul li i {
  color: #f5a425;
  font-size: 14px;
}

.our-courses .item .down-content .info span {
  color: #a12c2f;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  display: inline-block;
  width: 100%;
}

.our-courses .owl-nav {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-45px);
}

.our-courses .owl-dots {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

.our-courses .owl-dots .owl-dot {
  transition: all .5s;
  width: 7px;
  height: 7px;
  background-color: #fff;
  margin: 0px 5px;
  border-radius: 50%;
  outline: none;
}

.our-courses .owl-dots .active {
  width: 24px;
  height: 8px;
  border-radius: 4px;
}
    
.our-courses .owl-nav .owl-prev{
  margin-right: 10px;
  outline: none;
  position: absolute;
  left: -80px;
}

.our-courses .owl-nav .owl-prev span,
.our-courses .owl-nav .owl-next span {
  opacity: 0;
}

.our-courses .owl-nav .owl-prev:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: '\f104';
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

.our-courses .owl-nav .owl-prev {
  opacity: 1;
  transition: all .5s;
}

.our-courses .owl-nav .owl-prev:hover {
  opacity: 0.9;
}

.our-courses .owl-nav .owl-next {
  opacity: 1;
  transition: all .5s;
}

.our-courses .owl-nav .owl-next:hover {
  opacity: 0.9;
}

.our-courses .owl-nav .owl-next{
  margin-left: 10px;
  outline: none;
  position: absolute;
  right: -85px;
}

.our-courses .owl-nav .owl-next:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: '\f105';
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}
.our-courses .owl-nav {
    display: none !important;
}


.owl-courses-item .item img {
    width: 7em !important;
    border-radius: 50%;
   border: 2px solid #ffbc3b;
    box-shadow: 2px 3px 4px #987126;
}



.our-courses .item .down-content h2 {
    font-size: 18px;
}
.our-courses .item .down-content h3 {
    font-size: 15px;
}
.our-courses .item .down-content i {
    position: absolute;
    font-size: 40px;
    z-index: 0;
    right: -17px;
    opacity: 0.5;
    bottom: -31px;
    color: #ffe9be;
}
.quote-col {
    position: absolute;
    z-index: 111;
    font-size: 50px;
    top: -30px;
    left: 7px;
}
/***Feature Blogs*****/

.features-blog .card-body {
    min-height: 280px;
}

.edu-practice {
  padding: 30px 15px 15px;
  border: 1px solid #CCC;
  min-height: 255px;
  margin: 15px 0;
  position: relative;
}

.edu-practice .num-span {
  padding: 7px 16px;
  background: #e0a905;
  position: absolute;
  top: -13px;
  left: -1px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.edu-practice h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.edu-practice.benifits-col {
  min-height: 205px;
}

/******************/


.consult-col:before {
    content: '';
    background-color: #401919;
    position: absolute;
    right: -100vw;
    top: 0;
    width: 150vw;
    height: 100%;
    transform: skewX(-19deg);
}

.consult-col.consult-mobile {
    background: #401919;
}

.consult-details{
	position:relative;
	z-index:1;
}
@media (max-width: 768px) {
	.consult-col {
		background: #401919;
	}
	.consult-col:before {
		display:none;
	}
}

/*******tab Section*******************/

/* Accordion */
.accordion-group .card {
  border-radius: 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #dfdfdf !important;
}

.accordion-group .card-body {
  padding: 15px 20px;
}

.accordion-group .card-body img {
  max-width: 100px;
  margin-bottom: 10px;
}

.accordion-group .card-header .btn {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px 15px;
  padding-bottom: 10px;
}
.accordion-group .card-header .btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}


.accordion-group .card-header .btn:before {
font-family: "Font Awesome 5 Free";
    position: absolute;
    z-index: 0;
    font-size: 14px;
    right: 16px;
    padding: 3px 8px 1px;
    text-align: right;
    border-radius: 3px;
    top: 12px;
    content: "\f107";
    font-weight: 700;
    background-color: transparent;
    color: #000;
    transition: .3s;
    right: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
}



.accordion-group .card-header .btn[aria-expanded="true"] {
  color: #ffb600;
}

.accordion-group .card-header .btn[aria-expanded="true"]::before {
  content: "\f106";
  background-color: transparent;
}

.accordion-group.accordion-classic .card-header .btn:before {
  display: block;
}

.accordion ul.list li {
    list-style: outside none none;
    margin-top: 13px;
    padding-left: 0;
}
.accordion ul.list li i {
    color: #722c2c;
}


/*********************************************************************/

.vertical-tab a:hover,
.vertical-tab a:focus{
    text-decoration: none;
    outline: none;
}

.vertical-tab{
    font-family: 'Montserrat', sans-serif;
    display: table;
    padding-left: 10px;
}
.vertical-tab .nav-tabs{
    width: 25%;
    min-width: 25%;
    border: none;
	padding-top: 20px;
    /*box-shadow:-4px -1px 3px 0px rgb(109 109 109 / 24%);*/
    vertical-align: top;
    display: table-cell;
	background: #fbfbfb;
	border-radius: 0 22px 0 0
}
.vertical-tab .nav-tabs li{ float: none; }
.vertical-tab .nav-tabs li a{
    color: #444;
    background: #ddd;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    text-align: left;
    padding: 20px 10px 21px;
    margin: 0 0 20px -10px;
    border-radius: 0 20px 20px 0;
    border: none;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease 0s;
	    display: flex;
}

/*.vertical-tab .nav-tabs li a.active {
    background: #702c2c;
    color: #fff;
}
.vertical-tab .nav-tabs li.active a {
    background: #712c2c;
    position: relative;
    border-radius: 0 20px 20px 0;
    z-index: 99999;
    color: #fff;
}
*/
.vertical-tab .nav-tabs li a:hover,
.vertical-tab .nav-tabs li a.active,
.vertical-tab .nav-tabs li a.active:hover{
    color: #fff;
    background: #702c2c;
    border: none;
    text-shadow: 3px 3px rgba(0,0,0,0.4);
}
.vertical-tab .nav-tabs li a:before{
    content: '';
    background: linear-gradient(to top right,transparent 50%,#333 50%);
    height: 10px;
    width: 10px;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: -1;
}
.vertical-tab .tab-content{
    color: #555;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 21px;
    padding: 15px 15px 15px 20px;
    display: table-cell;
}
.vertical-tab .tab-content h3{
    color: #401919;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 7px;
}
@media only screen and (max-width: 479px){
    .vertical-tab .nav-tabs{
        width: 100%;
        display: block;
    }
    .vertical-tab .nav-tabs li a{
        padding: 10px 10px 9px;
        margin: 0 0 12px -10px;
    }
    .vertical-tab .tab-content{
        font-size: 14px;
        display: block; 
    }
}




/****************************************************************************/

/* Clients */
.clients-logo {
  margin: 0 0 30px;
  border: 1px solid #dadada;
  min-height: 105px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.clients-logo img {
  filter: grayscale(100%);
  filter: gray;
}


/******Customer Support**************/

.supportwrapper {
    border: 4px double #ffbc3b;
    border-radius: 15px;
	padding-bottom: 0 !important;
}
.supportwrapper .section-title h2 {
    color: #ffbc3b;
}

.section-details ul li {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.section-details ul li a i {
    display: block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 4em;
    border-radius: 50px;
    margin: 10px;
    border: 4px double;
}
.section-details ul li a i.fa.fa-phone {
    color: #2e94c5;
    background: #e1f5ff;
}
.section-details ul li a i.fa.fa-whatsapp {
    color: #0e9905;
    background: #f0ffef;
}
.height {
    height: 100px;
}

/******Customer Support**************/

/* success story */
.success-video {
  min-height: 300px;
}

.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #ffbc3b;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.play-btn i {
  line-height: 80px;
}

.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: .3s ease;
  transition-delay: .2s;
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #ffbc3b;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: .3s ease;
}

.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}

.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #ffbc3b;
  font-family: "futura-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  margin-bottom: -170px;
  position: relative;
  z-index: 1;
}

.newsletter-block {
  padding-left: 50px;
}

@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}




.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#enquiry-form .form-control {
  height: 40px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}

#enquiry-form .form-control:focus {
  border-color: #ffbc3b;
  box-shadow: none;
}
#enquiry-form textarea.form-control {
    height: 100px;
    padding: 20px;
}

.form-control {
     height: 45px;
    background: #fff;
    border-radius: 0;
    padding-left: 10px;
    font-size: 14px;
}

.form-control:focus {
  border-color: #ffbc3b;
  box-shadow: none;
}


.newsletter-block .form-control {
  height: 90px;
}

.bg-footer {
  background-color: #140707;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #494a43 !important;
  padding-top: 275px;
  color:#797979;
}

/**********
#####################INNER PAGES CSS START
*********/
/*******
#WHY KSM CSS
*******/
.whyksm-box-img i {
    font-size: 2em;
    color: #ffbc3b;
    margin-right: 20px;
}

.position-absulate {
    position: absolute;
    top: 28px;
    left: -5px;
    border: 3px solid #ffbc3b;
    padding: 6px;
    width: 70px;
}
.min-height {
    height: 100%;
}

/***************
#learning-methodology CSS
**************/
.learning-details.corsbenfit p b {
    text-transform: uppercase;
}
.text-orange {
    color: #FF7F00;
}
.text-blue {
    color: #00a1ff;
}
.text-purple {
    color: #9400D3;
}
.text-pink {
    color: #ff00c8;
}
.text-green {
    color: #06972c;
}
.text-md {
    font-size: 2.25rem;
}

.learning-details.corsbenfit p i {
    font-size: 25px;
}

/********
##Director Page CSS
**********/
.breadcrumb-wrap i.fa.fa-quote-left {
    font-size: 42px;
    color: #cecece29;
}

.advant-info-item h4 {
    min-height: 75px;
}
/*******
#awards

*******/

.portflio-item .portfolio-item-content {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 0px;
  opacity: 0;
  transition: all .35s ease;
}

.portflio-item:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all .35s ease;
  overflow: hidden;
}

.portflio-item:hover:before {
  opacity: 1;
}

.portflio-item:hover .portfolio-item-content {
  opacity: 1;
  bottom: 20px;
  right: 55px;
}

.portflio-item .overlay-item {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #ffbc3b;
  opacity: 0;
  transition: all .35s ease;
}

.portflio-item:hover .overlay-item {
  opacity: 1;
}

/***********
#Alumin PAge
***********/
div.pager {
    text-align: center;
    margin: 1em 0;
}

div.pager span {
    display: inline-block;
    width: 1.8em;
    height: 1.8em;
    line-height: 1.8;
    text-align: center;
    cursor: pointer;
    background: #000;
    color: #fff;
    margin-right: 0.5em;
}

div.pager span.active {
    background: #c00;
}

/******accreditation-recognition Page********/
.accred-wrap ul.list-unstyled li:nth-child(even) {
    background: #fbfafa;
}
.accred-wrap ul.list-unstyled li:nth-child(odd) {
    background: #fffbf4;
}
/*********
#Post Graduate CSS
***************/

.ts-team-wrapper {
  position: relative;
  overflow: hidden;
}
.ts-team-wrapper .ts-team-content p{
	color:#fff;
}


@media (max-width: 575px) {
  .ts-team-wrapper {
    text-align: center;
  }
}

.ts-team-wrapper .ts-team-content {
  position: absolute;
  top: 82%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px 25px;
  margin-top: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  transition: 350ms;
}

@media (max-width: 1200px) {
  .ts-team-wrapper .ts-team-content {
    top: 72%;
  }
}

@media (max-width: 575px) {
  .ts-team-wrapper .ts-team-content {
    text-align: center;
  }
}

.ts-team-wrapper .ts-name {
  font-size: 18px;
    margin-top: 0;
    margin-bottom: 3px;
    line-height: 28px;
    color: #ffb600;
    min-height: 70px;
    vertical-align: middle;
    text-align: center;
    margin: 0 auto;
}

.ts-team-wrapper .ts-designation {
  color: #fff;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 700;
}
.team-social-icons {
    margin: 0 auto;
    text-align: center;
}

.ts-team-wrapper .team-social-icons a i {
color: #fff;
    margin-right: 8px;
    text-align: center;
    transition: 400ms;
    font-size: 19px;
}

.ts-team-wrapper .team-social-icons a i:hover , .ts-team-wrapper .team-social-icons a i:focus {
  color: #ffb600;
}

.ts-team-wrapper:hover .ts-team-content {
  top: 0;
  padding-top: 150px;
}

/* Team Classic */
.ts-team-content-classic {
  margin-top: 15px;
}

.ts-team-content-classic .ts-name {
  font-size: 16px;
  margin-bottom: 5px;
  color: #212121;
}

.ts-team-content-classic .ts-designation {
  color: #888;
  margin-bottom: 5px;
  font-weight: 600;
}

.ts-team-content-classic .team-social-icons a i {
  color: #999;
}

.ts-team-content-classic .team-social-icons a i:hover {
  color: #ffb600;
}
/*****************************/
.payment-box-img i {
   font-size: 1.2em;
    color: #ffbc3b;
    margin-right: 10px;
}
/****------------------------------
PAy RAzer PAY
--------------------------------------*/
.razorwrap {
    padding: 30px 10px;
    border: 1px dashed #ebe7e7;
}
.razorwrap {
    padding: 30px 10px;
    border: 1px dashed #ebe7e7;
}

.razorbtn a {
    color: #ffffff;
    font-size: 18px;
    margin: 15px 0;
    background: #562c2c;
    padding: 7px 20px;
    border: 1px solid #562c2c;
    transition: ease-in-out 0.5s;
}
.razorwrap .img img {
    width: 65%;
}

/***=====================================
contact box
===============================================*/
.ts-contact-box-bg{
	/*background:#fff;*/
    color: #fff;
    padding: 30px 20px;
}
.ts-contact-icon.icon-round i {
    font-size: 20px;
    color: #fff;
    background: #ffb600;
    text-align: center;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 20px;
    position: relative;
    float: none;
}

.ts-contact-box-content {
    color: #fff;
}
/******** DMS Batches ******************/
.dmsbatchbgs {
    min-height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
	background-position: right;
}
.batchcol p {
    text-align: center;
    color: #060606;
    margin: 0 auto;
    font-size: 16px;
}

@media (max-width:760px)	{
	.dmsbatchbgs {
		min-height: 450px;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 83% 100%;
	}
}
/**************************/


/****=============================
Apply Online
===================================******/
.applyonlinefrm .form-control {
    padding-left: 10px;
    font-size: 13px;
    height: 45px;
	  border-color: #ffbc3b;
    border-radius: 5px;
	border-bottom: 2px solid #ffbc3b;
}
.applyonlinefrm textarea.form-control {
    height: auto;
    border-color: #ffbc3b;
    border-radius: 5px;
	border-bottom: 2px solid #ffbc3b;
}
.form-group {
    margin-bottom: 1.2rem;
}
/*********FAq-PAge CSS*******/
/*******Specialization List CSS*******/

span.input-group-addon {
line-height: 16px;
    padding: 12px 16px;
    border: 1px solid #7e1515;
    background: #3c1515;
    color: #fff;
    border-radius: 20px 0 0 20px;
	box-shadow: 5px 3px 8px -1px #4c13117a;
}

input#searchspecial {
	    width: 80%;
    border-color: #561715;
    border-bottom: 2px solid #461312;
    box-shadow: 5px 3px 8px -1px #4c13117a;
}
.gray-text a {
    color: #9097a7;
}

/* /footer */
.ts-service-icon.icon-round i {
    font-size: 24px;
    color: #fff;
    background: #ffb600;
    text-align: center;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    position: relative;
    float: none;
}
.ts-service-box-content {	  
    color: #fff;
}
.footer .ts-details {
    display: flex;
}

.filter-controls li {
  cursor: pointer;
  transition: .1s ease;
    font-size: 14px;
    line-height: 1.4;

}



/******** DMS Batches ******************/
.dmsbatchbgs {
    min-height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
	background-position: right;
}
.batchcol p {
    text-align: center;
    color: #060606;
    margin: 0 auto;
    font-size: 16px;
}

.dms-wraper {
    box-shadow: 3px 3px 1px 3px #b9c0cb;
}
.dms-title h3 {
    font-size: 21px;
    padding: 10px 5px;
    color: #3773b3;
}
.dms-title h4 {
    font-size: 18px;
}
@media (max-width:760px)	{
	.dmsbatchbgs {
		min-height: 450px;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 83% 100%;
	}
}
/**************************/


/********
==========#examinaton CSS
**********/
.Dwnformcol .text-center {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Dwnformcol a {
    padding: 13px 4px;
    font-size: 17px;
    letter-spacing: 1px;
}

.footer p {
   color: #898888;
    font-size: 14px;
}
.footer li a {
    color: #c58810 !important;font-size: 14px;
}

.filter-controls li.active {
  font-weight: 600;
  color: #ffbc3b;
}

.filter-controls li:hover {
  color: #ffbc3b;
}
 .footer-sticky{display:none;}
 .get-offers {
    width: 50%;
    padding: 10px;
    background: #e40022;
    color: #fff;
    border: 2px solid #e40022;
}
 
 
/*# sourceMappingURL=maps/style.css.map */
@media (max-width: 575px) {
	.footer {
    padding-top: 215px;
	}
	
}

@media (max-width:760px)	{
	
	    .footer-sticky {position: fixed;bottom: 0;z-index: 9;width: 100%;left: 0;display:block;}
	    .get-offers.mobb {width:50% !important; border-right:1px solid #fff; float:left;}
	    .get-offers.desk  {width:50% !important; float:left;}
	    .get-offers.common {text-align: center;}
	    .responsive-table {width:100%; overflow:auto;}
	    .img-responsive {width:100% !important; height: auto !important;}
	    .coourse .footer-sticky.comn, .uniii .footer-sticky.comn{display: none;}
	}