@font-face {
  font-family: 'Calibri';
  src: url(../fonts/Calibri.eot);
  src: url(../fonts/Calibri.eot?#iefix) format('embedded-opentype'),
    url(../fonts/Calibri.ttf) format('truetype'),
    url(../fonts/Calibri.otf) format('otf'),
    url(../fonts/Calibri.woff) format('woff');
}

@font-face {
  font-family: 'Calibri_Bold';
  src: url(../fonts/Calibri_Bold.eot);
  src: url(../fonts/Calibri_Bold.eot?#iefix) format('embedded-opentype'),
    url(../fonts/Calibri_Bold.TTF) format('truetype'),
    url(../fonts/Calibri_Bold.otf) format('otf'),
    url(../fonts/Calibri_Bold.woff) format('woff');
}

:root {
  --font-default: "Calibri", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Calibri_Bold", sans-serif;
  --font-secondary: "Calibri", sans-serif;
}

/* Colors */
:root {
  --color-default: #212121;
  --color-default-light: #3a3a3a;
  --color-primary: #242321;
  --color-primary_light: #686767;
  --color-secondary: #e37900;
  --color-secondary-light: #fff9f1;
  --color-green: #58a393;
  --color-green_darh: #519385;
  --color-Lightgreen: #e9efbe;
  --color-darkgreen: #c8d86c;
  --color-orange: #fcaf48;
  --color-orange_bg: #fdf8f2;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

body {
  background-image: url(../images/logo_center_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 18px;
}

.orange_text {
  color: var(--color-orange);
}

.orange_bg {
  background-color: var(--color-orange);
}

.orange_bg_light {
  background-color: var(--color-orange_bg);
}

.green_bg {
  background-color: var(--color-green);
}

.green_dark_bg {
  background-color: var(--color-green_darh);
}

.darkgreen_bg {
  background-color: var(--color-darkgreen);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: left;
  /* padding-bottom: 60px; */
}

.section-header h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  color: var(--color-secondary);
  line-height: 32px;
}

/* .section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
} */

.section-header p {
  margin-bottom: 0;
  color: #1b1b1a;
  font-size: 22px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  /* padding: 60px 0 60px 0; */
  background-color: var(--color-primary);
  text-align: left;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: block;
  padding: 40px 0 40px;
  max-height: 180px;
}

.breadcrumbs nav ol li {
  color: var(--color-green);
}

.breadcrumbs .page-header::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.breadcrumbs .page-header h2 {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
  text-align: left;
  text-transform: uppercase;
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #fef4e7;
  padding: 10px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--color-primary);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  /* text-decoration: underline; */
  color: rgba(255, 137, 0, 0.74);
}

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

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: rgb(221 241 81 / 42%);
  height: 40px;
  font-size: 16px;
  transition: all 0.5s;
  color: var(--color-primary);
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: var(--color-primary);
  line-height: 0;
}

.topbar .contact-info a,
.topbar .contact-info span {
  /* padding-left: 5px; */
  color: var(--color-default-light);
  font-family: var(--font-primary);
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}


.topbar .social-links a {
  color: var(--color-primary);
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
}

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

.header {
  /* transition: all 0.5s; */
  z-index: 997;
  height: 98px;
  background-color: var(--color-white);
  /* overflow: hidden; */
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 80px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.header .logo img {
  max-height: 80px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li a {
    white-space: nowrap;
    padding: 6px 10px;
    margin-right: 5px;
    font-family: var(--font-primary);
    font-size: 18px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    font-weight: 500;
    color: var(--color-default-light);
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

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

  /* .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  } */

  /* .navbar a:hover, */
  .navbar li a.active,
  .navbar li a.active:focus,
  .navbar li a:hover {
    color: var(--color-primary);
    background: var(--color-orange);
    padding: 6px 10px;
    border-radius: 4px;
  }

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

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: none;
    font-weight: 500;
    color: var(--color-primary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

.sidebar_list li {
  list-style: none;
}

.sidebar_list li a {
  border-left: 3px solid var(--color-default-light);
  padding: 0px 6px;
  display: block;
  margin-bottom: 8px;
}

.sidebar_list li a.active,
.sidebar_list li a.active:focus,
.sidebar_list li a:hover {
  color: var(--color-orange);
  border-left-color: var(--color-orange);
  font-weight: bold;
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 131, 116, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 18px;
    /* font-weight: 600; */
    color: rgba(255, 255, 255, 0.9);
    /* white-space: nowrap; */
    transition: 0.3s;
    background: #007162;
    border-bottom: 1px solid #028a78;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
    background: #014d43;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 10px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #009d8b;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 0;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 10px;
    z-index: 9999;
  }

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

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 106, 93, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

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

ul.Ul_list li {
  padding: 0 0 10px 27px;
  position: relative;
  color: var(--font-primary);
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}

ul.Ul_list i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-secondary);
}

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

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

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

.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: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;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

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

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: linear-gradient(rgba(12, 87, 71, 0.95), rgba(39, 149, 125, 0.88)), url("../images/cta-bg.jpg") center center;
  background-size: cover;
  padding: 50px 60px;
  /* border-radius: 15px; */
  overflow: hidden;
}

.call-to-action {
  position: absolute;
  width: 100%;
  top: -100px;
  left: 0;
  right: 0;
  z-index: 9;
}

.call-to-action h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0px;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.call-to-action p {
  color: #ffffffb3;
  margin-bottom: 20px;
  font-size: 18px;
}

.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

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

.call-to-action .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);
}

.call-to-action .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;
  animation: none;
  border-radius: 0;
}

.call-to-action .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 48px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
.services {
  padding: 60px 0;
}

