/*--------------------------------------------------------------
# General 
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #755131;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

button:focus {
  outline: none;
  border: none;
}

.form-control:focus,
:focus-visible {
  outline: 0;
  box-shadow: none;
  border-color: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #cfa549;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #cfa549;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #537542;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #209dd8;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background-color: #fff;
  padding: 5px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgb(255 255 255);
  border-bottom: solid 2px #1b3766;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul {
  display: flex;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 20px 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #000;
  transition: 0.3s;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #000;
}

.nav-menu .drop-down ul {
  border-radius: 8px;
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0c3c53;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #755131;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 50px;
  padding: 6px 25px 7px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #755131;
  font-weight: 600;
}

.get-started-btn:hover {
  background: #31a9e1;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}


.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #cfa549;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #755131;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  padding: 50px 0px !IMPORTANT;
  border-bottom: 2px solid #537542;
}

/* #hero::before {
    content: "";
    background: #7c9b6c;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    height: auto;
    right: 0;
} */

/* #hero .container {
  padding-top: 72px;
} */

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #dca845;
}

#hero h2 {
  margin-bottom: 50px;
  font-size: 22px;
  font-weight: 400;
  text-align: justify;

}

.captionslider {
  padding: 25px 0px;
}

.cources-list-main ul li a:hover {
  color: #d0a549;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #537542;
}

#hero .btn-get-started:hover {
  background: #745231;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 0 8px 40px;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  position: relative;
}

#hero .btn-watch-video i {
  color: #fff;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 7px;
  transition: 0.3s;
}

#hero .btn-watch-video:hover i {
  color: #755131;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/* notification-panel */
.notification-set {
  width: 100%;
  border-radius: 12px;
  background: antiquewhite;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.notification-set .holder {
  width: 100%;
  height: 100px;
  overflow: hidden;
  padding: 10px;
}

.notification-set .holder h4 {
  text-align: left;
  font-weight: 500;
  text-transform: uppercase;
  color: #dca845;
  font-size: 22px;
  text-decoration: underline;
}

/* .notification-set .holder .mask {
  position: relative;
  left: 0px;
  top: 10px;
  width: 100%;
  height: 240px;
  overflow: hidden;
} */
.notification-set .holder ul li {
  padding: 10px 15px 5px 20px;
  font-size: 15px;
  line-height: 24px;
  text-align: left;
  border-bottom: 1px solid #d2af52;
  width: 100%;
  font-family: Inter;
  color: #f3eded;
  position: relative;
  font-weight: 300;
}

.notification-set a {
  background-color: transparent !important;
  color: #755131;
  padding-left: 0px !important;
  font-weight: 600;
}

.notification-set .holder ul li i {
  position: absolute;
  color: #755131;
  top: 17px;
  left: 5px;
  font-size: 13px;
}

.blink-bg {
  background: url('../img/nitification-new.gif')no-repeat right bottom;
  background-size: 10%;

}

/* .notification-set .holder h4::after {
  content: "";
  position: absolute;
  height: 2px;
  top: 40px;
  left: 20px;
  width: 180px;
  background-color: #dca845;
} */
.notification-set .holder ul {
  list-style: none;
  padding: 0px;
}






@media (max-width: 991px) {

  .nav-menu a:hover,
  .nav-menu .active>a,
  .nav-menu li:hover>a {
    color: #fff;
  }

  .mobile-nav-toggle {
    position: fixed;
    top: 39px;
    right: 15px;
    z-index: 9998;
    border: 0;
    display: none;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }

  #hero h1 {
    margin: 0 0 10px 0;
    font-size: 37px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
  }

  #hero {
    height: 125vh;
    text-align: center;
    padding-top: 55px;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }

  #hero .btn-watch-video {
    font-size: 16px;
    padding: 10px 0 8px 40px;
    margin-left: 20px;
  }

  #hero .btn-watch-video i {
    font-size: 32px;
    top: 7px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 55px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 15px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #cfa549;
}


.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #537542;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/
.cliens {
  padding: 12px 0;
  text-align: center;
}

.cliens img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
}

.cliens img:hover {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cliens img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #755131;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #755131;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #755131;
}

.about .content .btn-learn-more:hover {
  background: #537542;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #cfa549;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
}

