/* ====================================
    Default Theme
  -------------------------------------
    Fonts: Raleway & Open Sans
  -------------------------------------
    Colors:
      Light Blue:    #837017
      Grey:           #212226
      White Smoke:    #f4f4f4
      White:          #fff
      Black:          #000
  -------------------------------------
  
==================================== */

/* ====================================
    General CSS
==================================== */

html, body {
  height: 100%;
}

body {
  color: #212226;
}

h1, h2, h3, h4, h5 ,h6 {
  font-family: "Raleway", sans-serif;
}

p {
  font-family: "Open Sans", sans-serif;
  /*font-family: "Raleway", sans-serif;*/
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

section {
  background-color: #fff;
  overflow: hidden;
}

.img-responsive {
  display: block;
  max-width: 100%;
}

/* ====================================
    Buttons
==================================== */

button:focus {
  outline: none;
  box-shadow: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}


.btn-general {
  font-family: "Raleway", sans-serif;
  border-radius: 28px;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 6px;
  padding: 12px 46px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn-home {
  color: #fff;
  border: 1px solid #fff;
}

.btn-home:hover,
.btn-home:focus {
  color: #fff;
  background-color: #837017;
  border: 1px solid #837017;
}

.btn-lightblue {
  color: #fff;
  border: 1px solid #837017;
  background-color: #837017
}

.btn-lightblue:hover,
.btn-lightblue:focus {
  color: #fff;
  background-color: #6e5c0d;
  border: 1px solid #6e5c0d;
}

.btn-white {
  color: #212226;
  border: 1px solid #fff;
  background-color: #fff;
}

.btn-white:hover,
.btn-yellow:focus {
  color: #fff;
  background-color: #212226;
  border: 1px solid #212226;
}

.btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 22px;
  border-radius: 4px;
  padding: 3px 15px;
  background: #837017;
  color: #fff;
}

.btn-back-to-top:hover {
  background: #6e5c0d;
  color: #fff;
}

/* ====================================
    Content Boxs
==================================== */

.content-box-lg {
  padding: 120px 0;
}

.content-box-md {
  padding: 100px 0;
}

.content-box-sm {
  padding: 80px 0;
}

/* ====================================
    Vertical/Horizontal Heading
==================================== */

.vertical-heading h5 {
  color: #837017;
  font-size: 13px;
  font-weight: 500px;
  word-spacing: 9px;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: relative;
  top: 60px;
  left: -55px;
}

.vertical-heading h2,
.horizontal-heading h2 {
  margin: 0 0 0 35px;
  font-weight: 100;
  font-size: 42px;
  line-height: 45px;
}

.horizontal-heading {
  text-align: center;
  margin-bottom: 80px;
}

.horizontal-heading h5 {
  font-size: 16px;
  color: #837017;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.horizontal-heading h2 {
  margin: 0;
}

/* ====================================
    Social icons
==================================== */

ul.social-list {
  padding: 0;
  /* margin-top: 20px */
}

ul.social-list li {
  padding: 0;
  display: inline-block;
}

ul.social-list li a {
  border: 1px solid #fff;
  width: 35px;
  height: 35px;
  display: inline-block;
  line-height: 31px;
  color: #fff;
  border-radius: 50%;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

ul.social-list li:nth-child(1) a:hover {
  background: #3b5998;
  border-color: transparent;
  transform: rotate(360deg);
}

ul.social-list li:nth-child(2) a:hover {
  background: #00aced;
  border-color: transparent;
  transform: rotate(360deg);
}

ul.social-list li:nth-child(3) a:hover {
  background: #0e76a8 ;
  border-color: transparent;
  transform: rotate(360deg);
}

/* ====================================
    Home
==================================== */

.logo-img {
  width: 170px;
}

#home {
  background: none;
  height: 100%;
}

#home-bg-img {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  background: url("../img/home-bg.png") no-repeat;
  background-size: cover;
}

#home-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  z-index: -1;
}

#home-content {
  display: table;
  width: 100%;
  height: 100%;
}

#home-content-inner {
  display: table-cell;
  vertical-align: middle;
}

#home-heading h1 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 100;
  font-size: 65px;
  margin: 0;
  display: inline-block;
}

#home-heading h1 span {
  color: #837017;
  font-weight: 300;
}

#home-text p {
  color: #fff;
  font-size: 17px;
  font-weight: 100;
  margin: 8px 0 30px 0;
}

/* ====================================
    Arrow Down
==================================== */