.services .service-item {
  /* padding: 40px; */
  background: #fff;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin: 0px 10px;
}

.services .service_cont {
  padding: 10px 25px 20px;
  position: relative;
}

.services .service_cont::after {
  position: absolute;
  content: '';
  width: 84%;
  height: 40px;
  top: -50px;
  right: 0px;
}

.service_cont span {
  position: absolute;
  right: 0px;
  top: -50px;
  z-index: 1;
  background-color: var(--color-orange);
  padding: 8px 15px;
}

.services .service-item img {
  width: 100%
}

.services .service-item .icon {
  width: 100%;
  height: 35px;
  position: relative;
  /* margin-bottom: 50px; */
  z-index: 0;
}

.services .service-item .icon i {
  color: var(--color-default);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  /* position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #eeeeee;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s; */
  position: absolute;
  content: "";
  height: 100%;
  width: 104%;
  background: #58a393;
  z-index: 1;
  top: -19px;
  left: -8px;
  transition: 0.3s;
  transition: ro;
  transform: rotate(-6deg);
}

.services .service-item .icon:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 104%;
  background: #fff;
  z-index: 1;
  top: 0px;
  left: -8px;
  transition: 0.3s;
  transform: rotate(-10deg);
}

.services .service-item h3 {
  color: var(--color-green_darh);
  font-weight: 500;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #eeeeee;
  transition: 0.3s;
  font-family: var(--font-primary);
}

.services .service-item p {
  /* line-height: 24px;
  font-size: 16px; */
  margin-bottom: 0;
  text-align: justify;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-secondary);
  text-align: right;
  width: 100%;
}

.ser_btm_sec {
  height: 140px;
  overflow: hidden;
}

/* .services .service-item:hover .icon:before {
  background: #00b6a1;
} */

/* .services .service-item:hover h3 {
  border-color: var(--color-primary);
} */

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials {
  background-color: #f9fbed;
  padding-bottom: 150px;
}

.testimonials_details_sec {
  background-color: transparent;
  padding-bottom: 50px;
}

/* .testimonials .testimonial-wrap {
  padding-left: 10px;
} */

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 25px;
  margin: 0px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #0c5747;
  border-radius: 10px;
  overflow: hidden;
}

.testimonials .testimonial-item:hover {
  background: #26806c;
}

.testimonials .testimonial-item .testimonial-img {
  width: 65px;
  border-radius: 5px;
  margin-right: 14px;
  background: #fff;
  padding: 5px;
  z-index: 1;
  box-shadow: -6px 6px 0px #0c5747;
}


.testimonials .testimonial-detail {
  border-radius: 0;
  margin-bottom: 15px;
  padding: 10px 15px;
  text-align: left;
  background: #fdfdfd;
  border: 1px solid #eaeaea;
}

.testimonials .testimonial-detail .testimonial-img {
  width: 65px;
  border-radius: 5px;
  margin-right: 14px;
  background: #fff;
  padding: 5px;
  z-index: 1;
}


.testimonials .testimonial-detail .Test_name {
  background: #dddddd29;
  border-bottom: 1px solid #ddd;
  padding: 10px 10px;
  margin-bottom: 10px;
}

.testimonials .testimonial-detail h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
}

.testimonials .testimonial-detail h4 {
  font-size: 16px;
  color: var(--color-default);
  margin: 0;
}

.testimonials .testimonial-detail p {
  color: var(--color-default);
}

/* .testimonial-wrap_sec {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
} */

.testimonials .testimonial-detail:nth-child(2n) {
  background-color: rgba(232, 234, 242, .4);
  padding: 10px 15px;
}

.Text_img::before {
  content: '';
  position: absolute;
  left: 0px;
  bottom: -50px;
  background-image: url(../images/tm_icon.png);
  background-repeat: no-repeat;
  z-index: 0;
  width: 133px;
  height: 160px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 16px;
  color: #fff;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #114a3e;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  color: #fff;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 25px;
  height: 8px;
  background-color: #979790;
  opacity: 1;
  border-radius: 0px;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e68b21;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 20px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# team Section
--------------------------------------------------------------*/

.team {
  background-color: #fff;
}

.team .testimonial-wrap {
  padding-left: 10px;
}

.team .testimonial-item {
  box-sizing: content-box;
  padding: 25px;
  margin: 0px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #0c5747;
  border-radius: 10px;
  overflow: hidden;
}

.team .testimonial-item .testimonial-img {
  width: 65px;
  border-radius: 5px;
  margin-right: 14px;
  background: #fff;
  padding: 5px;
  z-index: 1;
  box-shadow: -6px 6px 0px #0c5747;
}

.Text_img::before {
  content: '';
  position: absolute;
  left: 0px;
  bottom: -50px;
  background-image: url(../images/tm_icon.png);
  background-repeat: no-repeat;
  z-index: 0;
  width: 133px;
  height: 160px;
}

.team .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.team .testimonial-item h4 {
  font-size: 16px;
  color: #fff;
  margin: 0;
}

.team .testimonial-item .stars {
  margin: 10px 0;
}

.team .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.team .testimonial-item .quote-icon-left,
.team .testimonial-item .quote-icon-right {
  color: #114a3e;
  font-size: 26px;
  line-height: 0;
}

.team .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.team .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.team .testimonial-item p {
  font-style: italic;
  color: #fff;
}

.team .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.team .swiper-pagination .swiper-pagination-bullet {
  width: 25px;
  height: 8px;
  background-color: #979790;
  opacity: 1;
  border-radius: 0px;
}

.team .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e68b21;
}