.why-us .accordion-list span {
  color: #755131;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #755131;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #cfa549;
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #755131;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #cfa549;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #755131;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #cfa549;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #755131;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #537542;
  border: 2px solid #755131;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #537542;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #755131;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #cfa549;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #cfa549;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #537542;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #cfa549;
}

.pricing h4 {
  font-size: 48px;
  color: #cfa549;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #755131;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #755131;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #755131;
}

.pricing .buy-btn:hover {
  background: #537542;
  color: #fff;
}

.pricing .featured {
  border-top-color: #755131;
}

.pricing .featured .buy-btn {
  background: #537542;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #755131;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #cfa549;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #755131;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.info h5 {
  font-size: 26px;
  color: #cfa549;
  margin: 0;
}

.info span {
  padding: 30px 0 !important;
  display: block;
}

.contact .info {
  padding: 30px;
  width: 100%;
}

.contact .info i {
  font-size: 28px;
  color: #755131;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #cfa549;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #444444;
}

.contact .info i:hover {
  color: #bb7633;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.close-button {
  text-align: end;
}

.close-button button {
  background: #745233;
  border: 1px solid #000;
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.close-button button:hover {
  background: #bb7633;
  ;
  border: 1px solid #bb7633;
  ;
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.search-button {
  color: #745233;
  font-size: 24px;
}

.contact .info .social-links a:hover {
  background: #537542;
  color: #fff;
}

/* .contact .info .email:hover i, .contact .info .phone:hover i {
  background: #537542;
  color: #fff;
} */

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  border-radius: 20px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 12px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  height:270px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #755131;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #537542;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #bb7633;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 8px 0;
  background: #7c9b6c;
  min-height: 40px;
}

section#breadcrumbs a {
  color: #fff !important;
}

section#breadcrumbs li {
  color: #fff !important;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  margin: 0px;
  margin-top: 5px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0px 0px 0px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #755131 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }

  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #537542;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #cfa549;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #537542;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #cfa549;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #cfa549;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #755131;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #755131;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #537542;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}


@media (max-width: 767px) {


  #hero {
    height: 117vh;
    text-align: center;
    padding-top: 60px;
  }

  .mobile-nav-toggle {
    position: fixed;
    top: 39px;
    right: 62px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }

  .section-title h2 {
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #cfa549;
  }



}

@media screen and (max-width: 575px) {



  header .navbar-brand img {
    width: 215px !important;
  }

  /* nav.navbar.navbar-expand-lg.navbar-light {
  padding: 0px;
} */
  .card2 {
    border-top: 1px solid #EEEEEE !important;
    margin: 0px !important;
  }

  /* .captionslider{ display: none;} */
  .notification-set {
    display: none;
  }

  #hero {
    height: auto;
    padding: 15px 0px !IMPORTANT;
    text-align: justify;
    line-height: 22px;
  }


  .section-title h2 {
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #cfa549;
  }

  section {
    padding: 40px 0;
    overflow: hidden;
  }



}

@media screen and (max-width: 360px) {

  /* #hero {
        height: 122vh;
        text-align: center;
        padding-top: 65px;
    } */




}









#faq .card {
  margin-bottom: 30px;
  border: 0;
}

#faq .card .card-header {
  border: 0;
  -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  border-radius: 2px;
  padding: 11px 11px;
}

#faq .card .card-header .btn-header-link {
  color: #fff;
  display: block;
  text-align: left;
  background: #537542;

  padding: 20px;
}

#faq .card .card-header .btn-header-link:after {
  content: "\f077";
  font-family: 'FontAwesome';
  font-weight: 900;
  float: right;
}

#faq .card .card-header .btn-header-link.collapsed {

  color: #fff;
}

#faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f078";
  font-family: 'FontAwesome';
}

#faq .card .collapsing {

  line-height: 30px;
}

#faq .card .collapse {
  border: 0;
}

#faq .card .collapse.show {
  /* background: #cfa549; */
  line-height: 30px;
  color: #222;
  border: 1px solid #ccc;
  border-top: 0px;
  /* border-radius: 7px; */
}


.testibox {
  background: #cfa5490d;
  padding: 20px 15px;
  border-radius: 7px;
  border-bottom: 2px solid #537542;
}

.testimonial-img {
  width: 50px;
  height: 50px;
  margin: auto;
}

.testimonial-title {
  text-align: center;
}

.testimonial-body {
  text-align: center;
}

