:root {
  --primaryColor: #51463e;
  --secondaryColor: #a39473;
  --tertiaryColor:#51463e;
  --bg: #a49993;
  --lightBg :#F0F0F0;

  --white: #fff;
  --black: #000;
     
  --gray: #bbbbbb; 
  --darkGray: #717171; 
  --yellow: #FFDD00;
  --purple: #E60046;
  --link:#333;
  --skyBg:#76A9F8;


}


.themeBg {
  background-color: var(--secondaryColor);
}

.lightBg {
  background-color: var(--lightBg);
}
.darkBg {
  background-color: var(--primaryColor);
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0860EA;
  border-top-color: #F2F7FF;
  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);
  }
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: var(--black);
}

a {
  color:var(--primaryColor);
  text-decoration: none;
}

a:hover {
  color: var(--secondaryColor);
  text-decoration: none;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}



.owl-nav, .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
  outline: none;
}

.owl-dot.active {
  background-color: var(--primaryColor) !important ;
  outline: none;
}

.btn-big {
  padding: 10px 30px;
  font-weight: 600;
}
.form-select {
  font-size: 14px;
  padding: 10px 20px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background:var(--primaryColor);
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #629fd3;
  transition: background 0.2s ease-in-out;
}

section.themeBg .section-title h1, section.themeBg .section-title p  {
  color: var(--white);
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--secondaryColor);
  padding: 10px 0; 
  font-size: 14px;
  color: var(--white);
}

#topbar .contact-info a {
  line-height: 1;
  color: var(--white);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: var(--link);
}

#topbar .contact-info i {
  color: var(--white);
  padding: 4px;
}

#topbar .contact-info .icofont-phone {
  padding-left: 20px;
  margin-left: 10px;
}

#topbar .social-links a {
  color: var(--white);
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #428bca;
}




/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #FFF;
  top: 42px;
}

.lng-switcher-btn {
  border: 2px solid var(--primaryColor);
  padding: 5px 8px;
  border-radius: 4px;
  color: var(--primaryColor);
}

#header.header-scrolled, #header.header-inner-pages {
  background:var(--black) ;
  top: 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

#header .logo img {
  max-height: 73px; 
   /* min-height: 40px;
  width: 61%; */
}

@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 15px 0;
  }
}

.inner-page .breadcrumbs{ 
  margin-top: 70px;
}

/*--------------------------------------------------------------
# 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;
  margin: 0 8px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: var(--secondaryColor);
  transition: 0.3s;
  font-size: 14px;
  padding: 25px 3px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--yellow);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: var(--primaryColor);
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  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;
  border-top: 2px solid #009961;
}

.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: #282828;
}

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

.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;
  background: #009961;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: #00b371;
  color: #fff;
}

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

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 18px;
  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: var(--secondaryColor);
}

.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: #282828;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #009961;
  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(15, 15, 15, 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%;
  height: calc(100vh );
  padding: 0;
  overflow: hidden;9
  position: relative;
  top: 0;
}

#hero .carousel-item {
  width: 100%;
  /* height: calc(100vh - 114px); */
  height: calc(100vh - 40px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero .carousel-item::before {
  content: '';
  /* background-color: rgba(13, 30, 45, 0.8); */
  background-color: rgb(62 55 50 / 59%);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#hero .carousel-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: absolute;
  bottom:26%;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

#hero .carousel-content {
  text-align: left;
}

@media (max-width: 992px) {
  #hero, #hero .carousel-item {
    height: calc(100vh - 70px);
  }
  #hero .carousel-content.container {
    padding: 0 50px;
  }
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 900;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #428bca;
}

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

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
 

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
section.contact  {
  padding: 0;
  overflow: visible;
  margin-top: 100px;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {  
  padding-bottom: 20px;
  position: relative;
}
.section-title h1 {  
  padding-bottom: 10px;
  position: relative; 
  font-weight: 600;

  font-size: 30px;
  color: var(--primaryColor);
}

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

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  /* transform: skewY(-3deg); */
}

.section-title {
  /* text-align: center; */
  padding-bottom: 30px;
 
}

.section-title h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom:12px; 
  color: var(--primaryColor);
  text-transform: capitalize;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
}