@media (max-width: 767px) {
  .team .testimonial-wrap {
    padding-left: 0;
  }

  .team .testimonial-item {
    padding: 20px;
    margin: 15px;
  }

  .team .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  background: var(--color-primary);
  padding: 60px 0 0 0;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-weight: 400;
  margin-bottom: -2px;
  padding-top: 10px;
}

.hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero .btn-get-started:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-watch-video {
  font-size: 18px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

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

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 16px;
  }
}

.hero .icon-boxes {
  padding-bottom: 60px;
}

@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: #fff;
  }
}

.hero .icon-box {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: #008d7d;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.hero .icon-box .title a {
  color: #fff;
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
}

.hero .icon-box:hover {
  background: #009786;
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 16px;
  background-color: var(--color-primary);
  /* padding: 170px 0px 0; */
  color: white;
  position: relative;
  /* overflow: hidden; */
  padding: 60px 0 0px;
}

.footer_inner {
  padding: 40px 0px 0 !important;
}

/* .footer::before {
  /* content: ''; */
/* background-image: url(../images/footer_rht.png);
  background-repeat: no-repeat; */
/* position: absolute;
  right: 0;
  bottom: 0; */
/* width: 680px; */
/* height: 550px; */
/* height: 100%;
  width: calc(100% - 50%);
  background: #282828;
  border-radius: 85px 0 0 219px;
  z-index: 0; */
/* } */

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 24px;
  /* font-weight: 700; */
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 16px;
  /* font-family: var(--font-primary); */
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  /* border-radius: 50%; */
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
  z-index: 2;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 1px;
  color: #f0f0f0;
}

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  /* color: rgba(0, 131, 116, 0.8); */
  /* font-size: 12px; */
  line-height: 0;
}

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

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

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  display: flex;
}

.footer .footer-links ul a:hover {
  color: var(--color-darkgreen);
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: left;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

.Top_header i.Mail_icon,
.Top_header i.phone_icon {
  padding: 5px 8px;
  background: #c8d86c;
  margin-right: 5px;
}

a.btn-get-started {
  font-size: 14px;
  display: inline-block;
  padding: 5px 8px;
  border-radius: 5px;
  transition: 0.3s;
  color: var(--color-primary);
  background: var(--color-orange);
  line-height: 22px !important;
  margin-left: 20px !important;
  text-transform: uppercase;
  font-weight: bold;
}

a.btn-get-started:hover {
  background-color: var(--color-secondary);
  color: var(--color-default) !important;
}

.header.sticked .logo img {
  max-height: 75px;
  transition: all 0.5s;
}

.header_sec {
  position: relative;
  height: 138px;
}

.header_sec .menu-area::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fef4e7;
  height: 130%;
  width: calc(100% - 38%);
  border-radius: 0 0 0 150px;
  z-index: -1;
}

.Ul_list li {
  background: url(../images/List_arrow.png) no-repeat scroll left 3px rgba(0, 0, 0, 0);
  background-size: auto;
  background-size: 18px;
}

.Login-box,
.reg-box {
  /* background: url(../images/login-box.png) center center;
  background-size: auto, auto;
  background-size: cover;
  overflow: hidden; */
  border-radius: 25px;
  height: 180px;
  padding: 20px 20px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.Login-box {
  background-color: #e1ec98;
}

.reg-box {
  background-color: #ffe7cb;
}

.Login-box::after,
.reg-box::after {
  content: '';
  bottom: 0px;
  position: absolute;
  left: 0px;
  background-repeat: no-repeat;
  height: 110px;
  width: 100%;
}

.Login-box::after {
  background: url(../images/login-bottom.png) left center;
}

.reg-box::after {
  background: url(../images/reg_bottom.png) left center;
}

/* .CPAQ_icon {
  position: relative;
}

.CPAQ_icon::after {
  content: '';
  border-radius: 50%;
  background-color: #c8d86c;
  width: 120px;
  height: 120px;
  left: -26px;
  top: -26px;
  position: absolute;
} */


.CPAQ_icon .icon,
.Reg_icon .icon {
  width: 60px;
  height: 60px;
  position: relative;
}

.CPAQ_icon .icon img,
.Reg_icon .icon img {
  z-index: 2;
  position: relative;
  width: 55px;
}

.CPAQ_icon .icon:before,
.Reg_icon .icon::before {
  position: absolute;
  content: "";
  height: 150px;
  width: 150px;
  border-radius: 50%;
  z-index: 1;
  top: -60px;
  right: -25px;
}

.CPAQ_icon .icon:before {
  background: #c8d86c;
}

.Reg_icon .icon::before {
  background: #fdc365;
}

a.Login_CPAQ_btn,
a.REg_CPAQ_btn {
  border: 0;
  padding: 8px 15px;
  color: var(--color-primary);
  transition: 0.4s;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-size: 16px;
}

a.Login_CPAQ_btn {
  background: #aebe51;
}

a.REg_CPAQ_btn {
  background: #e8aa45;
}

a.Login_CPAQ_btn:hover {
  background: #899b1e !important;
  color: var(--color-primary) !important;
}

a.REg_CPAQ_btn:hover {
  background: #d2932c !important;
  color: var(--color-primary) !important;
}

.Login-box h5,
.reg-box h5 {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-default);
}

.Login-box p,
.reg-box p {
  font-size: 16px;
  line-height: 18px;
}

a.readmore_btn {
  border: 0;
  padding: 12px 15px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  background: #55a392;
  font-size: 16px;
}

a.readmore_btn:hover {
  background: #419986;
}

.hero-counter-wrap {
  /* gap: 15px; */
  background: #ffffff57;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  min-width: 165px;
  margin-right: 10px;
  border: 1px solid #eaeaea;
}

.hero-counter-wrap .details {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  padding: 0px 10px;
}