.testimonial-body h3 {
  color: #755131;
  font-size: 24px;
  font-weight: 3000;
}

.testimonial-title h4 {
  margin: 0px;
  font-size: 19px;
  margin: 11px 0px;
  margin-bottom: 5px;
}


.cmscourseliat.cmscourseliat ul li {
  list-style: none;
  padding: 13px;
  border-bottom: 1px dashed #ccc;
}

.cmscourseliat ul {
  padding: 0px;
  border: 1px dashed #ccc;
  background: #fff;
}

.traingcourse {
  background: #d0a549;
  color: #fff;
}

.coursebody {
  padding: 3px 0px;
  text-align: center;
}

.coursebody a {
  color: inherit;
}

div#tranding .owl-carousel {
  position: relative;
}

div#tranding i.fa.fa-chevron-left {
  background: aliceblue;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 19px;
  background: #745231;
  position: absolute;
  color: #fff;
  top: 34%;
  left: 0px;
}

div#tranding i.fa.fa-chevron-right {
  background: aliceblue;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 19px;
  background: #745231;
  position: absolute;
  color: #fff;
  top: 34%;
  right: 0px;
}

.coursebody h3 {
  font-size: 23px;
  margin: 0px;
  padding: 8px 0px;
}

div#tranding i.fa.fa-chevron-right:hover {
  background: #d0a549;
}

div#tranding i.fa.fa-chevron-left:hover {
  background: #d0a549;
}

li.nav-item.login a {
  background: #745231;
  color: #fff !IMPORTANT;
  margin-left: 1px;
  padding: 1px 4px;
  border-radius: 5px;
  margin-top: 8px;
}

/* a.nav-link {
  font-weight: bold;
} */

.coursedetils {
  background: #ebebeb;
  padding: 0px !important;
}

.courbox {
  background: #fff;
  padding: 10px;
  padding-top: 0px;
}

section.coursedetils p {
  line-height: 39px;
  text-align: justify;
}

article.quick-link ul li {
  display: inline-block;
  background: #745233;
  /* padding: 5px 36px; */
  margin-top: 14px;
  width: 20%;
  text-align: center;
  padding: 12px;
  border-left: 2px solid #fff;
  padding: 12px 0px !important;
}

article.quick-link ul li a {
  font-size: 14px;
  color: #fff;
}

article.quick-link ul {
  padding: 0px;

}


article.sidebar h4 {
  background: #745233;
  color: #fff;
  padding: 11px;
}

article.sidebar {
  background: #fff;
  padding-top: 0px;
}

article.sidebar ul li {
  padding: 13px 0px;
  list-style: none;
}





.resources-box h2 {
  color: #CFA549;
  font-size: 20px;
  padding: 18px 0 0;
}

.resources-box p {
  padding: 0px 0px 5px;
  text-align: left;
  font-size: 15px;
  color: #444444;
  margin: 0;
}

.resources {
  background: #7452330d;
  padding: 0px;
  margin: 15px 0;
}

.resources-box a {
  font-size: 13px;
  color: #755131;
}

#feedback {
  /* transform: rotate(7deg); */
  position: fixed;
  right: -44px;
  top: 50%;
  background: #dca845;
  /* width: 200px; */
  z-index: 1111;
  padding: 5px 11px;
  transform: rotate(90deg);
}

#feedback a {
  color: #fff;
  letter-spacing: 3px;
  font-size: 18px;
}




#aaa .modal-dialog {
  margin-left: auto;
}




#aaa .modal-dialog {
  margin-right: 2% !IMPORTANT;
}

#aaa {
  position: fixed;
  z-index: 11111111;
  left: 41px;
}


.fade-scale {
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}

.fade-scale.in {
  opacity: 1;
  transform: scale(1);
}



/* nav.navbar.navbar-expand-lg.navbar-light {
  padding: 0px;
  padding-left: 0px;
  padding-right: 0px;
} */



#serrchbar {
  display: none;
}

.srchbarshow {
  display: block !important;
}



.calendar {
  float: left;
  width: 53px;
  text-align: center;
  margin-right: 17px;
  position: relative;
  z-index: 1;
}

.calendar .month {
  background: #cfa549;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 8px 8px 0 0;
}

.calendar .date {
  font-size: 1.15em;
  font-weight: 700;
  border: 1px solid #d8d8d8;
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: #fff;
  line-height: 22px;
  padding: 7px 0;
}