.section-title p {
  margin-bottom: 10px;
  width: 60%;
  margin: auto;
}
}


.about .section-title {
  text-align: left;
}

.about .section-title  h2::after {
left: calc(0% + 0px);
}



.section-title.text-left {
  text-align: left;
}
.section-title.text-left h2::after {
  left: calc(0% + 0px);
}
.section-title.text-left p {
  width: 100%;
}
.darkBg .section-title.text-left h2, .themeBg .section-title.text-left h2 {
  color: var(--white);
}
.about .section-title.text-left h2 {
  color: var(--gray);
}
.darkBg .section-title h1 {
  color: var(--white);
  }

 

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color:#E2E2E2;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  padding-bottom: 30px;
}


.about .abt-section-head { 
  position: relative;
  margin-left: -25%;
    z-index: 60;
    padding:20px 30px ;
    background-color: white;
    border-radius: 20px 20px 20px;;
}
 
/* .about .container {
  box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
} */

.about .video-box img {
  margin: 15px 0;
  border-radius: 30px;
}

.about .section-title p {
  text-align: left;
  font-style: italic;
  color: #666;
}

.about .about-content {
  padding: 40px;
  padding-bottom: 0;
}

.about .icon-box + .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--bg);
  border-radius: 6px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color:var(--primaryColor);
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background:var(--primaryColor);
}

.about .icon-box:hover .icon i {
  color: var(--white);
}

.about .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: var(--primaryColor);
}

.about .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#51463e 50%, rgba(163, 148, 115, .50) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(66, 139, 202, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #428bca;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.about .abt-section-head h2 {
  text-align: left;
}
.about .abt-section-head h1 {
  font-weight: bold;
  font-size: 3rem;
  text-align: left;
 }


@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Why-lists
--------------------------------------------------------------*/
.why-lists {
  padding: 80px 0;
}

.why-lists .row {
  overflow: hidden;
}

.why-lists .content-item {
  padding: 40px;
  /* border-left: 1px solid #d9e8f4;
  border-bottom: 1px solid #d9e8f4; */
  /* margin: -1px; */
  text-align: center;
}

.why-lists .content-item span {
  display: block;
  font-size: 3rem;
  font-weight: 600;
  color: var(--white); opacity: 0.1;
}

.why-lists .content-item h4 {
  font-size: 22px;
  font-weight:600;
  padding: 0;
  margin: 20px 0;
  color: var(--white);
}

.why-lists .content-item p {
  color: var(--white);
  font-size: 15px;
  margin: 0;
  padding: 0;
}


.why-lists .content-item .icon i {
  width: 80px;
  height: 80px;
  margin-bottom: 20px; 
  border-radius: 50%;
  transition: 0.5s;
  color:var(--white);
  font-size: 40px;
  overflow: hidden;
  padding-top: 20px; 
}

@media (max-width: 768px) {
  .why-lists .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
 
.counts .count-box { 
  padding:10px;  
}

.counts .count-box i {
  display: block;
  font-size:30px;
  margin-bottom: 6px;
}

.counts .count-box span {
  font-size: 20px;
  display: block;
  font-weight:600;
  color: var(--white);
}

.counts .count-box p {
  padding: 0;
  margin: 0; 
  font-size: 15px; font-weight: 600;
  color: var(--white);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 30px;
}

.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: flex;
  justify-content: center;
}

.services .icon i {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #428bca;
  font-size: 40px;
  overflow: hidden;
  padding-top: 20px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon-box:hover .icon i {
  box-shadow: 0px 0 30px rgba(66, 139, 202, 0.5);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444;
  transition: 0.3s;
}

.services .title a:hover {
  color: #428bca;
}

.services .title::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #428bca;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}



/*--------------------------------------------------------------
# quotes
--------------------------------------------------------------*/
.quotes .quote-item {
  box-sizing: content-box;
  padding:0px;
  margin: 0px auto;
  min-height: 200px; 
  position: relative;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  width: 60%;
}

.quotes .quote-item .quote-img {
  width:300px;
  border-radius: 100%;
  border: 6px solid #fff; 
  margin: 10px auto;
}

.quotes .quote-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 5px 0;
  color: #111;
}