.hero-counter_icon {
  width: 58px;
  height: 74px;
  line-height: 74px;
  background-color: #fff;
  text-align: center;
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  border-left: 3px solid #ef8a02;
}

.hero-counter_number {
  font-size: 28px;
  font-weight: 700;
  color: #ef8a02;
}


.hero-counter_text {
  font-size: 13px;
  font-weight: 400;
  display: block;
  margin-bottom: 0px;
  text-transform: uppercase;
  font-family: var(--font-primary);
  color: var(--color-default-light);
  margin-top: 5px;
}

.latest_news {
  padding: 0px;
  background-color: var(--color-green_darh)
}

.latest_news a {
  font-size: 18px;
}

.news {
  width: 280px;
  position: relative;
}

.news::after {
  content: '';
  width: 22px;
  height: 22px;
  position: absolute;
  background-color: #519385;
  transform: rotate(40deg);
  right: -6px;
  top: 30%;
  box-shadow: 2px -2px 0px #519b8e;
}

.news span {
  font-size: 22px;
  text-transform: uppercase;
  z-index: 1;
}

.news span::before {
  content: '';
  position: relative;
  background-image: url(../images/bullhorn_icon.png);
  width: 48px;
  height: 36px;
  background-size: 38px;
  background-repeat: no-repeat;
}

.news-scroll {
  padding: 0px 20px;
}

.news-scroll a {
  text-decoration: none;
  color: #fff;
}

.news-scroll a:hover {
  color: var(--color-darkgreen);
}

.dot {
  height: 12px;
  width: 2px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 0px !important;
  background-color: #c8d86c;
  display: inline-block;
}

.about_sec {
  position: relative;
}

.about_sec::after {
  content: '';
  background-image: url(../images/about_top_bg.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 443px;
  height: 223px;
}

.inner_section {
  position: relative;
}

.inner_section::after {
  content: '';
  background-image: url(../images/about_top_bg.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 443px;
  height: 223px;
  z-index: -1;
}

.Title_sec {
  /* text-align: center; */
  padding-bottom: 60px;
}

.Title_sec_inn {
  padding-bottom: 15px;
}

.Title_sec h2,
.Title_sec_inn h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 32px;
}

.Title_sec p {
  margin-bottom: 0;
  color: var(--color-primary_light);
  font-size: 22px;
  text-transform: uppercase;
}

/* .service-item .ser_btm_sec::after {
  content: '';
  bottom: 0px;
  position: absolute;
  left: 0px;
  background-repeat: no-repeat;
  height: 100px;
  width: 100%;
  background-color: #58a393;
} */

/* .Text_img {
  width: 100px;
  height: 100px;
} */


/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
.team_sec {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.team_sec::after {
  content: '';
  background-image: url(../images/teamt_top_bg.png);
  background-repeat: no-repeat;
  position: absolute;
  left: -0px;
  top: 0px;
  width: 297px;
  height: 443px;
  /* transform: rotate(270deg); */
}

.team_sec .service-item {
  /* padding: 40px; */
  background: #fff;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin: 0px 10px;
  border: 1px solid #ddd;
}

.team_list .service-item {
  /* padding: 40px; */
  background: #fff;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin: 0px;
  border: 1px solid #ddd;
}

.team_count {
  padding: 20px;
}

.team_sec .service-item img,
.team_list .service-item img {
  width: 100%
}

.team_sec .service-item .icon {
  width: 100%;
  height: 35px;
  position: relative;
  /* margin-bottom: 50px; */
  z-index: 0;
}

.team_sec .service-item h3,
.team_list .service-item h3 {
  color: var(--color-green_darh);
  font-weight: 500;
  padding-bottom: 0px;
  margin-bottom: 0px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  transition: 0.3s;
  font-family: var(--font-primary);
}

.team_sec .service-item p,
.team_list .service-item p {
  margin-bottom: 0;
  /* text-align: justify; */
  /* line-height: 20px; */
}

.team_sec .service-item .readmore,
.team_list .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-secondary);
  text-align: right;
  width: 100%;
}

.ser_btm_sec1 {
  height: 200px;
  overflow: hidden;
  border-bottom: 3px solid #ffb157;
}

/* .team_sec .swiper-slide {
  padding-left: 10px;
} */

.team_count p span {
  font-weight: bold;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 520px;
  gap: 10px;
}

.newsletter-form .form-group {
  position: relative;
  display: inline-block;
  width: 100%;
}

.newsletter-form input {
  background-color: #fff;
  border: 1px solid #fff;
  margin-bottom: 0;
  height: 48px;
  border-radius: 5px;
  padding-left: 52px;
}

.newsletter-form .form-group>i {
  top: 15px;
  color: #848484;
  position: absolute;
  font-size: 18px;
  font-weight: 400;
  left: 25px;
  max-width: 16px;
}

.newsletter-form .th-btn {
  min-width: 120px;
  border-radius: 5px;
  box-shadow: none;
  margin-left: -50px;
  flex: none;
  -webkit-box-flex: 0;
}