.table td button {
  padding: 8px 25px;
  border: none;
  color: white;
  background-color: #cfa549;
  border-radius: 10px;
}

.calendar .date span.year {
  font-size: 12px;
  color: #cfa549;
  display: block;
}

.pages-sections {
  background-color: #000c4e;
  margin-top: -15px;
  padding: 7px;
}

table td img {
  width: 3%;
}


.blogggg h3.title {
  background: #745233;
  color: #fff;
  padding: 3px 14px;
  margin: 0px;
}

ul.latest-news li {
  border-bottom: 2px solid #ccc;
  padding: 11px 6px;
}

ul.latest-news {
  padding: 0px;
  list-style: none;
}

button#btnContactUs {
  display: initial !IMPORTANT;
}

ul.topmenumail {
  margin: 0px;
  color: #fff;
  list-style: none;
  padding-left: 0px;

  font-size: 13px;
}




.imgcourse {
  position: relative;
}

.course-free {
  display: inline;
  background-color: rgb(216, 225, 211);
  color: #537542;
  padding: 6px 15px;
  font-weight: bold;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.category {
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  font-size: 12px;
  margin-top: 13px;
  display: block;
}

#courseviewhere .boxcption {
  padding: 12px 12px;
}

.boxcption h3 {
  font-size: 22px;
  color: #dca845;
}

ul.rating {
  list-style: none;
  padding: 0px;
  display: block;
  padding-left: 0px !IMPORTANT;
}

ul.rating li {
  display: inline-block;
  font-size: 13px;
  color: #ffc107;
}


.enroll {
  text-align: start;
  margin-top: 18px;
}

.by {
  text-align: start;
  font-size: 15px;
  color: #000000a8;
}



.courseboxhere {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 0 0px 12px 12px;
  margin-bottom: 18px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.navitem-bg {
  background-color: #cfa549;
  /* border-radius: 20px 100px; */
}

#pills-tab li {
  background: #7c9b6c2e;
  margin: 0px 6px 6px 0;
  font-size: 15px;
  color: #755131;
}

#pills-tabContent {
  padding: 15px;
  border: 1px solid #d1d7dc;
}

.enroll a {
  background: #537542;
  color: #f7f7f7;
  padding: 4px 18px;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
}

/* count-snippt */
.count-snippt {
  padding: 60px 0px;
  background: #e1ebe082;
}

.border-info {
  border-color: #cfa549 !important;
  box-shadow: 0 0 6PX #1e1e1e61;
}

.border-success {
  border-color: #cfa549 !important;
  box-shadow: 0 0 6PX #1e1e1e61;
}

.border-danger {
  border-color: #cfa549 !important;
  box-shadow: 0 0 6PX #1e1e1e61;
}

.border-warning {
  border-color: #cfa549 !important;
  box-shadow: 0 0 6PX #1e1e1e61;
}

.fafa-colour-icon {
  color: #755131;
}

.count-head h4 {
  color: #cfa549;
  font-size: 20px;
}

.count-head h1 {
  color: #755131;
}

.counter img {
  width: 40px;
}

.counter {
  top: -32px !important;
  padding: 8px !important;
}

.my-card {
  position: absolute;
  left: 40%;
  top: -20px;
  border-radius: 50%;
}

.coursebtm {
  border-top: 1px solid #ededed;
  display: flex;
  flex-direction: column;
}



.enroll a:hover {
  background: #CFA549;
  transition: 1s;
  color: #fff;

}

li.totlalreview {
  color: #b39999 !IMPORTANT;
  font-weight: bold;
  margin-left: 20px;
}

.sidesmallimg {
  float: left;
  width: 20%;
  margin-right: 15px;
}

.slidecoure-caption {
  float: left;
  width: 70%;
}

.slidecoure-caption .rating li {
  padding: 0px;
  margin: 0px;
}

.sidesmallimg img {
  border-radius: 6px;
}

.coursename {
  font-weight: bold;
}

.sidefee {
  font-size: 13px;
  font-weight: bold;
  color: #745233;
}

article.sidebar ul {
  padding-left: 15px;
}


.course-hedaer {
  background: #537542b3;
  color: #fff;
  padding: 44px 0px;
  margin-top: 0px !important;
}


.course-hedaer li.totlalreview {
  color: #fff !important;
}

p.enroll-students {
  margin: 0px;
  padding: 0px;
}