.quotes .quote-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.quotes .quote-item .quote-icon-left, .quotes .quote-item .quote-icon-right {
  color: var(--gray);
  font-size: 60px;
}

.quotes .quote-item .quote-image {
  position: relative;
  width: 60%;
  margin: 0 auto;
}
.quotes .quote-item .quote-image .quote-icon-left {
  display: inline-block;
  left: 0px;
  top: 20%;
  position: absolute;
}

.quotes .quote-item .quote-image .quote-icon-right {
  display: inline-block;
  right: 0px;
  top: 20%;
  position: absolute;
}

.quotes .quote-item p {
  font-style: italic;
  margin: 30px auto 15px auto;
}

 
@media (max-width: 767px) {
  
  .quotes .quote-item {
     width: 80%;
  }
  .quotes .quote-item .quote-image {
    width: 60%;
  }
  
}


/*--------------------------------------------------------------
# newsBlog
--------------------------------------------------------------*/
 .grid-item {
  border-radius: 5px;
  border: 1px solid #eef0ef;
}

 .grid-content {
  padding: 15px;
  background-color: var(--white);
}

 .grid-content h3 {
  font-weight: 700;
  font-size: 20px;
}

 .grid-content h3 a {
  color: #37423b;
  transition: 0.3s;
}

 .grid-content h3 a:hover {
  color: var(--primaryColor);
}

 .grid-content p {
  font-size: 14px;
  color: #777777;
}

 .grid-content h4 {
  font-size: 14px;
  background:var(--secondaryColor);
  padding: 7px 14px;
  color: #fff;
  margin: 0;
}
 
.grid-item .trainer {
  padding-top: 15px;
  border-top: 1px solid #eef0ef;
}

.grid-item .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.grid-item .trainer .trainer-profile span {
  padding-left: 0; 
  font-size: 14px; 
  color: var(--gray);
}

.grid-item .trainer .trainer-rank {
  font-size: 16px; 
}



/* .newsBlog .owl-nav, .newsBlog .owl-dots {
  margin-top: 5px;
  text-align: center;
}

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

.newsBlog .owl-dot.active {
  background-color: #2487ce !important;
} */
 
/*--------------------------------------------------------------
# Charity
--------------------------------------------------------------*/

.charity .info {
  width: 100%; 
}

.charity .info .address {
  background-color: var(--white);
  width: 60%;
  margin: 0 auto;
  position: relative;
  top: -40px;
  border-radius: 8px 20px 8px;
  text-align: left;
  min-height: 70px;
  flex-wrap: row;
  padding: 10px 0;
}
.charity .info > img {
  border-radius:60px 20px 20px;
}

.charity .info i {  
  float: left; 
  padding:10px 20px;
  line-height: 1;
}

.charity .info h3 {
  padding: 0 0 0 60px; 
  font-size:20px;
  font-weight: 600;
  margin-bottom: 5px;
  color:var(--black);
}

.charity .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #5b5b5b;
}

.charity .section-title a {
  color: var(--white);
  text-decoration: none;
  padding-left: 30px;
}
.charity .section-title p {
  color: var(--white);
}

/*--------------------------------------------------------------
# Certification
--------------------------------------------------------------*/
 
.certification .certification-item {
  margin: 8px;
  overflow: hidden;
  text-align: left;
  border-radius:10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

.certification .certification-item .certification-img {
  position: relative;
  overflow: hidden;
}
  
.certification .certification-item .certification-info {
  padding: 15px 15px;
}
 
.certification .certification-item .certification-info h4 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
  color:var(--black);
}

.certification .certification-item .certification-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
}

.certification .certification-item .certification-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--gray);
}

.certification .certification-item:hover .certification-info h4 {
  opacity: 1;
  color:  var(--primaryColor);
}

.certification .section-title p {
  width: 100%;
}



/*--------------------------------------------------------------
# downloads
--------------------------------------------------------------*/
.downloads {
  padding-top:80px 0;
  min-height: calc(100vh - 167px);
}

.downloads .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s; 
  background-color: var(--white);
  margin-bottom: 20px;
}

.downloads .icon-box .icon i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
  color: var(--primaryColor);
}