#arrow-down {
  position: absolute;
  left: 50%;
  bottom: 20px;
  color: #fff;
  font-size: 32px;
  height: 32px;
  text-align: center;
  margin-left: -16px;
  z-index: 1;
  -webkit-transition: all .5s;
  transition: all .5s;
}

#arrow-down:hover,
#arrow-down:focus {
  color: #837017;
}

/* ====================================
    About 01
==================================== */

#about-01 {
  background: #000000;
  color: #ffffff;
}

#about-right {
  margin-top: 130px;
}

#about-right p {
  font-size: 15px;
}

#about-right p:first-child {
  margin-bottom: 30px;
}

#about-bottom {
  margin-top: 60px;
}

#about-bottom img {
  margin: 0 auto;
}

/* ====================================
    About 02
==================================== */

#about-02 {
  background-color: #f4f4f4;
}

.about-item {
  background-color: #fff;
  padding: 50px 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-item i {
  font-size: 42px;
  margin: 0;
}

.about-item h3 {
  font-size: 24px;
  margin: 10px 0;
}

.about-item hr {
  width: 45px;
  height: 3px;
  background-color: #837017;
  margin: 0 auto;
  border: 0;
}

.about-item p {
  margin-top: 20px;
}

/*About 02 Hover State*/

.about-item:hover {
  background-color: #837017;
}

.about-item:hover i,
.about-item:hover h3,
.about-item:hover p {
  color: #fff;
}

.about-item:hover hr {
  background-color: #fff;
}

.about-item:hover i {
  transform: translateY(-20px);
}

.about-item,
.about-item i,
.about-item hr {
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

/* ====================================
    Faculty
==================================== */

#faculty-left .vertical-heading {
  min-height: 160px;
}

.faculty-member {
  margin: 10px 0px;
  position: relative;
  overflow: hidden;
}

.faculty-member img {
  width: 100%;
  height: 360px;
}

.faculty-member-overlay {
  background-color: rgba(33, 34, 38, 0.9);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  right: 15px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.faculty-member-info {
  width: 100%;
  height: 100%;
  padding: 130px 0;
}

.faculty-member-info h6 {
  color: #837017;
  font-size: 16px;
  margin: 0;
}

.faculty-member-info p {
  color: #fff;
}

.faculty-member:hover .faculty-member-overlay {
  opacity: 1;
}

/* ====================================
    Statement
==================================== */

#statement {
  background: url("../img/home-quote.jpg") no-repeat fixed center;
  background-size: cover;
}

#statement .content-box-lg {
  background: rgba(0, 0, 0, 0.3);
}

#tech-statement h3 {
  color: #fff;
  font-size: 28px;
  line-height: 45px;
}

#tech-statement p {
  font-size: 14px;
  /* color: #837017; */
  font-family: "Raleway", sans-serif;
  margin-top: 8px;
}

/* ====================================
    Gallery
==================================== */

.tabs ul {
  border-bottom: none;
}
.tabs ul li a.nav-link {
  padding: 0;
  border: 0;
}

.tabs ul li a {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 35px !important;
  color: #837017;
}

.tabs ul li a.active,
.tabs ul li a:hover {
  color: #6e5c0d !important;
  border: none;
  border-color: #fff #fff #fff !important;
  border-bottom: 3px solid #6e5c0d !important;
}

.gallery-item {
  /* overflow: hidden; */
  position: relative;
}

.z-index {
  z-index: 1;
}

.z-index:hover {
  z-index: 2;
}

/*Zoom Effect for Image*/

.gallery-item img {
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  -webkit-transition: transform .5s ease;
  transition: transform .5s ease;
  height: 210px;
  width: 100%;
}

.gallery-item:hover img {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  border-radius: 10px;
  border: 4px solid #837017;
}

/*Overlay Effect CSS*/

.gallery-item-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  display: none;
}

/*Item Details Effect*/