p.last-update {
  margin: 0px;
  padding: 0px;
}


.course-detils ul#pills-tab {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #ccc;
}

article.course-detils {
  margin-top: 15px;
}

.course-detils .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #745233;
  background-color: transparent !IMPORTANT;

  border-bottom: 2px solid #745233;
  border-radius: inherit;
  padding: 16px;
}

.coursedetilssec {
  background: #fff;
  padding: 13px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.course-detils .nav-pills .nav-link {
  padding: 16px;
}

.course-detils #faq .card .card-header .btn-header-link {
  color: #000;
  display: block;
  text-align: left;
  background: #f9f9f9;
  padding: 11px 18px;
}


.duriction {
  float: right;
  width: 30%;
  text-align: right;
}

.topic {
  float: left;
}

ul.topicname-withtime li {
  padding: 10px 0px;
  list-style: none;
}

.coursedetilssec h3 {
  font-size: 21px;
  font-weight: bold;
}

ul.topicname-withtime {
  padding: 0px;
}


.course-feque {
  float: left;
  font-weight: bold;
}

.course-feans {
  float: left;
  margin-left: 23px;
}

ul.features {
  padding: 0px !IMPORTANT;
  margin-top: -50px;
}

ul.features li {
  border-bottom: 1px solid #ccc;
  padding: 10px !important;
}

a.enrolbtn {
  text-align: center;
  color: #000;
  font-weight: bold;
  text-align: center;
  display: block;
  border: 1px solid #ccc;
  margin: 20px 0px;
  padding: 11px;
  text-transform: uppercase;
  background: #d0a449;
  color: #fff;
}

.fees-coursedetils {
  color: #745233;
  font-weight: bold;
  font-size: 28px;
}

a.enrolbtn:hover {
  border: 1px solid #d0a449;
  color: #d0a449;
  transition: 1s;
  background: transparent;
}




.coverpagerting p.enroll-students {
  float: left;
  margin-right: 21px;
}

p.last-update {
  float: left;
}

section.coursedetils .coursedetilssec li {
  line-height: 39px;
  text-align: justify;
}


.trending-courses .courseboxhere {
  background: #f7f7f7;
}


.boxfooter a {
  text-align: center;
  display: block;
  background: #537542;
  color: #fff;
  padding: 10px 0px;
  /* border-radius: 27px; */
  /* margin-bottom: 22px; */
  font-weight: bold;
}

.boxfooter a:hover {
  background: #0c0b0a;
  transition: 1s;
}



.top-header .row {
  align-items: center;
}


section.side-box-sec.evnt h2 {
  padding: 0px;
  margin-bottom: 15px;
}


.evnt ul.features {
  margin: 0px;
  list-style: none;
  border-bottom: none;
  margin-bottom: 20px;
}

.evnt ul.features li {
  border: none;
}

.evnt .course-feque {

  width: 17%;
}


.evnt .side-right-sec {
  background: #fff;
  border-radius: 6px;
  padding: 11px;
}

.evnt article.sidebarevent {
  background: #fff;
  padding: 10px;
  border-radius: 6px;
}


.evnt .slidecoure-caption {
  float: left;
  width: 80%;
}

.filter-main {
  padding: 8px 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 15px;
  border-radius: 12px 60px;
  box-shadow: 0 0 24px 0 rgb(0 0 0 / 12%);
}

.filter-main ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0px;
}

.filter-main ul .custom-select:focus {
  border-color: #cfa549;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgb(207, 165, 73);
}

.filter-main ul li {
  margin-right: 35px;
  background: #fff;
  border-radius: 35px;
}

.filter-main ul li label,
.custom-select {
  border: none;
}

span.filterbox {
  background: #fff;
  font-size: 19px;
  padding: 4px 14px;
}

/* director-meesage */
.director-img img {
  width: 100%;
}

.director-img {
  width: 300px;
  margin: 0 auto;
  box-shadow: 0 0 3PX #1e1e1e61;
  padding: 20px;
  border-radius: 25px;
}

.director-message {
  text-align: start;
}

.director-message h3 {
  font-size: 22px;
  font-weight: 600;
  color: #755131;
}

.flex-align {
  display: flex;
  align-items: center;
}

/* gallery-css */
.modal button.close {
  right: 0;
  outline: 0;
}