[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

.th-btn {
  position: relative;
  font-family: var(--font-primary);
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-align: center;
  background-color: #c8d86c;
  color: #1b1b1a;
  font-size: 16px;
  line-height: 1;
  padding: 10px 29px;
  letter-spacing: .5px;
}


.btn-play_store {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-flex;
  padding: 6px 18px;
  border-radius: 50px;
  transition: 0.3s;
  color: #fff;
  background: rgb(23, 23, 23);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.btn-play_store i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
}

.btn-play_store:hover i {
  color: #fff;
}

.btn-play_store p {
  font-size: 12px;
  font-weight: normal;
  letter-spacing: .5px;
  padding: 0px;
  margin: 0px;
  font-family: var(--font-primary);
}

.play_store_icon {
  text-align: center;
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}

.play_store_detail {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  padding: 0px 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.play_store_detail:hover {
  color: #fff;
}

.play_store_detail h3 {
  margin: 0px;
  font-size: 18px;
  font-family: var(--font-primary);
}

.ml25 {
  margin-left: 25px;
}

.playtore_Sec h2 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
  color: var(--color-default);
}

.download_detail {
  padding: 0px 18px !important;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.download_detail:hover {
  color: #fff;
}

.fooder-top {
  position: relative;
}

.copyright_sec {
  background-color: #191919;
  padding: 10px 0px;
}

.quick-links {
  z-index: 2;
}

.quick-links a,
.copyright_sec a {
  z-index: 2;
  color: var(--color-white);
  padding: 0px 5px;
}

.quick-links a:hover,
.copyright_sec a:hover {
  color: var(--color-darkgreen);
}

#testimonial_area {
  padding: 10% 0;
}

.socials {
  margin-top: 30px;
}

.socials i {
  margin: 0 10px;
  color: #0a69ed;
  font-size: 18px;
}

#testimonial_area .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

#testimonial_area .owl-prev,
#testimonial_area .owl-next {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #0a69ed;
  border-radius: 50%;
  text-align: center;
  background: #fff;
  position: absolute;
}

#testimonial_area .owl-prev {
  left: -60px;
  top: -30px;
}

#testimonial_area .owl-next {
  right: -60px;
  top: -30px;
}

#main {
  position: relative;
}

.count_section {
  position: absolute;
  width: 100%;
  top: -150px;
  left: 0;
  right: 0;
  z-index: 1;
}

.banner_section {
  position: relative;
  overflow: hidden;
}

/* .banner_section:after {
  position: absolute;
  background-color: #ecececb3;
  width: 50%;
  height: 140%;
  content: '';
  top: -60px;
  left: 0px;
  z-index: 1;
  width: calc(100% - 42%);
  border-radius: 0 250px 280px 0;
} */

/* .w50.img-1 { */
/* position: relative; */
/* } */

.w50.img-1::after {
  /* .banner_section:after { */
  content: "";
  position: absolute;
  background-image: url("../images/banner_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 60%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.txt_bnt_text {
  position: absolute;
  width: 100%;
  top: 6%;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: left;
}

.txt_bnt_text h5 {
  color: var(--color-default);
  font-size: 38px;
  text-transform: uppercase;
}

.txt_bnt_text p {
  color: var(--color-default);
  font-size: 18px;
  line-height: 24px;
}

.carousel-control-prev span,
.carousel-control-next span {
  background-color: #b7c564;
  position: absolute;
  bottom: 15px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 26px;
  color: var(--color-primary);
  font-weight: bold;
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
  z-index: 2;
}

.carousel-control-prev {
  right: 45px;
  left: inherit;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-primary);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0px
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next,
.swiper-button-next,
.swiper-rtl .swiper-button-prev:hover {
  background: #76b5a5;
  width: 26px;
  height: 40px;
  color: #fff;
  opacity: 0.3;
}

.swiper-button-prev:hover,
.swiper-rtl .swiper-button-next,
.swiper-button-next:hover,
.swiper-rtl .swiper-button-prev:hover {
  background: #76b5a5;
  width: 26px;
  height: 40px;
  color: #fff;
  opacity: 1;
}


.w50 {
  width: 50%
}

.w40 {
  width: 40%
}

.img-1 img {
  filter: blur(6px) grayscale(10%);
  -webkit-filter: blur(6px) grayscale(10%);
  -moz-filter: blur(6px) grayscale(10%);
}


.about_sec .icon-boxes {
  padding-bottom: 60px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0px;
  right: auto;
}

/*Search*/
.search_li {
  margin-right: 10px;
}

.search_li .search {
  width: 38px;
  height: 24px;
  position: relative;
}

.search_li .search_input {
  background-color: #2f2f2f;
  border: none;
  width: 0px;
  transition: all .3s ease;
  position: absolute;
  right: 3px;
  top: -5px;
  font-size: 16px;
  height: 35px;
  border-radius: 3px;
  color: #fff;
}

.search_li .search_label {
  background-color: var(--color-orange);
  padding: 6px 11px;
  color: var(--color-default-light);
  z-index: 1;
  position: absolute;
  top: -6px;
  right: 0;
  border-radius: 4px;
}

.search_li .search_input:hover,
.search_li .search_input:focus,
.search_li .search_input.expand {
  padding: 5px 10px;
  width: 240px;
}


.page-header {
  position: relative;
}

.page-header .container {
  /* position: absolute; */
  /* bottom: 13px; */
  /* right: 0px; */
  /* left: 0px; */
  z-index: 1;
}

/* .page-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: #2f2f2fe8;
  height: 80px;
  width: calc(100% - 800px);
  border-radius: 0 161px 0px 0px;
} */

.page-header::after {
  content: '';
  position: absolute;
  left: -10%;
  bottom: 0;
  width: 60%;
  height: 100%;
  background: rgba(255, 137, 0, 0.74);
  transform: skew(25deg);
  height: 100%;
}





/****Programs****/

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.programs_sec .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.programs_sec .blog-details .post-img {
  margin: -30px -30px 30px -30px;
  overflow: hidden;
  border-radius: 5px;
}

.programs_sec .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 0px 0 0 0;
  color: var(--color-default);
}

.programs_sec .blog-details .title-1 {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0px 0 0 0;
  color: var(--color-default);
}

.programs_sec .blog-details .content {
  margin-top: 20px;
}

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