.gallery-item-details {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.gallery-item-details h3 {
  color: #837017;
  text-transform: uppercase;
  font-size: 30px;
  margin: 0;
  padding: 0;
  -webkit-transform: translateY(-20%);
  transform: translateY(-20%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.gallery-item-details span {
  display: inline-block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  height: 6px;
  width: 30px;
  margin: 11px auto 5px;
}

.gallery-item-details p {
  font-size: 17px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  -webkit-transform: translateY(20%);
  transform: translateY(20%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/*Show Overlay on Mouse Over*/

.gallery-item:hover .gallery-item-details h3 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.gallery-item:hover .gallery-item-details p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
  
}

/* ====================================
    Stats
==================================== */

#stats {
  background: url("../img/gallery-bg.jpg") no-repeat fixed center;
  background-size: cover;
}

#stats .content-box-md {
  background: rgba(0, 0, 0, 0.8);
}

/* #stats .vertical-heading {
  margin-bottom: 50px;
} */

#stats .vertical-heading h2 {
  color: #fff;
}

.stats-item {
  background: rgba(61, 68, 68, 0.6);
  border-radius: 4px;
  min-height: 170px;
  padding: 25px 50px;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.stats-item i {
  font-size: 42px;
  color: #837017;
  margin: 0 0 6px 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.stats-item h3 {
  font-size: 32px;
  color: #fff;
  margin: 5px 0 5px 0;
}

.stats-item p {
  color: #fff;
  margin: 0;
}

.stats-item:hover {
  background: #837017;
}

.stats-item:hover i {
  color: #212226;
  -webkit-transform: translateY(-12px);
  transform: translateY(-12px);
}

/* ====================================
    Contact
==================================== */

/*Contact Left*/

#contact-left {
  margin: 25px 0 20px 0;
}

ul.office-details {
  list-style: none;
  padding: 0;
}

ul.office-details li {
  font-family: "Open Sans", sans-serif;
  margin-top: 12px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

ul.office-details li i {
  font-size: 18px;
  width: 30px;
}

#contact-left ul.social-list li a {
  color: #212226;
  border: 1px solid #212226;
  text-align: center;
}

#contact-left ul.social-list li a:hover {
  color: #fff;
  border-color: transparent;
}

/*Contact Right*/

#contact-right {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

#contact-right h4 {
  font-size: 24px;
}

#contact-right p {
  margin-bottom: 25px;
}

#contact-right form .form-control {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  padding: 10px 15px;
  line-height: 24px;
}

#contact-right form textarea.form-control {
  min-height: 164px;
}

/* ====================================
    Footer
==================================== */

footer {
  background: #212226;
  padding: 30px;
  text-align: center;
}

footer p {
  color: #fff;
  line-height: 20px;
  margin: 0;
}

footer p span {
  color: #837017;
}

.footer-logo {
  width: 250px;
}

/* Subscribe Button */

.sub-btn input {
  border-radius: 50px 0 0 50px;
  border: 1px solid #fff;
}

.sub-btn input:focus {
  border-color: #fff;
  box-shadow: none;
}

.sub-btn div span {
  border-radius: 0 50px 50px 0;
  border: 1px solid #fff;
  background-color: #fff;
}

.sub-btn div span a {
  color: #837017;
}

.sub-btn div span a:hover {
  color: #6e5c0d;
}

/* ====================================
    Navigation
==================================== */

nav.navbar {
  -webkit-transition: all 400ms;
  transition: all 400ms;
  background: rgba(0,0,0,0.6);
}

nav.navbar > div.container-fluid {
  padding: 0 85px;
}