.downloads .icon-box h3 {
  font-weight:600;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;  
  width: 100%;
   
}

.downloads .icon-box .download-icon a {  
  color: var(--gray);
  transition: 0.3s;
}
.downloads .icon-box p {
  display: inline-block;
  width: 100%; 
  font-size: 12px;
  margin-bottom: 0;
}

.downloads .icon-box:hover { 
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}
.downloads .icon-box:hover .download-icon a { 
  color:  var(--primaryColor);
}
.downloads .icon-box:hover h3 a {
  color:  var(--primaryColor);
}






/*--------------------------------------------------------------
# Our Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #444;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

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

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  text-align: center;
  background: rgba(31, 53, 72, 0.6);
  padding-bottom: 30px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-info a {
  color: #428bca;
  margin: 0 4px;
  font-size: 18px;
  line-height: 1;
  background-color: #fff;
  padding-top: 7px;
  border-radius: 50px;
  text-align: center;
  width: 36px;
  height: 35px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info a:hover {
  background: #428bca;
  color: #fff;
}

.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  padding-bottom: 0;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

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

.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: #428bca !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;
  }
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0 30px 0;
}

.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  border-radius: 10px;
  overflow: hidden;
}

.team .member img {
  transition: all ease-in-out 0.4s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  position: absolute;
  bottom: -48px;
  left: 20px;
  right: 20px;
  /* background: linear-gradient(360deg, #5c768d 0%, rgba(92, 118, 141, 0.9) 35%, rgba(140, 167, 191, 0.8) 100%); */
  background-color: var(--white);
  padding:20px 0;
  border-radius: 4px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--black);
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: var(--primaryColor);
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span { 
  display: block;
  font-size: 13px;
  color: var(--gray);
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: var(--gray);
}

.team .member .social a:hover {
  color: var(--primaryColor);
}

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

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 100px;
  }
}

 

/*--------------------------------------------------------------
# Frequently Asked Questions2
--------------------------------------------------------------*/

.noti-list .head-style {
  padding:14px 30px;
  color: var(--white); 
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) ;
}
.noti-list .head-style h3 { 
  margin-bottom: 0;
}
.notification {
  position: absolute;
  z-index: 99;
  top: 20%; right: 30px;
  width:35%;
}

.notification .noti-list {
  margin: 0 60px; 
  padding:0px;
  background:var(--secondaryColor);
  border-radius: 6px;
}

.notification .noti-list ul {
  padding: 0;
  list-style: none;
 

}

.notification .noti-list li + li {
  margin-top:2px;

}

.notification .noti-list li {
  padding: 8px 12px;
  background:var(--secondaryColor);
  border-radius: 6px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) ;
}

.notification .noti-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 16px;
  outline: none;
  cursor: pointer;
  color: var(--yellow);
}

/* .notification .noti-list .icon-help {
  font-size: 20px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--white);
} */

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

.notification .noti-list p {
  margin-bottom: 0;
  padding:0px 16px;
  width: 100% !important;
  font-size: 13px; 
}

.notification .noti-list .icon-show {
  display: none;
}

.notification .noti-list a.collapsed {
  color: var(--white);
}

.notification .noti-list a.collapsed:hover {
  color: var(--yellow);
}

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

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

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

/*--------------------------------------------------------------
# Institute
--------------------------------------------------------------*/
.institution {
  padding-top: 20px;
}

.institution .card {
  border: 0;
  padding: 10px 0px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  
}

.institution .card img {
  border-radius: 10px;
  overflow: hidden;
}

.institution .card-body {
  z-index: 10;
  background: rgba(255, 255, 255,1);
  padding: 15px 30px;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 10px  0 10px 10px;

  position: relative;
  left: 60px;
  bottom:30px;
  width: calc(100% - 60px);
}

.institution .card-title {
  font-weight: 600; 
  font-size: 16px;
  margin-bottom: 0;
}

.institution .card-title a {
  color: var(--primaryColor)
}

.institution .card-text {
  color: #5e5e5e;
  font-size: 14px;
}

.institution .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.institution .read-more a:hover {
  text-decoration: underline;
}