.programs_sec .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.03);
  padding: 30px;
  position: relative;
  text-align: center;
  margin: 10px 0;
}

.programs_sec .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.2;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
}

.programs_sec .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.programs_sec .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

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

.programs_sec .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.programs_sec .blog-details .meta-top i {
  font-size: 18px;
  margin-right: 8px;
  line-height: 0;
  color: #dd004d;
}

.programs_sec .blog-details .meta-top a {
  color: #ce7c0f;
  font-size: 18px;
  display: inline-block;
  line-height: 1;
}

.programs_sec .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.programs_sec .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.programs_sec .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.programs_sec .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.programs_sec .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 16px;
}

.programs_sec .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.programs_sec .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 16px;
}

.programs_sec .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.programs_sec .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.programs_sec .blog-details .meta-bottom .share {
  font-size: 18px;
}

.programs_sec .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.programs_sec .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.programs_sec .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.programs_sec .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.programs_sec .post-author .social-links {
  margin: 0 10px 10px 0;
}

.programs_sec .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.programs_sec .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.programs_sec .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.programs_sec .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.programs_sec .sidebar .sidebar-item+.sidebar-item {
  margin-top: 20px;
}

.programs_sec .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 5px;
}

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

.programs_sec .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.programs_sec .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 18px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 5px;
  line-height: 0;
}

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

.programs_sec .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

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

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

.programs_sec .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.programs_sec .sidebar .categories ul a:hover,
.programs_sec .sidebar .categories ul a.active {
  color: var(--color-secondary)
}

.programs_sec .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 16px;
}

.programs_sec .sidebar .recent-posts .post-item+.post-item {
  margin-top: 8px;
}

.programs_sec .sidebar .recent-posts img {
  width: 80px;
  float: left;
  border: 1px solid #ddd;
}

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

.programs_sec .sidebar .recent-posts h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

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

.programs_sec .sidebar .recent-posts time {
  display: block;
  /* margin-left: 95px; */
  font-style: italic;
  font-size: 16px;
  color: rgba(34, 34, 34, 0.4);
}

.post-item {
  background: rgba(210, 210, 210, 0.16);
  border-bottom: #fef4e7 1px dotted;
  padding: 5px 10px;
}

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

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

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

.programs_sec .sidebar .tags ul a {
  color: #555555;
  font-size: 16px;
  padding: 4px 10px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 5px;
}

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

.programs_sec .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.programs_sec .comments {
  margin-top: 30px;
}

.programs_sec .comments .comments-count {
  font-weight: bold;
}

.programs_sec .comments .comment {
  margin-top: 30px;
  position: relative;
}

.programs_sec .comments .comment .comment-img {
  margin-right: 14px;
}

.programs_sec .comments .comment .comment-img img {
  width: 60px;
}

.programs_sec .comments .comment h5 {
  font-size: 18px;
  margin-bottom: 2px;
}

.programs_sec .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.programs_sec .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.programs_sec .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.programs_sec .comments .comment h5 .reply i {
  font-size: 20px;
}

.programs_sec .comments .comment time {
  display: block;
  font-size: 16px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.programs_sec .comments .comment.comment-reply {
  padding-left: 40px;
}

.programs_sec .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.programs_sec .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.programs_sec .comments .reply-form p {
  font-size: 16px;
}

.programs_sec .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 16px;
}

.programs_sec .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.programs_sec .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 16px;
}

.programs_sec .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.programs_sec .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.programs_sec .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.programs_sec .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}

.about_sec .about-page-img-holder {
  margin-top: 12px;
}

.about_sec .about-page-img-holder img {
  border-radius: 10px;
}

.about_sec .about-page-content-holder .content-box {
  margin-bottom: 30px;
}

.about_sec .about-page-content-holder .content-box h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 32px;
}

.img-responsive {
  width: 100%;
}


.about_sec_icons .icon-box {
  padding: 30px 30px;
  position: relative;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
  margin: 0px 0px;
}

.about_sec_icons .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.about_sec_icons .icon-box .title a {
  color: var(--color-primary);
  transition: 0.3s;
}

.about_sec_icons .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  background: #58a493;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.sidebar .sidebar-item ul li span:before {
  content: "\f135";
  position: absolute;
  font-family: bootstrap-icons !important;
}

.sidebar .sidebar-item ul li a {
  padding-left: 20px;
}

.sidebar .sidebar-item ul li {
  position: relative;
  color: var(--font-primary);
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}

.programs_sec .sidebar .categories ul a {
  display: block;
  padding-left: 20px;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  /* background-color: #2f9983;
  height: 100%;
  padding: 0px 15px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1); */
  background: linear-gradient(rgba(12, 87, 71, 0.95), rgba(39, 149, 125, 0.88)), url("../images/cta-bg.jpg") center center;
  background-size: auto, auto;
  background-size: cover;
  padding: 20px 15px;
  overflow: hidden;
}

.contact .info-item {
  width: 100%;
  background-color: #003c2f96;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  margin: 15px 10px;
}

/* .contact .info-item:last-child {
  margin-bottom: 0;
} */

.contact .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

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

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.contact .info-item:hover i {
  background: #fff;
  color: var(--color-primary);
}

.contact .form_page {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
}

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

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

.contact .form_page .error-message br+br {
  margin-top: 25px;
}

.contact .form_page .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

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

.contact .form_page .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .form_page input,
.contact .form_page textarea {
  border-radius: 0;
  box-shadow: none;
}

.contact .form_page input[type=text]:focus,
.contact .form_page input[type=email]:focus,
.contact .form_page textarea:focus {
  border-color: var(--color-primary);
}

.contact .form_page textarea {
  padding: 10px 12px;
}