#gallery-lightbox img {
  height: 350px;
  object-fit: cover;
  cursor: pointer;
  box-shadow: 0 0 6PX #1e1e1e61;
  PADDING: 15PX;
  BORDER-RADIUS: 15PX;
  BACKGROUND: #F7F7F7;
}

#gallery-lightbox img:hover {
  opacity: 0.9;
  transition: 0.5s ease-out;
}

/* Accordian-faq-page */
.accordion-main .acordian-card {
  border: 1px solid #cfa549;
  text-decoration: unset;
}

.accordion-main .acordian-card button {
  color: #755131;
  font-size: 18px;

}

.accordion-main .acordian-card button:hover {
  text-decoration: unset;
  color: #cfa549;
}

.accordion-main .acordian-card button :active {
  text-decoration: unset;
}

#courseviewhere {
  padding: 25px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  /* width: 100%; */
  border-radius: 10px;
}


/*--========popupmodal css========--*/

#modal-enroll {
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  /*    opacity: 0;*/
  height: 100vh;
}

.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
  display: block;
}

#modal {
  background-color: #fff;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -15%);
  width: 50%;
  padding: 0;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 14px 28px rgb(0 0 0 / 11%), 0 10px 10px rgb(0 0 0 / 11%);
  font-size: 1.5rem;
  animation-name: animatemodal;
  animation-duration: 0.4s;

}

.form-popup-wrapp {
  width: 100%;
}

.form-popup-wrapp .col-12 {
  width: 100%;
}


#modal-enroll .container-modal {
  min-height: 365px;
  width: 650px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  transition: all 300ms ease-in-out;
  z-index: 1011;
  border-radius: 4px;
  box-shadow: 1px 1px 12px 5px rgb(0 0 0 / 9%);
}

#modal-enroll .container-modal .header-modal {
  display: flex;
  padding: 10px;
  background-color: #755232;
  color: #fff;
  position: relative;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

#modal-enroll .container-modal .header-modal .modal-exit {
  position: absolute;
  top: -10px;
  right: -8px;
  background: #fff;
  height: 30px;
  width: 30px;
  border-radius: 100px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;

}

#modal-enroll .container-modal .header-modal .modal-exit i {
  color: #eb0404;
}

#modal-enroll .container-modal .header-modal h4 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;

}

#modal-enroll .container-modal .modal-body {
  padding: 10px;
  width: 100%;
  display: flex;
  flex-flow: column wrap;
  min-height: 200px;
}

#modal-enroll .container-modal .modal-body h5 {
  font-size: 15px;
  font-weight: 500;
  color: #468246;
  /* padding-bottom: 4px; */
  text-align: left;
  background: #eee;
  padding: 12px;
  margin: 10px 0;
}

#modal-enroll .container-modal .modal-body .form-group label {

  color: #000000ab;
}

#modal-enroll .container-modal .modal-body .form-group input[type="search"],
#modal-enroll .container-modal .modal-body .form-group input[type="text"],
#modal-enroll .container-modal .modal-body .form-group input[type="email"],
#modal-enroll .container-modal .modal-body .form-group input[type="number"],
.form-group select,
#modal-enroll .container-modal .modal-body .form-group input[type="date"],
.form-group textarea,
.container-modal .modal-body .form-group input[type="datetime-local"],
#modal-enroll .container-modal .modal-body .form-group input[type="datetime"],
#modal-enroll .container-modal .modal-body .form-group input[type="time"] {
  width: 100%;
  height: 45px;
  line-height: 25px;
  background: #fff;
  border: 1px solid #d7dbda;
  font-size: 14px;
  color: #a09e9e;
  border-radius: 10px;
  padding: 9px 15px;
}

#modal-enroll .form-group textarea {
  height: auto !important;
}

#modal-enroll .form-group textarea::placeholder {
  color: #00000036;
}

#modal-enroll .popup-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

#modal-enroll .popup-modal-close {
  position: absolute;
  font-size: 1.2rem;
  right: -10px;
  top: -10px;
  cursor: pointer;
}

#modal-enroll .modal-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* padding: 10px; */
  /* background: #eee; */
  align-items: center;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

#modal-enroll .row-form {
  width: 100%;
}

#modal-enroll .d-flex-wrapp {
  flex-wrap: wrap;
}

#modal-enroll .d-j-space-between {
  justify-content: space-between;
}

#modal-enroll .d-flex {
  display: flex;
}