ul.navbar-nav > li > a {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

ul.navbar-nav > li.nav-item > a.nav-link:hover,
ul.navbar-nav > li.nav-item > a.nav-link:focus,
ul.navbar-nav > li.nav-item > a.text-decoration-none:hover,
ul.navbar-nav > li.nav-item > a.text-decoration-none:focus {
  background: none;
  color: #837017 !important;
}

/*Scroll Spy active state*/
ul.navbar-nav > li.nav-item > a.nav-link.active {
  color: #837017 !important;
  font-weight: 500;
}

/*===============================
	Courses CSS
=================================*/
/* .courses {
	background: #f8f8f8;
} */
.courses .course-slider {
	margin-top: 30px;
}
.courses .single-course {
	padding: 12px;
	background: #fff;
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	margin-top: 30px;
}
.courses .single-course:hover{
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.30);
}
.courses .course-head{
	position:relative;
	overflow:hidden;
}
.courses .course-head::before {
	opacity: 0;
	visibility: hidden;
	z-index: 5;
}
.courses .course-head img{
	height:400px;
  width:100%;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  -webkit-transition: transform .5s ease;
  transition: transform .5s ease;
}
.courses .course-head:hover img{
	-webkit-transform:scale(1.3);
	-moz-transform:scale(1.3);
	transform:scale(1.3);
}
.courses .course-head:hover:before{
	opacity:0.8;
	visibility:visible;
}
.courses .course-head a {
	position: absolute;
	top: 50%;
	margin: -25px 0 0 -25px;
	z-index: 10;
	border-radius: 0px;
	left: 50%;
	font-weight: 500;
	text-transform: capitalize;
	margin-left: -58px;
	padding: 12px 22px;
	opacity:0;
	-webkit-transform:scale(0);
	-moz-transform:scale(0);
	transform:scale(0);
	border-radius: 50px;
}
.courses .course-head:hover .btn{
	transform: scale(1);
	opacity: 1;
}
.courses .course-body {
	margin: 15px;
	margin-top: 0px;
}
.courses .name-price {
	padding: 0;
	width: 100%;
	position: relative;
	z-index: 333;
	margin-top: -33.5px;
}
.courses .name-price .teacher-info {
	display: inline-block;
}
.courses .teacher-info img {
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 100%;
	display: inline-block;
	border: 4px solid #fff;
	/* float: left; */
	-webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
}
.courses .single-course .teacher-info:hover img{
	-webkit-transform:rotate(360deg);
	-moz-transform:rotate(360deg);
	transform:rotate(360deg);
}
.courses .teacher-info .title {
	font-weight: 500;
	padding: 10px;
	color: #fff;
	border-radius: 30px;
	position: absolute;
	left: 0;
	bottom: -43px;
	z-index: 33;
	font-size: 13px;
	-webkit-transform:translateX(-30px);
	-moz-transform:translateX(-30px);
	transform:translateX(-30px);
	opacity:0;
	visibility:hidden;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.courses .teacher-info:hover .title{
	transform:translateX(0px);
	opacity:1;
	visibility:visible;
}
.courses .teacher-info .title::before {
	content: "";
	border-bottom: 12px solid;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	position: absolute;
	top: -10px;
}
.overlay{
  position:relative
}
.overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background-color: rgba(33, 34, 38, 0.9);
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.courses .btn {
  font-weight: 500;
  text-align: center;
  /* color: #fff; */
  background:#20232E;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 0px;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 14px;
  overflow: hidden;
  position: relative;
  border: none;
  box-shadow: none;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
}

.courses .btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #837017;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses .btn:hover:before, 
.courses .btn:focus:before, 
.courses .btn:active:before {
  transform: scaleX(1);
}
.courses .btn:hover,
.courses .btn:focus,
.courses .btn:active {
  color: #fff;
}

/* Price */
.courses .price {
	color: #fff;
	padding: 5px 25px;
	font-weight: 700;
	position: relative;
	/* margin-top: 12px; */
	float: right;
	border-radius: 50px;
	right: 0;
}
.courses .price::before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	border-left: 15px solid #fff;
	border-bottom: 15px solid transparent;
	border-top: 15px solid transparent;
	display: none;
}
.courses .course-body .c-title {
	font-size: 18px;
	text-align: left;
	margin: 5px 0 15px;
}
.courses .course-body .c-title a {
	color: #252525;
  font-weight: 700;
  text-decoration: none;
}

.courses .course-body .c-title a:hover {
  color: #837017;
}

.courses .course-body p {
	color: #666;
}
.courses .course-meta {
	background: #fff;
	border-top: 1px solid rgba(204, 204, 204, 0.45);
	overflow: hidden;
	margin: 15px;
	text-align: left;
	padding-top: 15px;
}

/*===============================
  Features CSS 
=================================*/
.features {
  background-image: url('images/4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 60px 0 90px; */
}
.features .single-feature {
  position: relative;
  text-align: center;
  margin-top: 30px;
}

.features .single-feature:hover .feature-content h4 {
  color: #837017;
}
.features .icon-img {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 100%;
  position: relative;
  text-align: center;
  left: 0;
  display: inline-block;
  overflow:hidden;
}
.features .icon-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 3;
  opacity: 1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.features .single-feature:hover .icon-img:before {
  opacity: 0.5;
}
.features .icon-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  opacity: 0;
  visibility: hidden;
}
.features .single-feature:hover .icon-img img{
  opacity:1;
  visibility:visible;
  transform:scale(1.2);
}
.features .icon-img i {
  text-align: center;
  font-size: 25px;
  color: #fff;
  z-index: 333;
  position: relative;
}
.features .feature-content .f-title {
  font-size: 18px;
  margin: 15px 0;
  color: #fff;
}
.features .feature-content p {
  line-height: 22px;
  color: #ccc;
}
.abouting img {
  height: 600px;
}
/*===============================
  End Features CSS 
=================================*/