.institution .card:hover .card-body { 
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.institution .card:hover .read-more a, .institution .card:hover .card-title, .institution .card:hover .card-title a, .institution .card:hover .card-text {
   
}


/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .section-title.text-left h2 {
  color: var(--white);
}

.contact .info-box {
  color: var(--black); 
  /* box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0; */
  margin-bottom: 30px;
  width: 100%;
}

.contact .info-box i {
  font-size: 30px;
  color: var(--white);
  border-radius: 50%;
  padding: 14px;
  background-color: var(--secondaryColor);

  float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact .info-box h3 {
  font-size:16px;
  color: var(--white);
  font-weight: 400;
  margin: 10px 0;
  margin-bottom: 0;
}

.contact .info-box p, .contact p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--white);
}

.contact .php-email-form { 
  padding:60px 80px;
  position: relative;
  background-color: var(--white);
  margin-top: -80px;
  box-shadow: 0 5px 25px 0 rgba(56 50 46/0.5);
  height: 100%;
  z-index: 999;
}

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

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

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

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

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

.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;
}

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

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

 .php-email-form input::focus, .php-email-form textarea::focus {
  background-color: #428bca;
}

 .php-email-form input {
  padding: 10px 15px;
  padding-left: 0;
}

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

 .php-email-form button[type="submit"] {
  background:var(--primaryColor);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

 .php-email-form button[type="submit"]:hover {
  background: var(--primaryColor);
}


.formLabel {
  margin-bottom:6px;
}

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

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

#footer {
  background: #587187;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #5c768d;
  border-top: 1px solid #768fa6;
  border-bottom: 1px solid #67839c;
  padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #768fa6;
  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: #428bca;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  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: #9eccf4;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #9eccf4;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

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

#footer .footer-top .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: #428bca;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #5295ce;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #9eccf4;
}



.btn-donate { 
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: var(--black);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid transparent ;
  background-color: var(--yellow);
  color: var(--black);
}





a.btn.btn-outline-dark.load-more.m-auto {
  padding: 10px 30px;
  border-radius: 30px;
  border: 2px solid;
}


/* Institute pages */

#header.institute-header { 
  background-color: #fff;
}
#header.institute-header .logo a {
  color: var(--primaryColor);
}
#header.institute-header .nav-menu a:hover, #header.institute-header .nav-menu .active > a, #header.institute-header .nav-menu li:hover > a, #header.institute-header .nav-menu a {
  color: var(--darkGray);
}



/* Forms */
 
.form-control {
  border: none;
  border-bottom: 1px solid #e7e7e7;
  border-radius: 0;
  padding: 9px 5px;
  min-height: 40px;
  font-size: 18px;
  font-weight: normal;
}
.regForm .reg-btn {
  padding: 13px 20px;
  background-color: #fdbb28;
  border-radius: 0;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 14px;
}
.regForm label {
  font-size: 14px;
  font-weight: bold;
  color: #b0adad;
}

.regForm .form-group {
  margin-bottom: 1rem;
}




/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px; 
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #111111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: var(--primaryColor);
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: var(--primaryColor);
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background:var(--primaryColor);
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #111111;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #1e1e1e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color:var(--primaryColor);
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}
 
.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #111111;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #e03a3c;
}

.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px; 
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111111;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--primaryColor);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background:var(--primaryColor);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #111111;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--primaryColor);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #111111;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--primaryColor);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #515151;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #c4c4c4;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--primaryColor);
  background: var(--primaryColor);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}



/* career List */
.career-detailList {
  background-color: rgba(230, 230, 230,0.5);
  padding:40px;
  border-radius:12px;
  margin: 20;
}
.career-detailList li {
  padding: 8px 0;
}

.career-list h5 a {
  font-size: 18px; font-weight: 600; color: #000; margin-bottom: 0;
}
.career-list h5 a:hover {
  color: var(--primaryColor); 
}
.career-list h5 {
  margin-bottom: 0;
}
.career-list .post-item {
  border-bottom: 1px solid rgba(199, 199, 199,0.2) ;
  padding-bottom: 10px;
}

.marqueeArea {
  height:340px; 
  overflow-y: hidden; 
  border-radius: 20px i !important; 
}