#modal-enroll .btn-submit,
#modal-enroll .btn-cancel {
  background: #59aa24;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  outline: none;
  border: none;
  outline: none;
  margin: 20px 10px 10px;
  box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 20%);
  -webkit-box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 20%);
}

#modal-enroll .button-group {
  justify-content: center;
  display: flex;
  flex-direction: row;
}

.open {
  visibility: visible;
  opacity: 1 !important;
  transition-delay: 0s;
  display: block !important;
}

.enroll-btn {
  border: none;
  background: #477645;
  width: 100%;
  text-align: left;
  padding: 15px 9px;
  color: #fff;
  margin-bottom: 8px;
  border-left: 3px solid #294a28;
  font-weight: 600;
  box-shadow: 2px 3px 4px #00000014;
}

.view-btn-tabing {
  display: flex;
  justify-content: end;
}

.view-btn-tabing a {
  background-color: #755131;
  border: none;
  width: 100%;
}

.view-btn-tabing a:hover {
  background-color: #cfa549;
  border-color: none;
}

.view-btn-tabing a:active {
  background: none;
  border: none;
}

.reset-n-search-btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  margin-top: 40px;
}

.form-group input:focus {
  outline: none;
}

.cources-list-main .reset-n-search-btn a {
  background: #dba347;
  color: #fff;
  padding: 6px 33px;
  border-radius: 24px;
}

.loader {
  position: fixed;
  left: 0px;
  right: 0px;
  background: #000;
  top: 0px;
  bottom: 0px;
  z-index: 999999;
  opacity: 0.7;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.loader svg {
  margin: auto;
  background: rgb(207, 164, 72);
  border-radius: 20px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#detailedpopupLabel {
  color: #745233;
}

.details-show {
  background-color: #f4f4f4;
  margin: 8px 8px;
}

.details-show label {
  background-color: #eee;
  border-right: 1px solid rgb(207, 164, 72);
  font-weight: bold;
}

.modal-dialog.modal-dialog-scrollable.model-popup {
  width: 815px;
}

.details-show h4 {
  font-size: 14px;
}

/* ------------------------------------------------- */
.closeBtn:focus {
  outline: none;
}

.close {
  color: gray;
}

.wrapper {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  padding: 5px;
  height: 50px;
}

.list {
  position: absolute;
  min-width: 3600px;
}


.scroller {
  text-align: center;
  cursor: pointer;
  display: none;
  padding: 7px;
  padding-top: 11px;
  white-space: no-wrap;
  vertical-align: middle;
  background-color: #755131;
  color: #fff;
}

.scroller-right {
  float: right;
}

.scroller-left {
  float: left;
}

.list-spacing {
  width: 92%;
  margin: 0 auto;
}






ul#pills-tab {
  width: 2000px;
}

.wrapper-list-spacing {
  width: 93%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: auto;
}

.wrapper-list-spacing ul#pills-tab {
  width: 2000px;
  background: #fff;
  padding: 6px 0px;
}

.wrapper-list-spacing li.nav-item.navitem-bg {
  margin: 0px 6px !IMPORTANT;
}

button#slideLeft,
button#slideRight {
  background: #537542;
  color: #fff;
  border: 0px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;

}

.cource-tabing-main-list {
  position: relative;
}

button#slideLeft {
  position: absolute;
  left: 3px;
  top: 12px;
}

button#slideRight {
  position: absolute;
  right: 3px;
  top: 12px;
}

input#other_payment_photo {
  background: #EDECEC;
  padding: 40px;
  margin: 10px 0px;
  border-radius: 11px;
  border: 2px dashed rgba(0, 0, 0, 0.3);
}

/* ------------------------------------------------------ */

.pricing-shape {
  position: absolute;
  left: -75px;
  top: 0;
  width: 220px;
}

.testimonial-shape {
  position: relative;
}

.pricing-shape img {
  width: 100%;
}

.aboutsec {
  position: relative;
}

.aboutsec::before {
  content: "";
  position: absolute;
  background-image: url("../img/Ayurveda-PNG-Transparent-Image.png");
  position: absolute;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0.1;

}

.director-img::after {
  position: absolute;
  content: '';
  right: -90px;
  top: -35px;
  width: 150px;
  height: 150px;
  background: rgba(240, 245, 239, 0.8);
  z-index: -1;
  margin: auto;
  border-radius: 100%;

}