.contact .form_page button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 8px 22px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .form_page button[type=submit]:hover {
  background: rgba(0, 131, 116, 0.8);
}

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

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

.login_sec {
  padding: 30px 0px;
}

.login_sec .form_page {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
}

.authentication {
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
  display: flex;
  width: 100%;
}

.authentication .authentication-inner {
  max-width: 400px;
  position: relative;
}

.authentication .authentication-reg {
  max-width: 800px;
  position: relative;
}

.login_sec .form_page button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 8px 22px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.login_sec .form_page button[type=submit]:hover {
  background: rgba(0, 131, 116, 0.8);
}

/* -----------------------------------
      Gallery Section
--------------------------------------*/
/* .portfolio-section {
      padding: 50px 0;
      background-color: #000;
    } */

.portfolio-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.portfolio-menu {
  text-align: center;
}

.control {
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border: 1px solid #343a40;
  border-radius: 3px;
  margin: 5px;
  cursor: pointer;
  -webkit-transition: all 05s ease;
  -moz-transition: all 05s ease;
  -ms-transition: all 05s ease;
  -o-transition: all 05s ease;
  transition: all 0.5s ease;
}

.control:hover {
  background: #343a40;
}

.mixitup-control-active {
  color: #fff;
  background: #343a40;
}

.fancybox-container button:focus {
  outline: 0;
  box-shadow: none;
}

/* .portfolio-item {
      padding-top: 30px;
    } */

.pd {
  padding: 0;
  padding: 10px;
}

.pd img {
  height: 180px;
  transition: all 0.5s;
  width: 100%;
}

.portfolio-overlay {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.86);
  width: 94%;
  height: 90%;
  text-align: center;
  visibility: hidden;
  transition: all 0.5s;
  transform: scale(0);
}

.portfolio-overlay p,
.portfolio-overlay a {
  position: relative;
  z-index: 4;
}

.portfolio-overlay::before {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  left: 10%;
  top: 10%;
  transition: 50ms height ease 150ms;
  z-index: 3;
}

.portfolio-overlay::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  right: 10%;
  bottom: 10%;
  transition: 100ms width ease 200ms;
  z-index: 3;
}

.portfolio-item:hover .portfolio-overlay::before {
  width: 80%;
  height: 80%;
  border-top: 1px solid #50977f;
  border-right: 1px solid #50977f;
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}

.portfolio-item:hover .portfolio-overlay::after {
  width: 80%;
  height: 80%;
  border-bottom: 1px solid #50977f;
  border-left: 1px solid #50977f;
  transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}

.portfolio-item li:hover .portfolio-overlay {
  visibility: visible;
  transform: scale(1);
}

.portfolio-overlay .category {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.portfolio-overlay .magnify-icon {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background: #50977f;
  margin: 0 5px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
}

.portfolio-overlay .magnify-icon:hover {
  background: #000;
}

.portfolio-overlay .magnify-icon p span i {
  font-size: 15px;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
}

.fancybox-caption {
  text-align: center;
}



.programs_sec .blog-details .News_block {
  margin-top: 20px;
  color: #6c757d;
}

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

.programs_sec .blog-details .News_block ul li+li {
  padding-left: 20px;
}

.programs_sec .blog-details .News_block i {
  font-size: 18px;
  margin-right: 8px;
  line-height: 0;
  color: #f39526;
}

.programs_sec .blog-details .News_block a {
  color: #717171;
  font-size: 18px;
  display: inline-block;
  line-height: 1;
}

.sidebar-item {
  border-bottom: #595959 1px dotted;
  padding-right: 3px;
  padding-bottom: 5px;
}

a.readmore_detail {
  /* margin-top: 15px; */
  color: var(--color-secondary);
}

a.readmore_detail:hover {
  color: var(--color-primary_light);
}

blockquote h4 {
  font-size: 22px;
}

.programs_sec .blog-details .content.block-Sec-content {
  margin-top: 0px;
}


.block-Sec-content .news_lock {
  border-radius: 0;
  margin-bottom: 0;
  padding: 10px 15px;
  text-align: justify;
}

.block-Sec-content .news_lock:nth-child(2n) {
  background-color: rgba(232, 234, 242, .4);
  padding: 10px 15px;
  border: 1px dashed #CCC;
  border-right-color: rgb(204, 204, 204);
  border-right-style: dashed;
  border-right-width: 1px;
  border-left-color: rgb(204, 204, 204);
  border-left-style: dashed;
  border-left-width: 1px;
  border-left: none;
  border-right: none;
}

/* section.programs_sec {
  padding: 15px 0px;
} */

.back_btn {
  display: flex;
  color: var(--color-primary);
  width: 100%;
}

.back_btn i {
  padding-right: 5px;
}

a.back_btn:hover {
  color: var(--color-orange);
}

.programs_sec .search-details .content {
  margin-top: 0px;
}

.programs_sec .search-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.search-details .block-Sec-content .news_lock {
  text-align: left;
}

.search_url p span {
  font-size: 12px;
  display: block;
}

.search_bar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
}

.search_bar .search-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.search_bar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 5px;
}

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

.search_bar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 18px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 0px 5px 5px 0px;
  line-height: 0;
}

.Profile_Img_sc {
  border: 1px solid #ddd;
  border-bottom: 5px solid #fcaf48;
  border-radius: 5%;
  width: 220px;
}

.bxs {
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.05);
  margin: 25px 10px;
}

.team_List_details .team_details h3 {
  color: var(--color-green_darh);
  font-weight: 500;
  padding-bottom: 0px;
  margin-bottom: 0px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  transition: 0.3s;
  font-family: var(--font-primary);
}