#hero
{
  background-image: url("../img/output-onlinepngtools.png");
  background-repeat: no-repeat;
  background-size: auto;

}
.banner-main::after {
/*  content: "";
  background-image: url("../img/Ayurveda-PNG-Transparent-Image.png");
  position: absolute;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0.1;*/
}


/* header webasite style */
   #serrchbar {
      background: #1a1916e8;
      color: #fff;
      position: absolute;
      /* left: 0px; */
      top: 0px;
      right: 0px;
      top: 0px;
      bottom: 0px;
      height: 100vh;
      width: 100%;
      display: none;
   }

   .cls {
      clear: both;
   }

   .serchtag li {
      width: 356px;
      float: left;
   }

   .skiptranslate iframe {
      display: none !important;
   }

   .logo-header-second-logo img {
      border-radius: 100%;
      width: 100%;
      height: 100%;
      padding: 5px;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
   }





   .eng-hindi-set .hindi-btn {
      font-family: 'Poppins';
      font-style: normal;
      font-weight: 500;
      font-size: 10.9495px;
      line-height: 16px;
      color: #FFFFFF;
      background: inherit;
      box-shadow: inherit;
      border: none;
      outline: none;
   }

   .eng-hindi-set .active {
      color: #003566 !important;
      background: #FFFFFF !important;
      border-radius: 2.62787px !important;
      outline: none !important;
      padding: 3px 10px !important;
      font-weight: 600 !important;
      border: none !important;
   }

   .search-bar {
      display: flex;
      justify-content: end;
      width: 285px;
      height: 48px;
   }

   .search-bar input {
      background: #FFFFFF;
      border: 1px solid #DCA845;
      box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
      padding: 10px 25px;
      width: 100%;
      font-style: italic;
   }

   .logo-2-border {
      padding: 8px;
      border-left: 1px solid #ece9e9;
      border-right: 1px solid #ece9e9;
   }

   .cources-list-main {
      position: relative;
   }

   .cources-list-main::before {
      background-image: url("../img/before.png");
      content: "";
      display: block;
      position: absolute;
      z-index: 0;
      background-repeat: no-repeat;
      background-size: auto;
      width: 100%;
      top: 0;
      bottom: 0;
      left: 0;
   }
    .langgoogle {
         position: relative;
     }

                        #google_translate_element {
                           background: #537542;
                           width: 148px;
                           position: absolute;
                           top: 0px;
                           z-index: 1111;
                           display: none;
                           padding: 0px;
                           right: -131px;
                        }

                        .showlang {
                           display: block !IMPORTANT;
                        }

                        .langclick {
                           cursor: pointer;
                        }

                        div#google_translate_element a {
                           display: none;
                        }
.logo-header {
            padding: 13px 0px;
         }
 /*   #hero{    padding: 237px 0px !IMPORTANT;}*/
         header .mid-header {
            background: #537542;
         }

         header ul.navbar-nav {
            display: flex !important;
            justify-content: space-between !IMPORTANT;
            width: 100%;
         }

         header a.nav-link {
            color: #fff !IMPORTANT;
         }

         .course-mid p {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
         }

         .notification-set .holder h4 {
            text-transform: capitalize;
         }

         .course-hedaer {
            background: #537542b3;
            color: #fff;
            padding: 44px 0px;
            margin-top: 182px;
         }

         .course-hedaer img {
            height: 255px;
         }

         .coursebtm {
            padding: 8px 0px;
         }

         .by {
            margin-bottom: 5px;
         }

         .boxcption h3 {
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
         }
.newsticker {height: 75px;}
.captchas {text-align:right;margin-top: 3px;}
.areas {height: 100%;}
.feedbacks {text-align:right;margin-top: 3px;}
.iconss {color:#dca845;font-weight:800;}

.heading-bg{
background: #000;
    padding: 60px;
    color: #fff;
}

.visiter_count
{
  padding:8px 15px;
  background-color:#fff;
  border-radius:10px;
  margin-bottom:20px!important;
  width:max-content;
  margin:auto;
  text-align:center;
  color: #537542;
}
.visiter_count h5
{
  margin-bottom:0px;
  font-size:16px;
}
.wrapper-list-spacing ul#pills-tab 
{
    width: 100000px;
    background: #fff;
    padding: 6px 0px;
}
.captchas img 
{
  width:100%;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}