.team_List_details .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgb(162, 162, 162);
  font-size: 18px;
  color: rgb(108, 108, 108);
  margin-right: 10px;
  transition: 0.3s;
}

.team_List_details .social-links a:hover {
  color: #419986;
  border-color: #419986;
}


.playtore_Sec {
  font-size: 16px;
  /* background-color: var(--color-primary); */
  background-color: #f1f3a8;
  padding: 170px 0px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.footer_inner {
  padding: 40px 0px 0 !important;
}

.playtore_Sec::before {
  content: '';
  /* background-image: url(../images/footer_rht.png);
  background-repeat: no-repeat; */
  position: absolute;
  right: 0;
  bottom: 0;
  /* width: 680px; */
  /* height: 550px; */
  height: 100%;
  width: calc(100% - 50%);
  background: #f2f2f2;
  border-radius: 85px 0 0 219px;
  z-index: 0;
}

.foot_read_more {
  color: var(--color-darkgreen);
}

.foot_read_more:hover {
  color: #d0c6b8;
}

.profile_read_more {
  color: var(--color-secondary);
}

.profile_read_more:hover {
  color: #d0c6b8;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 20px 30px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: #555555;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 30px auto;
  width: 70px;
  height: 70px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: #87c1bb;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: #d2eeeb;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--color-secondary);
  font-weight: 700;
  font-family: var(--font-secondary);
  margin-bottom: 0;
  text-align: center;
}

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

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
  font-weight: 400;
}

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

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: top;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

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

.pricing .buy-btn {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  color: var(--color-primary);
  border: 1px solid rgba(0, 131, 116, 0.2);
  transition: none;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  /*! border: 3px solid var(--color-primary); */
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

.text-right {
  text-align: right;
}

a.edit_btn {
  border: 0;
  padding: 6px 10px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  background: #55a392;
  font-size: 16px;
}

a.edit_btn:hover {
  background: #419986;
  color: #fff;
}

a.pdf_btn {
  border: 0;
  padding: 4px 8px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  background: #a00;
  font-size: 13px;
}

a.pdf_btn:hover {
  background: #770303;
  color: #fff;
}

.sidebar_list .sidebar-item ul li {
  position: relative;
  color: var(--font-primary);
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  list-style: none;
}

.Management_sec .icon-box {
  padding: 30px 15px;
  position: relative;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
  margin: 0px 0px;
}

.Management_sec .icon-box:hover {
  background-color: #faecdc;
}

.Management_sec .icon-box .icon {
  margin-bottom: 9px;
  padding-top: 13px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 26px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  background: #58a493;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.Management_sec .icon-box .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.Management_sec .icon-box .title a {
  color: var(--color-primary);
  transition: 0.3s;
}

.Manage_list .icon-box {
  padding: 15px 30px;
  position: relative;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: left;
  margin: 0px 0px;
}

.Manage_list .icon-box:hover {
  background-color: #faecdc;
}


.Manage_list .icon-box .title {
  margin-bottom: 0px;
  font-size: 24px;
  font-weight: 500;
}

.Manage_list .icon-box .title a {
  color: var(--color-primary);
  transition: 0.3s;
}

.Manage_list .icon-box h5 {
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 18px;
}

.tpink {
  color: #dd004c;
}

a.fs14 {
  font-size: 16px;
  color: #212121;
}

a.fs14:hover {
  color: #dd004c;
}


/* Sticky our navbar on window scroll */
#sidebar-nav.sticky {
  position: fixed;
  top: 120px;
}

.examTitleDetailsContainer {
  position: relative;
}

.examTitleDetailsContainer .examTitleDetails {
  position: absolute;
  width: 90%;
  bottom: 0;

}

.examDetails {}

.examDetails h2 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
}

.examDetails h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  background-color: #fcaf48;
}

.examDetails p {
  margin-bottom: 0.7rem;
  line-height: 1.5rem
}

.examDetails table th {
  background-color: #fcaf48;
  padding: 5px 10px;
  text-align: center;
}

.examDetails table td {
  border: 1px solid #ccc;
  padding: 5px 10px;
}

.header_sec.text_page_inner,
.header.text_page_inner.sticked {
  height: 98px !important;
}

.user_list_img {
  background-color: var(--color-orange);
  padding: 5px 10px;
  color: var(--color-default-light);
  border-radius: 4px;
}

.user_list_img:hover,
.user_list_img:first-child:active,
.user_list_img.btn.show {
  color: var(--color-default-light);
  background-color: var(--color-secondary);
  border-color: var(--bs-btn-hover-border-color);
}

.student_profile {
  padding: 0px;
  font-size: 22px;
  margin: 0px;
  text-transform: uppercase;
}

a.readmore_link {
  color: #359984;
  text-decoration: underline;
}

a.readmore_link:hover {
  color: var(--color-default-light)
}

.Manage_list .icon-box2:hover {
  background-color: #fff;
}


.reg_Btns {
  position: fixed;
  right: 0;
  bottom: 6vh;
  z-index: 9;
}

.reg_Btns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.reg_Btns ul li .reg_Img_sec {
  margin-top: -6px;
  border-radius: 50%;
  background-color: #de004a;
  width: 52px;
  height: 52px;
  padding: 4px 6px;
  margin-left: 5px;
  position: absolute;
  right: 4px;
}

.reg_Img_sec img {
  margin-top: 6px;
  margin-left: 5px;
}

.reg_Btns ul li {
  list-style: none;
  background-color: #de004a;
  margin-bottom: 5px;
  /* padding: 15px 6px 15px 12px; */
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
  position: relative;
  float: right;
  width: 160px;
}

.reg_Btns ul li p {
  padding: 12px 16px;
  margin: 0;
  line-height: 1.1rem;
  white-space: nowrap;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}